/* ===== EPOKA GLOBAL - CONTACT PAGE STYLESHEET ===== */
/* Depends on css/style.css for: CSS variables, navbar, footer, CTA,
   .section-title, .section-subtitle, .btn-primary-honey, .hero-trust-bar */


/* ============================================================
   REVEAL ANIMATION START
   (Same pattern used on about.css and index.html inline styles)
   ============================================================ */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal-on-scroll.revealed {
    opacity: 1;
    transform: none;
}

.reveal-on-scroll:nth-child(2) { transition-delay: 0.1s; }
.reveal-on-scroll:nth-child(3) { transition-delay: 0.2s; }
.reveal-on-scroll:nth-child(4) { transition-delay: 0.3s; }
/* ============================================================
   REVEAL ANIMATION END
   ============================================================ */


/* ============================================================
   CONTACT HERO / PAGE BANNER SECTION START
   (Mirrors about-hero-section exactly — classes renamed to contact-*)
   ============================================================ */
.contact-hero-section {
    position: relative;
    min-height: 460px;
    overflow: hidden;
    background: #1a1a1a;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Full-bleed background image */
.contact-hero-section .hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    opacity: 0.7;
    z-index: 0;
}

/* Dark gradient overlay */
.contact-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(0, 0, 0, 0.60) 0%,
        rgba(0, 0, 0, 0.35) 55%,
        rgba(0, 0, 0, 0.10) 100%
    );
    z-index: 1;
}

.contact-hero-container {
    position: relative;
    z-index: 3;
    padding-top: 70px;
    padding-bottom: 80px;
}

.contact-hero-content {
    color: #fff;
    max-width: 700px;
}

.contact-hero-content h1 {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 16px;
    text-shadow: 0 2px 14px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
}

.contact-hero-content h1 span {
    color: var(--primary);
}

.contact-hero-content p {
    font-family: var(--font-subheading);
    font-size: 19px;
    opacity: 0.82;
    margin-bottom: 22px;
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.4);
}

/* Breadcrumb */
.contact-breadcrumb {
    background: transparent;
    padding: 0;
}

.contact-breadcrumb .breadcrumb-item a {
    color: var(--primary);
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
}

.contact-breadcrumb .breadcrumb-item.active {
    color: rgba(255, 255, 255, 0.75);
    font-family: var(--font-body);
    font-size: 14px;
}

.contact-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.45);
}

/* Responsive — contact hero */
@media (max-width: 991px) {
    .contact-hero-section { min-height: 380px; }
    .contact-hero-content h1 { font-size: clamp(1.9rem, 5vw, 2.8rem); }
    .contact-hero-content p { font-size: 16px; }
}

@media (max-width: 575px) {
    .contact-hero-section { min-height: 320px; }
    .contact-hero-container { padding-top: 50px; padding-bottom: 70px; }
    .contact-hero-content h1 { font-size: 2rem; letter-spacing: 0.5px; }
    .contact-hero-content p { font-size: 14px; margin-bottom: 18px; }
}
/* ============================================================
   CONTACT HERO / PAGE BANNER SECTION END
   ============================================================ */


/* ============================================================
   CONTACT INFO CARDS SECTION START
   ============================================================ */
.contact-info-section {
    padding: 70px 0 60px;
    background: #FFF9F4;
    position: relative;
}

/* Decorative bee vector — top-left (same as about.css .why-bee-vector) */
.contact-bee-vector {
    position: absolute;
    top: 0;
    left: 0;
    width: auto;
    height: 200px;
    object-fit: cover;
    z-index: 2;
    pointer-events: none;
}

.contact-info-heading {
    margin-bottom: 48px;
}

/* Three info cards */
.contact-info-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px 30px 36px;
    text-align: center;
    box-shadow: 0 4px 24px rgba(200, 140, 0, 0.10);
    border-top: 3.5px solid var(--border);
    border-left: 3.5px solid var(--border);

    height: 100%;
    transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.contact-info-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 36px rgba(200, 140, 0, 0.18);
}

/* Highlighted (centre) card gets darker background */
.contact-info-card--highlight {
    background: var(--secondary);
    border-color: var(--secondary);
}

.contact-info-card--highlight .contact-card-title {
    color: #fff;
}

.contact-info-card--highlight .contact-card-sub {
    color: rgba(255, 255, 255, 0.70);
}

.contact-info-card--highlight .contact-card-link {
    color: var(--primary);
}

.contact-info-card--highlight .contact-hex-icon {
    background: var(--primary);
}

/* Hex icon — same hexagonal shape as .why-hex-icon in about.css */
.contact-card-icon-wrap {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.contact-hex-icon {
    width: 66px;
    height: 66px;
    background: #533B00;
    clip-path: polygon(50% 0%, 93% 25%, 93% 75%, 50% 100%, 7% 75%, 7% 25%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 26px;
}

.contact-card-title {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 6px;
}

.contact-card-sub {
    font-family: var(--font-subheading);
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 14px;
}

.contact-card-link {
    font-family: var(--font-subheading);
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
    transition: color 0.2s;
    display: inline-block;
    line-height: 1.5;
}

.contact-card-link:hover {
    color: var(--primary);
}

/* Responsive — info cards */
@media (max-width: 991px) {
    .contact-bee-vector { top: -14%; left: -12%; width: 32%; }
}

@media (max-width: 575px) {
    .contact-bee-vector { display: none; }
    .contact-info-section { padding: 50px 0 40px; }
    .contact-info-card { padding: 30px 20px; }
}
/* ============================================================
   CONTACT INFO CARDS SECTION END
   ============================================================ */


   
/* ============================================================
   CONTACT FORM + MAP SECTION START
   ============================================================ */
.contact-form-section {
    padding: 70px 0;
    background: var(--bg-light);
    /* background-color: white; */
}

/* Form wrapper card */
.contact-form-wrap {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 44px 40px;
    box-shadow: 0 4px 28px rgba(200, 140, 0, 0.10);
    border-bottom: 3.5px solid var(--border);
    border-right: 3.5px solid var(--border);

    height: 100%;
}

.contact-form-heading {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.contact-form-sub {
    font-family: var(--font-subheading);
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 28px;
}

/* Field wrapper — for label + input + error message */
.contact-field-wrap {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 4px;
}

/* Labels */
.contact-label {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 700;
    color: var(--text-mid);
}

.contact-label .req {
    color: #C0392B;
    margin-left: 2px;
}

/* Inputs, selects, textareas */
.contact-input {
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--text-dark);
    background: #FFFDF8;
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    padding: 11px 16px;
    outline: none;
    width: 100%;
    transition: border-color 0.22s ease, box-shadow 0.22s ease;
}

.contact-input::placeholder {
    color: #bfac88;
    font-weight: 400;
}

.contact-input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.15);
    background: #fff;
}

/* Select arrow */
.contact-select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%238c7a5a' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 38px;
}

/* Textarea */
.contact-textarea {
    resize: vertical;
    min-height: 130px;
}

/* Error messages (shown via JS .show class) */
.contact-field-error {
    font-family: var(--font-body);
    font-size: 12px;
    color: #C0392B;
    display: none;
}

.contact-field-error.show {
    display: block;
}

/* Input error state */
.contact-input.input-error {
    border-color: #C0392B;
    box-shadow: 0 0 0 3px rgba(192, 57, 43, 0.10);
}

/* Submit button — inherits .btn-primary-honey from style.css, adds width */
.contact-submit-btn {
    width: 100%;
    justify-content: center;
    font-size: 16px;
    padding: 13px 28px;
}

/* Success message */
.contact-success-msg {
    display: none;
    margin-top: 18px;
    padding: 14px 18px;
    background: #EAF8EE;
    border: 1.5px solid #27AE60;
    border-radius: var(--radius);
    font-family: var(--font-body);
    font-size: 15px;
    color: #1E7B3F;
    font-weight: 600;
}

.contact-success-msg.show {
    display: flex;
    align-items: center;
}

/* ===== MAP WRAPPER START ===== */
.contact-map-wrap {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 44px 40px;
    box-shadow: 0 4px 28px rgba(200, 140, 0, 0.10);
       border-bottom: 3.5px solid var(--border);
    border-left: 3.5px solid var(--border);
    height: 100%;
    display: flex;
    flex-direction: column;
}

/* iFrame container — takes remaining height */
.contact-map-frame {
    flex: 1;
    min-height: 320px;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1.5px solid var(--border);
    margin-bottom: 16px;
}

.contact-map-frame iframe {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 320px;
}

/* Quick info strip below map */
.contact-map-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 14px 28px;
}

.contact-map-strip-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-subheading);
    font-size: 14px;
    font-weight: 600;
    color: var(--text-mid);
}

.contact-map-strip-item i {
    color: var(--primary);
    font-size: 17px;
}
/* ===== MAP WRAPPER END ===== */

/* Responsive — form + map */
@media (max-width: 991px) {
    .contact-form-wrap,
    .contact-map-wrap {
        padding: 32px 28px;
    }
}

@media (max-width: 575px) {
    .contact-form-section { padding: 50px 0; }

    .contact-form-wrap,
    .contact-map-wrap {
        padding: 24px 18px;
    }

    .contact-form-heading { font-size: 22px; }
    .contact-map-frame { min-height: 260px; }
    .contact-map-frame iframe { min-height: 260px; }
}
/* ============================================================
   CONTACT FORM + MAP SECTION END
   ============================================================ */


/* ============================================================
   FAQ SECTION START
   ============================================================ */
.contact-faq-section {
    padding: 70px 0;
    background: #FFF9F4;
    position: relative;
}

/* Bee vector mirrored — top right (same pattern as about-story-bee-vector) */
.contact-faq-bee-vector {
    position: absolute;
    top: 0;
    right: 0;
    width: auto;
    height: 200px;
    object-fit: contain;
    z-index: 2;
    pointer-events: none;
    transform: scaleX(-1); /* mirror to right side */
}

.contact-faq-heading {
    margin-bottom: 48px;
}

/* Accordion overrides — Bootstrap accordion restyled to match brand */
.contact-faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.contact-faq-item {
    border: 1.5px solid var(--border) !important;
    border-radius: var(--radius) !important;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(200, 140, 0, 0.07);
}

/* FAQ button */
.contact-faq-btn {
    font-family: var(--font-heading);
    font-size: 17px;
    font-weight: 600;
    color: var(--text-dark) !important;
    background: var(--white) !important;
    padding: 18px 22px;
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: none !important;
}

.contact-faq-btn:not(.collapsed) {
    background: #FFF9F0 !important;
    color: var(--primary-dark) !important;
}

/* Remove Bootstrap's default arrow — replaced with icon */
.contact-faq-btn::after {
    content: '\F282'; /* Bootstrap Icons chevron-down */
    font-family: 'bootstrap-icons';
    font-size: 16px;
    font-weight: 400;
    color: var(--primary);
    flex-shrink: 0;
    margin-left: auto;
    transition: transform 0.28s ease;
    background-image: none !important; /* remove BS default */
    width: auto;
    height: auto;
}

.contact-faq-btn:not(.collapsed)::after {
    transform: rotate(180deg);
}

/* Q icon */
.faq-q-icon {
    flex-shrink: 0;
    color: var(--primary);
    font-size: 20px;
    line-height: 1;
}

/* Answer body */
.contact-faq-body {
    font-family: var(--font-subheading);
    font-size: 15px;
    color: var(--text-mid);
    line-height: 1.75;
    padding: 4px 22px 20px 56px; /* indent to align with question text */
    background: #FFF9F0;
}

/* Responsive — FAQ */
@media (max-width: 767px) {
    .contact-faq-section { padding: 50px 0; }

    .contact-faq-btn {
        font-size: 15px;
        padding: 15px 16px;
        gap: 10px;
    }

    .contact-faq-body {
        padding: 4px 16px 18px 46px;
        font-size: 14px;
    }
}

@media (max-width: 575px) {
    .contact-faq-bee-vector { display: none; }

    .contact-faq-body {
        padding: 4px 14px 16px 14px;
    }
}
/* ============================================================
   FAQ SECTION END
   ============================================================ */