/*
 * ═══════════════════════════════════════════════════════════════════════════════
 * Lavisa Destinations Theme — ENHANCED ABOUT + CONTACT (E25)
 * ═══════════════════════════════════════════════════════════════════════════════
 *
 * @file        assets/css/ldt-enhanced-pages-about-contact.css
 * @package     Lavisa_Destinations_Theme
 * @since       2.9.26  (E25 — Visual Enhancement Roadmap v2 — opens Stage 9)
 * @depends     ldt-tokens-enhanced.css                    (E1)
 *              ldt-enhanced-base.css                      (E2)
 *              ldt-enhanced-animations.css                (E3 — keyframes)
 *              ldt-enhanced-hero-pages.css                (E8 — about/contact heroes)
 *              ldt-enhanced-sections-cta.css              (E11 — CTA banner)
 *              ldt-enhanced-components.css                (E22)
 *              ldt-enhanced-pages.css                     (E23 — page rhythm)
 *
 *   Polishes the editorial pages that don't fit the booking/discovery flow:
 *     pages/page-about.php       /about/   Mission + stats + values + CTA
 *     pages/page-contact.php     /contact/ 4-card methods + form + HQ + FAQ
 *
 *   PURE CSS LAYER — no PHP partial is touched. Same approach as E4-E24.
 *   Opens Stage 9 (Supplementary Pages).
 *
 * ═══════════════════════════════════════════════════════════════════════════════
 */


/* ═══════════════════════════════════════════════════════════════════════════════
 * 1. ABOUT PAGE WRAPPER (.ldt-main--about)
 * ═══════════════════════════════════════════════════════════════════════════════ */

body .ldt-main--about {
    background: linear-gradient(
        180deg,
        transparent 0%,
        rgba(0, 53, 128, 0.015) 30%,
        rgba(255, 140, 0, 0.020) 60%,
        rgba(0, 53, 128, 0.015) 90%,
        transparent 100%
    );
}


/* ═══════════════════════════════════════════════════════════════════════════════
 * 2. ABOUT — STORY SECTION (.ldt-about-story)
 *
 * 2-col mission section: image + badge-card on left, text + highlights on right.
 * ═══════════════════════════════════════════════════════════════════════════════ */

body .ldt-about-story {
    padding: 56px 0;
    position: relative;
}

body .ldt-about-story__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

@media (max-width: 900px) {
    body .ldt-about-story__grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

/* Image wrapper */
body .ldt-about-story__image {
    position: relative;
    border-radius: var(--ldt-radius-card, 1.25rem);
    overflow: hidden;
    box-shadow:
        0 20px 50px rgba(0, 53, 128, 0.18),
        0 0 0 1px rgba(0, 53, 128, 0.08);
}

body .ldt-about-story__image img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: transform 800ms var(--ldt-ease-portal, ease);
}

@media (hover: hover) and (pointer: fine) {
    body .ldt-about-story__image:hover img {
        transform: scale(1.04);
    }
}

/* Badge card — overlay on image with "15+ Years of Experience" */
body .ldt-about-story__badge-card {
    position: absolute;
    bottom: 20px;
    left: 20px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    padding: 14px 20px;
    background: rgba(255, 255, 255, 0.96);
    -webkit-backdrop-filter: blur(20px);
            backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.50);
    border-radius: var(--ldt-radius-input, 0.75rem);
    box-shadow: 0 8px 24px rgba(0, 53, 128, 0.20);
}

[dir="rtl"] body .ldt-about-story__badge-card,
.ldt-rtl body .ldt-about-story__badge-card {
    left: auto;
    right: 20px;
}

body .ldt-about-story__badge-num {
    background: var(--ldt-gradient-accent,
                linear-gradient(135deg, #ff8c00 0%, #e07a00 100%));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: var(--ldt-accent, #ff8c00);  /* fallback */
    font-size: 2.25rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1;
}

body .ldt-about-story__badge-text {
    color: var(--ldt-gray-700, #334155);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-top: 2px;
}

/* Section label (eyebrow) */
body .ldt-about-section-label {
    display: inline-block;
    padding: 4px 14px;
    background: rgba(255, 140, 0, 0.10);
    color: var(--ldt-accent-dark, #e07a00);
    border: 1px solid rgba(255, 140, 0, 0.30);
    border-radius: var(--ldt-radius-pill, 9999px);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.10em;
    margin-bottom: 14px;
}

/* H2 inside about story */
body .ldt-about-h2,
body .ldt-contact-h2 {
    color: var(--ldt-dark, #1e293b);
    font-weight: 800;
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin: 0 0 16px;
}

body .ldt-about-h2 strong,
body .ldt-about-h2 em {
    background: var(--ldt-gradient-text,
                linear-gradient(135deg, #003580 0%, #0057b8 50%, #ff8c00 100%));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-style: normal;
    font-weight: 800;
}

/* Highlights grid (4-col under H2) */
body .ldt-about-story__highlights {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-top: 24px;
}

@media (max-width: 480px) {
    body .ldt-about-story__highlights {
        grid-template-columns: 1fr;
    }
}

body .ldt-about-highlight {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    background: var(--ldt-glass-light, rgba(255, 255, 255, 0.92));
    -webkit-backdrop-filter: blur(8px);
            backdrop-filter: blur(8px);
    border: 1px solid rgba(0, 53, 128, 0.08);
    border-radius: var(--ldt-radius-input, 0.75rem);
    transition:
        transform 250ms var(--ldt-ease-portal, ease),
        border-color 250ms var(--ldt-ease-portal, ease),
        box-shadow 250ms var(--ldt-ease-portal, ease);
}

@media (hover: hover) and (pointer: fine) {
    body .ldt-about-highlight:hover {
        transform: translateY(-2px);
        border-color: rgba(255, 140, 0, 0.30);
        box-shadow: 0 6px 16px rgba(255, 140, 0, 0.10);
    }
}

body .ldt-about-highlight__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 140, 0, 0.10);
    border: 1px solid rgba(255, 140, 0, 0.20);
    font-size: 1.125rem;
    line-height: 1;
    flex-shrink: 0;
}


/* ═══════════════════════════════════════════════════════════════════════════════
 * 3. ABOUT — STATS SECTION (.ldt-about-stats)
 *
 * Counter row showing years / destinations / countries / clients.
 * ═══════════════════════════════════════════════════════════════════════════════ */

body .ldt-about-stats {
    padding: 48px 0;
    background: linear-gradient(
        135deg,
        rgba(0, 53, 128, 0.03) 0%,
        rgba(255, 140, 0, 0.03) 100%
    );
}

body .ldt-about-stats__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

@media (max-width: 768px) {
    body .ldt-about-stats__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    body .ldt-about-stats__grid {
        grid-template-columns: 1fr;
    }
}

body .ldt-about-stat {
    text-align: center;
    padding: 20px 16px;
    background: var(--ldt-glass-light, rgba(255, 255, 255, 0.92));
    -webkit-backdrop-filter: blur(8px);
            backdrop-filter: blur(8px);
    border: 1px solid rgba(0, 53, 128, 0.08);
    border-radius: var(--ldt-radius-card, 1.25rem);
    box-shadow: 0 4px 14px rgba(0, 53, 128, 0.06);
    transition:
        transform 300ms var(--ldt-ease-portal, ease),
        border-color 300ms var(--ldt-ease-portal, ease),
        box-shadow 300ms var(--ldt-ease-portal, ease);
}

@media (hover: hover) and (pointer: fine) {
    body .ldt-about-stat:hover {
        transform: translateY(-3px);
        border-color: rgba(255, 140, 0, 0.30);
        box-shadow:
            0 12px 28px rgba(255, 140, 0, 0.12),
            0 0 0 1px rgba(255, 140, 0, 0.10);
    }
}

body .ldt-about-stat__num {
    display: block;
    background: var(--ldt-gradient-text,
                linear-gradient(135deg, #003580 0%, #0057b8 50%, #ff8c00 100%));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: var(--ldt-primary, #003580);  /* fallback */
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1;
    margin-bottom: 6px;
}

body .ldt-about-stat__label {
    color: var(--ldt-gray-600, #64748b);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}


/* ═══════════════════════════════════════════════════════════════════════════════
 * 4. ABOUT — VALUES SECTION (.ldt-about-values) — 3-col benefit grid (3D cards)
 * ═══════════════════════════════════════════════════════════════════════════════ */

body .ldt-about-values {
    padding: 56px 0;
    text-align: center;
}

body .ldt-about-values > .ldt-container > .ldt-about-section-label {
    margin-bottom: 12px;
}

body .ldt-about-values > .ldt-container > h2,
body .ldt-about-values .ldt-about-h2 {
    margin: 0 auto 32px;
    max-width: 720px;
}

body .ldt-about-values__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    text-align: left;
    max-width: 1100px;
    margin: 0 auto;
}

[dir="rtl"] body .ldt-about-values__grid,
.ldt-rtl body .ldt-about-values__grid {
    text-align: right;
}

@media (max-width: 900px) {
    body .ldt-about-values__grid {
        grid-template-columns: 1fr;
    }
}

/* Single value — 3D card with icon halo */
body .ldt-about-value {
    position: relative;
    padding: 28px 22px;
    background: var(--ldt-glass-strong-light, rgba(255, 255, 255, 0.96));
    -webkit-backdrop-filter: blur(12px);
            backdrop-filter: blur(12px);
    border: 1px solid rgba(0, 53, 128, 0.08);
    border-radius: var(--ldt-radius-card, 1.25rem);
    box-shadow:
        0 4px 14px rgba(0, 53, 128, 0.06),
        0 1px 0 rgba(255, 255, 255, 0.80) inset;
    transition:
        transform 400ms var(--ldt-ease-portal, ease),
        border-color 400ms var(--ldt-ease-portal, ease),
        box-shadow 400ms var(--ldt-ease-portal, ease);
}

/* 3D feel — soft top-light + multi-stop shadow */
body .ldt-about-value::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.40) 0%,
        transparent 30%,
        transparent 100%
    );
    pointer-events: none;
    opacity: 0.50;
    transition: opacity 400ms var(--ldt-ease-portal, ease);
}

@media (hover: hover) and (pointer: fine) {
    body .ldt-about-value:hover {
        transform: translateY(-6px);
        border-color: rgba(255, 140, 0, 0.30);
        box-shadow:
            0 24px 48px -12px rgba(0, 53, 128, 0.20),
            0 6px 16px rgba(255, 140, 0, 0.15),
            0 1px 0 rgba(255, 255, 255, 0.80) inset,
            0 0 0 1px rgba(255, 140, 0, 0.10);
    }

    body .ldt-about-value:hover::before {
        opacity: 0.80;
    }
}

/* Icon halo */
body .ldt-about-value__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: var(--ldt-radius-input, 0.75rem);
    background: linear-gradient(
        135deg,
        rgba(255, 140, 0, 0.16) 0%,
        rgba(255, 140, 0, 0.04) 100%
    );
    border: 1px solid rgba(255, 140, 0, 0.30);
    color: var(--ldt-accent, #ff8c00);
    font-size: 2rem;
    line-height: 1;
    margin-bottom: 18px;
    box-shadow:
        0 6px 16px rgba(255, 140, 0, 0.15),
        0 0 0 4px rgba(255, 140, 0, 0.04);
    transition:
        transform 400ms var(--ldt-ease-portal, ease),
        box-shadow 400ms var(--ldt-ease-portal, ease);
}

@media (hover: hover) and (pointer: fine) {
    body .ldt-about-value:hover .ldt-about-value__icon {
        transform: scale(1.06) rotate(-3deg);
        background: var(--ldt-gradient-accent,
                    linear-gradient(135deg, #ff8c00 0%, #e07a00 100%));
        color: #ffffff;
        border-color: transparent;
        box-shadow:
            0 10px 24px rgba(255, 140, 0, 0.40),
            0 0 0 6px rgba(255, 140, 0, 0.08);
    }
}

body .ldt-about-value__title {
    color: var(--ldt-dark, #1e293b);
    font-weight: 800;
    font-size: 18px;
    letter-spacing: -0.01em;
    margin: 0 0 8px;
}

body .ldt-about-value__desc {
    color: var(--ldt-gray-600, #64748b);
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}


/* ═══════════════════════════════════════════════════════════════════════════════
 * 5. ABOUT — CTA SECTION (.ldt-about-cta)
 * ═══════════════════════════════════════════════════════════════════════════════ */

body .ldt-about-cta {
    padding: 56px 0;
}

body .ldt-about-cta__inner {
    text-align: center;
    padding: 48px 32px;
    background: var(--ldt-gradient-brand,
                linear-gradient(135deg, #003580 0%, #0057b8 50%, #ff8c00 100%));
    color: #ffffff;
    border-radius: var(--ldt-radius-card, 1.25rem);
    box-shadow: 0 20px 50px rgba(0, 53, 128, 0.25);
    position: relative;
    overflow: hidden;
}

/* Decorative blob */
body .ldt-about-cta__inner::after {
    content: "";
    position: absolute;
    top: -80px;
    right: -80px;
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.16) 0%, transparent 70%);
    pointer-events: none;
}

[dir="rtl"] body .ldt-about-cta__inner::after,
.ldt-rtl body .ldt-about-cta__inner::after {
    right: auto;
    left: -80px;
}

body .ldt-about-cta__inner > * {
    position: relative;
    z-index: 1;
}

body .ldt-about-cta__inner h2,
body .ldt-about-cta__inner .ldt-about-h2 {
    color: #ffffff;
    margin-bottom: 12px;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.20);
}

body .ldt-about-cta__inner p {
    color: rgba(255, 255, 255, 0.92);
    font-size: 1.0625rem;
    line-height: 1.55;
    max-width: 640px;
    margin: 0 auto 24px;
}

body .ldt-about-cta__buttons {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}


/* ═══════════════════════════════════════════════════════════════════════════════
 * 6. CONTACT PAGE WRAPPER (.ldt-main--contact)
 * ═══════════════════════════════════════════════════════════════════════════════ */

body .ldt-main--contact {
    background: linear-gradient(
        180deg,
        transparent 0%,
        rgba(0, 53, 128, 0.020) 30%,
        rgba(34, 197, 94, 0.015) 60%,
        transparent 100%
    );
}


/* ═══════════════════════════════════════════════════════════════════════════════
 * 7. CONTACT — METHOD CARDS (.ldt-contact-cards) — 4-card grid
 * ═══════════════════════════════════════════════════════════════════════════════ */

body .ldt-contact-cards {
    padding: 48px 0 24px;
}

body .ldt-contact-cards__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

@media (max-width: 900px) {
    body .ldt-contact-cards__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    body .ldt-contact-cards__grid {
        grid-template-columns: 1fr;
    }
}

body .ldt-contact-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 22px 18px;
    background: var(--ldt-glass-light, rgba(255, 255, 255, 0.92));
    -webkit-backdrop-filter: blur(12px);
            backdrop-filter: blur(12px);
    border: 1px solid rgba(0, 53, 128, 0.08);
    border-radius: var(--ldt-radius-card, 1.25rem);
    box-shadow: 0 4px 14px rgba(0, 53, 128, 0.06);
    text-decoration: none;
    color: inherit;
    transition:
        transform 350ms var(--ldt-ease-portal, ease),
        border-color 350ms var(--ldt-ease-portal, ease),
        box-shadow 350ms var(--ldt-ease-portal, ease);
}

@media (hover: hover) and (pointer: fine) {
    body .ldt-contact-card:hover {
        transform: translateY(-4px);
        border-color: rgba(255, 140, 0, 0.30);
        box-shadow:
            0 18px 36px -8px rgba(0, 53, 128, 0.18),
            0 0 0 1px rgba(255, 140, 0, 0.10);
    }
}

/* WhatsApp variant — green accent */
body .ldt-contact-card--wa {
    background: linear-gradient(
        135deg,
        rgba(37, 211, 102, 0.08) 0%,
        rgba(34, 197, 94, 0.04) 100%
    );
    border-color: rgba(37, 211, 102, 0.30);
}

body .ldt-contact-card--wa .ldt-contact-card__icon {
    background: linear-gradient(135deg, #25D366 0%, #1EBE57 100%);
    color: #ffffff;
    box-shadow: 0 6px 16px rgba(37, 211, 102, 0.30);
}

@media (hover: hover) and (pointer: fine) {
    body .ldt-contact-card--wa:hover {
        border-color: rgba(37, 211, 102, 0.50);
        box-shadow:
            0 18px 36px -8px rgba(37, 211, 102, 0.20),
            0 0 0 1px rgba(37, 211, 102, 0.20);
    }
}

/* Card icon — 56x56 accent square */
body .ldt-contact-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: var(--ldt-radius-input, 0.75rem);
    background: linear-gradient(
        135deg,
        rgba(255, 140, 0, 0.16) 0%,
        rgba(255, 140, 0, 0.04) 100%
    );
    border: 1px solid rgba(255, 140, 0, 0.30);
    color: var(--ldt-accent, #ff8c00);
    font-size: 1.75rem;
    line-height: 1;
    margin-bottom: 12px;
    transition:
        transform 300ms var(--ldt-ease-portal, ease),
        background 300ms var(--ldt-ease-portal, ease);
}

@media (hover: hover) and (pointer: fine) {
    body .ldt-contact-card:hover .ldt-contact-card__icon {
        transform: scale(1.06) rotate(-3deg);
    }

    body .ldt-contact-card:not(.ldt-contact-card--wa):hover .ldt-contact-card__icon {
        background: var(--ldt-gradient-accent,
                    linear-gradient(135deg, #ff8c00 0%, #e07a00 100%));
        color: #ffffff;
        border-color: transparent;
    }
}

/* Card primary text (the value: phone, email, etc.) */
body .ldt-contact-card > strong,
body .ldt-contact-card > span:not(.ldt-contact-card__icon):not(.ldt-contact-card__sub) {
    color: var(--ldt-dark, #1e293b);
    font-weight: 800;
    font-size: 15px;
    letter-spacing: -0.01em;
    margin-bottom: 4px;
}

body .ldt-contact-card__sub {
    color: var(--ldt-gray-600, #64748b);
    font-size: 12px;
    font-weight: 500;
}


/* ═══════════════════════════════════════════════════════════════════════════════
 * 8. CONTACT — MAIN (.ldt-contact-main) — form + sidebar 2-col
 * ═══════════════════════════════════════════════════════════════════════════════ */

body .ldt-contact-main {
    padding: 48px 0;
}

body .ldt-contact-main__grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 32px;
    align-items: start;
}

@media (max-width: 900px) {
    body .ldt-contact-main__grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}


/* ═══════════════════════════════════════════════════════════════════════════════
 * 9. CONTACT — FORM (.ldt-contact-form) — glass card with accent submit
 * ═══════════════════════════════════════════════════════════════════════════════ */

body .ldt-contact-form-wrap {
    padding: 28px;
    background: var(--ldt-glass-strong-light, rgba(255, 255, 255, 0.96));
    -webkit-backdrop-filter: blur(20px) saturate(180%);
            backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(0, 53, 128, 0.08);
    border-radius: var(--ldt-radius-card, 1.25rem);
    box-shadow:
        0 12px 32px rgba(0, 53, 128, 0.10),
        0 0 0 1px rgba(255, 140, 0, 0.06);
}

body .ldt-contact-form-sub {
    color: var(--ldt-gray-600, #64748b);
    font-size: 14px;
    line-height: 1.55;
    margin: 0 0 20px;
}

/* Form */
body .ldt-contact-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

body .ldt-cf-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

@media (max-width: 600px) {
    body .ldt-cf-row {
        grid-template-columns: 1fr;
    }
}

body .ldt-cf-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

body .ldt-cf-field > label {
    color: var(--ldt-gray-600, #64748b);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

body .ldt-cf-field input,
body .ldt-cf-field textarea,
body .ldt-cf-field select {
    width: 100%;
    padding: 12px 14px;
    background: rgba(0, 53, 128, 0.04);
    border: 1px solid rgba(0, 53, 128, 0.10);
    border-radius: var(--ldt-radius-input, 0.75rem);
    color: var(--ldt-dark, #1e293b);
    font-family: inherit;
    font-size: 14px;
    font-weight: 600;
    transition:
        background 200ms var(--ldt-ease-portal, ease),
        border-color 200ms var(--ldt-ease-portal, ease),
        box-shadow 200ms var(--ldt-ease-portal, ease);
}

body .ldt-cf-field input:focus,
body .ldt-cf-field textarea:focus,
body .ldt-cf-field select:focus {
    outline: none;
    background: #ffffff;
    border-color: var(--ldt-accent, #ff8c00);
    box-shadow: 0 0 0 3px rgba(255, 140, 0, 0.18);
}

body .ldt-cf-field textarea {
    min-height: 120px;
    resize: vertical;
    line-height: 1.5;
}

/* Submit button */
body .ldt-cf-submit,
body .ldt-contact-form button[type="submit"] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    background: var(--ldt-gradient-accent,
                linear-gradient(135deg, #ff8c00 0%, #e07a00 100%));
    color: #ffffff;
    border: none;
    border-radius: var(--ldt-radius-pill, 9999px);
    font-weight: 800;
    font-size: 15px;
    letter-spacing: 0.02em;
    cursor: pointer;
    box-shadow: var(--ldt-shadow-accent, 0 10px 30px rgba(255, 140, 0, 0.40));
    transition:
        transform 250ms var(--ldt-ease-portal, ease),
        box-shadow 250ms var(--ldt-ease-portal, ease),
        filter 250ms var(--ldt-ease-portal, ease);
}

@media (hover: hover) and (pointer: fine) {
    body .ldt-cf-submit:hover,
    body .ldt-contact-form button[type="submit"]:hover {
        transform: translateY(-2px);
        box-shadow: 0 14px 36px rgba(255, 140, 0, 0.55);
        filter: brightness(1.06);
    }
}

/* Form message (success / error) */
body .ldt-cf-msg {
    padding: 12px 16px;
    border-radius: var(--ldt-radius-input, 0.75rem);
    font-size: 14px;
    font-weight: 600;
    margin-top: 12px;
}

body .ldt-cf-msg:not(:empty) {
    animation: ldt-fade-up 350ms var(--ldt-ease-portal, ease);
}

body .ldt-cf-msg.is-success,
body .ldt-cf-msg[data-status="success"] {
    background: rgba(34, 197, 94, 0.10);
    border: 1px solid rgba(34, 197, 94, 0.30);
    color: rgb(21, 128, 61);
    animation: ldt-cf-success-pulse 600ms ease;
}

@keyframes ldt-cf-success-pulse {
    0%   { opacity: 0; transform: scale(0.96); box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.30); }
    50%  { box-shadow: 0 0 0 6px rgba(34, 197, 94, 0); }
    100% { opacity: 1; transform: scale(1);    box-shadow: 0 0 0 0 transparent; }
}

@media (prefers-reduced-motion: reduce) {
    body .ldt-cf-msg:not(:empty) { animation: none; }
}

body .ldt-cf-msg.is-error,
body .ldt-cf-msg[data-status="error"] {
    background: rgba(239, 68, 68, 0.08);
    border: 1px solid rgba(239, 68, 68, 0.30);
    color: rgb(185, 28, 28);
}


/* ═══════════════════════════════════════════════════════════════════════════════
 * 10. CONTACT — SIDEBAR (.ldt-contact-sidebar) — office + map + social
 * ═══════════════════════════════════════════════════════════════════════════════ */

body .ldt-contact-sidebar {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* Office card */
body .ldt-contact-office {
    padding: 22px;
    background: var(--ldt-glass-light, rgba(255, 255, 255, 0.92));
    -webkit-backdrop-filter: blur(8px);
            backdrop-filter: blur(8px);
    border: 1px solid rgba(0, 53, 128, 0.08);
    border-radius: var(--ldt-radius-card, 1.25rem);
    box-shadow: 0 4px 14px rgba(0, 53, 128, 0.06);
}

body .ldt-contact-office h3 {
    color: var(--ldt-dark, #1e293b);
    font-weight: 800;
    font-size: 15px;
    letter-spacing: -0.01em;
    margin: 0 0 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

body .ldt-contact-office h3::before {
    content: "";
    width: 4px;
    height: 14px;
    background: var(--ldt-gradient-accent,
                linear-gradient(180deg, #ff8c00 0%, #e07a00 100%));
    border-radius: 2px;
}

body .ldt-contact-office__info {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

body .ldt-contact-office__row {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--ldt-gray-700, #334155);
    font-size: 13px;
    line-height: 1.5;
}

body .ldt-contact-office__row > span:first-child,
body .ldt-contact-office__row .emoji {
    color: var(--ldt-accent, #ff8c00);
    font-size: 14px;
    margin-top: 2px;
    flex-shrink: 0;
}

body .ldt-contact-office__row a {
    color: var(--ldt-primary, #003580);
    font-weight: 700;
    text-decoration: none;
    transition: color 200ms var(--ldt-ease-portal, ease);
}

body .ldt-contact-office__row a:hover {
    color: var(--ldt-accent-dark, #e07a00);
}

/* Map */
body .ldt-contact-map {
    border-radius: var(--ldt-radius-card, 1.25rem);
    overflow: hidden;
    box-shadow:
        0 8px 22px rgba(0, 53, 128, 0.10),
        0 0 0 1px rgba(0, 53, 128, 0.08);
    aspect-ratio: 4 / 3;
}

body .ldt-contact-map iframe,
body .ldt-contact-map img {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
    /* Brand-tint the map slightly */
    filter: hue-rotate(-3deg) saturate(0.95);
}

/* Social links */
body .ldt-contact-social {
    padding: 18px 22px;
    background: var(--ldt-glass-light, rgba(255, 255, 255, 0.92));
    border: 1px solid rgba(0, 53, 128, 0.08);
    border-radius: var(--ldt-radius-card, 1.25rem);
    box-shadow: 0 4px 14px rgba(0, 53, 128, 0.06);
}

body .ldt-contact-social h3 {
    color: var(--ldt-dark, #1e293b);
    font-weight: 800;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin: 0 0 12px;
}

body .ldt-contact-social__links {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

body .ldt-contact-social__link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(0, 53, 128, 0.06);
    color: var(--ldt-primary, #003580);
    font-size: 16px;
    text-decoration: none;
    transition:
        background 250ms var(--ldt-ease-portal, ease),
        color 250ms var(--ldt-ease-portal, ease),
        transform 250ms var(--ldt-ease-portal, ease),
        box-shadow 250ms var(--ldt-ease-portal, ease);
}

body .ldt-contact-social__link:hover {
    background: var(--ldt-gradient-accent,
                linear-gradient(135deg, #ff8c00 0%, #e07a00 100%));
    color: #ffffff;
    transform: translateY(-2px) scale(1.06);
    box-shadow: 0 6px 14px rgba(255, 140, 0, 0.40);
}


/* ═══════════════════════════════════════════════════════════════════════════════
 * 11. CONTACT — FAQ (.ldt-contact-faq)
 *
 * Reuses .ldt-faq accordion pattern from E20 — already polished.
 * Just spacing + section padding here.
 * ═══════════════════════════════════════════════════════════════════════════════ */

body .ldt-contact-faq {
    padding: 32px 0 64px;
}


/* ═══════════════════════════════════════════════════════════════════════════════
 * 12. RESPONSIVE — additional touch-ups
 * ═══════════════════════════════════════════════════════════════════════════════ */

@media (max-width: 768px) {

    /* About: tighter sections */
    body .ldt-about-story,
    body .ldt-about-stats,
    body .ldt-about-values,
    body .ldt-about-cta {
        padding: 36px 0;
    }

    body .ldt-about-cta__inner {
        padding: 32px 22px;
    }

    body .ldt-about-value {
        padding: 22px 18px;
    }

    body .ldt-about-value__icon {
        width: 52px;
        height: 52px;
        font-size: 1.5rem;
        margin-bottom: 14px;
    }

    /* Contact: tighter form */
    body .ldt-contact-form-wrap {
        padding: 22px;
    }

    body .ldt-contact-card {
        padding: 18px 14px;
    }

    body .ldt-contact-card__icon {
        width: 48px;
        height: 48px;
        font-size: 1.5rem;
    }
}


/* ─── END OF ldt-enhanced-pages-about-contact.css ─────────────────────────── */
