
       

        /* Hero Section */
       

        .hero-section {
            position: relative;
            padding: 150px 0 40px;
            color: #ffffff;
            text-align: center;
            background-image: 
                linear-gradient(135deg, rgba(63, 43, 150, 0.85), rgba(45, 27, 105, 0.864)),
                url('../../assets/images/contact/contact_banner.jpg');
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            min-height: 400px;
            width: 100%;
        }

      

        .hero-content {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 1.5rem;
        }

        .hero-content h1 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }

        .hero-subtitle {
            font-size: 1.125rem;
            opacity: 0.9;
            margin-bottom: 3rem;
        }

        /* Main Contact Container */
        .contact-container {
            display: flex;
            gap: 2rem;
            max-width: 1400px;
            margin: 0 auto;
            padding: 2rem 1.5rem;
        }

        /* Forms Section - 70% */
        .forms-section {
            flex: 0 0 70%;
        }

        .form-nav {
            display: flex;
            margin-bottom: 1.5rem;
            background: var(--white);
            border: 1px solid var(--neutral-200);
        }

        .form-nav-item {
            flex: 1;
            padding: 0.75rem 1.5rem;
            border: none;
            background: transparent;
            color: var(--neutral-700);
            font-weight: 500;
            cursor: pointer;
            transition: background-color 0.3s;
        }

        .form-nav-item.active {
            background: var(--primary);
            color: var(--white);
        }

        /* Form Styles */
        .contact-form {
            display: none;
            background: var(--white);
            padding: 1.5rem;
            border: 1px solid var(--neutral-200);
        }

        .contact-form.active {
            display: block;
        }

        .form-header {
            margin-bottom: 2rem;
        }

        .form-header h2 {
            font-size: 1.5rem;
            margin-bottom: 0.5rem;
        }

        .form-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.5rem;
            margin-bottom: 1.5rem;
        }

        .form-group {
            position: relative;
            margin-bottom: 1.5rem;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 0.75rem;
            border: 1px solid var(--neutral-200);
            font-size: 0.875rem;
            transition: border-color 0.3s;
        }

        .form-group label {
            position: absolute;
            left: 0.75rem;
            top: 0.75rem;
            font-size: 0.875rem;
            color: var(--neutral-600);
            transition: all 0.3s;
            background: var(--white);
            padding: 0 0.25rem;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            border-color: var(--primary);
            outline: none;
        }

        .form-group input:focus ~ label,
        .form-group textarea:focus ~ label,
        .form-group input:not(:placeholder-shown) ~ label,
        .form-group textarea:not(:placeholder-shown) ~ label {
            top: -0.5rem;
            font-size: 0.75rem;
            color: var(--primary);
        }

        /* Map Section - 30% */
        .map-section {
            flex: 0 0 30%;
        }

        .map-card {
            background: var(--white);
            border: 1px solid var(--neutral-200);
            height: 100%;
        }

        .map-header {
            padding: 1rem;
            border-bottom: 1px solid var(--neutral-200);
        }

        .map-container {
            height: 300px;
        }

        .map-container iframe {
            width: 100%;
            height: 100%;
            border: 0;
        }

        .map-footer {
            padding: 1rem;
            border-top: 1px solid var(--neutral-200);
        }

        .address-info {
            display: flex;
            align-items: start;
            gap: 0.75rem;
            font-size: 0.875rem;
        }

      

        /* Social Section */
        .social-section {
            padding: 3rem 0;
            border-top: 1px solid var(--neutral-200);
            text-align: center;
        }

        .social-content {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 1.5rem;
        }

        .section-title {
            font-size: 1.5rem;
            color: var(--neutral-900);
            margin-bottom: 0.5rem;
        }

        .social-grid {
            display: flex;
            justify-content: center;
            gap: 1.5rem;
            margin-top: 2rem;
        }

        .social-card {
            padding: 1rem 2rem;
            background: var(--white);
            border: 1px solid var(--neutral-200);
            color: var(--neutral-900);
            text-decoration: none;
            transition: all 0.2s;
        }

        .social-card:hover {
            border-color: var(--primary);
            color: var(--primary);
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .contact-container {
                flex-direction: column;
            }

            .forms-section,
            .map-section {
                flex: 0 0 100%;
            }
        }

        @media (max-width: 768px) {
            .form-grid {
                grid-template-columns: 1fr;
            }

            .social-grid {
                flex-direction: column;
                align-items: center;
            }
        }
    

        
.contact-info-section {
    padding: 3rem 0;
    background: var(--white);
    border-bottom: 1px solid var(--neutral-200);
}

.contact-info-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.info-box {
    padding: 2rem;
    background: var(--white);
    border: 1px solid var(--neutral-200);
    text-align: center;
}

.info-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 1rem;
    padding: 12px;
    background: var(--primary);
    color: white;
}

.info-box h3 {
    margin-bottom: 0.5rem;
    color: var(--neutral-900);
    font-size: 1.125rem;
}

.info-box p, 
.info-box a {
    color: var(--navy-900);
    font-size: 0.875rem;
    line-height: 1.5;
    text-decoration: none;
}

.info-box a:hover {
    color: var(--primary);
}

.info-box {
    transition: all 0.3s ease;
}

.info-box:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .contact-info-container {
        grid-template-columns: 1fr;
    }
}
