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

        body {
            font-family: 'Poppins', sans-serif;
            line-height: 1.6;
            color: #333;
            overflow-x: hidden;
        }

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

        /* Navigation */
        .navbar {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(15px);
            z-index: 1000;
            padding: 15px 0;
            border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        }

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

        .logo {
            font-size: 24px;
            font-weight: 700;
            color: #1a202c;
            text-decoration: none;
        }

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

        .nav-links a {
            text-decoration: none;
            color: #4a5568;
            font-weight: 500;
            transition: color 0.3s ease;
        }

        .nav-links a:hover, .nav-links a.active {
            color: #2b6cb0;
        }

        /* Hero Section */
        .hero {
            padding: 150px 0 100px 0;
            background: linear-gradient(135deg, rgba(15, 23, 42, 0.9), rgba(30, 41, 59, 0.8)),
                        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1920 1080"><rect fill="%23f7fafc" width="1920" height="1080"/><g fill="%23e2e8f0"><polygon points="0,1080 1920,800 1920,1080"/></g><g fill="%23cbd5e0"><polygon points="0,900 1920,600 1920,900"/></g><g fill="%23a0aec0"><polygon points="0,700 1920,400 1920,700"/></g></svg>');
            background-size: cover;
            background-position: center;
            text-align: center;
            color: white;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><pattern id="dots" width="40" height="40" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="2" fill="%233b82f6" opacity="0.1"/></pattern></defs><rect width="1000" height="1000" fill="url(%23dots)"/></svg>');
        }

        .hero-content {
            position: relative;
            z-index: 2;
        }

        .hero h1 {
            font-size: 48px;
            font-weight: 700;
            margin-bottom: 20px;
            text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
        }

        .hero p {
            font-size: 20px;
            color: rgba(255, 255, 255, 0.9);
            max-width: 600px;
            margin: 0 auto;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
        }

        /* Main Contact Section */
        .contact-main {
            padding: 100px 0;
            background: white;
            position: relative;
        }

        .contact-main::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at 80% 20%, rgba(59, 130, 246, 0.03), transparent 50%),
                        radial-gradient(circle at 20% 80%, rgba(139, 92, 246, 0.03), transparent 50%);
        }

        .contact-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            position: relative;
            z-index: 2;
        }

        /* Contact Form */
        .contact-form {
            background: white;
            padding: 60px;
            border-radius: 24px;
            box-shadow: 0 25px 80px rgba(0, 0, 0, 0.08);
            border: 1px solid rgba(59, 130, 246, 0.08);
            position: relative;
            overflow: hidden;
            transform: translateY(0);
            transition: all 0.4s ease;
        }

        .contact-form::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 2px;
            background: linear-gradient(90deg, transparent, #3b82f6, transparent);
            animation: shimmer 3s infinite;
        }

        @keyframes shimmer {
            0% { left: -100%; }
            100% { left: 100%; }
        }

        .contact-form:hover {
            transform: translateY(-8px);
            box-shadow: 0 35px 100px rgba(59, 130, 246, 0.15);
        }

        .contact-form h2 {
            font-size: 36px;
            font-weight: 800;
            margin-bottom: 12px;
            color: #1a202c;
            position: relative;
            background: linear-gradient(135deg, #1a202c 0%, #3b82f6 100%);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            animation: fadeInUp 0.8s ease;
        }

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

        .contact-form h2::after {
            content: '';
            width: 80px;
            height: 5px;
            background: linear-gradient(135deg, #3b82f6, #8b5cf6);
            position: absolute;
            bottom: -12px;
            left: 0;
            border-radius: 3px;
            animation: expandWidth 1s ease 0.5s both;
        }

        @keyframes expandWidth {
            from { width: 0; }
            to { width: 80px; }
        }

        .contact-form .subtitle {
            color: #64748b;
            font-size: 17px;
            margin-bottom: 45px;
            line-height: 1.7;
            animation: fadeInUp 0.8s ease 0.2s both;
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 25px;
            margin-bottom: 30px;
        }

        .form-group {
            margin-bottom: 30px;
            position: relative;
            animation: fadeInUp 0.6s ease both;
        }

        .form-group:nth-child(1) { animation-delay: 0.3s; }
        .form-group:nth-child(2) { animation-delay: 0.4s; }
        .form-group:nth-child(3) { animation-delay: 0.5s; }
        .form-group:nth-child(4) { animation-delay: 0.6s; }
        .form-group:nth-child(5) { animation-delay: 0.7s; }

        .form-group label {
            position: absolute;
            top: 18px;
            left: 20px;
            font-weight: 600;
            color: #64748b;
            font-size: 16px;
            pointer-events: none;
            transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            background: white;
            padding: 0 8px;
            border-radius: 4px;
        }

        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 20px 20px 20px 20px;
            border: 2px solid #e2e8f0;
            border-radius: 16px;
            font-size: 16px;
            background: #fbfcfd;
            color: #1e293b;
            transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            font-family: 'Poppins', sans-serif;
            position: relative;
        }

        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus,
        .form-group input:not(:placeholder-shown),
        .form-group textarea:not(:placeholder-shown),
        .form-group select:not([value=""]) {
            outline: none;
            border-color: #3b82f6;
            background: white;
            box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1);
        }

        .form-group input:focus + label,
        .form-group textarea:focus + label,
        .form-group input:not(:placeholder-shown) + label,
        .form-group textarea:not(:placeholder-shown) + label,
        .form-group.has-value input + label,
        .form-group.has-value textarea + label {
            top: -8px;
            left: 16px;
            font-size: 12px;
            color: #3b82f6;
            font-weight: 700;
            background: white;
            padding: 2px 6px;
            border-radius: 4px;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
        }

        .form-group input::placeholder,
        .form-group textarea::placeholder {
            color: transparent;
        }

        .form-group textarea {
            resize: vertical;
            height: 140px;
            line-height: 1.6;
        }

        .form-group select {
            cursor: pointer;
        }

        .form-group select option {
            padding: 10px;
            background: white;
            color: #1e293b;
        }

        /* Fixed positioning for select labels - no floating animation */
        .form-group select + label {
            top: -8px !important;
            left: 16px !important;
            font-size: 12px !important;
            color: #3b82f6 !important;
            font-weight: 700 !important;
            background: white !important;
            padding: 2px 6px !important;
            border-radius: 4px !important;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05) !important;
            transform: none !important;
            transition: none !important;
        }

        .btn {
            padding: 18px 36px;
            border: none;
            border-radius: 16px;
            cursor: pointer;
            font-size: 17px;
            font-weight: 700;
            transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            text-decoration: none;
            display: inline-block;
            background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 50%, #7c3aed 100%);
            color: white;
            box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
            width: 100%;
            font-family: 'Poppins', sans-serif;
            position: relative;
            overflow: hidden;
            animation: fadeInUp 0.6s ease 0.8s both;
        }

        .btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: left 0.6s;
        }

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

        .btn:hover {
            transform: translateY(-4px);
            box-shadow: 0 20px 50px rgba(59, 130, 246, 0.4);
            background: linear-gradient(135deg, #1d4ed8 0%, #3b82f6 50%, #8b5cf6 100%);
        }

        .btn:active {
            transform: translateY(-2px);
        }

        .btn:disabled {
            opacity: 0.7;
            cursor: not-allowed;
            transform: none;
            background: #94a3b8;
            animation: btnPulse 1.1s infinite;
        }

        .btn:disabled::before {
            display: none;
        }

        @keyframes btnPulse {
            0% { box-shadow: 0 0 0 0 rgba(59,130,246,0.25); }
            50% { box-shadow: 0 0 0 10px rgba(59,130,246,0.10); }
            100% { box-shadow: 0 0 0 0 rgba(59,130,246,0.25); }
        }

        /* Contact Info */
        .contact-info {
            background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
            padding: 60px;
            border-radius: 24px;
            color: white;
            position: relative;
            overflow: hidden;
            transform: translateY(0);
            transition: all 0.4s ease;
        }

        .contact-info::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 20% 20%, rgba(59, 130, 246, 0.15), transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(139, 92, 246, 0.15), transparent 50%),
                radial-gradient(circle at 40% 60%, rgba(16, 185, 129, 0.1), transparent 50%);
            animation: backgroundPulse 8s ease-in-out infinite;
        }

        @keyframes backgroundPulse {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.8; }
        }

        .contact-info::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1.5" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
        }

        .contact-info:hover {
            transform: translateY(-8px);
            box-shadow: 0 35px 100px rgba(0, 0, 0, 0.3);
        }

        .contact-info-content {
            position: relative;
            z-index: 3;
        }

        .contact-info h2 {
            font-size: 36px;
            font-weight: 800;
            margin-bottom: 35px;
            background: linear-gradient(135deg, #ffffff 0%, #3b82f6 100%);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            animation: fadeInUp 0.8s ease;
        }

        .contact-details {
            margin-bottom: 45px;
        }

        .contact-item-box {
            display: flex;
            align-items: flex-start;
            margin-bottom: 25px;
            padding: 25px;
            background: rgba(255, 255, 255, 0.08);
            border-radius: 20px;
            border: 1px solid rgba(255, 255, 255, 0.12);
            backdrop-filter: blur(20px);
            transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            position: relative;
            overflow: hidden;
            animation: slideInLeft 0.6s ease both;
        }

        .contact-item-box:nth-child(1) { animation-delay: 0.2s; }
        .contact-item-box:nth-child(2) { animation-delay: 0.4s; }
        .contact-item-box:nth-child(3) { animation-delay: 0.6s; }
        .contact-item-box:nth-child(4) { animation-delay: 0.8s; }

        @keyframes slideInLeft {
            from {
                opacity: 0;
                transform: translateX(-50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .contact-item-box::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
            transition: left 0.6s;
        }

        .contact-item-box:hover::before {
            left: 100%;
        }

        .contact-item-box:hover {
            transform: translateX(15px) translateY(-5px);
            background: rgba(255, 255, 255, 0.12);
            border-color: rgba(59, 130, 246, 0.3);
            box-shadow: 0 15px 40px rgba(59, 130, 246, 0.2);
        }

        .contact-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            margin-right: 25px;
            flex-shrink: 0;
            position: relative;
            box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
            animation: iconFloat 3s ease-in-out infinite;
        }

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

        .contact-icon::before {
            content: '';
            position: absolute;
            top: -2px;
            left: -2px;
            right: -2px;
            bottom: -2px;
            background: linear-gradient(135deg, #3b82f6, #8b5cf6);
            border-radius: 18px;
            z-index: -1;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .contact-item-box:hover .contact-icon::before {
            opacity: 1;
            animation: pulse 1.5s infinite;
        }

        @keyframes pulse {
            0% { transform: scale(1); opacity: 1; }
            100% { transform: scale(1.2); opacity: 0; }
        }

        .contact-item-content h4 {
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 8px;
            color: white;
        }

        .contact-item-content p {
            color: rgba(255, 255, 255, 0.85);
            line-height: 1.6;
            font-size: 16px;
            margin: 2px 0;
        }

        .social-links {
            margin-top: 40px;
        }

        .social-links h4 {
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 20px;
        }

        .social-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 15px;
        }

        .social-link {
            display: flex;
            align-items: center;
            padding: 12px 15px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 10px;
            text-decoration: none;
            color: rgba(255, 255, 255, 0.9);
            transition: all 0.3s ease;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .social-link:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: translateY(-2px);
        }

        .social-link span {
            margin-right: 10px;
            font-size: 16px;
        }

        /* Map Section */
        .map-section {
            padding: 100px 0;
            background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
            position: relative;
        }

        .map-section::before {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23e2e8f0" stroke-width="0.5" opacity="0.3"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
        }

        .section-title {
            text-align: center;
            margin-bottom: 60px;
            position: relative;
            z-index: 2;
        }

        .section-title h2 {
            font-size: 36px;
            font-weight: 700;
            margin-bottom: 20px;
            color: #1a202c;
            position: relative;
        }

        .section-title h2::after {
            content: '';
            width: 80px;
            height: 4px;
            background: linear-gradient(135deg, #3b82f6, #8b5cf6);
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            border-radius: 2px;
        }

        .section-title p {
            font-size: 18px;
            color: #4a5568;
            max-width: 600px;
            margin: 0 auto;
        }

        .map-container {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
            position: relative;
            z-index: 2;
            height: 500px;
            position: relative;
        }

        .map-placeholder {
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, #3b82f6, #1e40af);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 24px;
            font-weight: 600;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
            position: relative;
        }

        .map-placeholder::before {
            font-size: 48px;
            margin-bottom: 20px;
            display: block;
        }

        .map-info {
            position: absolute;
            bottom: 20px;
            left: 20px;
            background: rgba(255, 255, 255, 0.95);
            padding: 20px;
            border-radius: 15px;
            color: #1a202c;
            backdrop-filter: blur(10px);
            max-width: 300px;
        }

        .map-info h4 {
            font-weight: 600;
            margin-bottom: 8px;
            font-size: 16px;
        }

        .map-info p {
            font-size: 14px;
            color: #4a5568;
            line-height: 1.4;
        }

        /* FAQ Section */
        .faq-section {
            padding: 120px 0;
            background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
            position: relative;
        }

        .faq-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 20% 20%, rgba(59, 130, 246, 0.05), transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(139, 92, 246, 0.05), transparent 50%);
        }

        .faq-container {
            max-width: 900px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }

        .faq-item {
            background: white;
            border: 1px solid rgba(226, 232, 240, 0.8);
            border-radius: 20px;
            margin-bottom: 25px;
            transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            overflow: hidden;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
            animation: fadeInUp 0.6s ease both;
            position: relative;
        }

        .faq-item:nth-child(1) { animation-delay: 0.1s; }
        .faq-item:nth-child(2) { animation-delay: 0.2s; }
        .faq-item:nth-child(3) { animation-delay: 0.3s; }
        .faq-item:nth-child(4) { animation-delay: 0.4s; }
        .faq-item:nth-child(5) { animation-delay: 0.5s; }

        .faq-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 2px;
            background: linear-gradient(90deg, transparent, #3b82f6, transparent);
            transition: left 0.6s;
        }

        .faq-item:hover::before {
            left: 100%;
        }

        .faq-item:hover {
            border-color: rgba(59, 130, 246, 0.3);
            box-shadow: 0 20px 60px rgba(59, 130, 246, 0.15);
            transform: translateY(-8px);
        }

        .faq-item.active {
            border-color: rgba(59, 130, 246, 0.4);
            box-shadow: 0 25px 70px rgba(59, 130, 246, 0.2);
            transform: translateY(-5px);
        }

        .faq-question {
            padding: 30px 35px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: linear-gradient(135deg, #fbfcfd 0%, #f8fafc 100%);
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }

        .faq-question::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.05), transparent);
            transition: left 0.6s;
        }

        .faq-question:hover::before {
            left: 100%;
        }

        .faq-question:hover {
            background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
        }

        .faq-item.active .faq-question {
            background: linear-gradient(135deg, rgba(59, 130, 246, 0.05) 0%, rgba(139, 92, 246, 0.05) 100%);
        }

        .faq-question h4 {
            font-size: 20px;
            font-weight: 700;
            color: #1e293b;
            flex: 1;
            position: relative;
            z-index: 2;
            line-height: 1.4;
        }

        .faq-icon {
            font-size: 24px;
            color: #3b82f6;
            transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            position: relative;
            z-index: 2;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 12px;
            background: rgba(59, 130, 246, 0.1);
        }

        .faq-item.active .faq-icon {
            transform: rotate(180deg);
            background: linear-gradient(135deg, #3b82f6, #8b5cf6);
            color: white;
            box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
        }

        .faq-answer {
            padding: 0 35px;
            max-height: 0;
            overflow: hidden;
            transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            background: white;
        }

        .faq-item.active .faq-answer {
            padding: 0 35px 35px 35px;
            max-height: 300px;
        }

        .faq-answer p {
            color: #64748b;
            line-height: 1.8;
            font-size: 17px;
            margin-top: 15px;
            animation: fadeIn 0.6s ease 0.2s both;
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        /* Scroll reveal animations */
        .reveal-element {
            opacity: 0;
            transform: translateY(60px);
            transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            will-change: opacity, transform;
        }

        .reveal-element.revealed {
            opacity: 1;
            transform: translateY(0);
        }

        .reveal-element.slide-left {
            transform: translateX(-60px);
        }

        .reveal-element.slide-left.revealed {
            transform: translateX(0);
        }

        .reveal-element.slide-right {
            transform: translateX(60px);
        }

        .reveal-element.slide-right.revealed {
            transform: translateX(0);
        }

        .reveal-element.scale-up {
            transform: scale(0.8);
        }

        .reveal-element.scale-up.revealed {
            transform: scale(1);
        }

        /* Staggered animations */
        .stagger-1 { animation-delay: 0.1s; }
        .stagger-2 { animation-delay: 0.2s; }
        .stagger-3 { animation-delay: 0.3s; }
        .stagger-4 { animation-delay: 0.4s; }

        /* Global animations */
        @keyframes gentleFloat {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-15px); }
        }

        @keyframes rotateGlow {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        @keyframes breathe {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.05); }
        }

        /* Enhanced loading states */
        .loading-shimmer {
            background: linear-gradient(90deg, #f1f5f9 25%, #e2e8f0 50%, #f1f5f9 75%);
            background-size: 200% 100%;
            animation: shimmer 2s infinite;
        }

        /* Smooth page transitions */
        body {
            animation: pageLoad 0.8s ease-out;
        }

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

        /* Interactive elements */
        .interactive-hover {
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .interactive-hover:hover {
            transform: translateY(-3px);
        }

        /* Focus improvements */
        *:focus {
            outline: none;
        }

        *:focus-visible {
            outline: 2px solid #3b82f6;
            outline-offset: 2px;
            border-radius: 4px;
        }

        /* Responsive Design */
        @media (max-width: 992px) {
            .nav-links {
                display: none;
            }

            .contact-content {
                grid-template-columns: 1fr;
                gap: 60px;
            }

            .contact-form {
                order: 2;
            }

            .contact-info {
                order: 1;
            }

            .hero h1 {
                font-size: 36px;
            }

            .section-title h2 {
                font-size: 30px;
            }
        }

        @media (max-width: 768px) {
            .hero {
                padding: 120px 0 60px 0;
            }

            .hero h1 {
                font-size: 30px;
            }

            .contact-main,
            .map-section,
            .faq-section {
                padding: 60px 0;
            }

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

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

            .contact-form h2,
            .contact-info h2 {
                font-size: 26px;
            }

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

            .map-container {
                height: 400px;
            }

            .map-info {
                position: static;
                margin-top: 20px;
                max-width: none;
            }
        }

        @media (max-width: 480px) {
            .container {
                padding: 0 15px;
            }

            .hero {
                padding: 100px 0 50px 0;
            }

            .hero h1 {
                font-size: 28px;
                line-height: 1.2;
            }

            .hero p {
                font-size: 16px;
                line-height: 1.5;
            }

            .contact-form,
            .contact-info {
                padding: 30px 20px;
                border-radius: 16px;
            }

            .contact-form h2,
            .contact-info h2 {
                font-size: 24px;
                margin-bottom: 20px;
            }

            .form-group input,
            .form-group textarea,
            .form-group select {
                padding: 16px 16px;
                font-size: 16px;
                border-radius: 12px;
            }

            .form-group label {
                font-size: 12px;
            }

            .contact-item-box {
                padding: 20px 15px;
                border-radius: 15px;
                margin-bottom: 20px;
            }

            .contact-icon {
                width: 50px;
                height: 50px;
                margin-right: 15px;
                font-size: 20px;
            }

            .contact-item-content h4 {
                font-size: 16px;
            }

            .contact-item-content p {
                font-size: 14px;
            }

            .faq-question {
                padding: 20px 18px;
            }

            .faq-question h4 {
                font-size: 16px;
                line-height: 1.3;
            }

            .faq-icon {
                width: 32px;
                height: 32px;
                font-size: 18px;
            }

            .faq-answer {
                padding: 0 18px;
            }

            .faq-item.active .faq-answer {
                padding: 0 18px 20px 18px;
            }

            .faq-answer p {
                font-size: 15px;
                line-height: 1.6;
            }

            .btn {
                padding: 16px 24px;
                font-size: 16px;
                border-radius: 12px;
            }

            /* Improved touch targets for mobile */
            .faq-question,
            .contact-item-box,
            .btn {
                min-height: 48px;
                display: flex;
                align-items: center;
            }

            /* Better spacing on mobile */
            .contact-main,
            .faq-section {
                padding: 50px 0;
            }

            .section-title h2 {
                font-size: 24px;
                margin-bottom: 15px;
            }

            .section-title p {
                font-size: 16px;
            }
        }

        /* Extra small screens */
        @media (max-width: 360px) {
            .contact-form,
            .contact-info {
                padding: 25px 15px;
            }

            .form-row {
                gap: 15px;
            }

            .contact-item-box {
                padding: 15px 12px;
            }

            .faq-question {
                padding: 15px 12px;
            }

            .faq-answer {
                padding: 0 12px;
            }

            .faq-item.active .faq-answer {
                padding: 0 12px 15px 12px;
            }
        }