/* =====================================
   CONTACT PAGE STYLES
   ===================================== */

/* Body margin adjustment for fixed header */
body {
    margin-top: 80px;
}

/* =====================================
   CONTACT HERO SECTION
   ===================================== */
.contact-hero {
    position: relative;
    height: 60vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    /* Center content */
    overflow: hidden;
    padding: 0;
}

.contact-hero .hero-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.contact-hero .hero-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    transform: scale(1.05);
    transition: transform 0.8s ease;
}

/* Subtle zoom effect on load/hover could be added here if desired */

.contact-hero .hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 100%);
    backdrop-filter: blur(3px);
}

.contact-hero .container {
    position: relative;
    z-index: 2;
    width: 100%;
    text-align: center;
}

.contact-hero .hero-content.modern {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.contact-hero .hero-title {
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1.1;
}

.contact-hero .title-line {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    display: block;
}

.contact-hero .title-line.accent {
    color: #d3a748;
    /* Gold accent */
    background: linear-gradient(to right, #d3a748, #f0c366);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.contact-hero .hero-desc {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto;
    font-weight: 300;
}

/* =====================================
   CONTACT INFO SECTION (Cards)
   ===================================== */
.contact-info {
    padding: 80px 0;
    background: #fdfdfd;
    margin-top: -60px;
    /* Overlap with hero */
    position: relative;
    z-index: 3;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.contact-method {
    background: #fff;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.03);
    position: relative;
    overflow: hidden;
}

.contact-method:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

/* Top accent line */
.contact-method::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #d3a748, #f0c366);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.contact-method:hover::after {
    transform: scaleX(1);
}

.method-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: rgba(211, 167, 72, 0.1);
    /* Light gold bg */
    color: #d3a748;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.contact-method:hover .method-icon {
    background: #d3a748;
    color: #fff;
    transform: scale(1.1) rotate(5deg);
}

.method-content h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: #333;
}

.method-content p {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
    margin: 0;
}

.method-content a {
    color: #333;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s;
    border-bottom: 1px solid transparent;
}

.method-content a:hover {
    color: #d3a748;
    border-bottom-color: #d3a748;
}

/* =====================================
   MAP SECTION
   ===================================== */
.map-section {
    padding: 100px 0;
    background: #fff;
}

.section-header {
    margin-bottom: 60px;
    text-align: center;
}

.section-label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #d3a748;
    font-weight: 700;
    margin-bottom: 10px;
    display: block;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #222;
    margin-bottom: 15px;
}

.map-container {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    height: 500px;
}

.map-wrapper {
    width: 100%;
    height: 100%;
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
    filter: grayscale(100%) contrast(1.1);
    /* Modern monochromatic map look */
    transition: filter 0.5s ease;
}

.map-container:hover .map-wrapper iframe {
    filter: grayscale(0%) contrast(1);
}

/* Floating Info Card on Map */
.map-info {
    position: absolute;
    top: 40px;
    left: 40px;
    width: 340px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.5);
    z-index: 10;
}

.map-info h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0 0 10px 0;
    color: #222;
}

.map-info p {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 24px;
}

.map-actions {
    display: flex;
    gap: 10px;
}

.btn-primary,
.btn-outline {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
    cursor: pointer;
}

.btn-primary {
    background: #d3a748;
    color: #fff;
    border: 1px solid #d3a748;
}

.btn-primary:hover {
    background: #c0963d;
    border-color: #c0963d;
}

.btn-outline {
    background: transparent;
    color: #444;
    border: 1px solid #ddd;
}

.btn-outline:hover {
    background: #f5f5f5;
    color: #222;
    border-color: #ccc;
}

/* =====================================
   FAQ SECTION
   ===================================== */
.faq-section {
    padding: 80px 0 120px 0;
    background: #f9f9f9;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: #fff;
    margin-bottom: 16px;
    border-radius: 12px;
    border: 1px solid #eee;
    overflow: hidden;
    transition: all 0.2s ease;
}

.faq-item.active {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border-color: transparent;
}

.faq-question {
    padding: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background: #fff;
}

.faq-question h3 {
    margin: 0;
    font-size: 1.05rem;
    font-weight: 600;
    color: #333;
}

.faq-question i {
    color: #ccc;
    transition: transform 0.3s ease, color 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
    color: #d3a748;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 24px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: #fff;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    /* Adjust if content is very long */
    padding-bottom: 24px;
    opacity: 1;
}

.faq-answer p {
    margin: 0;
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* =====================================
   RESPONSIVE
   ===================================== */
@media (max-width: 768px) {
    .contact-hero {
        height: 50vh;
    }

    .contact-info {
        margin-top: 0;
        padding-top: 60px;
    }

    .map-container {
        height: auto;
        display: flex;
        flex-direction: column;
    }

    .map-wrapper {
        height: 350px;
    }

    .map-info {
        position: relative;
        top: 0;
        left: 0;
        width: 100%;
        box-shadow: none;
        border: none;
        background: #f9f9f9;
        margin-bottom: 0;
        border-radius: 0 0 24px 24px;
    }
}