    :root {
            --primary-color: #3a36e0;
            --secondary-color: #6c63ff;
            --accent-color: #ff6b6b;
            --dark-color: #2d2b5c;
            --light-bg: #f8f9ff;
            --text-dark: #2c3e50;
            --text-light: #6c757d;
            --border-color: #e0e7ff;
            --card-shadow: 0 10px 30px rgba(58, 54, 224, 0.08);
            --hover-shadow: 0 15px 40px rgba(58, 54, 224, 0.12);
        }
        
        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            color: var(--text-dark);
            line-height: 1.7;
            background-color: var(--light-bg);
            overflow-x: hidden;
        }
        
        .contact-container {
            max-width: 1400px;
            margin: 0 auto;
            background-color: white;
            box-shadow: var(--card-shadow);
            border-radius: 20px;
            overflow: hidden;
            position: relative;
            border: 1px solid var(--border-color);
        }
        
        /* Animated header section */
        .header-section {
            /* background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%); */
            padding: 10px;
            text-align: center;
            color: white;
            position: relative;
            overflow: hidden;
        }
        
        .header-section::before {
            content: "";
            position: absolute;
            width: 400px;
            height: 400px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.08);
            top: -200px;
            right: -100px;
            animation: float 20s infinite ease-in-out;
        }
        
        .header-section::after {
            content: "";
            position: absolute;
            width: 300px;
            height: 300px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.05);
            bottom: -150px;
            left: -80px;
            animation: float 25s infinite ease-in-out reverse;
        }
        
        .header-section h1 {
            font-weight: 500;
            font-size: 39px;
            /* margin-bottom: 1.5rem; */
            position: relative;
            z-index: 2;
            letter-spacing: -0.5px;
            color: #55497a;
        }
        
        .header-section p {
            font-size: 17px;
            opacity: 1;
            max-width: 800px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
            font-weight: 300;
            color: #000000;
        }
        
        /* Content section */
        .content-section {
            padding: 4rem 3rem;
        }
        
        @media (max-width: 768px) {
            .content-section {
                padding: 2.5rem 1.5rem;
            }
            .header-section h1 {
                font-size: 2.5rem;
            }
            .header-section {
                padding: 4rem 1.5rem;
            }
        }
        
        /* Contact cards styling */
        .contact-card {
            padding: 2.5rem;
            border-radius: 16px;
            background-color: white;
            border: 1px solid var(--border-color);
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
            height: 100%;
        }
        
        .contact-card::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 5px;
            height: 100%;
            /* background: linear-gradient(to bottom, var(--primary-color), var(--secondary-color)); */
            transition: width 0.3s ease;
        }
        
        .contact-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--hover-shadow);
        }
        
        .contact-card:hover::before {
            width: 8px;
        }
        
        .contact-icon {
            width: 70px;
            height: 70px;
            border-radius: 16px;
            background: linear-gradient(135deg, rgba(58, 54, 224, 0.1) 0%, rgba(108, 99, 255, 0.1) 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            font-size: 1.8rem;
            color: var(--primary-color);
        }
        
        .contact-card h3 {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--dark-color);
            margin-bottom: 1.2rem;
        }
        
        .contact-card p {
            color: var(--text-dark);
            margin-bottom: 1.2rem;
            font-size: 1.05rem;
        }
        
        .contact-info1 {
            margin-top: 1.5rem;
        }
        
        .contact-info1 div {
            margin-bottom: 1rem;
            display: flex;
            align-items: flex-start;
        }
        .animate-on-scroll {
    opacity: 1;
        }
        .contact-info1 i {
            color: var(--primary-color);
            margin-right: 12px;
            margin-top: 3px;
            width: 20px;
        }
        
        /* Contact form styling */
        .contact-form-container {
            background: linear-gradient(to right, #f8f9ff, #f0f4ff);
            border-radius: 16px;
            padding: 3rem;
            border: 1px solid var(--border-color);
        }
        
        .contact-form-container h2 {
            color: var(--dark-color);
            margin-bottom: 2rem;
            font-weight: 700;
        }
        
        .form-control, .form-select {
            border: 1px solid var(--border-color);
            border-radius: 12px;
            padding: 0.8rem 1rem;
            font-size: 1rem;
            transition: all 0.3s;
        }
        
        .form-control:focus, .form-select:focus {
            border-color: var(--primary-color);
            box-shadow: 0 0 0 0.25rem rgba(58, 54, 224, 0.15);
        }
        
        .form-label {
            font-weight: 600;
            color: var(--dark-color);
            margin-bottom: 0.5rem;
        }
        
        .submit-btn {
            background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
            color: white;
            border: none;
            padding: 1rem 2.5rem;
            border-radius: 12px;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s;
            box-shadow: 0 10px 20px rgba(58, 54, 224, 0.2);
            width: 100%;
            margin-top: 1rem;
        }
        
        .submit-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 30px rgba(58, 54, 224, 0.3);
        }
        
        /* Map section */
        .map-container {
            border-radius: 16px;
            overflow: hidden;
            border: 1px solid var(--border-color);
            height: 400px;
            position: relative;
        }
        
        .map-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: rgba(45, 43, 92, 0.9);
            color: white;
            padding: 1.5rem;
            border-radius: 0 0 16px 16px;
        }
        
        /* Business hours */
        .hours-card {
            background: white;
            border-radius: 16px;
            padding: 2rem;
            border: 1px solid var(--border-color);
            transition: all 0.3s;
        }
        
        .hours-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--hover-shadow);
        }
        
        .hours-card h3 {
            color: var(--dark-color);
            margin-bottom: 1.5rem;
            font-weight: 700;
        }
        
        .hours-row {
            display: flex;
            justify-content: space-between;
            padding: 0.8rem 0;
            border-bottom: 1px solid var(--border-color);
        }
        
        .hours-row:last-child {
            border-bottom: none;
        }
        
        .day {
            font-weight: 600;
            color: var(--text-dark);
        }
        
        .time {
            color: var(--primary-color);
            font-weight: 600;
        }
        
        /* Animation classes */
        @keyframes float {
            0%, 100% { transform: translateY(0) rotate(0deg); }
            50% { transform: translateY(-20px) rotate(5deg); }
        }
        
        .fade-in-up {
            opacity: 1;
            transform: translateY(30px);
            transition: opacity 0.6s, transform 0.6s;
        }
        
        .fade-in-up.visible {
            opacity: 1;
            transform: translateY(0);
        }
        
        /* Footer */
        .footer-section {
            background-color: var(--dark-color);
            color: #cbd5e1;
            padding: 3rem;
            text-align: center;
            border-radius: 0 0 20px 20px;
        }
        
        .footer-section p {
            margin-bottom: 0.8rem;
        }
        
        .social-icons {
            display: flex;
            justify-content: center;
            gap: 1.5rem;
            margin-top: 1.5rem;
        }
        
        .social-icon {
            width: 45px;
            height: 45px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.2rem;
            transition: all 0.3s;
        }
        
        .social-icon:hover {
            background: var(--primary-color);
            transform: translateY(-3px);
        }
        
        .last-updated {
            font-size: 0.9rem;
            color: #94a3b8;
            margin-top: 2rem;
        }
        
        /* Quick contact buttons */
        .quick-contact {
            position: fixed;
            right: 30px;
            bottom: 30px;
            display: flex;
            flex-direction: column;
            gap: 15px;
            z-index: 1000;
        }
        
        .quick-contact-btn {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: var(--primary-color);
            color: white;
            border: none;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            box-shadow: 0 5px 20px rgba(58, 54, 224, 0.4);
            transition: all 0.3s;
            cursor: pointer;
            position: relative;
        }
        
        .quick-contact-btn:hover {
            background: var(--secondary-color);
            transform: scale(1.1);
        }
        
        .quick-contact-btn.whatsapp {
            background: #25D366;
        }
        
        .quick-contact-btn.phone {
            background: var(--primary-color);
        }
        
        .quick-contact-btn.email {
            background: var(--accent-color);
        }
        
        @media (max-width: 992px) {
            .quick-contact {
                right: 20px;
                bottom: 20px;
            }
            
            .quick-contact-btn {
                width: 50px;
                height: 50px;
                font-size: 1.2rem;
            }
        }