/* ==============================================================================
   CONTACT PAGE — PREMIUM REDESIGN
   Brand tokens: --brand-primary #0F172A · --font-primary Inter
   ============================================================================== */


/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes heroFadeIn {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(16,185,129,.45); }
    50%      { box-shadow: 0 0 0 6px rgba(16,185,129,0); }
}
@keyframes spin {
    to { transform: rotate(360deg); }
}
@keyframes slideUp {
    from { opacity: 0; transform: translateY(36px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* Hero entrance */
.anim-fade {
    opacity: 0;
    transform: translateY(20px);
    animation: heroFadeIn .7s cubic-bezier(.22,1,.36,1) forwards;
    animation-delay: var(--d, 0s);
}

/* Scroll-triggered */
.anim-up {
    opacity: 0;
    transform: translateY(36px);
    transition: opacity .65s cubic-bezier(.22,1,.36,1), transform .65s cubic-bezier(.22,1,.36,1);
    transition-delay: var(--d, 0s);
}
.anim-up.in-view {
    opacity: 1;
    transform: translateY(0);
}


/* ============================================================
   HERO
   ============================================================ */
.c-hero {
    position: relative;
    display: flex;
    align-items: center;
    padding: 5rem 0 3.5rem;
    background: #0F172A;
    overflow: hidden;
}
.c-hero__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Dark overlay for text readability */
.c-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
        rgba(15, 23, 42, .88) 0%,
        rgba(15, 23, 42, .75) 50%,
        rgba(15, 23, 42, .88) 100%);
    pointer-events: none;
}

/* Floating decorations (same style as home page) */
.c-hero__decorations {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}
.c-hero__decoration {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, .03) 0%, transparent 70%);
    animation: float 20s ease-in-out infinite;
}
.c-hero__decoration--1 {
    width: 500px;
    height: 500px;
    top: -180px;
    right: -80px;
    animation-delay: 0s;
}
.c-hero__decoration--2 {
    width: 350px;
    height: 350px;
    bottom: -120px;
    left: -80px;
    animation-delay: -7s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33%      { transform: translate(30px, -30px) scale(1.05); }
    66%      { transform: translate(-20px, 20px) scale(0.95); }
}

/* Inner wrapper */
.c-hero__inner {
    position: relative;
    z-index: 1;
    max-width: 660px;
    margin: 0 auto;
    text-align: center;
}

/* Badge with live dot */
.c-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.12);
    color: #fff;
    font-size: .8rem;
    font-weight: 600;
    letter-spacing: .03em;
    padding: .5rem 1.25rem;
    border-radius: 100px;
    margin-bottom: 1.75rem;
}
.c-hero__badge-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: #10b981;
    animation: pulse 2s ease-in-out infinite;
    flex-shrink: 0;
}

/* Title */
.c-hero__title {
    font-size: clamp(2.25rem, 5vw, 3.5rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.12;
    margin: 0 0 1.25rem;
    letter-spacing: -.03em;
}

.c-hero__sub {
    font-size: 1.125rem;
    color: rgba(255,255,255,.75);
    line-height: 1.75;
    max-width: 520px;
    margin: 0 auto;
}


/* ============================================================
   FORM SECTION
   ============================================================ */
.c-form-section {
    padding: 5rem 0 5.5rem;
    background: var(--bg-secondary, #f8fafc);
}

/* Alert toasts */
.c-alerts {
    max-width: 780px;
    margin: 0 auto 2rem;
}
.c-alert {
    display: flex;
    align-items: center;
    gap: .75rem;
    padding: 1rem 1.25rem;
    border-radius: .75rem;
    font-size: .9375rem;
    font-weight: 500;
    margin-bottom: .75rem;
    animation: slideUp .4s ease both;
}
.c-alert--success {
    background: #ecfdf5;
    color: #065f46;
    border: 1px solid #a7f3d0;
}
.c-alert--error {
    background: #fef2f2;
    color: #991b1b;
    border: 1px solid #fecaca;
}

/* Grid */
.c-grid {
    display: grid;
    grid-template-columns: 1.8fr 0.65fr;
    gap: 2rem;
    align-items: start;
    min-width: 0;
}

/* ── Card ── */
.c-card {
    background: #fff;
    border-radius: 1.25rem;
    overflow: hidden;
    min-width: 0;
    border: 1.5px solid var(--border-light);
    box-shadow:
        0 2px 4px rgba(0,0,0,.02),
        0 12px 40px rgba(0,0,0,.06);
}
.c-card__body {
    padding: 2.25rem 2.5rem 2.5rem;
    min-width: 0;
}
.c-card__head {
    display: flex;
    align-items: flex-start;
    gap: .875rem;
    margin-bottom: 1.75rem;
}
.c-card__head-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: .625rem;
    background: var(--brand-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: .125rem;
}
.c-card__head h2 {
    font-size: 1.375rem;
    font-weight: 800;
    color: var(--text-primary);
    margin: 0 0 .25rem;
    letter-spacing: -.02em;
}
.c-card__head p {
    color: var(--text-muted);
    font-size: .875rem;
    margin: 0;
    line-height: 1.5;
}

/* ── Form fields ── */
.c-form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
    margin-bottom: 1.25rem;
    min-width: 0;
}
.c-field {
    display: flex;
    flex-direction: column;
    margin-bottom: 0;
    min-width: 0;
}
.c-field__label {
    font-size: .8125rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: .4375rem;
    display: flex;
    align-items: center;
    gap: .25rem;
}
.c-req { color: #ef4444; font-weight: 700; }
.c-field__opt {
    color: var(--text-muted);
    font-weight: 400;
}

.c-field__wrap {
    position: relative;
}
.c-field__icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    opacity: .7;
    pointer-events: none;
    transition: opacity .2s, color .2s;
    z-index: 1;
}

.c-field__input {
    width: 100%;
    padding: .8125rem 1rem;
    font-size: .9375rem;
    font-family: var(--font-primary);
    color: var(--text-primary);
    background: var(--bg-secondary, #f8fafc);
    border: 1.5px solid var(--border-light);
    border-radius: .625rem;
    outline: none;
    transition: border-color .2s, box-shadow .2s, background .2s;
    box-sizing: border-box;
}
.c-field__input--icon { padding-left: 3.125rem !important; }

.c-field__input::placeholder { color: #78849a; }

.c-field__input:focus {
    border-color: var(--brand-primary);
    box-shadow: 0 0 0 3px rgba(15,23,42,.06);
    background: #fff;
}
.c-field__input:focus ~ .c-field__icon,
.c-field__input:focus + .c-field__icon { /* for wrap structure */
    color: var(--brand-primary);
    opacity: .8;
}
.c-field__wrap:focus-within .c-field__icon {
    color: var(--brand-primary);
    opacity: .8;
}

/* Validation states */
.c-field__input.is-invalid {
    border-color: #ef4444;
    box-shadow: 0 0 0 3px rgba(239,68,68,.08);
}
.c-field__input.is-valid {
    border-color: #10b981;
}

/* Select */
.c-select {
    position: relative;
}
.c-select select {
    width: 100%;
    padding: .8125rem 2.5rem .8125rem 1rem;
    font-size: .9375rem;
    font-family: var(--font-primary);
    color: var(--text-primary);
    background: var(--bg-secondary, #f8fafc);
    border: 1.5px solid var(--border-light);
    border-radius: .625rem;
    outline: none;
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
    transition: border-color .2s, box-shadow .2s;
    box-sizing: border-box;
}
.c-select select:focus {
    border-color: var(--brand-primary);
    box-shadow: 0 0 0 3px rgba(15,23,42,.06);
    background: #fff;
}
.c-select::after {
    content: '';
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%) rotate(0);
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid var(--text-muted);
    pointer-events: none;
    transition: transform .2s;
}

/* Textarea */
.c-field__textarea {
    width: 100%;
    padding: .875rem 1rem;
    font-size: .9375rem;
    font-family: var(--font-primary);
    color: var(--text-primary);
    background: var(--bg-secondary, #f8fafc);
    border: 1.5px solid var(--border-light);
    border-radius: .625rem;
    outline: none;
    resize: vertical;
    min-height: 140px;
    line-height: 1.7;
    box-sizing: border-box;
    transition: border-color .2s, box-shadow .2s, background .2s;
}
.c-field__textarea::placeholder { color: #78849a; }
.c-field__textarea:focus {
    border-color: var(--brand-primary);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(15,23,42,.06);
}
.c-field__textarea.is-invalid {
    border-color: #ef4444;
    box-shadow: 0 0 0 3px rgba(239,68,68,.08);
}

.c-field__meta {
    display: flex;
    justify-content: flex-end;
    margin-top: .375rem;
}
.c-field__count {
    font-size: .75rem;
    color: var(--text-muted);
    transition: color .2s;
}
.c-field__count--warn { color: #f59e0b; }

/* Submit button */
.c-btn-send {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    width: 100%;
    margin-top: 1.5rem;
    padding: .9375rem 2rem;
    font-size: 1rem;
    font-weight: 700;
    font-family: var(--font-primary);
    color: #fff;
    background: var(--brand-primary);
    border: none;
    border-radius: .75rem;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: background .2s, transform .15s, box-shadow .2s;
}
.c-btn-send::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,.08), transparent 60%);
    pointer-events: none;
}
.c-btn-send:hover:not(:disabled) {
    background: var(--brand-primary-hover);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(15,23,42,.2);
}
.c-btn-send:active:not(:disabled) {
    transform: translateY(0);
}
.c-btn-send:disabled {
    opacity: .55;
    cursor: not-allowed;
}
.c-btn-send__loading {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
}
.c-spinner {
    animation: spin .8s linear infinite;
}

.c-form__fine {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .375rem;
    margin-top: 1rem;
    font-size: .75rem;
    color: var(--text-muted);
}


/* ============================================================
   SIDEBAR
   ============================================================ */
.c-sidebar {
    display: flex;
    flex-direction: column;
    gap: .75rem;
    position: sticky;
    top: 6rem;
    min-width: 0;
    overflow: visible;
}

/* ── Airbnb Rating Strip ── */
.c-airbnb-card {
    display: block;
    text-decoration: none;
    background: #fff;
    border-radius: .75rem;
    border: 1.5px solid var(--border-light);
    box-shadow: 0 1px 3px rgba(0,0,0,.04);
    overflow: hidden;
    transition: box-shadow .3s, border-color .3s;
}
.c-airbnb-card:hover {
    border-color: rgba(255, 90, 95, .25);
    box-shadow: 0 6px 20px rgba(255, 90, 95, .08);
}
.c-airbnb-card__body {
    padding: .625rem .875rem;
}
.c-airbnb-card__center {
    display: flex;
    align-items: center;
    gap: .5rem;
}
.c-airbnb-card__logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}
.c-airbnb-card__logo img {
    height: 24px;
    width: auto;
}
.c-airbnb-card__score {
    font-size: 1.375rem;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1;
    letter-spacing: -.02em;
}
.c-airbnb-card__stars {
    display: flex;
    align-items: center;
    gap: 1px;
}
.c-airbnb-card__reviews {
    font-size: .75rem;
    color: var(--text-muted);
    margin-left: auto;
    white-space: nowrap;
}
/* ── Side Cards (.c-side-card) ── */
.c-side-card {
    border-radius: .875rem;
    padding: 1.125rem 1.125rem;
    text-decoration: none;
    display: block;
    transition: transform .3s cubic-bezier(.22,1,.36,1), box-shadow .3s;
}
.c-side-card:hover {
    transform: translateY(-3px);
}

/* Icon circle */
.c-side-card__icon-wrap {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: .625rem;
    transition: transform .3s;
}
.c-side-card:hover .c-side-card__icon-wrap {
    transform: scale(1.08);
}

/* ── WhatsApp hero card ── */
.c-side-card--wa {
    background: #075E54;
    box-shadow: 0 4px 24px rgba(7,94,84,.2);
    color: #fff;
}
.c-side-card--wa:hover {
    box-shadow: 0 8px 36px rgba(7,94,84,.32);
}
.c-side-card--wa .c-side-card__icon-wrap {
    background: rgba(37,211,102,.2);
    border: 1.5px solid rgba(37,211,102,.35);
}
.c-side-card--wa .c-side-card__heading {
    color: #fff;
}
.c-side-card--wa .c-side-card__sub {
    color: rgba(255,255,255,.65);
}
.c-side-card__cta {
    display: inline-flex;
    align-items: center;
    gap: .375rem;
    margin-top: .75rem;
    padding: .4rem 1rem;
    font-size: .8125rem;
    font-weight: 700;
    font-family: var(--font-primary);
    color: #fff;
    background: #25D366;
    border-radius: .5rem;
    text-decoration: none;
    letter-spacing: .02em;
    transition: background .2s, transform .2s;
}
.c-side-card--wa:hover .c-side-card__cta {
    background: #1ebe5c;
    transform: scale(1.03);
}

/* ── Contact card (white) ── */
.c-side-card--contact {
    background: #fff;
    border: 1.5px solid var(--border-light);
    box-shadow: 0 2px 12px rgba(0,0,0,.05);
}
.c-side-card--contact:hover {
    box-shadow: 0 6px 28px rgba(0,0,0,.08);
    border-color: rgba(15,23,42,.12);
}

/* Headings */
.c-side-card__heading {
    font-size: .9375rem;
    font-weight: 800;
    margin: 0 0 .5rem;
    letter-spacing: -.01em;
}
.c-side-card__heading--dark {
    color: var(--text-primary);
}
.c-side-card__sub {
    font-size: .75rem;
    margin: 0;
    line-height: 1.45;
}

/* Inline contact rows */
.c-side-card__row {
    display: flex;
    align-items: center;
    gap: .625rem;
    padding: .5rem .625rem;
    margin: 0 -.625rem;
    border-radius: .5rem;
    text-decoration: none;
    color: var(--text-primary);
    transition: background .15s;
}
.c-side-card__row:hover {
    background: var(--bg-secondary);
}
.c-side-card__row-icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    border-radius: .5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-secondary);
    color: var(--brand-primary);
    transition: background .15s, color .15s;
}
.c-side-card__row:hover .c-side-card__row-icon {
    background: var(--brand-primary);
    color: #fff;
}
.c-side-card__row-text {
    font-size: .8125rem;
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.3;
}
.c-side-card__row:hover .c-side-card__row-text {
    color: var(--brand-primary);
}

/* Map embed */
.c-side-card__map {
    margin-top: .5rem;
    border-radius: .5rem;
    overflow: hidden;
    line-height: 0;
}
.c-side-card__map iframe {
    display: block;
    width: 100%;
}

/* Hide old reach styles */
/* ── Why Book Direct card ── */
.c-direct-card {
    background: #fff;
    border: 1.5px solid var(--border-light);
    border-radius: 1rem;
    padding: 1.25rem 1.5rem;
}
.c-direct-card__title {
    font-size: .8125rem;
    font-weight: 800;
    color: var(--text-primary);
    margin: 0 0 .75rem;
    letter-spacing: -.01em;
}
.c-direct-card__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: .5rem;
}
.c-direct-card__list li {
    display: flex;
    align-items: flex-start;
    gap: .5rem;
    font-size: .8rem;
    color: var(--text-secondary);
    line-height: 1.5;
}
.c-direct-card__list li svg {
    flex-shrink: 0;
    margin-top: .125rem;
}

/* ── Info row (location + trust) ── */
.c-info-row {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: .75rem;
}
.c-info-row__item {
    display: flex;
    align-items: center;
    gap: .375rem;
    font-size: .7rem;
    font-weight: 500;
    color: var(--text-muted);
    white-space: nowrap;
}
.c-info-row__item svg {
    flex-shrink: 0;
    color: var(--text-muted);
}


/* ============================================================
   FAQ SECTION
   ============================================================ */
.c-faq {
    padding: 4rem 0 5rem;
    background: var(--bg-secondary);
}

.c-faq__inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1.25rem;
}

/* ── Left: image column ── */
.c-faq__image {
    position: relative;
    overflow: hidden;
    border-radius: 1.25rem 0 0 1.25rem;
}
.c-faq__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.c-faq__image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
        rgba(15,23,42,.92) 0%,
        rgba(15,23,42,.55) 40%,
        rgba(15,23,42,.25) 100%);
}
.c-faq__image-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2.5rem;
    z-index: 1;
}
.c-faq__image-label {
    display: inline-block;
    font-size: .6875rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: rgba(255,255,255,.6);
    margin-bottom: .75rem;
}
.c-faq__image-title {
    font-size: 1.75rem;
    font-weight: 800;
    color: #fff;
    margin: 0 0 .5rem;
    letter-spacing: -.02em;
}
.c-faq__image-text {
    font-size: .875rem;
    line-height: 1.65;
    color: rgba(255,255,255,.7);
    margin: 0 0 1.5rem;
    max-width: 320px;
}
.c-faq__image-btn {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .625rem 1.25rem;
    font-size: .8125rem;
    font-weight: 700;
    font-family: var(--font-primary);
    color: var(--brand-primary);
    background: #fff;
    border-radius: .5rem;
    text-decoration: none;
    transition: background .15s, transform .15s;
}
.c-faq__image-btn:hover {
    background: var(--bg-secondary);
    transform: translateY(-1px);
}

/* ── FAQ panel ── */
.c-faq__panel {
    background: #fff;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border-radius: 1.25rem;
    box-shadow:
        0 0 0 1px rgba(0,0,0,.03),
        0 2px 4px rgba(0,0,0,.02),
        0 12px 40px rgba(0,0,0,.06);
}

/* Top bar */
.c-faq__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 2.25rem 2.5rem 0;
    flex-wrap: wrap;
}
.c-faq__top h2 {
    font-size: 1.625rem;
    font-weight: 800;
    color: var(--text-primary);
    margin: 0;
    letter-spacing: -.02em;
}

/* Search */
.c-faq__search {
    position: relative;
    flex: 0 1 200px;
    min-width: 150px;
}
.c-faq__search > svg {
    position: absolute;
    left: .75rem;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
    pointer-events: none;
}
.c-faq__search input {
    width: 100%;
    padding: .625rem 2.25rem .625rem 2.25rem;
    font-size: .875rem;
    font-family: var(--font-primary);
    color: var(--text-primary);
    background: var(--bg-secondary);
    border: 1.5px solid var(--border-light);
    border-radius: .5rem;
    outline: none;
    transition: border-color .2s, box-shadow .2s;
    box-sizing: border-box;
}
.c-faq__search input:focus {
    border-color: var(--brand-primary);
    box-shadow: 0 0 0 3px rgba(15,23,42,.06);
    background: #fff;
}
.c-faq__search input::placeholder { color: #94a3b8; }

.c-faq__clear {
    position: absolute;
    right: .5rem;
    top: 50%;
    transform: translateY(-50%);
    width: 20px; height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    background: var(--border-light);
    border-radius: 50%;
    cursor: pointer;
    color: var(--text-muted);
    transition: background .15s;
}
.c-faq__clear:hover { background: var(--border-medium); }

/* Tabs */
.c-faq__tabs {
    display: flex;
    flex-wrap: wrap;
    gap: .375rem;
    padding: 1.25rem 2.5rem .5rem;
}
.c-faq__tab {
    padding: .425rem .875rem;
    font-size: .8rem;
    font-weight: 600;
    font-family: var(--font-primary);
    color: var(--text-secondary);
    background: transparent;
    border: 1.5px solid var(--border-light);
    border-radius: .375rem;
    cursor: pointer;
    transition: all .15s;
    white-space: nowrap;
}
.c-faq__tab:hover {
    border-color: var(--brand-primary);
    color: var(--brand-primary);
}
.c-faq__tab--active,
.c-faq__tab--active:hover {
    background: var(--brand-primary);
    color: #fff;
    border-color: var(--brand-primary);
}

/* ── FAQ Items ── */
.c-faq__list {
    flex: 1;
    overflow-y: auto;
    padding: 1rem 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.c-faq__item {
    border-bottom: 1px solid var(--border-light);
    transition: background .15s;
}
.c-faq__item:last-child { border-bottom: none; }
.c-faq__item[open] { background: var(--bg-secondary); }

.c-faq__q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .75rem;
    padding: 1.125rem .625rem;
    font-size: 1rem;
    font-weight: 650;
    color: var(--text-primary);
    cursor: pointer;
    list-style: none;
    transition: color .15s;
}
.c-faq__q::-webkit-details-marker { display: none; }
.c-faq__q::marker { display: none; content: ''; }
.c-faq__q:hover { color: var(--brand-primary); }

.c-faq__chevron {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    color: var(--text-muted);
    transition: transform .3s cubic-bezier(.4,0,.2,1), color .2s;
}
.c-faq__item[open] .c-faq__chevron {
    transform: rotate(180deg);
    color: var(--brand-primary);
}

.c-faq__a {
    overflow: hidden;
    max-height: 0;
    padding: 0 .5rem 0 1.5rem;
    transition: max-height .3s ease, padding .3s ease;
}
.c-faq__item[open] .c-faq__a {
    max-height: 300px;
    padding: 0 .5rem 1rem 1.5rem;
}
.c-faq__a p {
    margin: 0;
    font-size: .825rem;
    line-height: 1.75;
    color: var(--text-secondary);
}

/* No results */
.c-faq__empty {
    text-align: center;
    padding: 2rem 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.c-faq__empty h4 {
    font-size: .9375rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: .625rem 0 .25rem;
}
.c-faq__empty p {
    font-size: .8125rem;
    color: var(--text-muted);
    margin: 0;
}


/* ============================================================
   RESPONSIVE
   ============================================================ */

/* Tablet */
@media (max-width: 1024px) {
    .c-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .c-sidebar {
        position: static;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }
    .c-side-card,
    .c-info-row {
        grid-column: 1 / -1;
    }
    .c-faq__inner {
        max-width: 900px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    /* ── Hero ── */
    .c-hero {
        padding: 3.25rem 0 2.25rem;
    }
    .c-hero__decorations {
        display: none;
    }
    .c-hero__title {
        font-size: 2rem;
    }
    .c-hero__sub {
        font-size: .9rem;
        line-height: 1.65;
    }

    /* ── Form section ── */
    .c-form-section {
        padding: 2.5rem 0;
    }
    .c-card__body {
        padding: 1.75rem 1.25rem 2rem;
    }
    .c-card__head h2 {
        font-size: 1.3125rem;
    }
    .c-card__head p {
        font-size: .875rem;
    }
    .c-form__row {
        grid-template-columns: 1fr;
        gap: .875rem;
    }
    .c-field__input,
    .c-select select {
        padding: .75rem 1rem;
        font-size: .875rem;
    }
    .c-field__input--icon {
        padding-left: 2.75rem !important;
    }
    .c-field__icon {
        left: .75rem;
    }
    .c-field__textarea {
        min-height: 120px;
        font-size: .875rem;
    }
    .c-btn-send {
        padding: .875rem 1.5rem;
        font-size: .9375rem;
        min-height: 48px;
    }

    /* ── Sidebar ── */
    .c-sidebar {
        grid-template-columns: 1fr;
        gap: .875rem;
    }

    /* ── Side cards mobile ── */
    .c-side-card {
        padding: 1.25rem 1.125rem;
        border-radius: .875rem;
    }
    .c-side-card__heading {
        font-size: .9375rem;
    }
    .c-side-card__link {
        font-size: .875rem;
    }
    .c-side-card__icon-wrap {
        width: 40px;
        height: 40px;
    }

    /* ── Airbnb card ── */
    .c-airbnb-card__body {
        padding: .75rem 1rem;
    }
    .c-airbnb-card__center {
        gap: .5rem;
        flex-wrap: nowrap;
        justify-content: center;
    }
    .c-airbnb-card__logo img {
        height: 22px;
    }
    .c-airbnb-card__score {
        font-size: 1.25rem;
    }
    .c-airbnb-card__stars svg {
        width: 14px;
        height: 14px;
    }
    .c-airbnb-card__reviews {
        font-size: .6875rem;
    }

    /* ── Info row ── */
    .c-info-row {
        display: grid;
        grid-template-columns: repeat(3, auto);
        justify-content: center;
        gap: .25rem .75rem;
    }

    /* ── Why Book Direct ── */
    .c-direct-card {
        padding: 1rem 1.25rem;
    }
    .c-direct-card__list li {
        font-size: .75rem;
        gap: .375rem;
    }
    .c-direct-card__list li svg {
        width: 14px;
        height: 14px;
    }

    /* ── Info row ── */
    .c-info-row {
        flex-wrap: wrap;
        justify-content: center;
        gap: .5rem .75rem;
    }
    .c-info-row__item {
        font-size: .65rem;
    }

    /* ── FAQ ── */
    .c-faq {
        padding: 2.5rem 0 3rem;
    }
    .c-faq__inner {
        padding: 0 1rem;
    }
    .c-faq__panel {
        border-radius: 1rem;
    }
    .c-faq__image-title {
        font-size: 1.375rem;
    }
    .c-faq__image-text {
        font-size: .8rem;
        margin-bottom: 1rem;
    }
    .c-faq__image-btn {
        padding: .5rem 1rem;
        font-size: .75rem;
    }
    .c-faq__panel {
        border-radius: 0 0 1rem 1rem;
    }
    .c-faq__top {
        padding: 1.25rem 1.125rem 0;
        flex-direction: column;
        align-items: stretch;
        gap: .625rem;
    }
    .c-faq__top h2 {
        font-size: 1.125rem;
        text-align: left;
    }
    .c-faq__search {
        flex: none;
        width: 100%;
        min-width: 0;
    }
    .c-faq__search input {
        font-size: .8rem;
        padding: .5625rem 2.25rem .5625rem 2rem;
        min-height: 44px;
    }
    .c-faq__tabs {
        padding: .75rem 1.125rem .25rem;
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        gap: .25rem;
    }
    .c-faq__tabs::-webkit-scrollbar { display: none; }
    .c-faq__tab {
        padding: .375rem .625rem;
        font-size: .675rem;
        min-height: 36px;
        display: inline-flex;
        align-items: center;
    }
    .c-faq__list {
        padding: .75rem 1.125rem 1.5rem;
    }
    .c-faq__q {
        font-size: .8125rem;
        padding: .8125rem .375rem;
        min-height: 48px;
    }
    .c-faq__a p {
        font-size: .8rem;
    }
}

/* Small phone */
@media (max-width: 480px) {
    .c-hero {
        padding: 2.75rem 0 2rem;
    }
    .c-hero__title {
        font-size: 1.75rem;
    }
    .c-hero__sub {
        font-size: .8125rem;
    }

    .c-form-section {
        padding: 2rem 0;
    }
    .c-card__body {
        padding: 1.25rem 1rem 1.5rem;
    }
    .c-card__head {
        margin-bottom: 1.5rem;
    }
    .c-card__head h2 {
        font-size: 1.1875rem;
    }
    .c-btn-send {
        margin-top: 1.125rem;
    }

    /* Side cards small phone */
    .c-side-card {
        padding: 1rem 1rem;
        border-radius: .75rem;
    }
    .c-side-card__heading {
        font-size: .875rem;
    }
    .c-side-card__cta {
        padding: .4rem 1rem;
        font-size: .75rem;
    }
    .c-side-card__link {
        font-size: .8125rem;
    }

    /* Airbnb card */
    .c-airbnb-card__body {
        padding: .625rem .75rem;
    }
    .c-airbnb-card__center {
        gap: .375rem;
    }
    .c-airbnb-card__logo img {
        height: 20px;
    }
    .c-airbnb-card__score {
        font-size: 1.125rem;
    }
    .c-airbnb-card__stars svg {
        width: 12px;
        height: 12px;
    }
    .c-airbnb-card__reviews {
        font-size: .625rem;
    }

    /* Info row — single row on small screens */
    .c-info-row {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: .25rem .625rem;
    }
    .c-info-row__item {
        font-size: .625rem;
    }

    /* FAQ refinements */
    .c-faq {
        padding: 2rem 0 2.5rem;
    }
    .c-faq__inner {
        padding: 0 .5rem;
    }
    .c-faq__panel {
        border-radius: .875rem;
    }
    .c-faq__top {
        padding: 1rem 1rem 0;
    }
    .c-faq__tabs {
        padding: .5rem 1rem .25rem;
    }
    .c-faq__list {
        padding: .5rem 1rem 1.25rem;
    }
    .c-faq__q {
        font-size: .775rem;
        padding: .75rem .25rem;
    }
    .c-faq__a p {
        font-size: .75rem;
        line-height: 1.65;
    }
    .c-faq__chevron {
        width: 18px;
        height: 18px;
    }

    /* Direct card */
    .c-direct-card {
        padding: .875rem 1rem;
    }
    .c-direct-card__title {
        font-size: .75rem;
        margin-bottom: .5rem;
    }
    .c-direct-card__list li {
        font-size: .7rem;
    }
}
