  * {
            margin: 0;
             padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            font-size: 16px;
            line-height: 1.6;
            color: #1a202c;
            background-color: #f8fafc;
            overflow-x: hidden;
        }

        img {
            max-width: 100%;
            height: auto;
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .section-padding {
            padding: 80px 0;
        }

        .section-title {
            margin-bottom: 40px;
        }

        .section-title h2 {
            font-size: 36px;
            font-weight: 700;
            color: #1a202c;
            margin-bottom: 16px;
            position: relative;
            display: inline-block;
        }

        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 60px;
            height: 3px;
            background: linear-gradient(90deg, #0ea5e9, #22c55e);
            border-radius: 2px;
        }

        .section-title p {
            font-size: 18px;
            color: #4a5568;
            max-width: 700px;
        }

        .highlight {
            color: #0ea5e9;
            font-weight: 600;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 14px 32px;
            font-size: 16px;
            font-weight: 600;
            border-radius: 8px;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            gap: 10px;
        }

        .btn-primary {
            background: linear-gradient(135deg, #0ea5e9, #0284c7);
            color: white;
            box-shadow: 0 4px 15px rgba(14, 165, 233, 0.2);
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(14, 165, 233, 0.3);
        }

        .btn-secondary {
            background: white;
            color: #0ea5e9;
            border: 2px solid #0ea5e9;
        }

        .btn-secondary:hover {
            background: #0ea5e9;
            color: white;
        }

        .btn-whatsapp {
            background: linear-gradient(135deg, #25D366, #128C7E);
            color: white;
            box-shadow: 0 4px 15px rgba(37, 211, 102, 0.2);
        }

        .btn-whatsapp:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
            background: linear-gradient(135deg, #22c55e, #16a34a);
        }

        /* Header */
        .header {
            position: sticky;
            top: 0;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            z-index: 1000;
            border-bottom: 1px solid #e2e8f0;
            padding: 16px 0;
        }

        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .logo img {
            height: 40px;
            width: auto;
        }

        .logo-text {
            font-size: 24px;
            font-weight: 700;
            background: linear-gradient(135deg, #0ea5e9, #22c55e);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .nav-links {
            display: flex;
            gap: 32px;
            list-style: none;
        }

        .nav-links a {
            font-weight: 500;
            color: #4a5568;
            position: relative;
            padding: 8px 0;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, #0ea5e9, #22c55e);
            transition: width 0.3s ease;
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        .nav-links a:hover {
            color: #0ea5e9;
        }

        .nav-links a.active {
            color: #0ea5e9;
            font-weight: 600;
        }

        .nav-links a.active::after {
            width: 100%;
        }

        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            font-size: 24px;
            color: #4a5568;
            cursor: pointer;
        }

        /* Hero Section */
        .contact-hero {
            padding: 120px 0 80px;
            background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
            position: relative;
            overflow: hidden;
        }

        .contact-hero::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 800px;
            height: 800px;
            background: radial-gradient(circle, rgba(14, 165, 233, 0.1) 0%, transparent 70%);
            border-radius: 50%;
        }

        .hero-container {
            position: relative;
            z-index: 1;
        }

        .hero-content {
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
        }

        .hero-content h1 {
            font-size: 48px;
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 24px;
            background: linear-gradient(135deg, #1a202c 0%, #0ea5e9 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .hero-content p {
            font-size: 20px;
            color: #4a5568;
            margin-bottom: 40px;
            line-height: 1.6;
        }

        .hero-contact-info {
            display: flex;
            justify-content: center;
            gap: 30px;
            flex-wrap: wrap;
            margin-bottom: 40px;
        }

        .contact-method {
            display: flex;
            align-items: center;
            gap: 15px;
            padding: 20px;
            background: white;
            border-radius: 12px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s ease;
        }

        .contact-method:hover {
            transform: translateY(-5px);
        }

        .contact-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #0ea5e9, #0284c7);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .contact-icon i {
            font-size: 24px;
            color: white;
        }

        .contact-method.whatsapp .contact-icon {
            background: linear-gradient(135deg, #25D366, #128C7E);
        }

        .contact-method.email .contact-icon {
            background: linear-gradient(135deg, #8B5CF6, #7C3AED);
        }

        .contact-details h3 {
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 5px;
            color: #1a202c;
        }

        .contact-details p {
            font-size: 16px;
            color: #4a5568;
            margin: 0;
        }

        .hero-buttons {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
        }

        /* Contact Sections */
        .contact-sections {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: start;
        }

        /* Contact Form */
        .contact-form-container {
            background: white;
            padding: 40px;
            border-radius: 16px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
        }

        .contact-form-container h2 {
            font-size: 28px;
            font-weight: 700;
            margin-bottom: 10px;
            color: #1a202c;
        }

        .contact-form-container > p {
            color: #4a5568;
            margin-bottom: 30px;
        }

        .form-group {
            margin-bottom: 24px;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 500;
            color: #1a202c;
        }

        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 14px 16px;
            font-size: 16px;
            border: 1px solid #e2e8f0;
            border-radius: 8px;
            transition: all 0.3s ease;
            font-family: inherit;
        }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #0ea5e9;
            box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.1);
        }

        .form-group textarea {
            min-height: 150px;
            resize: vertical;
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }

        .form-submit-btn {
            width: 100%;
            padding: 16px;
            font-size: 18px;
            margin-top: 20px;
        }

        .form-success {
            display: none;
            background: #D1FAE5;
            border: 1px solid #10B981;
            color: #065F46;
            padding: 20px;
            border-radius: 8px;
            margin-top: 20px;
            text-align: center;
        }

        .form-success.show {
            display: block;
        }

        /* Contact Info */
        .contact-info-container {
            position: sticky;
            top: 100px;
        }

        .info-card {
            background: white;
            padding: 40px;
            border-radius: 16px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
            margin-bottom: 30px;
        }

        .info-card h3 {
            font-size: 22px;
            font-weight: 700;
            margin-bottom: 24px;
            color: #1a202c;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .info-card h3 i {
            color: #0ea5e9;
        }

        .info-items {
            display: flex;
            flex-direction: column;
            gap: 25px;
        }

        .info-item {
            display: flex;
            align-items: flex-start;
            gap: 16px;
        }

        .info-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, rgba(14, 165, 233, 0.1), rgba(14, 165, 233, 0.05));
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .info-icon i {
            font-size: 20px;
            color: #0ea5e9;
        }

        .info-content h4 {
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 5px;
            color: #1a202c;
        }

        .info-content p,
        .info-content a {
            color: #4a5568;
            line-height: 1.6;
            transition: color 0.3s ease;
        }

        .info-content a:hover {
            color: #0ea5e9;
        }

        .business-hours {
            list-style: none;
        }

        .business-hours li {
            display: flex;
            justify-content: space-between;
            padding: 8px 0;
            border-bottom: 1px solid #e2e8f0;
        }

        .business-hours li:last-child {
            border-bottom: none;
        }

        .day {
            font-weight: 500;
            color: #1a202c;
        }

        .hours {
            color: #4a5568;
        }

        /* Service Area */
        .service-area {
            background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
        }

        .area-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .area-list {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
        }

        .area-item {
            background: white;
            padding: 20px;
            border-radius: 12px;
            text-align: center;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s ease;
        }

        .area-item:hover {
            transform: translateY(-5px);
        }

        .area-item i {
            font-size: 24px;
            color: #0ea5e9;
            margin-bottom: 10px;
        }

        .area-item h4 {
            font-size: 18px;
            font-weight: 600;
            color: #1a202c;
        }

        .map-placeholder {
            background: linear-gradient(135deg, #e2e8f0, #cbd5e1);
            border-radius: 16px;
            height: 400px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #64748b;
            font-weight: 600;
        }

        .map-placeholder i {
            font-size: 48px;
            margin-bottom: 20px;
            color: #94a3b8;
        }

        /* FAQ Section */
        .faq-section {
            background: white;
        }

        .faq-container {
            max-width: 800px;
            margin: 0 auto;
        }

        .faq-list {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .faq-item {
            background: white;
            border: 1px solid #e2e8f0;
            border-radius: 12px;
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .faq-item.active {
            border-color: #0ea5e9;
            box-shadow: 0 5px 20px rgba(14, 165, 233, 0.1);
        }

        .faq-question {
            width: 100%;
            padding: 24px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            background: none;
            border: none;
            cursor: pointer;
            text-align: left;
            font-family: inherit;
            font-size: 18px;
            font-weight: 600;
            color: #1a202c;
            transition: background-color 0.3s ease;
        }

        .faq-question:hover {
            background-color: #f8fafc;
        }

        .faq-question span {
            flex: 1;
            margin-right: 16px;
        }

        .faq-icon {
            width: 24px;
            height: 24px;
            stroke: currentColor;
            transition: transform 0.3s ease;
            flex-shrink: 0;
        }

        .faq-item.active .faq-icon {
            transform: rotate(180deg);
        }

        .faq-answer {
            padding: 0 24px;
            max-height: 0;
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .faq-item.active .faq-answer {
            padding: 0 24px 24px;
            max-height: 500px;
        }

        .faq-answer p {
            color: #4a5568;
            line-height: 1.6;
        }

        /* CTA Section */
        .cta-section {
            background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 100%);
            color: white;
            text-align: center;
            padding: 100px 0;
            position: relative;
            overflow: hidden;
        }

        .cta-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
        }

        .cta-content {
            position: relative;
            z-index: 1;
            max-width: 800px;
            margin: 0 auto;
        }

        .cta-content h2 {
            font-size: 42px;
            font-weight: 700;
            margin-bottom: 20px;
        }

        .cta-content p {
            font-size: 20px;
            margin-bottom: 40px;
            opacity: 0.9;
        }

        .cta-buttons {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .cta-buttons .btn-primary {
            background: white;
            color: #0ea5e9;
        }

        .cta-buttons .btn-primary:hover {
            background: #f8fafc;
        }

        .cta-buttons .btn-secondary {
            background: transparent;
            border: 2px solid white;
            color: white;
        }

        .cta-buttons .btn-secondary:hover {
            background: white;
            color: #0ea5e9;
        }

      /* Footer */
.tv-footer {
    background-color: #13343b;
    color: rgba(255, 255, 255, 0.9);
    padding: 32px 16px;
    margin-bottom: 0;
}

.tv-footer-container {
    max-width: 1280px;
    margin: 0 auto;
}

.tv-footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
    margin-bottom: 32px;
}

.tv-footer-section h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
    color: white;
    line-height: 1.2;
}

.tv-footer-logo {
    font-size: 30px;
    font-weight: 600;
    color: #32b8c6;
    margin-bottom: 16px;
}

.tv-footer-section p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
    margin-bottom: 16px;
}

.tv-footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.tv-footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.15s cubic-bezier(0.16, 1, 0.3, 1);
}

.tv-footer-links a:hover {
    color: #32b8c6;
}

.tv-contact-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.tv-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.tv-contact-item svg {
    width: 20px;
    height: 20px;
    stroke: #32b8c6;
    flex-shrink: 0;
}

.tv-contact-item a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.15s cubic-bezier(0.16, 1, 0.3, 1);
}

.tv-contact-item a:hover {
    color: #32b8c6;
}

.tv-footer-bottom {
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 12px;
}

.tv-footer-bottom a {
    color: #32b8c6;
    text-decoration: underline;
}

/* Mobile Bottom Navigation */
.tv-mobile-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: #fffcfd;
    border-top: 2px solid #20808d;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.1);
    animation: slideUp 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.tv-mobile-nav-container {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
    padding: 0;
}

.tv-mobile-nav-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #626c71;
    transition: all 0.15s cubic-bezier(0.16, 1, 0.3, 1);
    padding: 12px 8px;
    cursor: pointer;
    border-radius: 8px;
    font-size: 11px;
    font-weight: 500;
    gap: 4px;
}

.tv-mobile-nav-link svg {
    width: 24px;
    height: 24px;
    stroke: currentColor;
    stroke-width: 1.5;
    transition: all 0.15s cubic-bezier(0.16, 1, 0.3, 1);
}

.tv-mobile-nav-link:active,
.tv-mobile-nav-link:hover {
    color: #20808d;
    background-color: rgba(32, 128, 141, 0.08);
}

.tv-mobile-nav-link:active svg,
.tv-mobile-nav-link:hover svg {
    stroke-width: 2;
}

/* Responsive Design */
@media (max-width: 768px) {
    /* Body padding for mobile nav */
    body {
        padding-bottom: 70px;
    }
    
    /* Show mobile nav */
    .tv-mobile-nav {
        display: block;
    }
    
    /* Hide desktop nav items on mobile */
    .tv-nav-links {
        position: fixed;
        top: 73px;
        left: 0;
        right: 0;
        background-color: #fffcfd;
        flex-direction: column;
        padding: 24px;
        box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
        transform: translateY(-100%);
        opacity: 0;
        transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
        pointer-events: none;
        z-index: 999;
        border-bottom: 1px solid rgba(94, 82, 64, 0.2);
    }
    
    .tv-nav-links.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }
    
    .tv-menu-toggle {
        display: block;
    }


        /* Animation Classes */
        .fade-in {
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* Loading Animation */
        .loading {
            display: none;
            text-align: center;
            padding: 20px;
        }

        .loading.active {
            display: block;
        }

        .spinner {
            border: 3px solid #f3f3f3;
            border-top: 3px solid #0ea5e9;
            border-radius: 50%;
            width: 40px;
            height: 40px;
            animation: spin 1s linear infinite;
            margin: 0 auto 15px;
        }

        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        /* ========== RESPONSIVE MEDIA QUERIES ========== */

        /* Tablet and Small Desktop: 1024px and below */
        @media (max-width: 1024px) {
            .container {
                padding: 0 30px;
            }
            
            .contact-sections {
                gap: 40px;
            }
            
            .hero-content h1 {
                font-size: 42px;
            }
            
            .hero-contact-info {
                gap: 20px;
            }
            
            .contact-method {
                padding: 15px;
            }
            
            .area-content {
                gap: 40px;
            }
            
            .cta-content h2 {
                font-size: 36px;
            }
        }

        /* Tablet: 768px and below */
        @media (max-width: 768px) {
            .section-padding {
                padding: 60px 0;
            }
            
            .header {
                padding: 12px 0;
            }
            
            .mobile-menu-btn {
                display: block;
            }
            
            .nav-links {
                position: fixed;
                top: 70px;
                left: 0;
                right: 0;
                background: white;
                flex-direction: column;
                padding: 20px;
                box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
                border-radius: 0 0 16px 16px;
                transform: translateY(-100%);
                opacity: 0;
                visibility: hidden;
                transition: all 0.3s ease;
                z-index: 1000;
            }
            
            .nav-links.active {
                transform: translateY(0);
                opacity: 1;
                visibility: visible;
            }
            
            .nav-links li {
                width: 100%;
            }
            
            .nav-links a {
                display: block;
                padding: 12px 0;
                border-bottom: 1px solid #e2e8f0;
            }
            
            .nav-links a:last-child {
                border-bottom: none;
            }
            
            .contact-hero {
                padding: 100px 0 60px;
            }
            
            .hero-content h1 {
                font-size: 36px;
            }
            
            .hero-content p {
                font-size: 18px;
            }
            
            .hero-contact-info {
                flex-direction: column;
                align-items: center;
            }
            
            .contact-method {
                width: 100%;
                max-width: 400px;
            }
            
            .contact-sections {
                grid-template-columns: 1fr;
                gap: 50px;
            }
            
            .contact-info-container {
                position: static;
            }
            
            .contact-form-container,
            .info-card {
                padding: 30px;
            }
            
            .form-row {
                grid-template-columns: 1fr;
                gap: 0;
            }
            
            .section-title h2 {
                font-size: 30px;
            }
            
            .section-title p {
                font-size: 16px;
            }
            
            .area-content {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            
            .area-list {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .cta-section {
                padding: 80px 0;
            }
            
            .cta-content h2 {
                font-size: 30px;
            }
            
            .cta-content p {
                font-size: 18px;
            }
            
            .cta-buttons {
                flex-direction: column;
                align-items: center;
            }
            
            .cta-buttons .btn {
                width: 100%;
                max-width: 300px;
            }
            
            .tv-footer-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 40px;
            }
            
            .hero-buttons {
                flex-direction: column;
                align-items: center;
            }
            
            .hero-buttons .btn {
                width: 100%;
                max-width: 300px;
            }
        }

        /* Mobile: 480px and below */
        @media (max-width: 480px) {
            .container {
                padding: 0 20px;
            }
            
            .contact-hero {
                padding: 80px 0 40px;
            }
            
            .hero-content h1 {
                font-size: 32px;
            }
            
            .hero-content p {
                font-size: 16px;
                margin-bottom: 30px;
            }
            
            .section-title h2 {
                font-size: 28px;
            }
            
            .contact-form-container,
            .info-card {
                padding: 24px;
            }
            
            .contact-icon {
                width: 50px;
                height: 50px;
            }
            
            .contact-icon i {
                font-size: 20px;
            }
            
            .area-list {
                grid-template-columns: 1fr;
            }
            
            .area-item {
                padding: 16px;
            }
            
            .map-placeholder {
                height: 300px;
            }
            
            .faq-question {
                padding: 20px;
                font-size: 16px;
            }
            
            .faq-answer {
                padding: 0 20px;
            }
            
            .faq-item.active .faq-answer {
                padding: 0 20px 20px;
            }
            
            .cta-content h2 {
                font-size: 28px;
            }
            
            .cta-content p {
                font-size: 16px;
            }
            
            .tv-footer-grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }
            
            .tv-footer-section h3 {
                font-size: 20px;
            }
            
            .tv-footer-logo {
                font-size: 26px;
            }
            
            .btn {
                padding: 12px 24px;
                font-size: 15px;
            }
            
            .form-group input,
            .form-group select,
            .form-group textarea {
                padding: 12px 14px;
                font-size: 15px;
            }
            
            .form-submit-btn {
                padding: 14px;
                font-size: 16px;
            }
        }

        /* Small Mobile: 360px and below */
        @media (max-width: 360px) {
            .hero-content h1 {
                font-size: 28px;
            }
            
            .contact-method {
                flex-direction: column;
                text-align: center;
                gap: 12px;
            }
            
            .contact-details h3 {
                font-size: 16px;
            }
            
            .contact-details p {
                font-size: 14px;
            }
            
            .section-title h2 {
                font-size: 26px;
            }
            
            .cta-content h2 {
                font-size: 26px;
            }
            
            .btn {
                padding: 10px 20px;
                font-size: 14px;
            }
        }

        /* Landscape Mode for Mobile */
        @media (max-height: 500px) and (orientation: landscape) {
            .contact-hero {
                padding: 80px 0 40px;
            }
            
            .hero-content h1 {
                font-size: 28px;
                margin-bottom: 16px;
            }
            
            .hero-content p {
                margin-bottom: 24px;
                font-size: 16px;
            }
            
            .hero-contact-info {
                flex-direction: row;
                flex-wrap: wrap;
                margin-bottom: 24px;
            }
            
            .contact-method {
                min-width: 200px;
            }
        }

        /* High DPI Screens */
        @media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
            .logo img {
                image-rendering: -webkit-optimize-contrast;
                image-rendering: crisp-edges;
            }
        }

        /* Print Styles */
        @media print {
            .header,
            .hero-buttons,
            .contact-form-container,
            .cta-section,
            .tv-footer {
                display: none !important;
            }
            
            .contact-hero {
                background: none !important;
                padding: 20px 0 !important;
            }
            
            .hero-content h1 {
                background: none !important;
                -webkit-text-fill-color: #000 !important;
                color: #000 !important;
            }
            
            .hero-content p {
                color: #000 !important;
            }
            
            body {
                font-size: 12pt;
                color: #000;
                background: white;
            }
            
            .container {
                max-width: 100%;
                padding: 0;
            }
            
            a {
                text-decoration: underline;
                color: #000;
            }
            
            .contact-info-container {
                position: static;
                page-break-inside: avoid;
            }
        }

        /* Improve touch targets for mobile */
        @media (max-width: 768px) {
            .btn,
            .contact-method,
            .area-item,
            .faq-question {
                min-height: 44px; /* Minimum touch target size */
            }
            
            .form-group input,
            .form-group select,
            .form-group textarea {
                min-height: 44px;
            }
            
            .nav-links a {
                min-height: 48px;
                display: flex;
                align-items: center;
            }
        }

        /* Disable text selection on interactive elements */
        .btn,
        .contact-method,
        .area-item,
        .faq-question,
        .nav-links a {
            -webkit-tap-highlight-color: transparent;
            user-select: none;
        }

        /* Improve scrolling performance */
        .container,
        .contact-sections,
        .area-content {
            will-change: transform;
        }