:root {
            --primary: #000000;
            --secondary: #FFFFFF;
            --accent: #333333;
            --bg-dark: #0A0A0A;
            --bg-light: #FAFAFA;
            --border: #E5E5E5;
            --text-primary: #000000;
            --text-secondary: #666666;
            --text-inverse: #FFFFFF;
            --success: #000000;
            --error: #000000;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            color: var(--text-primary);
            background: var(--secondary);
            line-height: 1.6;
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
        }

        h1, h2, h3, h4, h5 {
            font-family: 'Bebas Neue', sans-serif;
            font-weight: 400;
            letter-spacing: 1px;
        }

        /* Navigation */
        .navbar {
            position: fixed;
            top: 0;
            width: 100%;
            background: var(--secondary);
            border-bottom: 3px solid var(--primary);
            z-index: 1000;
            padding: 0;
        }

        .nav-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 1.5rem 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-family: 'Bebas Neue', sans-serif;
            font-size: 2.5rem;
            font-weight: 400;
            letter-spacing: 2px;
            color: var(--primary);
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .logo-icon {
            width: 45px;
            height: 45px;
            background: var(--primary);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--secondary);
            font-size: 1.8rem;
            clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
        }

        .nav-links {
            display: flex;
            gap: 3rem;
            align-items: center;
        }

        .nav-link {
            text-decoration: none;
            color: var(--text-primary);
            font-weight: 600;
            font-size: 0.95rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s;
            position: relative;
        }

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 3px;
            background: var(--primary);
            transition: width 0.3s;
        }

        .nav-link:hover::after {
            width: 100%;
        }

        .btn-nav {
            background: var(--primary);
            color: var(--secondary);
            padding: 0.8rem 2rem;
            border: 3px solid var(--primary);
            text-decoration: none;
            font-weight: 800;
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            transition: all 0.3s;
            cursor: pointer;
        }

        .btn-nav:hover {
            background: var(--secondary);
            color: var(--primary);
        }

        /* Hero Section */
        .hero {
            margin-top: 85px;
            padding: 6rem 2rem;
            background: var(--secondary);
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 50%;
            height: 100%;
            background: repeating-linear-gradient(
                45deg,
                transparent,
                transparent 20px,
                rgba(0, 0, 0, 0.02) 20px,
                rgba(0, 0, 0, 0.02) 40px
            );
            pointer-events: none;
        }

        .hero-container {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 5rem;
            align-items: center;
            position: relative;
            z-index: 1;
        }

        .hero-content {
            animation: fadeIn 0.8s ease;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .hero-badge {
            display: inline-block;
            background: var(--primary);
            color: var(--secondary);
            padding: 0.5rem 1.5rem;
            font-size: 0.85rem;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 2rem;
            clip-path: polygon(5% 0%, 95% 0%, 100% 50%, 95% 100%, 5% 100%, 0% 50%);
        }

        .hero h1 {
            font-size: 5rem;
            line-height: 0.95;
            margin-bottom: 2rem;
            color: var(--primary);
            text-transform: uppercase;
        }

        .hero-highlight {
            background: var(--primary);
            color: var(--secondary);
            padding: 0 1rem;
            display: inline-block;
            transform: skew(-5deg);
        }

        .hero-highlight span {
            display: inline-block;
            transform: skew(5deg);
        }

        .hero-subtitle {
            font-size: 1.3rem;
            color: var(--text-secondary);
            margin-bottom: 3rem;
            max-width: 500px;
            font-weight: 500;
        }

        .hero-price {
            display: flex;
            align-items: baseline;
            gap: 1rem;
            margin-bottom: 3rem;
        }

        .price-large {
            font-family: 'Bebas Neue', sans-serif;
            font-size: 5rem;
            line-height: 1;
            letter-spacing: -2px;
        }

        .price-small {
            font-size: 1.2rem;
            font-weight: 600;
            text-transform: uppercase;
        }

        .hero-cta {
            display: flex;
            gap: 1.5rem;
            flex-wrap: wrap;
        }

        .btn-primary {
            background: var(--primary);
            color: var(--secondary);
            padding: 1.5rem 3rem;
            border: 3px solid var(--primary);
            text-decoration: none;
            font-weight: 900;
            font-size: 1.1rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            transition: all 0.3s;
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            gap: 1rem;
            position: relative;
            overflow: hidden;
        }

        .btn-primary::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: rgba(255, 255, 255, 0.1);
            transition: left 0.3s;
        }

        .btn-primary:hover::before {
            left: 100%;
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }

        .btn-secondary {
            background: var(--secondary);
            color: var(--primary);
            padding: 1.5rem 3rem;
            border: 3px solid var(--primary);
            text-decoration: none;
            font-weight: 900;
            font-size: 1.1rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            transition: all 0.3s;
            cursor: pointer;
        }

        .btn-secondary:hover {
            background: var(--primary);
            color: var(--secondary);
        }

        .hero-visual {
            position: relative;
            height: 600px;
        }

        .hero-image-container {
            position: absolute;
            width: 100%;
            height: 100%;
        }

        .hero-image-main {
            width: 80%;
            height: 80%;
            background: var(--primary);
            position: absolute;
            top: 10%;
            right: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 10rem;
            clip-path: polygon(0 0, 100% 0, 100% 85%, 85% 100%, 0 100%);
        }

        .hero-frame {
            position: absolute;
            border: 5px solid var(--primary);
            background: transparent;
        }

        .frame-1 {
            width: 200px;
            height: 200px;
            top: 0;
            left: 0;
            clip-path: polygon(0 0, 100% 0, 100% 100%, 15% 100%, 0 85%);
        }

        .frame-2 {
            width: 150px;
            height: 150px;
            bottom: 0;
            right: 10%;
            clip-path: polygon(15% 0, 100% 0, 100% 100%, 0 100%, 0 15%);
        }

        .floating-stat {
            position: absolute;
            background: var(--secondary);
            border: 4px solid var(--primary);
            padding: 1.5rem;
            animation: floatStat 3s ease-in-out infinite;
        }

        @keyframes floatStat {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-20px); }
        }

        .stat-1 {
            top: 20%;
            left: -5%;
            animation-delay: 0s;
        }

        .stat-2 {
            bottom: 25%;
            right: -10%;
            animation-delay: 1.5s;
        }

        .stat-number {
            font-family: 'Bebas Neue', sans-serif;
            font-size: 3rem;
            line-height: 1;
        }

        .stat-label {
            font-size: 0.8rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-top: 0.5rem;
        }

        /* Section Styles */
        .section {
            padding: 6rem 2rem;
            position: relative;
        }

        .section-dark {
            background: var(--primary);
            color: var(--secondary);
        }

        .section-container {
            max-width: 1400px;
            margin: 0 auto;
        }

        .section-header {
            text-align: center;
            margin-bottom: 5rem;
        }

        .section-label {
            font-weight: 900;
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 3px;
            margin-bottom: 1rem;
            display: inline-block;
            padding: 0.5rem 1.5rem;
            border: 3px solid var(--primary);
        }

        .section-dark .section-label {
            border-color: var(--secondary);
        }

        .section-title {
            font-size: 4.5rem;
            line-height: 0.95;
            margin-bottom: 1.5rem;
            text-transform: uppercase;
        }

        .section-subtitle {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto;
            font-weight: 500;
        }

        .section-dark .section-subtitle {
            color: rgba(255, 255, 255, 0.8);
        }

        /* Reasons Grid */
        .reasons-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2px;
            background: var(--primary);
            border: 3px solid var(--primary);
        }

        .reason-card {
            background: var(--secondary);
            padding: 3rem 2rem;
            text-align: center;
            transition: all 0.3s;
            position: relative;
            overflow: hidden;
        }

        .reason-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: var(--primary);
            transition: left 0.3s;
            z-index: 0;
        }

        .reason-card:hover::before {
            left: 0;
        }

        .reason-card:hover {
            color: var(--secondary);
        }

        .reason-card > * {
            position: relative;
            z-index: 1;
        }

        .reason-icon {
            font-size: 4rem;
            margin-bottom: 1.5rem;
            display: block;
        }

        .reason-card h3 {
            font-size: 1.8rem;
            margin-bottom: 1rem;
            text-transform: uppercase;
        }

        .reason-card p {
            font-weight: 500;
            line-height: 1.6;
        }

        .reason-card:hover p {
            color: rgba(255, 255, 255, 0.9);
        }

        /* Stats Section */
        .stats-section {
            background: var(--bg-light);
            padding: 4rem 2rem;
            border-top: 3px solid var(--primary);
            border-bottom: 3px solid var(--primary);
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 3rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .stat-item {
            text-align: center;
        }

        .stat-value {
            font-family: 'Bebas Neue', sans-serif;
            font-size: 5rem;
            line-height: 1;
            margin-bottom: 0.5rem;
        }

        .stat-desc {
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-size: 0.9rem;
        }

        /* Vets Section */
        .vets-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 3rem;
        }

        .vet-card {
            background: var(--secondary);
            border: 3px solid var(--secondary);
            padding: 0;
            transition: all 0.3s;
            position: relative;
            overflow: hidden;
        }

        .vet-card:hover {
            border-color: var(--primary);
            transform: translateY(-10px);
        }

        .vet-image {
            width: 100%;
            height: 300px;
            background: var(--primary);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 6rem;
            color: var(--secondary);
            clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
        }

        .vet-content {
            padding: 2rem;
        }

        .vet-name {
            font-size: 2rem;
            margin-bottom: 0.5rem;
            text-transform: uppercase;
        }

        .vet-specialty {
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-size: 0.9rem;
            margin-bottom: 0.3rem;
        }

        .vet-experience {
            color: var(--text-secondary);
            font-weight: 600;
            margin-bottom: 1.5rem;
        }

        .vet-stats {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.5rem;
            padding: 1.5rem 0;
            border-top: 2px solid var(--border);
            border-bottom: 2px solid var(--border);
            margin-bottom: 1.5rem;
        }

        .vet-stat {
            text-align: center;
        }

        .vet-stat-value {
            font-family: 'Bebas Neue', sans-serif;
            font-size: 2.5rem;
            line-height: 1;
        }

        .vet-stat-label {
            font-size: 0.75rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-top: 0.3rem;
        }

        .vet-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
        }

        .vet-tag {
            background: var(--primary);
            color: var(--secondary);
            padding: 0.4rem 1rem;
            font-size: 0.75rem;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        /* Testimonials */
        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2px;
            background: var(--secondary);
        }

        .testimonial-card {
            background: var(--primary);
            color: var(--secondary);
            padding: 3rem;
            border: 3px solid var(--secondary);
            position: relative;
        }

        .testimonial-quote {
            font-size: 3rem;
            line-height: 1;
            margin-bottom: 1rem;
            opacity: 0.5;
        }

        .testimonial-text {
            font-size: 1.1rem;
            line-height: 1.6;
            margin-bottom: 2rem;
            font-weight: 500;
        }

        .testimonial-rating {
            font-size: 1.5rem;
            margin-bottom: 2rem;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 1rem;
            padding-top: 2rem;
            border-top: 2px solid rgba(255, 255, 255, 0.3);
        }

        .testimonial-avatar {
            width: 60px;
            height: 60px;
            background: var(--secondary);
            color: var(--primary);
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 900;
            font-size: 1.5rem;
            clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
        }

        .testimonial-author-name {
            font-weight: 800;
            font-size: 1.1rem;
            text-transform: uppercase;
            margin-bottom: 0.2rem;
        }

        .testimonial-author-pet {
            font-size: 0.85rem;
            opacity: 0.8;
            font-weight: 600;
        }

        /* CTA Section */
        .cta-section {
            padding: 8rem 2rem;
            background: var(--secondary);
            text-align: center;
            border-top: 5px solid var(--primary);
            border-bottom: 5px solid var(--primary);
            position: relative;
            overflow: hidden;
        }

        .cta-section::before {
            content: 'PAWMANITY';
            position: absolute;
            font-family: 'Bebas Neue', sans-serif;
            font-size: 20rem;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            opacity: 0.03;
            letter-spacing: 20px;
            pointer-events: none;
        }

        .cta-content {
            position: relative;
            z-index: 1;
            max-width: 900px;
            margin: 0 auto;
        }

        .cta-title {
            font-size: 5rem;
            line-height: 0.95;
            margin-bottom: 2rem;
            text-transform: uppercase;
        }

        .cta-subtitle {
            font-size: 1.5rem;
            margin-bottom: 3rem;
            font-weight: 600;
        }

        /* Footer */
        .footer {
            background: var(--primary);
            color: var(--secondary);
            padding: 4rem 2rem 2rem;
        }

        .footer-container {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 4rem;
            margin-bottom: 3rem;
        }

        .footer-brand {
            padding-right: 3rem;
        }

        .footer-logo {
            font-family: 'Bebas Neue', sans-serif;
            font-size: 3rem;
            letter-spacing: 2px;
            margin-bottom: 1rem;
        }

        .footer-description {
            line-height: 1.8;
            opacity: 0.8;
            font-weight: 500;
        }

        .footer-section h4 {
            font-size: 1.5rem;
            margin-bottom: 1.5rem;
            text-transform: uppercase;
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 1rem;
        }

        .footer-links a {
            color: var(--secondary);
            text-decoration: none;
            font-weight: 600;
            text-transform: uppercase;
            font-size: 0.85rem;
            letter-spacing: 1px;
            transition: opacity 0.3s;
        }

        .footer-links a:hover {
            opacity: 0.7;
        }

        .footer-bottom {
            text-align: center;
            padding-top: 3rem;
            border-top: 2px solid rgba(255, 255, 255, 0.2);
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-size: 0.85rem;
        }

        /* Modal Styles */
        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.95);
            z-index: 2000;
            align-items: center;
            justify-content: center;
        }

        .modal.active {
            display: flex;
        }

        .modal-content {
            background: var(--secondary);
            padding: 3rem;
            max-width: 600px;
            width: 90%;
            max-height: 90vh;
            overflow-y: auto;
            position: relative;
            border: 5px solid var(--primary);
        }

        .modal-close {
            position: absolute;
            top: 1rem;
            right: 1rem;
            background: none;
            border: none;
            font-size: 3rem;
            cursor: pointer;
            color: var(--primary);
            font-weight: 300;
            line-height: 1;
            transition: transform 0.3s;
        }

        .modal-close:hover {
            transform: rotate(90deg);
        }

        .modal-title {
            font-size: 3rem;
            margin-bottom: 0.5rem;
            text-transform: uppercase;
        }

        .modal-subtitle {
            color: var(--text-secondary);
            font-weight: 600;
            margin-bottom: 2rem;
        }

        .form-group {
            margin-bottom: 2rem;
        }

        .form-label {
            display: block;
            margin-bottom: 0.7rem;
            font-weight: 800;
            font-size: 0.85rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .form-input,
        .form-textarea,
        .form-select {
            width: 100%;
            padding: 1rem;
            border: 3px solid var(--primary);
            background: var(--secondary);
            font-family: 'Inter', sans-serif;
            font-size: 1rem;
            font-weight: 600;
            transition: all 0.3s;
        }

        .form-input:focus,
        .form-textarea:focus,
        .form-select:focus {
            outline: none;
            background: var(--bg-light);
        }

        .form-textarea {
            resize: vertical;
            min-height: 120px;
        }

        .file-upload {
            border: 3px dashed var(--primary);
            padding: 2rem;
            text-align: center;
            cursor: pointer;
            transition: all 0.3s;
            background: var(--bg-light);
        }

        .file-upload:hover {
            background: var(--primary);
            color: var(--secondary);
        }

        .file-upload input {
            display: none;
        }

        .file-upload-icon {
            font-size: 3rem;
            margin-bottom: 1rem;
        }

        .file-upload-text {
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .step-indicator {
            display: flex;
            justify-content: center;
            gap: 0.5rem;
            margin-bottom: 3rem;
        }

        .step-dot {
            width: 40px;
            height: 8px;
            background: var(--border);
            transition: all 0.3s;
        }

        .step-dot.active {
            background: var(--primary);
            width: 80px;
        }

        /* Dashboard */
        .dashboard {
            display: none;
            padding: 8rem 2rem 4rem;
            min-height: 100vh;
            background: var(--bg-light);
        }

        .dashboard.active {
            display: block;
        }

        .dashboard-header {
            margin-bottom: 4rem;
            text-align: center;
        }

        .dashboard-title {
            font-size: 4rem;
            margin-bottom: 0.5rem;
            text-transform: uppercase;
        }

        .dashboard-subtitle {
            font-size: 1.2rem;
            color: var(--text-secondary);
            font-weight: 600;
        }

        .dashboard-stats {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2px;
            background: var(--primary);
            border: 3px solid var(--primary);
            margin-bottom: 4rem;
        }

        .stat-card {
            background: var(--secondary);
            padding: 2.5rem;
            text-align: center;
        }

        .stat-card-value {
            font-family: 'Bebas Neue', sans-serif;
            font-size: 4rem;
            line-height: 1;
            margin-bottom: 0.5rem;
        }

        .stat-card-label {
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-size: 0.85rem;
        }

        .dashboard-section {
            background: var(--secondary);
            border: 3px solid var(--primary);
            padding: 3rem;
            margin-bottom: 3rem;
        }

        .section-title-small {
            font-size: 2.5rem;
            margin-bottom: 2rem;
            text-transform: uppercase;
        }

        .pets-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
            gap: 2px;
            background: var(--primary);
            border: 3px solid var(--primary);
        }

        .pet-card {
            background: var(--secondary);
            padding: 2rem;
            text-align: center;
            cursor: pointer;
            transition: all 0.3s;
            position: relative;
            overflow: hidden;
        }

        .pet-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: var(--primary);
            transition: left 0.3s;
            z-index: 0;
        }

        .pet-card:hover::before {
            left: 0;
        }

        .pet-card:hover {
            color: var(--secondary);
        }

        .pet-card > * {
            position: relative;
            z-index: 1;
        }

        .pet-avatar {
            width: 100px;
            height: 100px;
            background: var(--primary);
            color: var(--secondary);
            clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            font-size: 3rem;
        }

        .pet-card:hover .pet-avatar {
            background: var(--secondary);
            color: var(--primary);
        }

        .pet-name {
            font-size: 1.8rem;
            margin-bottom: 0.5rem;
            text-transform: uppercase;
        }

        .pet-info {
            font-weight: 600;
            margin-bottom: 1.5rem;
        }

        .add-pet-card {
            border: 3px dashed var(--primary);
            background: var(--bg-light);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            min-height: 250px;
        }

        .add-pet-card::before {
            display: none;
        }

        .add-pet-icon {
            font-size: 4rem;
            margin-bottom: 1rem;
        }

        .add-pet-text {
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .queue-list {
            display: grid;
            gap: 2px;
            background: var(--primary);
            border: 3px solid var(--primary);
        }

        .queue-item {
            background: var(--secondary);
            padding: 2rem;
            display: grid;
            grid-template-columns: 1fr auto;
            gap: 2rem;
            align-items: center;
            border-left: 5px solid transparent;
            transition: all 0.3s;
        }

        .queue-item.urgent {
            border-left-color: var(--primary);
        }

        .queue-info h3 {
            font-size: 2rem;
            margin-bottom: 0.5rem;
            text-transform: uppercase;
        }

        .queue-owner {
            color: var(--text-secondary);
            font-weight: 700;
            margin-bottom: 0.5rem;
            text-transform: uppercase;
            font-size: 0.85rem;
            letter-spacing: 1px;
        }

        .queue-concern {
            margin: 1rem 0;
            font-weight: 600;
        }

        .queue-badge {
            display: inline-block;
            background: var(--primary);
            color: var(--secondary);
            padding: 0.4rem 1rem;
            font-size: 0.75rem;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-right: 0.5rem;
        }

        /* Video Consultation */
        .video-consultation {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--primary);
            z-index: 3000;
            flex-direction: column;
        }

        .video-consultation.active {
            display: flex;
        }

        .video-header {
            background: var(--primary);
            border-bottom: 3px solid var(--secondary);
            padding: 1.5rem 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            color: var(--secondary);
        }

        .video-title {
            font-size: 2rem;
            text-transform: uppercase;
        }

        .video-subtitle {
            font-size: 0.9rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-top: 0.3rem;
        }

        .video-main {
            flex: 1;
            display: grid;
            grid-template-columns: 1fr 400px;
            background: var(--bg-dark);
        }

        .video-stream {
            background: var(--bg-dark);
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            border-right: 3px solid var(--secondary);
        }

        .video-placeholder {
            text-align: center;
            color: var(--secondary);
        }

        .video-placeholder-icon {
            font-size: 8rem;
            margin-bottom: 2rem;
        }

        .video-placeholder-text {
            font-size: 1.5rem;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        .video-controls {
            position: absolute;
            bottom: 3rem;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 1.5rem;
        }

        .video-btn {
            width: 70px;
            height: 70px;
            border: 3px solid var(--secondary);
            background: var(--primary);
            color: var(--secondary);
            font-size: 2rem;
            cursor: pointer;
            transition: all 0.3s;
            clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
        }

        .video-btn:hover {
            background: var(--secondary);
            color: var(--primary);
            transform: scale(1.1);
        }

        .video-btn.end-call {
            background: var(--secondary);
            color: var(--primary);
        }

        .video-btn.end-call:hover {
            background: var(--primary);
            color: var(--secondary);
        }

        .chat-sidebar {
            background: var(--secondary);
            display: flex;
            flex-direction: column;
        }

        .chat-header {
            padding: 2rem;
            border-bottom: 3px solid var(--primary);
        }

        .chat-title {
            font-size: 2rem;
            text-transform: uppercase;
        }

        .chat-messages {
            flex: 1;
            padding: 2rem;
            overflow-y: auto;
        }

        .chat-message {
            background: var(--bg-light);
            border: 2px solid var(--primary);
            padding: 1.5rem;
            margin-bottom: 1rem;
            font-weight: 600;
        }

        .chat-message strong {
            display: block;
            font-weight: 900;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-size: 0.85rem;
            margin-bottom: 0.5rem;
        }

        .chat-message.sent {
            background: var(--primary);
            color: var(--secondary);
            border-color: var(--primary);
        }

        .chat-input-container {
            padding: 2rem;
            border-top: 3px solid var(--primary);
            display: flex;
            gap: 1rem;
        }

        .chat-input {
            flex: 1;
            padding: 1rem;
            border: 3px solid var(--primary);
            font-family: 'Inter', sans-serif;
            font-weight: 600;
            font-size: 1rem;
        }

        .chat-input:focus {
            outline: none;
            background: var(--bg-light);
        }

        .chat-send {
            width: 60px;
            height: 60px;
            border: 3px solid var(--primary);
            background: var(--primary);
            color: var(--secondary);
            font-size: 1.5rem;
            cursor: pointer;
            font-weight: 900;
            transition: all 0.3s;
            clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
        }

        .chat-send:hover {
            background: var(--secondary);
            color: var(--primary);
        }

        /* Responsive Design */
        @media (max-width: 1200px) {
            .hero h1 {
                font-size: 4rem;
            }

            .section-title {
                font-size: 3.5rem;
            }

            .reasons-grid,
            .vets-grid,
            .testimonials-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 968px) {
            .nav-links {
                display: none;
            }

            .hero-container {
                grid-template-columns: 1fr;
                gap: 3rem;
            }

            .hero h1 {
                font-size: 3.5rem;
            }

            .hero-visual {
                height: 400px;
            }

            .section-title {
                font-size: 3rem;
            }

            .reasons-grid,
            .vets-grid,
            .testimonials-grid {
                grid-template-columns: 1fr;
            }

            .footer-container {
                grid-template-columns: 1fr;
                gap: 3rem;
            }

            .video-main {
                grid-template-columns: 1fr;
            }

            .chat-sidebar {
                position: absolute;
                right: 0;
                top: 0;
                width: 100%;
                height: 100%;
                transform: translateX(100%);
                transition: transform 0.3s;
            }

            .chat-sidebar.active {
                transform: translateX(0);
            }
        }

        @media (max-width: 640px) {
            .hero h1 {
                font-size: 2.5rem;
            }

            .price-large {
                font-size: 4rem;
            }

            .section-title {
                font-size: 2.5rem;
            }

            .cta-title {
                font-size: 3rem;
            }

            .dashboard-title {
                font-size: 3rem;
            }

            .stats-grid {
                grid-template-columns: 1fr;
            }
        }

        /* Utility Classes */
        .text-center { text-align: center; }
        .hidden { display: none !important; }
        .mb-1 { margin-bottom: 1rem; }
        .mb-2 { margin-bottom: 2rem; }
        .mb-3 { margin-bottom: 3rem; }
        .mt-2 { margin-top: 2rem; }
        .mt-3 { margin-top: 3rem; }
