
        :root {
            --primary: #FF6B00;
            --secondary: #F7F2E7;
            --dark: #333333;
            --light: #ffffff;
            --text: #444444;
            --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            --transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }

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

        body {
            font-family: 'Poppins', sans-serif;
            color: var(--text);
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        /* Enhanced touch targets for mobile */
        button, 
        .cta-button, 
        .contact-button,
        .menu-toggle {
            min-height: 44px;
            min-width: 44px;
            touch-action: manipulation;
        }

        /* Improved focus states for accessibility */
        button:focus,
        input:focus,
        textarea:focus,
        a:focus {
            outline: 2px solid var(--primary);
            outline-offset: 2px;
            border-radius: 4px;
        }

        /* Header Styles */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            z-index: 1000;
            padding: 20px 5%;
            transition: all 0.3s ease;
            border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        }

        header.scrolled {
            padding: 15px 5%;
            background: rgba(255, 255, 255, 0.98);
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
        }

        header nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
        }

        .logo-container {
            position: relative;
        }

        .logo-image {
            height: 120px;
            width: 120px;
            object-fit: contain;
            transition: all 0.3s ease;
        }

        header.scrolled .logo-image {
            height: 150px;
            width: 150px;
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 40px;
            align-items: center;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--dark);
            font-weight: 500;
            font-size: 1rem;
            position: relative;
            transition: color 0.3s ease;
        }

        .nav-links a:hover,
        .nav-links a.active {
            color: var(--primary);
        }

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

        .nav-links a:hover::after,
        .nav-links a.active::after {
            width: 100%;
        }

        .dropdown {
            position: relative;
        }

        .dropdown-menu {
            position: absolute;
            top: 100%;
            left: 0;
            background: var(--light);
            min-width: 250px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            border-radius: 10px;
            padding: 20px 0;
            opacity: 0;
            visibility: hidden;
            transform: translateY(10px);
            transition: all 0.3s ease;
            z-index: 100;
        }

        .dropdown:hover .dropdown-menu {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .dropdown-menu a {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 12px 25px;
            color: var(--text);
            transition: all 0.3s ease;
        }

        .dropdown-menu a:hover {
            background: rgba(255, 107, 0, 0.1);
            color: var(--primary);
        }

        .dropdown-icon {
            font-size: 0.8rem;
            transition: transform 0.3s ease;
        }

        .dropdown:hover .dropdown-icon {
            transform: rotate(180deg);
        }

        /* Mobile Menu */
        .menu-toggle {
            display: none;
            background: none;
            border: none;
            color: var(--dark);
            font-size: 1.5rem;
            cursor: pointer;
            z-index: 1001;
        }

        .nav-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            z-index: 999;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }

        .nav-overlay.active {
            opacity: 1;
            visibility: visible;
        }

        /* Logo display logic */
        .logo-orange {
            display: none;
        }
        .logo-white {
            display: block;
        }
        header.scrolled .logo-white {
            display: none;
        }
        header.scrolled .logo-orange {
            display: block;
        }

        /* Contact Hero Section */
        .contact-hero {
            min-height: 70vh;
            display: flex;
            align-items: center;
            position: relative;
            background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.4)), url('../images/backgroundservies.jpeg');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            overflow: hidden;
            margin-top: 100px;
        }

        .hero-background {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
            background: rgba(0, 0, 0, 0.2);
        }

        .hero-gradient {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(255, 107, 0, 0.15) 0%, rgba(255, 107, 0, 0.25) 100%);
        }

        .floating-shapes {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
        }

        .shape {
            position: absolute;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--primary), #e05d00);
            opacity: 0.1;
            animation: float 6s ease-in-out infinite;
        }

        .shape-1 {
            width: 150px;
            height: 150px;
            top: 10%;
            left: 10%;
            animation-delay: 0s;
        }

        .shape-2 {
            width: 100px;
            height: 100px;
            top: 70%;
            right: 15%;
            animation-delay: 2s;
        }

        .shape-3 {
            width: 80px;
            height: 80px;
            bottom: 20%;
            left: 20%;
            animation-delay: 4s;
        }

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

        .contact-hero .container {
            position: relative;
            z-index: 2;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 5%;
            text-align: center;
        }

        .breadcrumb {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            margin-bottom: 30px;
            font-size: 0.9rem;
        }

        .breadcrumb a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .breadcrumb a:hover {
            color: var(--primary);
        }

        .separator {
            color: rgba(255, 255, 255, 0.6);
        }

        .current {
            color: var(--primary);
            font-weight: 600;
        }

        .hero-title {
            font-size: clamp(2.5rem, 5vw, 4rem);
            font-weight: 800;
            line-height: 1.1;
            color: var(--light);
            margin-bottom: 25px;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
        }

        .hero-title .highlight {
            color: var(--primary);
            position: relative;
        }

        .hero-description {
            font-size: 1.2rem;
            line-height: 1.6;
            color: rgba(255, 255, 255, 0.9);
            max-width: 700px;
            margin: 0 auto 40px;
            text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
        }

        /* Main Contact Section */
        .contact-main {
            padding: 120px 5%;
            background: var(--light);
        }

        .contact-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: flex-start;
        }

        /* Contact Info */
        .contact-info {
            padding: 40px;
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        }

        .section-badge {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: linear-gradient(135deg, var(--primary), #e05d00);
            color: var(--light);
            padding: 8px 20px;
            border-radius: 25px;
            font-size: 0.9rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 25px;
        }

        .section-title {
            font-size: clamp(2rem, 4vw, 2.8rem);
            font-weight: 800;
            color: var(--dark);
            line-height: 1.2;
            margin-bottom: 20px;
        }

        .section-description {
            font-size: 1.1rem;
            color: var(--text);
            line-height: 1.6;
            margin-bottom: 40px;
        }

        .contact-details {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }

        .contact-item {
            display: flex;
            gap: 20px;
            align-items: flex-start;
        }

        .contact-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, var(--primary), #e05d00);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            box-shadow: 0 4px 15px rgba(255, 107, 0, 0.3);
        }

        .contact-icon i {
            color: var(--light);
            font-size: 1.2rem;
        }

        .contact-content h4 {
            font-size: 1.2rem;
            font-weight: 700;
            color: var(--dark);
            margin-bottom: 8px;
        }

        .contact-content p {
            color: var(--text);
            line-height: 1.5;
            margin-bottom: 5px;
        }

        .contact-content a {
            color: var(--primary);
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s ease;
        }

        .contact-content a:hover {
            color: #e05d00;
        }

        /* Social Links */
        .social-links {
            margin-top: 40px;
            padding-top: 30px;
            border-top: 1px solid rgba(0, 0, 0, 0.1);
        }

        .social-links h4 {
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--dark);
            margin-bottom: 20px;
        }

        .social-icons {
            display: flex;
            gap: 15px;
        }

        .social-icons a {
            display: flex;
            justify-content: center;
            align-items: center;
            width: 50px;
            height: 50px;
            background: var(--light);
            border-radius: 50%;
            color: var(--primary);
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        }

        .social-icons a:hover {
            background: var(--primary);
            color: var(--light);
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(255, 107, 0, 0.3);
        }

        /* Contact Form */
        .contact-form-wrapper {
            background: var(--light);
            padding: 50px;
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
            border: 1px solid #f0f0f0;
        }

        .form-header {
            text-align: center;
            margin-bottom: 40px;
        }

        .form-header h3 {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--dark);
            margin-bottom: 10px;
        }

        .form-header p {
            color: var(--text);
            font-size: 1rem;
        }

        .contact-form {
            display: flex;
            flex-direction: column;
            gap: 25px;
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }

        .form-group {
            display: flex;
            flex-direction: column;
        }

        .form-group.full-width {
            grid-column: 1 / -1;
        }

        .form-group label {
            font-weight: 600;
            color: var(--dark);
            margin-bottom: 8px;
            font-size: 0.95rem;
        }

        .form-group input,
        .form-group textarea,
        .form-group select {
            padding: 15px 20px;
            border: 2px solid #e9ecef;
            border-radius: 10px;
            font-size: 1rem;
            font-family: inherit;
            transition: all 0.3s ease;
            background: #f8f9fa;
        }

        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            outline: none;
            border-color: var(--primary);
            background: var(--light);
            box-shadow: 0 0 0 3px rgba(255, 107, 0, 0.1);
        }

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

        .contact-button {
            background: linear-gradient(135deg, var(--primary), #e05d00);
            color: var(--light);
            padding: 18px 40px;
            border: none;
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 10px 30px rgba(255, 107, 0, 0.4);
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            align-self: flex-start;
        }

        .contact-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(255, 107, 0, 0.5);
        }

        .contact-button i {
            transition: transform 0.3s ease;
        }

        .contact-button:hover i {
            transform: translateX(5px);
        }

        /* Map Section */
        .map-section {
            padding: 80px 5%;
            background: #f8f9fa;
        }

        .map-container {
            max-width: 1200px;
            margin: 0 auto;
            text-align: center;
        }

        .map-header {
            margin-bottom: 50px;
        }

        .map-header h3 {
            font-size: 2.2rem;
            font-weight: 800;
            color: var(--dark);
            margin-bottom: 15px;
        }

        .map-header p {
            font-size: 1.1rem;
            color: var(--text);
            max-width: 600px;
            margin: 0 auto;
        }

        .map-embed {
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
            height: 400px;
            background: #e9ecef;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text);
            font-size: 1.1rem;
            outline: 3px solid #FF6B00;
            outline-offset: -3px;
        }

        /* WhatsApp Float */
        .whatsapp-float {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 60px;
            height: 60px;
            background: #25D366;
            color: var(--light);
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 30px;
            box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
            z-index: 100;
            transition: all 0.3s ease;
            text-decoration: none;
        }

        .whatsapp-float:hover {
            transform: scale(1.1);
            box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5);
            color: var(--light);
        }

        /* Footer */
        .footer {
            background: linear-gradient(135deg, #fef3e6 0%, #ffffff 100%);
            padding: 80px 5% 30px;
            margin-top: 50px;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 40px;
            margin-bottom: 50px;
            max-width: 1200px;
            margin-left: auto;
            margin-right: auto;
            align-items: stretch;
        }

        .footer-card {
            background: rgba(255, 255, 255, 0.92);
            border-radius: 18px;
            padding: 28px;
            box-shadow: 0 12px 32px rgba(15, 23, 42, 0.08);
            border: 1px solid rgba(255, 107, 0, 0.12);
            position: relative;
            overflow: hidden;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            display: flex;
            flex-direction: column;
            gap: 18px;
            height: 100%;
        }

        .footer-card::after {
            content: '';
            position: absolute;
            inset: 0;
            pointer-events: none;
            border-radius: inherit;
            background: linear-gradient(140deg, rgba(255, 107, 0, 0.12) 0%, rgba(59, 130, 246, 0.08) 45%, rgba(255, 255, 255, 0) 100%);
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .footer-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 18px 42px rgba(15, 23, 42, 0.12);
        }

        .footer-card:hover::after {
            opacity: 1;
        }

        .footer-logo {
            font-size: 24px;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 20px;
            display: block;
            text-decoration: none;
        }

        .footer-about p {
            margin: 0;
            line-height: 1.6;
            color: var(--text);
        }

        .footer-card.footer-about .social-icons {
            margin-top: auto;
        }

        .footer-links h3,
        .footer-contact h3,
        .footer-apps h3 {
            font-size: 1.2rem;
            margin-bottom: 20px;
            color: var(--dark);
        }

        .footer-links-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 14px;
        }

        .footer-links a {
            display: inline-flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
            color: var(--dark);
            text-decoration: none;
            font-weight: 500;
            background: rgba(255, 255, 255, 0.7);
            padding: 12px 16px;
            border-radius: 12px;
            border: 1px solid transparent;
            transition: var(--transition);
            box-shadow: 0 4px 12px rgba(15, 23, 42, 0.05);
        }

        .footer-links a:hover {
            color: var(--primary);
            border-color: rgba(255, 107, 0, 0.3);
            box-shadow: 0 14px 28px rgba(255, 107, 0, 0.15);
        }

        .footer-contact-list {
            list-style: none;
            padding: 0;
            margin: 0;
            display: flex;
            flex-direction: column;
            gap: 16px;
            width: 100%;
        }

        .footer-contact-list li {
            display: flex;
            align-items: center;
            gap: 14px;
            color: var(--text);
            min-width: 0;
        }

        .footer-contact-list li div {
            min-width: 0;
            flex: 1;
        }

        .footer-contact-list li div a,
        .footer-contact-list li div span:not(.footer-contact-label) {
            word-break: break-word;
            overflow-wrap: break-word;
            display: block;
        }

        .footer-contact-icon {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: 12px;
            background: rgba(255, 107, 0, 0.12);
            color: var(--primary);
            font-size: 1rem;
            flex-shrink: 0;
        }

        .footer-contact-label {
            display: block;
            font-size: 0.75rem;
            text-transform: uppercase;
            letter-spacing: 0.08em;
            color: var(--primary);
            font-weight: 600;
            margin-bottom: 4px;
        }

        .footer-contact a {
            color: var(--dark);
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s ease;
        }

        .footer-contact a:hover {
            color: var(--primary);
        }

        .footer-app-text {
            color: var(--text);
            line-height: 1.6;
        }

        .footer-card.footer-apps .app-buttons {
            margin-top: auto;
        }

        .app-buttons {
            display: flex;
            flex-direction: column;
            gap: 15px;
            margin-top: 20px;
        }

        .app-button {
            display: flex;
            align-items: center;
            padding: 12px 20px;
            background: linear-gradient(135deg, #1f2937 0%, #374151 100%);
            color: var(--light);
            border-radius: 8px;
            text-decoration: none;
            font-weight: 600;
            font-size: 0.95rem;
            transition: all 0.3s ease;
            border: 2px solid transparent;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        }

        .app-button:hover {
            background: linear-gradient(135deg, var(--primary) 0%, #e05d00 100%);
            transform: translateY(-2px);
            box-shadow: 0 4px 15px rgba(255, 107, 0, 0.3);
            border-color: rgba(255, 255, 255, 0.2);
            color: var(--light);
        }

        .app-button i {
            margin-right: 10px;
            font-size: 1.2rem;
        }

        .social-icons {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }

        .social-icons a {
            display: flex;
            justify-content: center;
            align-items: center;
            width: 40px;
            height: 40px;
            background: var(--light);
            border-radius: 50%;
            color: var(--primary);
            transition: var(--transition);
            text-decoration: none;
        }

        .social-icons a:hover {
            background: var(--primary);
            color: var(--light);
            transform: translateY(-2px);
        }

        .footer-divider {
            width: 100%;
            max-width: 1200px;
            height: 1px;
            margin: 10px auto 30px;
            background: linear-gradient(90deg, rgba(255, 107, 0, 0) 0%, rgba(255, 107, 0, 0.35) 50%, rgba(255, 107, 0, 0) 100%);
        }

        .footer-bottom {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 15px;
            padding-top: 30px;
            border-top: none;
            max-width: 1200px;
            margin: 0 auto;
            width: 100%;
            color: var(--dark);
        }

        .footer-bottom p {
            margin: 0;
            font-size: 0.95rem;
        }

        .footer-bottom-links {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            flex-wrap: wrap;
        }

        .footer-bottom-links a {
            color: var(--text);
            text-decoration: none;
            font-size: 0.95rem;
            transition: color 0.3s ease;
        }

        .footer-bottom-links a:hover {
            color: var(--primary);
        }

        .footer-divider-dot {
            width: 4px;
            height: 4px;
            border-radius: 50%;
            background: rgba(15, 23, 42, 0.2);
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .nav-links {
                position: fixed;
                top: 0;
                left: -100%;
                width: 300px;
                height: 100vh;
                background: linear-gradient(135deg, var(--light) 0%, #f8f9fa 100%);
                flex-direction: column;
                justify-content: flex-start;
                align-items: stretch;
                transition: left 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
                box-shadow: 4px 0 20px rgba(0,0,0,0.15);
                padding: 170px 0 20px 0;
                z-index: 1000;
                overflow-y: auto;
                gap: 0;
            }
            
            .nav-links.active {
                left: 0;
            }
            
            .nav-links li {
                margin: 0;
                width: 100%;
                border-bottom: 1px solid rgba(0,0,0,0.05);
            }
            
            .nav-links li:last-child {
                border-bottom: none;
            }
            
            .nav-links a {
                color: var(--dark);
                font-size: 1.1rem;
                padding: 18px 25px;
                display: flex;
                align-items: center;
                width: 100%;
                transition: all 0.3s ease;
                border-left: 4px solid transparent;
            }
            
            .nav-links a:hover,
            .nav-links a:focus {
                background: rgba(255, 107, 0, 0.1);
                color: var(--primary);
                border-left-color: var(--primary);
                transform: translateX(5px);
            }
            
            .nav-links a:after {
                display: none;
            }

            .menu-toggle {
                display: block;
                z-index: 1002;
                padding: 8px;
                border-radius: 6px;
                transition: all 0.3s ease;
            }
            
            .menu-toggle:hover {
                background: rgba(255, 255, 255, 0.1);
            }
            
            .menu-toggle i {
                font-size: 24px;
                transition: transform 0.3s ease;
            }
            
            .menu-toggle.active i {
                transform: rotate(90deg);
            }

            .dropdown-menu {
                position: static;
                opacity: 1;
                visibility: visible;
                transform: none;
                box-shadow: none;
                background: rgba(255, 107, 0, 0.05);
                border-radius: 0;
                padding: 0;
                margin-left: 20px;
            }

            .contact-container {
                grid-template-columns: 1fr;
                gap: 50px;
            }

            .contact-info,
            .contact-form-wrapper {
                padding: 30px;
            }

            .form-row {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .contact-hero {
                padding-top: 100px;
                margin-top: 80px;
                min-height: 50vh;
                background-attachment: scroll; /* Disable parallax on mobile for better performance */
            }

            .contact-hero .container {
                margin-top: 20px;
            }

            .hero-content {
                margin-top: 20px;
            }

            .hero-title {
                margin-top: 20px;
                font-size: 2.5rem;
            }

            .logo-image {
                height: 60px;
                width: 60px;
            }
            
            header.scrolled .logo-image {
                height: 50px;
                width: 50px;
            }

            .contact-main,
            .map-section {
                padding: 60px 5%;
            }

            .whatsapp-float {
                width: 50px;
                height: 50px;
                font-size: 24px;
                bottom: 20px;
                right: 20px;
            }

            .footer {
                padding: 60px 3% 24px;
            }

            .footer-content {
                grid-template-columns: 1fr;
                gap: 26px;
                text-align: center;
            }

            .footer-card {
                padding: 24px;
            }

            .footer-links h3,
            .footer-contact h3,
            .footer-apps h3 {
                font-size: 1.1rem;
                margin-bottom: 16px;
            }

            .footer-links-grid {
                grid-template-columns: 1fr;
            }

            .footer-links a {
                justify-content: center;
            }

            .footer-contact-list {
                gap: 16px;
            }

            .footer-contact-list li {
                flex-direction: column;
                align-items: center;
                text-align: center;
            }

            .footer-contact-list li div {
                text-align: center;
            }

            .app-buttons {
                align-items: center;
            }

            .footer-divider {
                margin-bottom: 24px;
            }

            .footer-bottom {
                flex-direction: column;
                align-items: center;
                text-align: center;
                gap: 10px;
            }

            .footer-bottom-links {
                justify-content: center;
            }
        }

        @media (max-width: 480px) {
            .contact-info,
            .contact-form-wrapper {
                padding: 20px;
            }

            .contact-main,
            .map-section {
                padding: 40px 3%;
            }

            .contact-hero {
                padding-top: 120px;
                min-height: 40vh;
                background-attachment: scroll;
            }

            .contact-hero .container {
                margin-top: 30px;
            }

            .hero-content {
                margin-top: 30px;
            }

            .hero-title {
                margin-top: 25px;
                font-size: 2rem;
                line-height: 1.2;
            }

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

            .contact-button {
                width: 100%;
                justify-content: center;
            }

            .footer {
                padding: 48px 3% 18px;
            }

            .footer-content {
                gap: 22px;
            }

            .footer-card {
                padding: 22px;
            }

            .footer-links a {
                padding: 11px 14px;
            }

            .app-button {
                width: 100%;
                max-width: 220px;
                justify-content: center;
            }

            .social-icons {
                justify-content: center;
                margin-top: 16px;
            }

            .social-icons a {
                width: 36px;
                height: 36px;
            }
        }
    