/* Contact Us Page Specific Styles */

:root {
    --gold-primary: #D4AF37;
    --gold-secondary: #CFB53B;
    --gold-light: #F4E8BE;
    --gold-dark: #A08623;
    --dark-bg: #1A1A1A;
    --dark-text: #333333;
    --light-text: #FFFFFF;
    --off-white: #F9F9F9;
    --light-gray: #F2F2F2;
    --medium-gray: #E0E0E0;
    --transition: all 0.3s ease;
}

/* Hero Section */
.contact-hero {
    background: linear-gradient(rgb(70 17 17), rgba(0, 0, 0, 0.7)), url(img/contact-hero.png);
    background-size: cover;
    background-position: center;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--light-text);
    position: relative;
}

.contact-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 70px;
    background: linear-gradient(to top, white, transparent);
}

.hero-content {
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 3.2rem;
    margin-bottom: 20px;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-content p {
    font-size: 1.3rem;
    font-weight: 300;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

/* General Section Styling */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
}

.section-title h2 {
    font-size: 2.3rem;
    color: var(--dark-text);
    margin-bottom: 15px;
}

.gold-divider {
    width: 80px;
    height: 3px;
    background-color: var(--gold-primary);
    margin: 0 auto 15px;
}

.gold-divider.left-align {
    margin-left: 0;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Global Offices Section */
.global-offices {
    padding: 80px 0;
    background-color: white;
}

.offices-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.office-card1 {
    background-color: var(--light-gray);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    animation-delay: calc(var(--data-delay) * 0.1s);
}

.office-card1:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}
.nav-item.active {
    color: var(--gold-primary);
    position: relative;
}
.nav-item.active::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--gold-primary);
}

.flag-header {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    background-color: var(--dark-bg);
    color: white;
}

.flag-icon {
    width: 30px;
    height: 20px;
    object-fit: cover;
    margin-right: 15px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.flag-header h3 {
    font-size: 1.2rem;
    margin: 0;
}

.badge {
    background-color: var(--gold-primary);
    color: var(--dark-bg);
    font-size: 0.7rem;
    padding: 3px 8px;
    border-radius: 12px;
    margin-left: 10px;
    font-weight: 600;
}

.office-details {
    padding: 20px;
}

.office-info {
    margin-bottom: 20px;
}

.office-info p {
    margin-bottom: 10px;
    color: var(--dark-text);
    font-size: 0.95rem;
}

.office-info i {
    margin-right: 10px;
    color: var(--gold-primary);
    width: 16px;
    text-align: center;
}

.office-actions {
    display: flex;
    justify-content: space-between;
    border-top: 1px solid var(--medium-gray);
    padding-top: 15px;
}

.action-link {
    display: inline-block;
    color: var(--gold-dark);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
}

.action-link:hover {
    color: var(--gold-primary);
    transform: translateX(3px);
}

/* Map Section */
.map-section {
    padding: 80px 0;
    background-color: var(--off-white);
}

.map-container {
    display: flex;
}
/* Contact Form Section */
.contact-form-section {
    padding: 80px 0;
    background-color: white;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.contact-info {
    padding: 30px;
    background-color: #601f1f;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.contact-info h2 {
    font-size: 2rem;
    color: white;
    margin-bottom: 10px;
}

.contact-intro {
    margin-bottom: 30px;
    line-height: 1.6;
    color: #ffffff;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 40px;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 20px;
}

.icon-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--gold-light);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    margin-right: 15px;
}

.icon-circle i {
    color: var(--gold-dark);
    font-size: 1.5rem; /* Increased size */
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

icon-circle .fa-phone-alt,
.icon-circle .fa-envelope,
.icon-circle .fa-headset {
    padding: 12px; /* Add padding to ensure icon is fully visible */
}

/* Method details adjustment */
.method-details {
    display: flex;
    flex-direction: column;
}

.contact-method {
    display: flex;
    align-items: flex-start; /* Changed from center to better align with multiline text */
    margin-bottom: 25px;
}

/* Responsive adjustments */
@media (max-width: 576px) {
    .contact-method {
        flex-direction: row; /* Keep horizontal layout on mobile */
        text-align: left; /* Align text to left instead of center */
        align-items: center;
    }
    
    .method-details {
        text-align: left; /* Align text to left instead of center */
    }

    .icon-circle {
        width: 50px;
        height: 50px;
        min-width: 50px; /* Ensure the circle maintains its size */
    }
}

.contact-method:hover .icon-circle {
    background-color: var(--gold-primary);
}

.contact-method:hover .icon-circle i {
    color: var(--dark-bg);
}

.method-details h3 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color:white;
}

.method-details p {
    font-size: 0.9rem;
    color: #ffffff;
    margin-bottom: 5px;
}

.method-link {
    color: var(--gold-dark);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.method-link:hover {
    color: var(--gold-primary);
}

.social-connect h3 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: white;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--light-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-text);
    transition: var(--transition);
    text-decoration: none;
}

.social-icon:hover {
    background-color: var(--gold-primary);
    color: var(--dark-bg);
    transform: translateY(-3px);
}

/* Form Styles */
.form-container {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    padding: 40px;
}

.form-header {
    text-align: center;
    margin-bottom: 30px;
}

.form-header h2 {
    font-size: 2rem;
    color: var(--dark-text);
    margin-bottom: 10px;
}

.form-group {
    margin-bottom: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

label {
    display: block;
    font-size: 0.95rem;
    color: var(--dark-text);
    margin-bottom: 8px;
    font-weight: 500;
}

input, select, textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--medium-gray);
    border-radius: 5px;
    font-size: 1rem;
    transition: var(--transition);
}

input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: var(--gold-primary);
    box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.2);
}

.consent-checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
}

.consent-checkbox input {
    width: auto;
    margin: 0;
}

.consent-checkbox label {
    margin: 0;
    font-size: 0.9rem;
    color: #666;
}

.submit-button {
    background-color: var(--gold-primary);
    color: var(--dark-bg);
    border: none;
    padding: 12px 25px;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
}

.submit-button:hover {
    background-color: var(--gold-dark);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.submit-button i {
    font-size: 0.9rem;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background-color: var(--light-gray);
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background-color: white;
    border-radius: 8px;
    margin-bottom: 15px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.faq-question {
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.faq-question h3 {
    font-size: 1.1rem;
    color: var(--dark-text);
    margin: 0;
    font-weight: 500;
}

.toggle-icon {
    background-color: var(--gold-light);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.toggle-icon i {
    color: var(--gold-dark);
    font-size: 0.8rem;
    transition: var(--transition);
}

.faq-item.active .toggle-icon {
    background-color: var(--gold-primary);
    transform: rotate(45deg);
}

.faq-item.active .toggle-icon i {
    color: var(--dark-bg);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 20px 20px;
    max-height: 200px;
}

.faq-answer p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Map Info Styles */
.map-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
    margin-top: 40px;
}

.map-wrapper {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.map-info {
    padding: 30px;
}

.info-card {
    background-color: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.info-card h3 {
    color: var(--dark-text);
    font-size: 1.3rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.info-card h3 i {
    color: var(--gold-primary);
}

.info-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.hq-details p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.hq-details p i {
    color: var(--gold-primary);
    width: 16px;
    text-align: center;
}

.directions-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: var(--gold-primary);
    color: var(--dark-bg);
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: 600;
    margin-top: 10px;
    transition: var(--transition);
}

.directions-button:hover {
    background-color: var(--gold-dark);
    color: white;
    transform: translateY(-3px);
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .map-container {
        grid-template-columns: 1fr;
    }
    
    .map-wrapper {
        height: 400px;
    }
    
    .info-card {
        height: auto;
    }
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .form-container {
        padding: 30px 20px;
    }
    
    .offices-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }
    
    .hero-content h1 {
        font-size: 2.8rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }
    
    .section-title h2 {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .offices-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-content h1 {
        font-size: 2.4rem;
    }
    
    .contact-method {
        flex-direction: column;
        text-align: center;
    }
    
    .method-details {
        text-align: center;
    }
    
    .social-icons {
        justify-content: center;
    }
}

/* Animation Delays */
.animate__animated[data-delay="100"] {
    animation-delay: 0.1s;
}

.animate__animated[data-delay="200"] {
    animation-delay: 0.2s;
}

.animate__animated[data-delay="300"] {
    animation-delay: 0.3s;
}

.animate__animated[data-delay="400"] {
    animation-delay: 0.4s;
}

.animate__animated[data-delay="500"] {
    animation-delay: 0.5s;
}