:root {
    --blue: #1565e5;
    --blue-dark: #0b4fc7;
    --blue-deep: #083d9c;
    --red: #ff1744;
    --red-dark: #d90d37;
    --gold: #ffd84d;
    --text: #12356b;
    --muted: #4c6c9f;
    --white: #ffffff;
    --shadow: 0 20px 50px rgba(19, 74, 160, 0.14);
    --shadow-strong: 0 32px 70px rgba(9, 56, 135, 0.14);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    background: linear-gradient(180deg, #eef6ff 0%, #f9fbff 100%);
    color: var(--text);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    width: min(1240px, calc(100% - 48px));
    margin: 0 auto;
}

.section-space {
    padding: 88px 0;
}

.section-space-small {
    padding: 36px 0 20px;
}

.center {
    text-align: center;
}

.section-kicker {
    display: inline-block;
    font-size: 12px;
    letter-spacing: .2em;
    text-transform: uppercase;
    font-weight: 800;
    color: rgba(255,255,255,.78);
    margin-bottom: 12px;
}

.section-head .section-kicker {
    color: var(--blue);
}

.section-head h2 {
    margin: 0;
    font-size: clamp(30px, 4vw, 46px);
    line-height: 1.08;
}

.section-head p {
    color: var(--muted);
}

/* SHINE */
.shimmer-loop,
.hero-top-badge,
.agents-now {
    position: relative;
    overflow: hidden;
}

.shimmer-loop::after,
.hero-top-badge::after,
.agents-now::after {
    content: "";
    position: absolute;
    top: 0;
    left: -130%;
    width: 45%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,.5), transparent);
    transform: skewX(-20deg);
    animation: shineSweep 3s ease-in-out infinite;
    animation-delay: 3s;
}

@keyframes shineSweep {
    0%, 70% {
        left: -130%;
    }
    100% {
        left: 150%;
    }
}

/* HOVER */
.hover-lift,
.feature-link-card,
.nav-link,
.hero-center-badge,
.hero-call-btn,
.call-btn,
.call-banner-card,
.reserve-submit-btn,
.side-call,
.after-call-feature,
.after-call-now,
.image-call-btn {
    transition: transform .28s ease, box-shadow .28s ease, background .28s ease;
}

.hover-lift:hover,
.feature-link-card:hover,
.nav-link:hover,
.hero-center-badge:hover,
.hero-call-btn:hover,
.call-btn:hover,
.call-banner-card:hover,
.reserve-submit-btn:hover,
.side-call:hover,
.after-call-feature:hover,
.after-call-now:hover,
.image-call-btn:hover {
    transform: translateY(-4px);
}

/* NAVBAR */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 60;
    padding: 14px 0;
    background: rgba(7, 32, 87, 0.14);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(255,255,255,0.14);
}

.nav-shell {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    position: relative;
}

.brand-logo {
    width: 210px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 12px 26px rgba(12, 53, 128, 0.16));
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.nav-link {
    color: var(--blue-deep);
    font-weight: 800;
    font-size: 15px;
    padding: 10px 15px;
    line-height: 1;
    border-radius: 999px;
    background: rgba(255,255,255,0.20);
    border: 1px solid rgba(255,255,255,0.28);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 10px 24px rgba(14, 66, 146, 0.07);
}

.nav-link:hover {
    background: rgba(255,255,255,0.34);
}

.nav-link-form {
    background: linear-gradient(135deg, rgba(255,255,255,0.60), rgba(255,255,255,0.22));
}

.nav-toggle {
    display: none;
    width: 46px;
    height: 46px;
    border: 1px solid rgba(255,255,255,0.28);
    background: rgba(255,255,255,0.16);
    border-radius: 14px;
    cursor: pointer;
    padding: 10px;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.nav-toggle span {
    display: block;
    height: 2px;
    width: 100%;
    background: var(--blue-deep);
    margin: 5px 0;
    border-radius: 999px;
}

/* HERO */
.hero-clean {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    background: url('background-placeholder.jpg') center center/cover no-repeat;
    padding-top: 110px;
    display: flex;
    align-items: stretch;
}

.hero-soft-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to bottom, rgba(3,25,70,0.14), rgba(7,22,58,0.28) 30%, rgba(6,22,70,0.46) 62%, rgba(8,18,56,0.62) 100%);
}

.hero-noise {
    position: absolute;
    inset: 0;
    opacity: .04;
    background-image: radial-gradient(rgba(255,255,255,.95) 0.6px, transparent 0.6px);
    background-size: 12px 12px;
    pointer-events: none;
}

.hero-layout {
    position: relative;
    z-index: 3;
    min-height: calc(100vh - 110px);
    display: grid;
    grid-template-rows: auto auto;
    align-content: center;
    justify-items: center;
    text-align: center;
    width: 100%;
    padding: 16px 0 72px;
    gap: 22px;
}

.hero-upper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}

.hero-top-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 18px;
    border-radius: 999px;
    background: rgba(255,255,255,0.22);
    border: 1px solid rgba(255,255,255,0.34);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    color: #ffffff;
    font-size: 14px;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
    box-shadow: 0 10px 25px rgba(12, 58, 136, 0.10);
}

.hero-center-badge {
    position: relative;
    display: inline-block;
}

.badge-ring {
    width: 205px;
    height: 205px;
    border-radius: 50%;
    padding: 8px;
    background: linear-gradient(145deg, rgba(255,255,255,.82), rgba(255,255,255,.22));
    border: 1px solid rgba(255,255,255,.55);
    box-shadow:
        0 20px 50px rgba(16, 74, 165, 0.18),
        inset 0 1px 0 rgba(255,255,255,.72);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.badge-inner-image-wrap {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    overflow: hidden;
    background: rgba(255,255,255,.86);
    border: 5px solid rgba(255,255,255,.55);
}

.badge-agent-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.agents-now {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 9px 16px;
    border-radius: 999px;
    background: rgba(10,30,76,0.34);
    border: 1px solid rgba(255,255,255,0.18);
    color: #ffffff;
    font-size: 16px;
    font-style: italic;
    font-weight: 700;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 10px 24px rgba(0,0,0,0.10);
}

.status-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #67f04f;
    box-shadow: 0 0 14px rgba(103,240,79,.7);
    flex: 0 0 auto;
}

.hero-lower {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 980px;
}

.hero-headline {
    margin: 0;
    color: rgba(255,255,255,.94);
    font-size: clamp(28px, 3.2vw, 48px);
    line-height: 1.12;
    font-style: italic;
    font-weight: 900;
    text-shadow: 0 8px 30px rgba(0,0,0,0.28);
}

.hero-subtitle {
    margin: 14px 0 0;
    max-width: 920px;
    color: rgba(255,255,255,.95);
    font-size: clamp(18px, 1.7vw, 26px);
    line-height: 1.4;
    font-style: italic;
    font-weight: 500;
    text-shadow: 0 8px 24px rgba(0,0,0,0.24);
}

.hero-subtitle strong {
    color: var(--gold);
    font-weight: 900;
    text-decoration: underline;
    text-underline-offset: 5px;
}

.hero-stars {
    margin-top: 18px;
    color: var(--gold);
    font-size: clamp(28px, 3vw, 44px);
    letter-spacing: 6px;
    text-shadow: 0 10px 20px rgba(0,0,0,0.18);
}

.hero-note {
    margin-top: 14px;
    color: rgba(255,255,255,.95);
    font-weight: 700;
    font-size: clamp(18px, 1.6vw, 24px);
    font-style: italic;
    text-shadow: 0 10px 30px rgba(0,0,0,0.18);
}

.hero-main-actions {
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-call-btn,
.call-btn,
.reserve-submit-btn,
.call-banner-btn {
    border: none;
    border-radius: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    cursor: pointer;
}

.primary-call {
    min-width: 260px;
    padding: 16px 28px;
    background: linear-gradient(180deg, #3566dd 0%, #2559d9 100%);
    color: var(--white);
    font-size: clamp(20px, 1.8vw, 28px);
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.20),
        0 18px 40px rgba(21, 101, 229, 0.28);
    gap: 10px;
}

.btn-icon {
    font-size: 1em;
}

/* INFO STRIP */
.info-strip {
    margin-top: -24px;
    position: relative;
    z-index: 5;
}

.info-strip-grid {
    display: grid;
    grid-template-columns: 1fr 1fr auto;
    gap: 18px;
    background: rgba(255,255,255,0.58);
    border: 1px solid rgba(255,255,255,0.38);
    border-radius: 28px;
    padding: 24px;
    box-shadow: var(--shadow-strong);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.info-link-card {
    display: block;
    padding: 4px;
    border-radius: 18px;
}

.info-item strong {
    display: block;
    color: var(--blue);
    font-size: 20px;
    margin-bottom: 8px;
}

.info-item p {
    margin: 0;
    line-height: 1.7;
    color: var(--muted);
}

.call-side {
    display: flex;
    align-items: center;
    justify-content: center;
}

.blue-btn {
    background: linear-gradient(135deg, #1565e5, #0b4fc7);
    color: var(--white);
    padding: 16px 24px;
    box-shadow: 0 16px 34px rgba(21, 101, 229, 0.18);
}

/* FEATURES */
.feature-grid {
    display: grid;
    gap: 24px;
    margin-top: 38px;
}

.feature-grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

.feature-link-card {
    display: block;
    background: linear-gradient(180deg, rgba(255,255,255,0.74), rgba(255,255,255,0.92));
    border-radius: 28px;
    padding: 30px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(255,255,255,0.34);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.feature-link-card:hover {
    box-shadow: 0 28px 55px rgba(12, 66, 150, 0.16);
}

.feature-icon {
    width: 58px;
    height: 58px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    font-size: 24px;
    background: linear-gradient(135deg, rgba(21,101,229,.14), rgba(255,255,255,.70));
    margin-bottom: 18px;
}

.feature-link-card h3 {
    margin: 0 0 12px;
    color: var(--blue);
    font-size: 24px;
}

.feature-link-card p {
    margin: 0;
    line-height: 1.75;
    color: var(--muted);
}

/* CALL BANNER */
.call-banner-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 26px 28px;
    border-radius: 28px;
    background: linear-gradient(135deg, rgba(8,61,156,.94), rgba(21,101,229,.92));
    color: #fff;
    box-shadow: 0 24px 50px rgba(10, 63, 156, 0.20);
}

.call-banner-copy h3 {
    margin: 0 0 8px;
    font-size: clamp(24px, 3vw, 34px);
}

.call-banner-copy p {
    margin: 0;
    color: rgba(255,255,255,.86);
    line-height: 1.6;
}

.call-banner-btn {
    flex: 0 0 auto;
    background: linear-gradient(180deg, var(--red) 0%, var(--red-dark) 100%);
    border: 1px solid rgba(255,255,255,0.18);
    padding: 16px 22px;
    border-radius: 16px;
    color: #fff;
    font-weight: 900;
    box-shadow: 0 16px 30px rgba(255,23,68,0.22);
}

/* FORM */
.reserve-form-wrap {
    display: flex;
    justify-content: center;
}

.reserve-form-card {
    width: min(100%, 780px);
    background: rgba(255,255,255,0.30);
    border: 1px solid rgba(255,255,255,0.32);
    border-radius: 30px;
    box-shadow: 0 24px 60px rgba(12, 56, 130, 0.12);
    overflow: hidden;
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
}

.reserve-form-head {
    background: linear-gradient(135deg, rgba(10,85,214,.88), rgba(35,107,231,.76));
    padding: 24px 24px 18px;
    text-align: center;
    border-bottom: 1px solid rgba(255,255,255,0.20);
}

.reserve-form-head h2 {
    margin: 0;
    color: #fff;
    font-size: clamp(28px, 4vw, 46px);
    font-weight: 900;
    letter-spacing: -.02em;
}

.reserve-form-head p {
    margin: 10px 0 0;
    color: rgba(255,255,255,0.86);
    font-size: 15px;
}

.reserve-form-body {
    padding: 26px;
}

.form-row {
    margin-bottom: 18px;
}

.form-row label {
    display: block;
    margin-bottom: 9px;
    color: var(--blue-deep);
    font-size: 15px;
    font-weight: 800;
}

.form-row label span {
    color: #ff3250;
}

.form-row input,
.form-row select,
.form-row textarea {
    width: 100%;
    background: rgba(255,255,255,0.55);
    border: 1px solid rgba(255,255,255,0.36);
    border-radius: 18px;
    padding: 14px 15px;
    font: inherit;
    color: #2d426e;
    box-shadow: inset 0 1px 0 rgba(255,255,255,.55);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
    outline: none;
    border-color: rgba(21, 101, 229, 0.36);
    box-shadow: 0 0 0 4px rgba(21, 101, 229, 0.08);
}

.name-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.name-grid small {
    display: block;
    margin-top: 6px;
    color: #5b709a;
    font-size: 13px;
}

.phone-wrap {
    display: flex;
    align-items: center;
    background: rgba(255,255,255,0.55);
    border: 1px solid rgba(255,255,255,0.36);
    border-radius: 18px;
    overflow: hidden;
}

.phone-flag {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 82px;
    padding: 0 12px;
    border-right: 1px solid rgba(255,255,255,0.36);
    font-size: 18px;
    font-weight: 700;
    height: 100%;
}

.phone-wrap input {
    border: none;
    background: transparent;
    box-shadow: none;
}

.reserve-submit-btn {
    width: 100%;
    margin-top: 12px;
    min-height: 62px;
    background: linear-gradient(180deg, #3566dd 0%, #2559d9 100%);
    color: #fff;
    font-size: clamp(20px, 3vw, 30px);
    font-weight: 900;
    border-radius: 18px;
    box-shadow: inset 0 1px 0 rgba(255,255,255,.25), 0 10px 22px rgba(21,101,229,.18);
}

.form-message {
    margin: 14px 0 0;
    font-size: 14px;
    font-weight: 700;
}

.form-message.success {
    color: #0c8b47;
}

.form-message.error {
    color: #cf2d37;
}

/* AFTER FORM WRAP */
.after-form-callout-wrap {
    position: relative;
    padding-bottom: 64px;
}

/* AFTER FORM FLIGHT HELP SECTION */
.after-form-callout {
    padding: 18px 0 56px;
}

.after-call-container {
    width: min(960px, calc(100% - 40px));
}

.after-call-card {
    background: linear-gradient(180deg, rgba(255,255,255,0.76), rgba(255,255,255,0.92));
    border: 1px solid rgba(255,255,255,0.42);
    border-radius: 24px;
    padding: 26px 24px 30px;
    box-shadow: 0 18px 42px rgba(9, 56, 135, 0.10);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.after-call-head {
    max-width: 760px;
    margin: 0 auto 24px;
    text-align: center;
}

.after-call-head h2 {
    margin: 0 0 10px;
    color: #0b1b4d;
    font-size: clamp(24px, 3vw, 34px);
    line-height: 1.15;
    font-weight: 900;
    font-style: italic;
    letter-spacing: -0.02em;
}

.after-call-head p {
    margin: 0 auto;
    max-width: 700px;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.7;
}

.after-call-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-bottom: 26px;
}

.after-call-feature {
    display: block;
    text-align: center;
    padding: 18px 14px;
    border-radius: 18px;
    background: rgba(255,255,255,0.66);
    border: 1px solid rgba(21,101,229,0.08);
    box-shadow: 0 10px 22px rgba(10, 60, 145, 0.05);
}

.after-call-icon {
    width: 54px;
    height: 54px;
    margin: 0 auto 12px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 22px;
    color: #fff;
    font-weight: 900;
    box-shadow: 0 10px 20px rgba(0,0,0,0.08);
}

.red-icon {
    background: linear-gradient(180deg, #ff1744 0%, #d90d37 100%);
}

.blue-icon {
    background: linear-gradient(180deg, #083d9c 0%, #041f66 100%);
}

.after-call-feature h3 {
    margin: 0 0 8px;
    color: #0b1b4d;
    font-size: clamp(16px, 1.5vw, 19px);
    line-height: 1.15;
    font-weight: 900;
    text-transform: uppercase;
}

.after-call-feature p {
    margin: 0;
    color: #6d7890;
    font-size: 13px;
    line-height: 1.65;
}

.after-call-cta {
    max-width: 620px;
    margin: 0 auto;
    text-align: center;
}

.after-call-cta h3 {
    margin: 0 0 14px;
    color: #0b1b4d;
    font-size: clamp(22px, 3vw, 30px);
    line-height: 1.2;
    font-style: italic;
    font-weight: 900;
}

.cta-ribbon {
    display: inline-block;
    min-width: min(100%, 420px);
    padding: 10px 18px;
    border-radius: 12px;
    font-size: clamp(16px, 2vw, 20px);
    font-weight: 900;
    text-transform: uppercase;
    font-style: italic;
    color: #fff;
    letter-spacing: 0.01em;
    box-shadow: 0 12px 24px rgba(255, 23, 68, 0.14);
}

.top-ribbon,
.bottom-ribbon {
    background: linear-gradient(180deg, var(--red) 0%, var(--red-dark) 100%);
}

.after-call-now {
    margin: 14px auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-width: 220px;
    min-height: 52px;
    padding: 12px 22px;
    border-radius: 14px;
    background: linear-gradient(180deg, #3566dd 0%, #2559d9 100%);
    color: #fff;
    font-size: clamp(17px, 1.8vw, 21px);
    font-weight: 900;
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.22),
        0 12px 26px rgba(21, 101, 229, 0.18);
}

/* IMAGE CTA */
.image-call-section {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: url('background-placeholder.jpg') center center / cover no-repeat;
}

.image-call-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(2, 17, 52, 0.58), rgba(3, 19, 60, 0.68)),
        rgba(4, 18, 58, 0.38);
}

.image-call-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 980px;
    padding: 60px 20px;
}

.image-call-icon-wrap {
    margin-bottom: 22px;
}

.image-call-icon {
    width: 96px;
    height: 96px;
    margin: 0 auto;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 42px;
    color: #fff;
    background: linear-gradient(180deg, var(--red) 0%, var(--red-dark) 100%);
    box-shadow: 0 18px 40px rgba(255, 23, 68, 0.24);
}

.image-call-content h2 {
    margin: 0 0 14px;
    color: #ffffff;
    font-size: clamp(34px, 4vw, 64px);
    line-height: 1.1;
    font-weight: 900;
    font-style: italic;
    letter-spacing: -0.02em;
    text-shadow: 0 8px 24px rgba(0,0,0,0.28);
}

.image-call-content p {
    margin: 0 auto 28px;
    max-width: 980px;
    color: rgba(255,255,255,0.92);
    font-size: clamp(20px, 2vw, 34px);
    line-height: 1.45;
    font-weight: 700;
    text-shadow: 0 8px 24px rgba(0,0,0,0.24);
}

.image-call-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-width: 320px;
    min-height: 74px;
    padding: 16px 30px;
    border-radius: 18px;
    background: linear-gradient(180deg, var(--red) 0%, var(--red-dark) 100%);
    color: #fff;
    font-size: clamp(24px, 2vw, 34px);
    font-weight: 900;
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.22),
        0 18px 36px rgba(255, 23, 68, 0.26);
}

/* SIDE CALL */
.side-call {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 70;
    background: linear-gradient(135deg, #1565e5, #0b4fc7);
    color: #fff;
    font-weight: 900;
    padding: 16px 20px;
    border-radius: 999px;
    box-shadow: 0 20px 40px rgba(21, 101, 229, 0.26);
}

/* BOTTOM CLICK BAR */
.bottom-click-call {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 75;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 64px;
    background: linear-gradient(180deg, var(--red) 0%, var(--red-dark) 100%);
    color: #fff;
    font-size: 20px;
    font-weight: 900;
    letter-spacing: .02em;
    box-shadow: 0 -10px 26px rgba(0,0,0,0.18);
    transform: translateY(100%);
    opacity: 0;
    pointer-events: none;
    transition: transform .32s ease, opacity .32s ease;
}

.bottom-click-call.is-visible {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}

.bottom-click-call.is-anchored {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
}

/* FOOTER */
.footer-dark-style {
    background: linear-gradient(180deg,#03050a,#020308);
    color: rgba(255,255,255,0.78);
    padding: 0 0 90px;
}

.footer-divider {
    width: 100%;
    height: 1px;
    background: rgba(255,255,255,0.18);
    margin-bottom: 42px;
}

.footer-intro {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 42px;
}

.footer-intro h2 {
    margin: 0 0 14px;
    color: #ffffff;
    font-size: clamp(24px, 2vw, 32px);
    line-height: 1.2;
    font-weight: 800;
}

.footer-intro p {
    margin: 0 auto;
    max-width: 700px;
    color: rgba(255,255,255,0.62);
    font-size: 15px;
    line-height: 1.7;
}

.footer-main-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1.2fr;
    gap: 32px;
}

.footer-column h3 {
    margin: 0 0 14px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column li {
    margin-bottom: 10px;
}

.footer-column a {
    color: rgba(255,255,255,0.68);
    font-size: 14px;
    line-height: 1.5;
    transition: color .2s ease;
}

.footer-column a:hover {
    color: #ffffff;
}

.footer-brand-column {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.footer-brand-logo {
    width: 160px;
    margin-bottom: 14px;
}

.footer-brand-text {
    color: rgba(255,255,255,0.6);
    font-size: 14px;
    line-height: 1.6;
}

.footer-bottom-note {
    margin-top: 22px;
}

.footer-bottom-note p {
    color: rgba(255,255,255,0.45);
    font-size: 13px;
}

/* TABLET */
@media (max-width: 991px) {
    .site-header {
        padding: 14px 0;
    }

    .nav-toggle {
        display: block;
    }

    .brand-logo {
        width: 170px;
    }

    .main-nav {
        position: absolute;
        top: calc(100% + 10px);
        left: 16px;
        right: 16px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        padding: 14px;
        gap: 10px;
        background: rgba(255,255,255,0.22);
        border: 1px solid rgba(255,255,255,0.28);
        border-radius: 22px;
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        box-shadow: 0 18px 44px rgba(12, 56, 130, 0.12);
    }

    .main-nav.is-open {
        display: flex;
    }

    .nav-link {
        justify-content: center;
        padding: 14px 16px;
        font-size: 15px;
    }

    .hero-clean {
        min-height: auto;
        padding-top: 108px;
        padding-bottom: 30px;
        background-position: center center;
    }

    .hero-layout {
        min-height: 700px;
        padding: 18px 0 34px;
        gap: 18px;
    }

    .badge-ring {
        width: 180px;
        height: 180px;
    }

    .desktop-agents {
        display: none;
    }

    .hero-headline {
        font-size: clamp(26px, 4.8vw, 40px);
    }

    .hero-subtitle {
        font-size: clamp(18px, 2.8vw, 24px);
        max-width: 760px;
    }

    .hero-stars {
        font-size: 34px;
    }

    .info-strip-grid,
    .feature-grid-3,
    .after-call-grid,
    .footer-main-grid {
        grid-template-columns: 1fr 1fr;
    }

    .after-call-grid,
    .feature-grid-3 {
        grid-template-columns: 1fr;
    }

    .call-banner-card {
        flex-direction: column;
        align-items: flex-start;
    }

    .after-call-container {
        width: min(100%, calc(100% - 28px));
    }

    .after-call-card {
        padding: 22px 18px 24px;
        border-radius: 20px;
    }

    .after-call-head {
        margin-bottom: 18px;
    }

    .after-call-head h2 {
        font-size: 24px;
    }

    .after-call-head p {
        font-size: 14px;
    }

    .after-call-feature {
        padding: 16px 14px;
    }

    .after-call-feature h3 {
        font-size: 18px;
    }

    .after-call-feature p {
        font-size: 14px;
    }

    .after-call-cta h3 {
        font-size: 24px;
    }

    .cta-ribbon {
        min-width: 100%;
        font-size: 17px;
    }

    .after-call-now {
        width: 100%;
        min-width: 0;
    }

    .image-call-section {
        min-height: 420px;
    }

    .image-call-content {
        padding: 48px 16px;
    }

    .image-call-icon {
        width: 82px;
        height: 82px;
        font-size: 36px;
    }

    .image-call-content h2 {
        font-size: clamp(28px, 5vw, 46px);
    }

    .image-call-content p {
        font-size: clamp(18px, 2.8vw, 26px);
        max-width: 760px;
    }

    .image-call-btn {
        min-width: 260px;
        min-height: 64px;
        font-size: 22px;
    }

    .footer-intro h2 {
        font-size: 24px;
    }
}

/* MOBILE */
@media (max-width: 767px) {
    .container {
        width: min(100% - 24px, 1240px);
    }

    .brand-logo {
        width: 145px;
    }

    .hero-clean {
        padding-top: 92px;
        padding-bottom: 20px;
        background-position: center center;
    }

    .hero-layout {
        min-height: 620px;
        padding: 10px 0 28px;
        gap: 16px;
    }

    .hero-top-badge {
        font-size: 11px;
        padding: 8px 14px;
    }

    .badge-ring {
        width: 140px;
        height: 140px;
        padding: 6px;
    }

    .hero-headline {
        font-size: 20px;
        line-height: 1.35;
        max-width: 320px;
    }

    .hero-subtitle {
        font-size: 16px;
        line-height: 1.5;
        max-width: 100%;
        padding: 0 8px;
        margin-top: 0;
    }

    .hero-stars {
        font-size: 28px;
        letter-spacing: 4px;
    }

    .hero-note {
        font-size: 16px;
        margin-top: 12px;
    }

    .hero-main-actions {
        width: 100%;
        margin-top: 18px;
    }

    .hero-call-btn {
        width: 100%;
        max-width: 250px;
        min-height: 52px;
        font-size: 18px;
    }

    .section-space {
        padding: 62px 0;
    }

    .info-strip {
        margin-top: 0;
    }

    .info-strip-grid {
        padding: 18px;
        border-radius: 22px;
        grid-template-columns: 1fr;
    }

    .feature-link-card {
        padding: 22px;
        border-radius: 22px;
    }

    .feature-link-card h3 {
        font-size: 21px;
    }

    .call-banner-card {
        padding: 22px;
        border-radius: 22px;
    }

    .call-banner-copy h3 {
        font-size: 24px;
    }

    .reserve-form-card {
        border-radius: 24px;
    }

    .reserve-form-head {
        padding: 20px 18px 16px;
    }

    .reserve-form-body {
        padding: 18px;
    }

    .name-grid {
        grid-template-columns: 1fr;
    }

    .side-call {
        display: none;
    }

    .after-form-callout-wrap {
        padding-bottom: 58px;
    }

    .bottom-click-call {
        min-height: 58px;
        font-size: 18px;
    }

    .after-form-callout {
        padding: 10px 0 40px;
    }

    .after-call-icon {
        width: 48px;
        height: 48px;
        font-size: 20px;
    }

    .after-call-head h2 {
        font-size: 21px;
    }

    .after-call-head p,
    .after-call-feature p {
        font-size: 13px;
    }

    .after-call-feature h3 {
        font-size: 16px;
    }

    .after-call-cta h3 {
        font-size: 21px;
    }

    .cta-ribbon {
        padding: 9px 14px;
        font-size: 15px;
    }

    .after-call-now {
        min-height: 48px;
        font-size: 16px;
    }

    .image-call-section {
        min-height: 360px;
    }

    .image-call-icon {
        width: 70px;
        height: 70px;
        font-size: 30px;
    }

    .image-call-content h2 {
        font-size: 24px;
    }

    .image-call-content p {
        font-size: 16px;
        line-height: 1.5;
        margin-bottom: 22px;
    }

    .image-call-btn {
        min-width: 220px;
        min-height: 56px;
        font-size: 18px;
        border-radius: 14px;
        padding: 12px 20px;
    }

    .footer-main-grid {
        grid-template-columns: 1fr;
        gap: 26px;
    }

    .footer-intro {
        margin-bottom: 32px;
    }

    .phone-flag {
        min-width: 72px;
        padding: 0 10px;
        font-size: 16px;
    }
}