/* ===== Contact Hero ===== */
.contact-hero {
    background: url("../assets/images/hero/hero2.jpg") center/cover no-repeat;
    color: #FFD700; /* 🌟 Golden Text Color */
    padding: 250px 0 500px;
    text-align: center;
    margin-top: 0;
}

.contact-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-weight: 700;
    color: #FFD700; /* heading golden */
}

.contact-hero p {
    font-size: 1.3rem;
    opacity: 0.9;
    color: #FFE87C; /* slightly lighter golden for paragraph */
}


/* 📱 Mobile View Fix */
@media (max-width: 768px) {
    .contact-hero {
        padding: 100px 20px 60px;
        margin-top: 0 !important;
    }

    .contact-hero h1 {
        font-size: 2.2rem;
    }

    .contact-hero p {
        font-size: 1rem;
    }
}

/* Contact Section */
.contact-section {
    background: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info h2 {
    font-size: 2.2rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.contact-info > p {
    color: var(--gray);
    font-size: 1.1rem;
    margin-bottom: 40px;
    line-height: 1.6;
}

/* Contact Methods */
.contact-methods {
    margin-bottom: 40px;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
}

.method-icon {
    width: 60px;
    height: 60px;
    background: var(--light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.contact-method:hover .method-icon {
    background: var(--primary);
}

.method-icon i {
    font-size: 1.3rem;
    color: var(--primary);
    transition: all 0.3s ease;
}

.contact-method:hover .method-icon i {
    color: var(--white);
}

.method-details h4 {
    color: var(--primary);
    margin-bottom: 8px;
    font-size: 1.2rem;
}

.method-details p {
    color: var(--gray);
    margin-bottom: 5px;
    line-height: 1.5;
}

/* Social Links */
.social-links h4 {
    color: var(--primary);
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: var(--light);
    color: var(--primary);
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
}

/* Contact Form */
.contact-form {
    background: var(--light);
    padding: 40px;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.contact-form h2 {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 30px;
    text-align: center;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--dark);
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--border);
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--white);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(26, 58, 143, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Map Section */
.map-section {
    background: var(--light);
    padding: 80px 0;
}

.map-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 40px;
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .contact-grid {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .contact-hero {
        padding: 150px 0 80px;
    }
    
    .contact-hero h1 {
        font-size: 2.5rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .contact-form {
        padding: 30px;
    }
    
    .map-section {
        padding: 60px 0;
    }
    
    .map-section h2 {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .contact-method {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .method-icon {
        align-self: center;
    }
    
    .social-icons {
        justify-content: center;
    }
    
    .contact-form {
        padding: 25px 20px;
    }
}