/* ═══════════════════════════════════════════════
   VDL AVIATION — Shared Stylesheet
   Used by: index, mcc, joc, courses, rental, contact
═══════════════════════════════════════════════ */

/* ─── Reset ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* ─── Design tokens ─── */
:root {
    --navy:   #1C2A3A;
    --blue:   #1A6FA8;
    --gold:   #C89020;
    --light:  #F4F7FA;
    --muted:  #6B7A8D;
    --white:  #FFFFFF;
    --radius: 8px;
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', sans-serif;
    color: var(--navy);
    background: var(--white);
    line-height: 1.6;
    font-size: 16px;
}

img { max-width: 100%; display: block; }
a   { text-decoration: none; color: inherit; }

/* ══════════════════════════════════════
   NAVBAR
══════════════════════════════════════ */
.nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(28,42,58,0.08);
    padding: 0 20px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    transition: box-shadow 0.2s;
}

.nav-logo img { height: 38px; width: auto; }

.nav-right { display: flex; align-items: center; gap: 12px; }

/* Language switcher */
.lang-switcher {
    display: flex;
    align-items: center;
    gap: 2px;
    border: 1px solid rgba(28,42,58,0.15);
    border-radius: 6px;
    overflow: hidden;
}
.lang-btn {
    background: none;
    border: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: var(--muted);
    cursor: pointer;
    padding: 5px 8px;
    line-height: 1;
    transition: background 0.18s, color 0.18s;
}
.lang-btn.active { background: var(--blue); color: var(--white); }
.lang-btn:not(.active):hover { background: rgba(26,111,168,0.08); color: var(--navy); }
.lang-sep { width: 1px; height: 16px; background: rgba(28,42,58,0.15); flex-shrink: 0; }

/* Hamburger */
.nav-hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
    background: none;
    border: none;
}
.nav-hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--navy);
    border-radius: 2px;
    transition: all 0.28s;
}

/* Mobile fullscreen menu */
.nav-menu {
    display: none;
    position: fixed;
    top: 64px; left: 0; right: 0; bottom: 0;
    background: var(--navy);
    flex-direction: column;
    padding: 28px 24px 40px;
    z-index: 99;
    overflow-y: auto;
}
.nav-menu.open { display: flex; }
.nav-menu a {
    color: rgba(255,255,255,0.85);
    font-family: 'Montserrat', sans-serif;
    font-size: 1.05rem;
    font-weight: 500;
    padding: 17px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.nav-menu .cta-link { color: var(--gold); font-weight: 700; margin-top: 12px; border-bottom: none; }

/* Desktop nav links */
.nav-links { display: none; align-items: center; gap: 2px; }
.nav-links a {
    color: var(--muted);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    font-weight: 500;
    padding: 7px 11px;
    border-radius: 6px;
    transition: color 0.18s, background 0.18s;
}
.nav-links a:hover     { color: var(--navy); background: rgba(28,42,58,0.06); }
.nav-links a.active    { color: var(--blue); }
.nav-links .nav-cta    { background: var(--blue); color: var(--white) !important; padding: 8px 16px; margin-left: 4px; }
.nav-links .nav-cta:hover { background: #155d90; }

/* ══════════════════════════════════════
   BUTTONS
══════════════════════════════════════ */
.btn-primary {
    display: inline-block;
    background: var(--blue);
    color: var(--white);
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.875rem;
    letter-spacing: 0.04em;
    padding: 14px 26px;
    border-radius: var(--radius);
    border: none;
    cursor: pointer;
    transition: background 0.2s;
}
.btn-primary:hover { background: #155d90; }

.btn-outline {
    display: inline-block;
    border: 2px solid rgba(255,255,255,0.55);
    color: var(--white);
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.875rem;
    letter-spacing: 0.04em;
    padding: 12px 26px;
    border-radius: var(--radius);
    transition: border-color 0.2s, background 0.2s;
}
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.12); }

.btn-gold {
    display: inline-block;
    background: var(--gold);
    color: var(--white);
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.875rem;
    letter-spacing: 0.04em;
    padding: 14px 26px;
    border-radius: var(--radius);
    border: none;
    cursor: pointer;
    transition: background 0.2s;
}
.btn-gold:hover { background: #a8780e; }

/* ══════════════════════════════════════
   SECTION BASE
══════════════════════════════════════ */
section { padding: 72px 24px; }

.section-eyebrow {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: 10px;
}

.section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1.6rem, 5vw, 2.4rem);
    font-weight: 700;
    line-height: 1.2;
    color: var(--navy);
    margin-bottom: 14px;
}

.section-body {
    color: var(--muted);
    font-size: 0.95rem;
    line-height: 1.75;
}

/* Light background variant */
.bg-light { background: var(--light); }
.bg-navy  { background: var(--navy); }

/* Horizon divider — cockpit attitude indicator motif */
.horizon { display: flex; align-items: center; gap: 12px; margin: 24px 0 30px; }
.horizon-line { flex: 1; height: 1px; background: var(--blue); opacity: 0.2; }
.horizon-dot  { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); flex-shrink: 0; }

/* ══════════════════════════════════════
   PAGE HEADER (inner pages)
══════════════════════════════════════ */
.page-header {
    position: relative;
    height: 46vh;
    min-height: 260px;
    max-height: 380px;
    display: flex;
    align-items: flex-end;
    padding: 0 24px 48px;
    margin-top: 64px;
    overflow: hidden;
}

.page-header-bg {
    position: absolute;
    inset: 0;
    background-image: url('../images/hero-plane.jpg');
    background-size: cover;
    background-position: center 40%;
}

.page-header-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(28, 42, 58, 0.78) 0%,
        rgba(28, 42, 58, 0.35) 55%,
        rgba(28, 42, 58, 0.06) 100%
    );
}

.page-header-content { position: relative; z-index: 1; }

.page-header-eyebrow {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 10px;
}

.page-header h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1.8rem, 6vw, 3rem);
    font-weight: 800;
    line-height: 1.1;
    color: var(--white);
}

/* Breadcrumb */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 10px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.72rem;
    font-weight: 500;
    color: rgba(255,255,255,0.55);
}
.breadcrumb a          { color: rgba(255,255,255,0.55); transition: color 0.2s; }
.breadcrumb a:hover    { color: var(--white); }
.breadcrumb .sep       { opacity: 0.4; }
.breadcrumb .current   { color: rgba(255,255,255,0.85); }

/* ══════════════════════════════════════
   COURSE CARDS (homepage + courses page)
══════════════════════════════════════ */
.course-cards { display: flex; flex-direction: column; gap: 20px; }

.course-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(28,42,58,0.07);
    transition: transform 0.22s, box-shadow 0.22s;
}
.course-card:hover { transform: translateY(-4px); box-shadow: 0 8px 28px rgba(28,42,58,0.13); }

.course-card-img { width: 100%; height: 210px; object-fit: cover; }

.course-card-body { padding: 24px; }

.course-tag {
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--blue);
    background: rgba(26,111,168,0.1);
    padding: 4px 10px;
    border-radius: 100px;
    margin-bottom: 12px;
}

.course-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.12rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.course-card p { font-size: 0.875rem; color: var(--muted); line-height: 1.65; margin-bottom: 20px; }

.course-link {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--blue);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.2s;
}
.course-link::after { content: '→'; }
.course-link:hover  { gap: 10px; }

/* ══════════════════════════════════════
   HIGHLIGHT LIST (what's included)
══════════════════════════════════════ */
.highlight-list { display: flex; flex-direction: column; gap: 16px; margin-top: 8px; }

.highlight-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 18px 20px;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(28,42,58,0.06);
    border-left: 3px solid var(--blue);
}

.highlight-icon {
    font-size: 1.3rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.highlight-item h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--navy);
}

.highlight-item p { font-size: 0.85rem; color: var(--muted); line-height: 1.6; }

/* ══════════════════════════════════════
   REQUIREMENT CARDS
══════════════════════════════════════ */
.requirement-cards { display: flex; flex-direction: column; gap: 14px; margin-top: 8px; }

.requirement-card {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 18px 20px;
    background: var(--light);
    border-radius: 10px;
}

.req-number {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--navy);
    color: var(--white);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.requirement-card p { font-size: 0.875rem; color: var(--muted); line-height: 1.65; padding-top: 6px; }

/* ══════════════════════════════════════
   PRICING CARDS (rental page)
══════════════════════════════════════ */
.pricing-grid { display: flex; flex-direction: column; gap: 16px; margin-top: 8px; }

.pricing-card {
    background: var(--white);
    border-radius: 12px;
    padding: 28px 24px;
    box-shadow: 0 2px 12px rgba(28,42,58,0.07);
    display: flex;
    flex-direction: column;
    gap: 8px;
    border-top: 3px solid var(--blue);
    transition: transform 0.2s, box-shadow 0.2s;
}
.pricing-card:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(28,42,58,0.12); }
.pricing-card.featured { border-top-color: var(--gold); }

.pricing-duration {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--muted);
}

.pricing-price {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--navy);
    line-height: 1;
}
.pricing-price span { font-size: 1rem; font-weight: 500; color: var(--muted); }

.pricing-note { font-size: 0.8rem; color: var(--muted); }

/* ══════════════════════════════════════
   CTA BAND
══════════════════════════════════════ */
.cta-band {
    background: var(--navy);
    text-align: center;
    padding: 72px 24px;
}
.cta-band h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1.4rem, 5vw, 2.1rem);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
}
.cta-band p {
    color: rgba(255,255,255,0.62);
    font-size: 0.95rem;
    margin-bottom: 32px;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

/* ══════════════════════════════════════
   AIRLINES STRIP
══════════════════════════════════════ */
.airline-logos {
    display: flex;
    overflow-x: auto;
    gap: 40px;
    padding-bottom: 8px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    align-items: center;
}
.airline-logos::-webkit-scrollbar { display: none; }

.airline-logo {
    height: 44px;
    width: auto;
    object-fit: contain;
    flex-shrink: 0;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: filter 0.25s, opacity 0.25s;
}
.airline-logo:hover { filter: grayscale(0%); opacity: 1; }

/* ══════════════════════════════════════
   CONTACT FORM
══════════════════════════════════════ */
.contact-info  { display: flex; flex-direction: column; gap: 22px; margin-bottom: 40px; }
.contact-item  { display: flex; gap: 16px; align-items: flex-start; }

.contact-icon {
    width: 44px; height: 44px;
    border-radius: 8px;
    background: rgba(26,111,168,0.09);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem; flex-shrink: 0;
}

.contact-item h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 3px;
}
.contact-item p, .contact-item a { font-size: 0.95rem; color: var(--navy); font-weight: 500; }
.contact-item a:hover { color: var(--blue); }

.contact-form  { display: flex; flex-direction: column; gap: 16px; }
.form-group    { display: flex; flex-direction: column; gap: 6px; }

.form-group label {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--navy);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 1.5px solid #DDE3EA;
    border-radius: var(--radius);
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: var(--navy);
    background: var(--white);
    width: 100%;
    transition: border-color 0.2s;
    -webkit-appearance: none;
    appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { outline: none; border-color: var(--blue); }
.form-group textarea { resize: vertical; min-height: 120px; }

.btn-submit {
    background: var(--blue);
    color: var(--white);
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.875rem;
    letter-spacing: 0.05em;
    padding: 14px 28px;
    border: none;
    border-radius: var(--radius);
    cursor: pointer;
    transition: background 0.2s;
    align-self: flex-start;
}
.btn-submit:hover { background: #155d90; }

/* ══════════════════════════════════════
   ABOUT PERKS
══════════════════════════════════════ */
.about-perks { margin-top: 8px; display: flex; flex-direction: column; gap: 18px; }
.perk        { display: flex; gap: 16px; align-items: flex-start; }

.perk-icon {
    width: 42px; height: 42px;
    border-radius: 8px;
    background: rgba(26,111,168,0.09);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0; font-size: 1.1rem;
}
.perk-text h4 { font-family: 'Montserrat', sans-serif; font-size: 0.88rem; font-weight: 700; margin-bottom: 2px; }
.perk-text p  { font-size: 0.82rem; color: var(--muted); }

/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
footer {
    background: var(--navy);
    color: rgba(255,255,255,0.5);
    padding: 52px 24px 32px;
}

.footer-logo         { margin-bottom: 18px; }
.footer-logo img     { height: 36px; }

footer > p {
    font-size: 0.85rem;
    line-height: 1.75;
    margin-bottom: 28px;
    max-width: 320px;
}

.footer-socials { display: flex; gap: 10px; margin-bottom: 36px; }

.social-link {
    width: 38px; height: 38px;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.45);
    font-size: 0.75rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    transition: border-color 0.2s, color 0.2s;
}
.social-link:hover { border-color: var(--white); color: var(--white); }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 24px;
}
.footer-links { display: flex; flex-wrap: wrap; gap: 14px 22px; margin-bottom: 18px; }
.footer-links a { color: rgba(255,255,255,0.4); font-size: 0.82rem; transition: color 0.2s; }
.footer-links a:hover { color: var(--white); }
.footer-copy  { font-size: 0.78rem; }

/* ══════════════════════════════════════
   SCROLL REVEAL
══════════════════════════════════════ */
/* Reveal animation — fail-safe approach.
   Content is ALWAYS visible by default.
   JS hides elements below the fold, then animates them in on scroll.
   If JS fails for any reason, all content stays visible. */
.reveal { transition: opacity 0.55s ease, transform 0.55s ease; }
.reveal.will-animate { opacity: 0; transform: translateY(22px); }
.reveal.visible { opacity: 1 !important; transform: none !important; }

/* ══════════════════════════════════════
   DESKTOP (768px+)
══════════════════════════════════════ */
@media (min-width: 768px) {
    .nav-hamburger { display: none; }
    .nav-links     { display: flex; }

    section    { padding: 100px 48px; }
    .cta-band  { padding: 80px 48px; }

    .page-header          { padding: 0 48px 56px; }
    .page-header h1       { font-size: clamp(2.2rem, 4vw, 3.2rem); }

    .course-cards { flex-direction: row; flex-wrap: wrap; }
    .course-card  { flex: 1 1 calc(33.33% - 14px); min-width: 260px; }

    .pricing-grid { flex-direction: row; flex-wrap: wrap; }
    .pricing-card { flex: 1 1 calc(50% - 8px); }

    .two-col {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 72px;
        align-items: start;
    }
    .two-col.center { align-items: center; }

    .contact-info { margin-bottom: 0; }
    .airline-logos { justify-content: center; }
}

@media (min-width: 1024px) {
    section   { padding: 108px 80px; }
    .cta-band { padding: 88px 80px; }
    .page-header { padding: 0 80px 64px; }

    .pricing-grid { flex-wrap: nowrap; }
    .pricing-card { flex: 1; }
}

/* ══════════════════════════════════════
   CONSENT CHECKBOX (GDPR)
══════════════════════════════════════ */
.form-consent {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 16px;
    background: var(--light);
    border-radius: var(--radius);
    border: 1.5px solid #DDE3EA;
}

.form-consent input[type="checkbox"] {
    width: 18px;
    height: 18px;
    min-width: 18px;
    margin-top: 2px;
    accent-color: var(--blue);
    cursor: pointer;
    border: 1.5px solid #DDE3EA;
    border-radius: 3px;
}

.form-consent label {
    font-size: 0.8rem;
    color: var(--muted);
    line-height: 1.55;
    cursor: pointer;
    text-transform: none;
    letter-spacing: 0;
    font-weight: 400;
}

.form-consent label a {
    color: var(--blue);
    text-decoration: underline;
    text-underline-offset: 2px;
}
.form-consent label a:hover { color: #155d90; }

/* ══════════════════════════════════════
   LEGAL PAGES — language block toggle
   .lang-en shown by default, .lang-pl hidden.
   main.js switches them on language change.
══════════════════════════════════════ */
.lang-pl { display: none; }
.lang-en { display: block; }

.legal-content {
    max-width: 780px;
    margin: 0 auto;
}
.legal-content h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--navy);
    margin: 36px 0 10px;
    padding-top: 8px;
    border-top: 1px solid #EEF1F5;
}
.legal-content h2:first-of-type { border-top: none; margin-top: 0; }
.legal-content p  { color: var(--muted); font-size: 0.9rem; line-height: 1.8; margin-bottom: 12px; }
.legal-content ul { color: var(--muted); font-size: 0.9rem; line-height: 1.8; margin: 0 0 12px 20px; }
.legal-content ul li { margin-bottom: 6px; }
.legal-content a   { color: var(--blue); text-decoration: underline; text-underline-offset: 2px; }
.legal-content .last-updated {
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--muted);
    background: var(--light);
    padding: 6px 12px;
    border-radius: 4px;
    margin-bottom: 32px;
}


/* ══════════════════════════════════════
   WHATSAPP + DIRECTIONS BUTTONS
══════════════════════════════════════ */
.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #25D366;
    color: var(--white);
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    padding: 13px 22px;
    border-radius: var(--radius);
    transition: background 0.2s;
}
.btn-whatsapp:hover { background: #1eb857; }

.btn-directions {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--navy);
    color: var(--white);
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    padding: 13px 22px;
    border-radius: var(--radius);
    transition: background 0.2s;
}
.btn-directions:hover { background: #2d4258; }

/* ══════════════════════════════════════
   GOOGLE REVIEWS SECTION
══════════════════════════════════════ */
.reviews-header { text-align: center; margin-bottom: 12px; }

.reviews-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 36px;
    flex-wrap: wrap;
}
.reviews-rating .score {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: var(--navy);
}
.reviews-rating .stars { color: #FBBC04; font-size: 1.2rem; letter-spacing: 2px; }
.reviews-rating .count { color: var(--muted); font-size: 0.85rem; }
.reviews-rating .count a { color: var(--blue); text-decoration: underline; text-underline-offset: 2px; }

.review-cards { display: flex; flex-direction: column; gap: 18px; }

.review-card {
    background: var(--white);
    border-radius: 12px;
    padding: 26px 24px;
    box-shadow: 0 2px 12px rgba(28,42,58,0.07);
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.review-stars { color: #FBBC04; font-size: 0.95rem; letter-spacing: 2px; }

.review-text {
    font-size: 0.88rem;
    color: var(--muted);
    line-height: 1.7;
    font-style: italic;
}

.review-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--navy);
}
.review-meta .g-badge {
    width: 18px; height: 18px;
    border-radius: 50%;
    background: var(--light);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.6rem;
    font-weight: 800;
    color: #4285F4;
}

@media (min-width: 768px) {
    .review-cards { flex-direction: row; flex-wrap: wrap; }
    .review-card  { flex: 1 1 calc(33.33% - 12px); min-width: 260px; }
}


/* ══════════════════════════════════════
   FLOATING WHATSAPP BUTTON
   (all pages except homepage and contact)
══════════════════════════════════════ */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 90;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: #25D366;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.45);
    transition: transform 0.2s, box-shadow 0.2s;
}
.whatsapp-float:hover {
    transform: scale(1.08);
    box-shadow: 0 6px 22px rgba(37, 211, 102, 0.6);
}
.whatsapp-float svg { width: 30px; height: 30px; }

@media (min-width: 768px) {
    .whatsapp-float { bottom: 32px; right: 32px; }
}

/* ══════════════════════════════════════
   ARTICLE / BLOG PAGES
══════════════════════════════════════ */
.article-body { max-width: 720px; margin: 0 auto; }
.article-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--muted);
    margin-bottom: 28px;
    flex-wrap: wrap;
}
.article-meta .tag {
    background: rgba(26,111,168,0.1);
    color: var(--blue);
    padding: 4px 10px;
    border-radius: 100px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    font-size: 0.62rem;
    font-weight: 700;
}
.article-body h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--navy);
    margin: 38px 0 14px;
}
.article-body h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--navy);
    margin: 26px 0 10px;
}
.article-body p { color: #4A5A6B; font-size: 1rem; line-height: 1.8; margin-bottom: 18px; }
.article-body ul { color: #4A5A6B; font-size: 1rem; line-height: 1.8; margin: 0 0 18px 22px; }
.article-body ul li { margin-bottom: 8px; }
.article-body strong { color: var(--navy); }
.article-lead {
    font-size: 1.12rem !important;
    line-height: 1.7 !important;
    color: var(--navy) !important;
    font-weight: 500;
    margin-bottom: 26px !important;
}
.article-callout {
    background: var(--light);
    border-left: 3px solid var(--gold);
    border-radius: 0 8px 8px 0;
    padding: 20px 24px;
    margin: 28px 0;
}
.article-callout p { margin: 0; font-size: 0.95rem; }
.article-cta {
    background: var(--navy);
    border-radius: 12px;
    padding: 32px 28px;
    text-align: center;
    margin-top: 44px;
}
.article-cta h3 { color: var(--white); font-family: 'Montserrat', sans-serif; font-size: 1.2rem; font-weight: 700; margin-bottom: 10px; }
.article-cta p { color: rgba(255,255,255,0.7); font-size: 0.9rem; margin-bottom: 22px; }

/* ══════════════════════════════════════
   FORM VALIDATION & SUBMIT STATES
══════════════════════════════════════ */
.form-error {
    display: none;
    color: #C0392B;
    font-family: 'Inter', sans-serif;
    font-size: 0.78rem;
    line-height: 1.5;
    margin-top: 5px;
}
.form-error.visible { display: block; }

.form-group.has-error input,
.form-group.has-error select,
.form-group.has-error textarea {
    border-color: #C0392B;
    background: #FFFBFB;
}
.form-group.has-error label { color: #C0392B; }

.form-consent.has-error {
    border-color: #C0392B;
    background: #FFF6F5;
}
.form-consent.has-error .form-error { margin-left: 30px; }

.btn-submit:disabled {
    opacity: 0.65;
    cursor: wait;
}

/* Inline status box (errors after a failed send) */
.form-status {
    border-radius: var(--radius);
    padding: 16px 18px;
    margin-top: 4px;
}
.form-status h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 4px;
}
.form-status p { font-size: 0.83rem; line-height: 1.6; }
.form-status.error    { background: #FFF3F2; border: 1.5px solid #F3C9C4; }
.form-status.error h4  { color: #C0392B; }
.form-status.error p   { color: #8B4540; }

/* Success panel — replaces the form entirely */
.form-success {
    background: var(--light);
    border: 1.5px solid #CFE3D4;
    border-radius: 12px;
    padding: 40px 28px;
    text-align: center;
}
.form-success-icon {
    width: 54px;
    height: 54px;
    margin: 0 auto 18px;
    border-radius: 50%;
    background: #1E9E4A;
    color: var(--white);
    font-size: 1.6rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}
.form-success h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 10px;
}
.form-success p {
    color: var(--muted);
    font-size: 0.9rem;
    line-height: 1.7;
    max-width: 380px;
    margin: 0 auto;
}
