/* === Contact Page specific styles === */

/* Hero Section */
.contact-hero {
    background-color: var(--deep-navy);
    color: var(--ivory);
    margin-top: 65px;
    /* Start below navbar */
    padding: 6rem 4rem;
    /* Increased padding */
    position: relative;
    overflow: hidden;
    min-height: 60vh;
    /* Increased screen height */
    display: flex;
    align-items: center;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(201, 168, 76, 0.15) 0%, rgba(13, 27, 62, 0) 70%);
    border-radius: 50%;
    z-index: 0;
}

.contact-hero-image {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    z-index: 1;
}

.contact-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
}

.contact-hero-container {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

.contact-hero-content {
    max-width: 550px;
}

.hero-eyebrow {
    color: var(--sovereign-gold);
    font-size: 1rem;
    font-weight: 600;
    display: block;
    margin-bottom: 0.5rem;
}

.contact-hero h1 {
    color: var(--ivory);
    font-size: 3.2rem;
    line-height: 1.2;
    margin: 0 0 1rem 0;
    font-weight: 600;
}

.contact-hero p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.contact-hero-social {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

/* Main Content Section */
.contact-main-section {
    padding: 6rem 4rem;
    background-color: var(--ivory);
}

.contact-container {
    max-width: 1400px;
    margin: 0 auto;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    align-items: stretch;
}

/* Left Form Column */
.contact-form-col {
    background: #fff;
    padding: 3rem;
    /* Reduced from 4rem */
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
}

.contact-form-col h2 {
    font-size: 2rem;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--deep-navy);
}

.form-desc {
    color: #666;
    margin-bottom: 1.5rem;
    /* Reduced from 2.2rem */
    font-size: 1rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    /* Reduced from 1.5rem */
}

.contact-form-col .form-row {
    display: flex;
    gap: 1.2rem;
}

.contact-form-col .form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    flex: 1;
}

.contact-form-col .form-group label {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--deep-navy);
}

.contact-form-col .form-group input {
    width: 100%;
    height: 40px;
    padding: 0 1rem;
    border: 1px solid rgba(13, 27, 62, 0.15);
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    color: var(--charcoal);
    background-color: #fafafa;
    transition: all 0.3s ease;
}

.contact-form-col .form-group textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid rgba(13, 27, 62, 0.15);
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    color: var(--charcoal);
    background-color: #fafafa;
    transition: all 0.3s ease;
}

.contact-form-col .form-group input:focus,
.contact-form-col .form-group textarea:focus {
    outline: none;
    border-color: var(--sovereign-gold);
    background-color: #fff;
    box-shadow: 0 0 0 4px rgba(201, 168, 76, 0.1);
}

.contact-form-col .form-group textarea {
    resize: vertical;
}


/* Submit Button */
.contact-form-col .submit-btn {
    margin-top: 1rem;
    width: fit-content;
    padding: 0 2rem;
    height: 52px;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    border: none;
    cursor: pointer;
    font-family: inherit;
}

.contact-form-col .submit-btn i {
    width: 18px;
    height: 18px;
}

/* Right Info Column */
.contact-info-col {
    background-color: var(--deep-navy);
    color: var(--ivory);
    padding: 3rem;
    /* Reduced from 4rem */
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.contact-info-col::after {
    content: '';
    position: absolute;
    bottom: -10%;
    right: -10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(201, 168, 76, 0.15) 0%, rgba(13, 27, 62, 0) 70%);
    border-radius: 50%;
    z-index: 0;
}

.contact-info-col>* {
    position: relative;
    z-index: 1;
}

.contact-info-col h3 {
    color: var(--sovereign-gold);
    font-size: 2rem;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.info-desc {
    margin-bottom: 2rem;
    /* Reduced from 3rem */
    font-size: 1rem;
}

.info-items {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    /* Reduced from 2rem */
    margin-bottom: 2rem;
    /* Reduced from 3rem */
}

.info-item {
    display: flex;
    gap: 1rem;
    /* Reduced from 1.25rem */
    align-items: flex-start;
}

.info-icon {
    width: 48px;
    height: 48px;
    background-color: rgba(201, 168, 76, 0.1);
    border: 1px solid rgba(201, 168, 76, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--sovereign-gold);
    flex-shrink: 0;
}

.info-icon i {
    width: 22px;
    height: 22px;
}

.info-text h4 {
    color: var(--ivory);
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.info-text p {
    line-height: 1.6;
    font-size: 0.95rem;
}

.info-socials h4 {
    font-family: 'Inter', sans-serif;
    color: var(--ivory);
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 1rem;
}

.info-socials .social-links {
    display: flex;
    gap: 1rem;
}

/* Map Section */
.map-section {
    width: 100%;
    line-height: 0;
    border-top: 1px solid rgba(13, 27, 62, 0.05);
}

.map-section iframe {
    filter: grayscale(10%) contrast(1.1) opacity(0.9);
    transition: filter 0.3s ease;
}

.map-section iframe:hover {
    filter: grayscale(0%) contrast(1) opacity(1);
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-form-col {
        padding: 3rem;
    }

    .contact-info-col {
        padding: 3rem;
    }
}

@media (max-width: 768px) {
    .contact-hero {
        margin-top: 60px;
        padding: 4rem 2rem;
        flex-direction: column;
        justify-content: center;
    }

    .contact-hero-image {
        position: relative;
        width: 100%;
        height: 300px;
        order: 2;
        /* Move image below content */
        margin-top: 2rem;
    }

    .contact-hero-container {
        order: 1;
    }

    .contact-hero-content {
        margin: 0 auto;
        text-align: center;
    }

    .contact-hero-social {
        justify-content: center;
    }

    .contact-hero h1 {
        font-size: 2.2rem !important;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-info-col {
        padding: 3rem 2rem;
    }

    .contact-form-col {
        padding: 3rem 2rem;
    }

    .form-row {
        flex-direction: column;
    }

    .contact-faq-section {
        padding: 4rem 2rem;
    }

    .faq-header h2 {
        font-size: 1.8rem !important;
    }

    .faq-question {
        padding: 1.25rem 1.5rem;
        font-size: 1rem;
    }

    .faq-item.active .faq-answer {
        padding: 0 1.5rem 1.25rem 1.5rem;
    }
}

/* FAQ Section */
.contact-faq-section {
    background-color: var(--ivory);
    padding: 6rem 4rem;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-header {
    text-align: center;
    margin-bottom: 4rem;
}

.faq-eyebrow {
    color: var(--sovereign-gold);
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.faq-eyebrow i {
    width: 18px;
    height: 18px;
}

.faq-header h2 {
    font-size: 2.5rem;
    color: var(--deep-navy);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.faq-header h2 .highlight {
    color: var(--sovereign-gold);
}

.faq-header p {
    font-size: 1rem;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 1.5rem 2rem;
    font-size: 1rem;
    font-weight: 400;
    color: var(--deep-navy);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-family: inherit;
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: var(--sovereign-gold);
}

.faq-icon {
    width: 20px;
    height: 20px;
    color: var(--sovereign-gold);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-icon.minus {
    display: none;
}

.faq-item.active .faq-question {
    color: var(--sovereign-gold);
}

.faq-item.active .faq-icon.plus {
    display: none;
}

.faq-item.active .faq-icon.minus {
    display: block;
}

.faq-answer {
    max-height: 0;
    padding: 0 2rem;
    background-color: #ffffff;
    transition: all 0.3s ease;
    opacity: 0;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 2rem 1.5rem 2rem;
    opacity: 1;
}

.faq-answer p {
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 600px) {
    .contact-hero {
        padding: 4rem 1rem;
    }

    .contact-hero h1 {
        font-size: 2.2rem !important;
    }

    .contact-hero-image {
        height: 250px;
    }

    .contact-main-section {
        padding: 4rem 1rem;
    }

    .contact-form-col,
    .contact-info-col {
        padding: 2rem 1.5rem;
    }

    .contact-form-col h2,
    .contact-info-col h3 {
        font-size: 1.8rem !important;
    }

    .contact-form-col h2,
    .contact-form-col .form-desc,
    .contact-info-col h3,
    .contact-info-col .info-desc {
        text-align: center;
    }

    .contact-faq-section {
        padding: 4rem 1rem;
    }

    .faq-header h2 {
        font-size: 1.8rem !important;
    }

    .faq-question {
        padding: 1.25rem 1rem;
    }

    .faq-item.active .faq-answer {
        padding: 0 1rem 1.25rem 1rem;
    }
}