/* ============================================================
   UK TRAVEL BRIDGE - Main Stylesheet
   Clean, modern, trustworthy UK travel agency design.
   ============================================================ */

/* ------------------------------------------------------------
   1. Design tokens
   ------------------------------------------------------------ */
:root {
    /* UK Travel Bridge brand palette: Navy Blue + Red + White */
    --primary: #0B2A5B;      /* Navy Blue */
    --primary-2: #123B78;    /* Royal / Dark Blue */
    --secondary: #1d5fbf;    /* Medium royal blue (icons, focus) */
    --accent: #D71920;       /* Brand Red (CTAs, highlights) */
    --accent-2: #B3131A;     /* Deep red (hovers, gradients) */

    --ink: #1e293b;
    --muted: #5f6f82;
    --bg: #ffffff;
    --bg-soft: #F5F7FA;      /* Light background */
    --bg-tint: #e8eef7;
    --line: #e3e9f1;

    --dark: #071a36;         /* Deep navy (topbar, footer, dark sections) */
    --dark-2: #0B2A5B;

    --success: #16a34a;
    --success-bg: #e9f9ef;
    --error: #dc2626;
    --error-bg: #fdecec;
    --warning: #d97706;
    --warning-bg: #fdf3e2;
    --info: #0369a1;
    --info-bg: #e8f4fb;

    --r: 14px;
    --r-sm: 9px;
    --r-lg: 22px;

    --sh-sm: 0 2px 10px rgba(11, 42, 91, 0.07);
    --sh-md: 0 12px 32px rgba(11, 42, 91, 0.12);
    --sh-lg: 0 26px 60px rgba(11, 42, 91, 0.18);

    --font: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, Arial, sans-serif;

    --header-h: 76px;
    --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ------------------------------------------------------------
   2. Reset & base
   ------------------------------------------------------------ */
*, *::before, *::after { box-sizing: border-box; }

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    /* Keep anchor targets clear of the sticky header (e.g. #deals). */
    scroll-padding-top: 96px;
}

body {
    margin: 0;
    font-family: var(--font);
    font-size: 16px;
    line-height: 1.65;
    color: var(--ink);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
    -webkit-tap-highlight-color: transparent;
    /* Prevent the off-canvas mobile nav from creating horizontal
       scrollbars. Body overflow propagates to the viewport, so
       position:sticky (the site header) keeps working. */
    overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: var(--primary-2); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--accent-2); }
ul, ol { margin: 0; padding: 0; }
h1, h2, h3, h4, h5 { margin: 0 0 0.6em; line-height: 1.22; font-weight: 800; color: var(--primary); }
p { margin: 0 0 1em; }
button { font-family: inherit; cursor: pointer; }
input, select, textarea { font-family: inherit; }

:focus-visible {
    outline: 3px solid rgba(18, 59, 120, 0.5);
    outline-offset: 2px;
    border-radius: 4px;
}

.skip-link {
    position: absolute;
    left: -9999px;
    top: 0;
    background: var(--primary);
    color: #fff;
    padding: 10px 18px;
    z-index: 999;
    border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; color: #fff; }

/* ------------------------------------------------------------
   3. Layout utilities
   ------------------------------------------------------------ */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 22px;
}

.section { padding: 84px 0; }
.section-soft { background: var(--bg-soft); }
.section-dark { background: var(--dark); }

.section-head {
    max-width: 640px;
    margin: 0 auto 48px;
    text-align: center;
}

.section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent);
    background: rgba(215, 25, 32, 0.08);
    padding: 6px 14px;
    border-radius: 999px;
    margin-bottom: 16px;
}

.section-head h2 {
    font-size: clamp(1.7rem, 3.4vw, 2.5rem);
    margin-bottom: 14px;
}

.section-head p { color: var(--muted); font-size: 1.05rem; margin: 0; }

.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }

/* ------------------------------------------------------------
   4. Buttons
   ------------------------------------------------------------ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 13px 24px;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.2;
    border-radius: 999px;
    border: 2px solid transparent;
    transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition), border-color var(--transition);
    white-space: nowrap;
    text-decoration: none;
}

.btn:hover { transform: translateY(-2px); }

.btn-primary {
    background: linear-gradient(135deg, var(--primary-2), var(--primary));
    color: #fff;
    box-shadow: 0 10px 22px rgba(11, 42, 91, 0.28);
}
.btn-primary:hover { background: linear-gradient(135deg, var(--primary), var(--dark)); color: #fff; box-shadow: 0 14px 28px rgba(11, 42, 91, 0.35); }

.btn-accent {
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    color: #fff;
    box-shadow: 0 10px 22px rgba(215, 25, 32, 0.32);
}
.btn-accent:hover { color: #fff; box-shadow: 0 14px 30px rgba(215, 25, 32, 0.42); }

.btn-whatsapp {
    background: #25d366;
    color: #fff;
    box-shadow: 0 10px 22px rgba(37, 211, 102, 0.32);
}
.btn-whatsapp:hover { background: #1fb457; color: #fff; box-shadow: 0 14px 30px rgba(37, 211, 102, 0.4); }

.btn-outline {
    background: transparent;
    color: var(--primary);
    border-color: var(--primary);
}
.btn-outline:hover { background: var(--primary); color: #fff; }

.btn-outline-light {
    background: transparent;
    color: #fff;
    border-color: rgba(255, 255, 255, 0.65);
}
.btn-outline-light:hover { background: #fff; color: var(--primary); border-color: #fff; }

.btn-ghost { background: var(--bg-soft); color: var(--primary); }
.btn-ghost:hover { background: var(--bg-tint); }

.btn-lg { padding: 16px 32px; font-size: 16px; }
.btn-sm { padding: 9px 16px; font-size: 13.5px; }
.btn-block { width: 100%; }
.btn-icon { padding: 12px; border-radius: 50%; }

.btn[disabled] { opacity: 0.6; pointer-events: none; }

/* Disabled / non-clickable contact controls (WhatsApp-only policy).
   Used for phone / email links that are shown for information but
   must not navigate anywhere. */
.is-disabled {
    opacity: 0.55;
    cursor: not-allowed;
    pointer-events: none;
    text-decoration: none;
}
a.is-disabled:hover { color: inherit; }
.btn.is-disabled { opacity: 0.6; }

/* Display-only buttons (deal cards): shown for information, not clickable. */
.btn-static {
    cursor: default;
    pointer-events: none;
}

/* ------------------------------------------------------------
   5. Alerts / flash messages
   ------------------------------------------------------------ */
.page-alerts { padding-top: 18px; }

.alert {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 16px;
    border-radius: var(--r-sm);
    margin-bottom: 14px;
    font-size: 14.5px;
    font-weight: 500;
    animation: alertIn 0.35s ease both;
    border: 1px solid transparent;
}
@keyframes alertIn {
    from { opacity: 0; transform: translateY(-8px); }
    to   { opacity: 1; transform: none; }
}
.alert p { margin: 0; flex: 1; }
.alert-icon { width: 9px; height: 9px; border-radius: 50%; margin-top: 7px; background: currentColor; flex-shrink: 0; }
.alert-close {
    background: none; border: none; font-size: 18px; line-height: 1;
    color: inherit; opacity: 0.7; padding: 0 2px;
}
.alert-close:hover { opacity: 1; }
.alert-success { background: var(--success-bg); color: var(--success); border-color: #c9eed6; }
.alert-error   { background: var(--error-bg); color: var(--error); border-color: #f6caca; }
.alert-warning { background: var(--warning-bg); color: var(--warning); border-color: #f4ddb5; }
.alert-info    { background: var(--info-bg); color: var(--info); border-color: #c3e2f5; }

/* ------------------------------------------------------------
   6. Topbar
   ------------------------------------------------------------ */
.topbar {
    background: var(--dark);
    color: #cbd9e6;
    font-size: 13px;
    position: relative;
    z-index: 60;
}
.topbar-inner { display: flex; align-items: center; justify-content: space-between; min-height: 40px; gap: 16px; }
.topbar a { color: #cbd9e6; display: inline-flex; align-items: center; gap: 7px; }
.topbar a:hover { color: var(--accent); }
.topbar-left, .topbar-right { display: flex; align-items: center; gap: 20px; }
.topbar-hours { display: inline-flex; align-items: center; gap: 7px; color: #93a7bb; }
.topbar-social { display: flex; align-items: center; gap: 10px; }
.topbar-social a { color: #93a7bb; padding: 3px; }
.topbar-social a:hover { color: var(--accent); }

/* ------------------------------------------------------------
   7. Header & navigation
   ------------------------------------------------------------ */
.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(10px);
    box-shadow: var(--sh-sm);
    transition: box-shadow var(--transition);
}
.site-header.scrolled { box-shadow: var(--sh-md); }

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    min-height: var(--header-h);
}

.brand { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; }
.brand-mark {
    width: 44px; height: 44px;
    display: inline-flex; align-items: center; justify-content: center;
    background: linear-gradient(135deg, var(--secondary), var(--primary-2));
    color: #fff;
    border-radius: 13px;
    box-shadow: 0 8px 18px rgba(18, 59, 120, 0.35);
    flex-shrink: 0;
}
.brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.brand-name { font-size: 19px; font-weight: 800; color: var(--primary); letter-spacing: -0.01em; }
.brand-tag { font-size: 11.5px; color: var(--muted); font-weight: 600; letter-spacing: 0.04em; }
.brand-logo { max-height: 48px; width: auto; height: auto; }
.brand-footer .brand-logo { max-height: 56px; }

/* White chip behind the footer logo so it reads cleanly on the dark navy footer. */
.footer-logo-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 12px;
    padding: 10px 14px;
    box-shadow: 0 8px 22px rgba(5, 26, 45, 0.28);
}
.footer-logo-chip .brand-logo { max-height: 46px; }
.footer-brand .brand-text { min-width: 0; }
.footer-brand .footer-about { margin-top: 18px; }

.nav-list { display: flex; align-items: center; gap: 4px; list-style: none; }
.nav-link {
    display: block;
    padding: 10px 14px;
    font-weight: 600;
    font-size: 15px;
    color: var(--ink);
    border-radius: 999px;
    position: relative;
}
.nav-link:hover { color: var(--primary-2); background: var(--bg-tint); }
.nav-link.active { color: var(--primary); background: var(--bg-tint); }
.nav-link.active::after {
    content: '';
    position: absolute;
    left: 14px; right: 14px; bottom: 4px;
    height: 3px;
    border-radius: 3px;
    background: linear-gradient(90deg, var(--accent), var(--accent-2));
}

.header-actions { display: flex; align-items: center; gap: 12px; }
.btn-phone { background: var(--bg-tint); color: var(--primary); }
.btn-phone:hover { background: var(--primary); color: #fff; }
.btn-phone-text { font-weight: 800; }

.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 46px; height: 46px;
    padding: 12px;
    background: var(--primary);
    border: none;
    border-radius: 12px;
}
.nav-toggle span { display: block; height: 2.5px; border-radius: 3px; background: #fff; transition: transform var(--transition), opacity var(--transition); }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

.nav-mobile-actions { display: none; }

/* ------------------------------------------------------------
   8. Hero
   ------------------------------------------------------------ */
.hero {
    position: relative;
    background: linear-gradient(180deg, rgba(5, 26, 45, 0.72), rgba(5, 26, 45, 0.55)), var(--dark);
    background-size: cover;
    background-position: center;
    color: #fff;
    padding: 96px 0 130px;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(1000px 460px at 85% -10%, rgba(29, 95, 191, 0.4), transparent 62%),
        radial-gradient(760px 420px at 5% 112%, rgba(215, 25, 32, 0.3), transparent 62%),
        radial-gradient(520px 300px at 55% 45%, rgba(18, 59, 120, 0.18), transparent 65%);
    pointer-events: none;
}
/* Soft navy fade at the base so the white search widget sits on a
   smooth, branded transition into the page below. */
.hero::after {
    content: '';
    position: absolute;
    left: 0; right: 0; bottom: 0;
    height: 150px;
    background: linear-gradient(180deg, rgba(5, 26, 45, 0) 0%, rgba(5, 26, 45, 0.78) 100%);
    pointer-events: none;
}

.hero-content { position: relative; text-align: center; max-width: 820px; margin: 0 auto 54px; }

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.22);
    backdrop-filter: blur(6px);
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 8px 18px;
    border-radius: 999px;
    margin-bottom: 22px;
}
.hero-badge svg { color: var(--accent); }

.hero h1 {
    color: #fff;
    font-size: clamp(2.3rem, 5.6vw, 4.1rem);
    letter-spacing: -0.02em;
    margin-bottom: 18px;
    text-wrap: balance;
}
.hero h1 span {
    background: linear-gradient(90deg, #8db4f5, #ff5a5f);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.hero-sub {
    font-size: clamp(1.02rem, 1.8vw, 1.22rem);
    color: #dbe8f3;
    max-width: 640px;
    margin: 0 auto;
}

/* Search widget */
.search-widget {
    position: relative;
    z-index: 1; /* sit above the hero's decorative bottom fade */
    max-width: 1000px;
    margin: 0 auto;
    background: #fff;
    border-radius: var(--r-lg);
    box-shadow: var(--sh-lg);
    padding: 26px;
    animation: widgetIn 0.6s 0.15s ease both;
}
@keyframes widgetIn { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: none; } }

.widget-tabs {
    display: flex;
    gap: 8px;
    background: var(--bg-soft);
    border-radius: 999px;
    padding: 6px;
    margin-bottom: 26px;
    max-width: 420px;
}
.widget-tab {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 11px 18px;
    border: none;
    border-radius: 999px;
    background: transparent;
    color: var(--muted);
    font-size: 14.5px;
    font-weight: 700;
    transition: all var(--transition);
}
.widget-tab:hover { color: var(--primary); }
.widget-tab.active {
    background: linear-gradient(135deg, var(--primary-2), var(--primary));
    color: #fff;
    box-shadow: 0 8px 18px rgba(11, 42, 91, 0.3);
}

/* ------------------------------------------------------------
   9. Forms
   ------------------------------------------------------------ */
.form-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
.form-grid.three { grid-template-columns: repeat(3, 1fr); }
.field { display: flex; flex-direction: column; gap: 7px; min-width: 0; }
.field-wide { grid-column: span 2; }
.field-trip { grid-column: span 1; }

.field label { font-size: 13px; font-weight: 700; color: var(--ink); }
.field label .req { color: var(--error); }

.field input,
.field select,
.field textarea {
    width: 100%;
    padding: 12px 14px;
    font-size: 14.5px;
    color: var(--ink);
    background: var(--bg-soft);
    border: 1.5px solid transparent;
    border-radius: var(--r-sm);
    transition: border-color var(--transition), background var(--transition), box-shadow var(--transition);
}
/* Keep the native calendar/clock picker affordance on date/time inputs. */
.field input[type="date"],
.field input[type="time"] { appearance: auto; }
.field textarea { resize: vertical; min-height: 130px; }
.field select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%235f6f82' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 40px;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
    outline: none;
    background: #fff;
    border-color: var(--secondary);
    box-shadow: 0 0 0 4px rgba(29, 95, 191, 0.16);
}
.field input::placeholder, .field textarea::placeholder { color: #9aa9ba; }

.field.has-error input, .field.has-error select, .field.has-error textarea {
    border-color: var(--error);
    background: var(--error-bg);
}
.field-error {
    display: none;
    font-size: 12.5px;
    font-weight: 600;
    color: var(--error);
}
.field.has-error .field-error { display: block; }

.form-section {
    margin-top: 22px;
    padding-top: 20px;
    border-top: 1px dashed var(--line);
}
.form-section-title { font-size: 15.5px; margin-bottom: 4px; }
.form-hint { font-size: 13px; color: var(--muted); margin-bottom: 14px; }

.form-submit {
    margin-top: 22px;
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}
.form-note {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 13px;
    color: var(--muted);
    margin: 0;
}
.form-note svg { color: var(--success); flex-shrink: 0; }

.btn-submit { min-width: 200px; }

/* Compact forms inside the hero widget */
.search-form.compact .form-grid { grid-template-columns: repeat(3, 1fr); }
.search-form.compact .form-submit { margin-top: 18px; justify-content: flex-end; }

/* Form success panel (AJAX confirmation) */
.form-success {
    text-align: center;
    padding: 42px 20px;
}
.form-success-icon {
    width: 74px; height: 74px;
    margin: 0 auto 20px;
    display: flex; align-items: center; justify-content: center;
    background: var(--success-bg);
    color: var(--success);
    border-radius: 50%;
    animation: pop 0.45s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}
@keyframes pop { from { transform: scale(0.4); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.form-success h3 { color: var(--success); margin-bottom: 8px; }
.form-success p { color: var(--muted); max-width: 460px; margin: 0 auto 6px; }
.form-success .ref {
    display: inline-block;
    background: var(--bg-soft);
    border: 1px dashed var(--line);
    padding: 6px 16px;
    border-radius: 999px;
    font-weight: 700;
    color: var(--primary);
    font-size: 14px;
    margin: 10px 0 22px;
}
.form-success .form-success-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* Help box (Need help booking?) */
.help-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
    background: linear-gradient(120deg, var(--bg-tint), #fff);
    border: 1px solid var(--line);
    border-radius: var(--r);
    padding: 22px 26px;
    margin-top: 26px;
}
.help-box h3 { margin-bottom: 4px; font-size: 18px; }
.help-box p { margin: 0; color: var(--muted); font-size: 14.5px; }
.help-box-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* ------------------------------------------------------------
   10. Stats strip
   ------------------------------------------------------------ */
.stats {
    background: linear-gradient(120deg, var(--dark), var(--dark-2));
    color: #fff;
    padding: 54px 0;
    margin-top: -70px; /* overlaps the hero widget */
    position: relative;
    z-index: 1;
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    text-align: center;
}
.stat h3 {
    color: #fff;
    font-size: clamp(1.7rem, 3vw, 2.3rem);
    margin-bottom: 2px;
    letter-spacing: -0.02em;
}
.stat h3 span { color: var(--accent); }
.stat p { margin: 0; color: #9db2c6; font-size: 14px; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; }

/* ------------------------------------------------------------
   11. Flight deals
   ------------------------------------------------------------ */
.deals-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}
.deal-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--r);
    overflow: hidden;
    box-shadow: var(--sh-sm);
    transition: transform var(--transition), box-shadow var(--transition);
}
.deal-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--sh-lg);
}
.deal-media {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
}
.deal-media img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.55s ease;
}
.deal-card:hover .deal-media img { transform: scale(1.07); }
.deal-trip-badge {
    position: absolute;
    top: 14px; left: 14px;
    background: rgba(255, 255, 255, 0.94);
    color: var(--primary);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 999px;
    box-shadow: var(--sh-sm);
}
.deal-price-badge {
    position: absolute;
    bottom: 14px; right: 14px;
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    color: #fff;
    padding: 7px 14px;
    border-radius: 999px;
    font-weight: 800;
    font-size: 15px;
    box-shadow: 0 8px 18px rgba(215, 25, 32, 0.4);
}
.deal-price-badge small { font-weight: 600; font-size: 11px; opacity: 0.9; }

.deal-body { display: flex; flex-direction: column; flex: 1; padding: 22px; }
.deal-route { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.deal-route-icon {
    width: 40px; height: 40px;
    flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
    background: var(--bg-tint);
    color: var(--primary-2);
    border-radius: 11px;
}
.deal-route h3 { margin: 0; font-size: 18px; }
.deal-route p { margin: 2px 0 0; font-size: 13px; color: var(--muted); }

.deal-meta { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 12px; }
.chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--bg-soft);
    border: 1px solid var(--line);
    color: var(--muted);
    font-size: 12.5px;
    font-weight: 600;
    padding: 4px 11px;
    border-radius: 999px;
}
.chip svg { color: var(--secondary); }

.deal-desc { font-size: 14px; color: var(--muted); flex: 1; margin-bottom: 18px; }
.deal-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.deal-actions .btn { flex: 1; min-width: 100px; padding: 11px 12px; font-size: 13.5px; }

/* ------------------------------------------------------------
   12. Why choose us
   ------------------------------------------------------------ */
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.feature-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--r);
    padding: 30px 26px;
    box-shadow: var(--sh-sm);
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--sh-md);
    border-color: rgba(18, 59, 120, 0.35);
}
.feature-icon {
    width: 58px; height: 58px;
    display: flex; align-items: center; justify-content: center;
    background: linear-gradient(135deg, var(--bg-tint), #d5e3f6);
    color: var(--primary-2);
    border-radius: 16px;
    margin-bottom: 20px;
    transition: transform var(--transition);
}
.feature-card:hover .feature-icon { transform: scale(1.08) rotate(-4deg); }
.feature-card h3 { font-size: 17.5px; margin-bottom: 8px; }
.feature-card p { font-size: 14px; color: var(--muted); margin: 0; }

/* ------------------------------------------------------------
   13. About preview
   ------------------------------------------------------------ */
.about-preview { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.about-media { position: relative; }
.about-media img {
    border-radius: var(--r-lg);
    box-shadow: var(--sh-lg);
    aspect-ratio: 4 / 3.4;
    object-fit: cover;
    width: 100%;
}
.about-media::before {
    content: '';
    position: absolute;
    inset: -18px 18px 18px -18px;
    border: 2px dashed var(--accent);
    border-radius: var(--r-lg);
    opacity: 0.5;
    z-index: -1;
}
.about-exp {
    position: absolute;
    right: -14px; bottom: -14px;
    background: linear-gradient(135deg, var(--primary-2), var(--primary));
    color: #fff;
    border-radius: var(--r);
    padding: 16px 22px;
    text-align: center;
    box-shadow: var(--sh-md);
}
.about-exp strong { display: block; font-size: 26px; line-height: 1.1; }
.about-exp span { font-size: 12px; color: #bcd3e6; }

.check-list { list-style: none; margin: 20px 0 26px; }
.check-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 11px;
    font-size: 15px;
}
.check-list svg { color: var(--success); flex-shrink: 0; margin-top: 3px; }

/* ------------------------------------------------------------
   14. CTA banner
   ------------------------------------------------------------ */
.cta-banner {
    position: relative;
    background: linear-gradient(120deg, rgba(5, 26, 45, 0.86), rgba(13, 60, 94, 0.82)), var(--dark);
    background-size: cover;
    background-position: center;
    color: #fff;
    padding: 76px 0;
    overflow: hidden;
    text-align: center;
}
.cta-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(700px 300px at 20% 0%, rgba(215, 25, 32, 0.14), transparent 60%);
}
.cta-inner { position: relative; max-width: 720px; margin: 0 auto; }
.cta-banner h2 { color: #fff; font-size: clamp(1.8rem, 3.6vw, 2.6rem); margin-bottom: 14px; }
.cta-banner p { color: #d4e2ee; font-size: 1.05rem; margin-bottom: 30px; }
.cta-actions { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }

/* ------------------------------------------------------------
   15. Inner page hero (page headers)
   ------------------------------------------------------------ */
.page-hero {
    position: relative;
    background: linear-gradient(180deg, rgba(5, 26, 45, 0.78), rgba(5, 26, 45, 0.6)), var(--dark);
    background-size: cover;
    background-position: center;
    color: #fff;
    padding: 76px 0 84px;
    text-align: center;
}
.page-hero h1 { color: #fff; font-size: clamp(1.9rem, 4.4vw, 3rem); margin-bottom: 10px; letter-spacing: -0.02em; }
.page-hero p { color: #d4e2ee; max-width: 640px; margin: 0 auto; font-size: 1.05rem; }

.breadcrumbs {
    display: flex;
    justify-content: center;
    gap: 8px;
    align-items: center;
    font-size: 13px;
    font-weight: 600;
    color: #93b3cd;
    margin-bottom: 18px;
}
.breadcrumbs a { color: #cfe1f0; }
.breadcrumbs a:hover { color: var(--accent); }
.breadcrumbs span[aria-current] { color: var(--accent); }

/* ------------------------------------------------------------
   16. Content blocks
   ------------------------------------------------------------ */
.content-block { max-width: 780px; margin: 0 auto 44px; }
.content-block h2 { font-size: clamp(1.5rem, 3vw, 2rem); margin-bottom: 14px; }
.content-block h3 { font-size: 1.2rem; margin-top: 26px; }
.content-block p { color: var(--muted); }

.split-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }

.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 34px; }
.step {
    background: var(--bg-soft);
    border-radius: var(--r);
    padding: 28px 24px;
    position: relative;
    border: 1px solid transparent;
    transition: border-color var(--transition), background var(--transition), transform var(--transition);
}
.step:hover { border-color: var(--line); background: #fff; transform: translateY(-4px); box-shadow: var(--sh-md); }
.step-num {
    width: 44px; height: 44px;
    display: flex; align-items: center; justify-content: center;
    background: linear-gradient(135deg, var(--secondary), var(--primary-2));
    color: #fff;
    font-weight: 800;
    font-size: 18px;
    border-radius: 12px;
    margin-bottom: 16px;
}
.step h3 { font-size: 16.5px; margin-bottom: 6px; }
.step p { font-size: 14px; color: var(--muted); margin: 0; }

/* Service tiles (service pages) */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-tile {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--r);
    padding: 30px 26px;
    box-shadow: var(--sh-sm);
    transition: transform var(--transition), box-shadow var(--transition);
}
.service-tile:hover { transform: translateY(-6px); box-shadow: var(--sh-lg); }
.service-tile .feature-icon { margin-bottom: 18px; }
.service-tile h3 { font-size: 17px; }
.service-tile p { font-size: 14px; color: var(--muted); }
.service-tile ul { list-style: none; margin: 14px 0 20px; }
.service-tile li {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 13.5px;
    color: var(--ink);
    padding: 5px 0;
}
.service-tile li svg { color: var(--success); flex-shrink: 0; }
.service-tile .btn { width: 100%; }

/* ------------------------------------------------------------
   17. Contact page
   ------------------------------------------------------------ */
.info-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-bottom: 44px; }
.info-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--r);
    padding: 24px 22px;
    text-align: center;
    box-shadow: var(--sh-sm);
    transition: transform var(--transition), box-shadow var(--transition);
}
.info-card:hover { transform: translateY(-4px); box-shadow: var(--sh-md); }
.info-card .feature-icon { margin: 0 auto 14px; }
.info-card h3 { font-size: 15.5px; margin-bottom: 4px; }
.info-card p, .info-card a { font-size: 13.5px; color: var(--muted); }
.info-card a { color: var(--primary-2); font-weight: 600; }

.contact-layout { display: grid; grid-template-columns: 1.15fr 1fr; gap: 40px; align-items: start; }

.side-card {
    background: linear-gradient(160deg, var(--dark), var(--dark-2));
    color: #d4e2ee;
    border-radius: var(--r);
    padding: 30px 28px;
    margin-bottom: 22px;
}
.side-card h3 { color: #fff; font-size: 18px; }
.side-card p { font-size: 14.5px; }
.side-card ul { list-style: none; }
.side-card li { display: flex; gap: 12px; padding: 9px 0; font-size: 14px; align-items: flex-start; }
.side-card li svg { color: var(--accent); flex-shrink: 0; margin-top: 4px; }
.side-card .btn { margin-top: 14px; }

/* ------------------------------------------------------------
   18. Callback page
   ------------------------------------------------------------ */
.form-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--r-lg);
    box-shadow: var(--sh-md);
    padding: 34px;
}
.form-card .form-grid { grid-template-columns: repeat(2, 1fr); }
.form-card .field-wide { grid-column: span 2; }

.checkbox-field { display: flex; align-items: flex-start; gap: 10px; margin: 8px 0 4px; }
.checkbox-field input {
    width: 18px; height: 18px;
    margin-top: 3px;
    accent-color: var(--primary);
    flex-shrink: 0;
}
.checkbox-field label { font-size: 14px; color: var(--muted); cursor: pointer; }

/* ------------------------------------------------------------
   19. Legal pages
   ------------------------------------------------------------ */
.legal { max-width: 820px; margin: 0 auto; }
.legal .content-block { margin-bottom: 0; }
.legal h2 { margin-top: 34px; }
.legal ul { margin: 0 0 1em 22px; }
.legal li { color: var(--muted); margin-bottom: 6px; }
.legal-note {
    background: var(--warning-bg);
    border: 1px solid #f4ddb5;
    color: var(--warning);
    border-radius: var(--r-sm);
    padding: 14px 18px;
    font-size: 14px;
    margin-top: 34px;
}

/* ------------------------------------------------------------
   20. Footer
   ------------------------------------------------------------ */
.site-footer { background: var(--dark); color: #b9cbd9; font-size: 14.5px; }
.footer-grid {
    display: grid;
    grid-template-columns: 1.35fr 0.8fr 1.1fr 1.2fr;
    gap: 40px;
    padding: 64px 22px 44px;
}
.footer-col h4 {
    color: #fff;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 18px;
}
.footer-subhead { margin-top: 26px; }
.footer-about { color: #93a7bb; font-size: 14px; }
.footer-social { display: flex; gap: 10px; margin-top: 18px; }
.footer-social a {
    width: 38px; height: 38px;
    display: inline-flex; align-items: center; justify-content: center;
    background: rgba(255, 255, 255, 0.07);
    border-radius: 10px;
    color: #cbd9e6;
    transition: background var(--transition), color var(--transition), transform var(--transition);
}
.footer-social a:hover { background: var(--accent); color: #fff; transform: translateY(-3px); }

.footer-links { list-style: none; }
.footer-links li { margin-bottom: 9px; }
.footer-links a { color: #b9cbd9; }
.footer-links a:hover { color: var(--accent); padding-left: 4px; }

.footer-contact { list-style: none; }
.footer-contact li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    margin-bottom: 13px;
    color: #b9cbd9;
}
.footer-contact a { color: #b9cbd9; }
.footer-contact a:hover { color: var(--accent); }
.fc-icon {
    width: 30px; height: 30px;
    flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
    background: rgba(255, 255, 255, 0.07);
    border-radius: 8px;
    color: var(--accent);
}

.newsletter-form .newsletter-input { display: flex; gap: 10px; }
.newsletter-form input {
    flex: 1;
    min-width: 0;
    padding: 12px 15px;
    border-radius: 999px;
    border: 1.5px solid rgba(255, 255, 255, 0.16);
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    font-size: 14px;
}
.newsletter-form input::placeholder { color: #8ba2b8; }
.newsletter-form input:focus { outline: none; border-color: var(--accent); }
.newsletter-note { font-size: 13px; margin: 10px 0 0; min-height: 1.2em; }
.newsletter-note.ok { color: #4ade80; }
.newsletter-note.bad { color: #fca5a5; }

.footer-bottom { border-top: 1px solid rgba(255, 255, 255, 0.08); }
.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    padding: 20px 22px;
    font-size: 13px;
    color: #7e95aa;
}
.footer-bottom p { margin: 0; }
.footer-bottom-links { display: flex; gap: 18px; list-style: none; }
.footer-bottom-links a { color: #7e95aa; }
.footer-bottom-links a:hover { color: var(--accent); }

.brand-footer .brand-name { color: #fff; }
.brand-footer .brand-tag { color: #8ba2b8; }

/* ------------------------------------------------------------
   21. Floating buttons
   ------------------------------------------------------------ */
.whatsapp-float {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 80;
    width: 58px; height: 58px;
    display: flex; align-items: center; justify-content: center;
    background: #25d366;
    color: #fff;
    border-radius: 50%;
    box-shadow: 0 12px 28px rgba(37, 211, 102, 0.45);
    transition: transform var(--transition), box-shadow var(--transition);
}
.whatsapp-float:hover { transform: translateY(-4px) scale(1.05); color: #fff; box-shadow: 0 16px 34px rgba(37, 211, 102, 0.55); }
.whatsapp-float::before {
    content: '';
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    border: 2px solid rgba(37, 211, 102, 0.4);
    animation: pulse 2.2s infinite;
}
@keyframes pulse {
    0% { transform: scale(0.92); opacity: 1; }
    70% { transform: scale(1.18); opacity: 0; }
    100% { opacity: 0; }
}

.back-to-top {
    position: fixed;
    right: 26px;
    bottom: 92px;
    z-index: 79;
    width: 46px; height: 46px;
    display: flex; align-items: center; justify-content: center;
    background: var(--primary);
    color: #fff;
    border-radius: 12px;
    box-shadow: var(--sh-md);
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: all var(--transition);
}
.back-to-top.show { opacity: 1; visibility: visible; transform: none; }
.back-to-top:hover { background: var(--accent-2); color: #fff; }

/* ------------------------------------------------------------
   22. Scroll reveal
   ------------------------------------------------------------ */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.revealed { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
    .reveal { opacity: 1; transform: none; }
}

/* ------------------------------------------------------------
   23. Misc
   ------------------------------------------------------------ */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12.5px;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 999px;
}
.badge-green { background: var(--success-bg); color: var(--success); }
.badge-blue { background: var(--info-bg); color: var(--info); }
.badge-orange { background: var(--warning-bg); color: var(--warning); }
