/* ============================================================
    PAGE-LEVEL STYLES (converted from Tailwind)
    ============================================================ */

/* ── Animations ─────────────────────────────────────────── */
@keyframes fadeInUp {
    0%   { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
}
.anim-fade-in-up {
    animation: fadeInUp 0.6s ease-out forwards;
}
.delay-100 { animation-delay: 100ms; }
.delay-200 { animation-delay: 200ms; }
.delay-300 { animation-delay: 300ms; }

/* ── Hero Section ────────────────────────────────────────── */
.hero {
    position: relative;
    padding: 3rem 1rem 2rem;
    overflow: hidden;
    background-color: #000066;
    color: #ffffff;
}
@media (min-width: 640px) {
    .hero {
    padding: 8rem 1.5rem 5rem;
    }
}

.hero-blobs {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    opacity: 0.1;
    pointer-events: none;
}
.hero-blob-gold {
    position: absolute;
    top: -20%;
    right: -20%;
    width: 220px; height: 220px;
    border-radius: 50%;
    background-color: #FFBF52;
    filter: blur(80px);
}
@media (min-width: 640px) {
    .hero-blob-gold {
    top: -10%; right: -10%;
    width: 500px; height: 500px;
    filter: blur(120px);
    }
}
.hero-blob-blue {
    position: absolute;
    bottom: -20%;
    left: -20%;
    width: 180px; height: 180px;
    border-radius: 50%;
    background-color: #3b82f6;
    filter: blur(70px);
}
@media (min-width: 640px) {
    .hero-blob-blue {
    bottom: -10%; left: -10%;
    width: 400px; height: 400px;
    filter: blur(100px);
    }
}

.hero-inner {
    max-width: 72rem;
    margin: 0 auto;
    position: relative;
    z-index: 10;
    text-align: center;
}

.hero-badge {
    display: inline-block;
    padding: 2px 12px;
    margin-bottom: 0.75rem;
    border-radius: 9999px;
    border: 1px solid rgba(255,191,82,0.3);
    background-color: rgba(255,191,82,0.1);
    color: #FFBF52;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}
@media (min-width: 640px) {
    .hero-badge {
    padding: 4px 16px;
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
    }
}

.hero-h1 {
    font-size: 1.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: #ffffff;
}
@media (min-width: 640px) {
    .hero-h1 { font-size: 1.875rem; margin-bottom: 2rem; }
}
@media (min-width: 768px) {
    .hero-h1 { font-size: 4.5rem; }
}
.hero-h1 .gold { color: #FFBF52; }

.hero-p {
    font-size: 1rem;
    color: #cbd5e1;
    max-width: 48rem;
    margin: 0 auto 1.5rem;
    line-height: 1.75;
    font-weight: 300;
}
@media (min-width: 640px) {
    .hero-p { font-size: 1.25rem; margin-bottom: 2.5rem; }
}

/* ── Partner Section ─────────────────────────────────────── */
.partners-section {
    padding: 1rem 1rem 2rem;
}

.partners-inner {
    max-width: 72rem;
    margin: 0 auto;
    text-align: center;
}

.partners-label {
    font-size: 1.25rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-weight: 700;
    color: #94a3b8;
    margin-bottom: 1.5rem;
}

/* Mobile partner row */
.partners-mobile {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1rem;
    margin-bottom: 0;
    overflow-x: auto;
    padding: 0 1rem;
}
@media (min-width: 640px) {
    .partners-mobile { display: none; }
}

.partner-pair {
    position: relative;
    display: flex;
    align-items: center;
    gap: 4px;
    flex-shrink: 0;
}
.partner-logo-sm {
    flex-shrink: 0;
    width: 56px; height: 56px;
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.partner-logo-sm a,
.partner-logo-lg a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%; height: 100%;
    text-decoration: none;
}
.partner-logo-sm img,
.partner-logo-lg img {
    width: 100%; height: 100%;
    object-fit: contain;
}
.partner-amp {
    margin: 0 4px;
    background-color: #FFBF52;
    color: #000066;
    font-weight: 700;
    font-size: 11px;
    padding: 2px 4px;
    border-radius: 9999px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    white-space: nowrap;
}

/* Desktop partner grid */
.partners-desktop {
    display: none;
}
@media (min-width: 640px) {
    .partners-desktop {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
    margin-bottom: 0;
    margin-top: 0;
    justify-items: center;
    }
}

.partner-row {
    width: 100%;
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
}
.partner-logo-flex {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    min-width: 0;
}
@media (min-width: 640px) {
    .partner-logo-flex { padding: 4px; }
}
.partner-logo-lg {
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    width: 80px;  height: 80px;
}
@media (min-width: 640px) {
    .partner-logo-lg { width: 110px; height: 110px; }
}
@media (min-width: 768px) {
    .partner-logo-lg { width: 140px; height: 140px; }
}
@media (min-width: 1024px) {
    .partner-logo-lg { width: 170px; height: 170px; }
}
@media (min-width: 1280px) {
    .partner-logo-lg { width: 200px; height: 200px; }
}

.partner-divider {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0 8px;
}
.partner-badge {
    background-color: #FFBF52;
    color: #000066;
    font-weight: 700;
    font-size: 0.75rem;
    padding: 4px 12px;
    border-radius: 9999px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.partner-line {
    width: 1px;
    height: 24px;
    background-color: #e2e8f0;
    margin: 8px 0;
}
.partner-collab {
    font-size: 0.75rem;
    color: #64748b;
}

/* Partners sub-heading */
.partners-heading {
    font-size: 1.25rem;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.25;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}
@media (min-width: 640px) {
    .partners-heading { margin-top: 0; }
}
@media (min-width: 768px) {
    .partners-heading { font-size: 3rem; }
}

.partners-sub {
    font-size: 1.125rem;
    color: #64748b;
    max-width: 42rem;
    margin: 0 auto;
    line-height: 1.75;
}

/* ── Features Section ────────────────────────────────────── */
.features-section {
    padding: 6rem 1.5rem;
    background-color: #ffffff;
}

.features-inner {
    max-width: 80rem;
    margin: 0 auto;
}

.features-header {
    text-align: center;
    margin-bottom: 4rem;
}
.features-eyebrow {
    font-size: 0.875rem;
    font-weight: 900;
    color: #FFBF52;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    margin-bottom: 1rem;
    display: block;
}
.features-title {
    font-size: 1.5rem;
    font-weight: 900;
    color: #000066;
    letter-spacing: -0.02em;
}
@media (min-width: 768px) {
    .features-title { font-size: 3rem; }
}

.features-grid {
    display: grid;
    gap: 2rem;
}
@media (min-width: 768px) {
    .features-grid { grid-template-columns: repeat(3, 1fr); }
}

.feature-card {
    padding: 2rem;
    border-radius: 1.5rem;
    border: 1px solid #f1f5f9;
    background-color: #f8fafc;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.feature-card:hover {
    border-color: rgba(255,191,82,0.5);
    box-shadow: 0 25px 50px -12px rgba(255,191,82,0.1);
}

.feature-icon-box {
    width: 64px; height: 64px;
    border-radius: 1rem;
    background-color: #000066;
    color: #FFBF52;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: transform 0.2s ease;
}
.feature-card:hover .feature-icon-box {
    transform: scale(1.1);
}
.feature-icon-box svg {
    width: 32px; height: 32px;
    stroke: #FFBF52;
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #000066;
}
.feature-card p {
    color: #475569;
    line-height: 1.75;
    font-weight: 500;
}

/* SEO IDEAROOM */

/* ── Global helpers ──────────────────────────────────────────── */
.hidden { display: none !important; }

/* ── Hero Section ────────────────────────────────────────────── */
.si-hero {
    width: 100%;
    position: relative;
    margin-bottom: 3rem;
    background-image: url('../images/affiliate/vecteezy_white-background-with-blue-geometric-and-white-line-pattern_7677104-1.jpg');
    background-size: cover;
    background-position: center;
}
.si-hero-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(7, 33, 58, 0.55);
}
.si-hero-inner {
    position: relative;
    z-index: 10;
    max-width: 72rem;
    margin: 0 auto;
    padding: 5rem 1rem;
}
.si-hero-content {
    max-width: 48rem;
    margin: 0 auto;
    text-align: center;
}
.si-hero-eyebrow {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #fcd34d;
    font-weight: 600;
    margin-bottom: 0.5rem;
}
.si-hero-heading {
    font-size: 1.875rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.25;
    margin-bottom: 1rem;
}
.si-hero-desc {
    color: rgba(254, 243, 199, 0.9);
    margin-bottom: 1.5rem;
}
.si-hero-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    align-items: center;
    margin-bottom: 1.5rem;
}
.si-hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: #ffffff;
    color: #07213a;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    border: none;
    cursor: pointer;
    font-size: 1rem;
    transition: background 0.2s ease;
}
.si-hero-btn:hover { background: #f1f5f9; }
.si-hero-btn svg { width: 1rem; height: 1rem; }
.si-hero-trust {
    font-size: 0.75rem;
    color: rgba(254, 243, 199, 0.8);
}

/* ── Partner Section ─────────────────────────────────────────── */
.si-partner-section {
    padding: 1rem 1rem 2rem;
}
.si-container {
    max-width: 72rem;
    margin: 0 auto;
    text-align: center;
}
.si-partner-label {
    font-size: 20px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-weight: 700;
    color: #94a3b8;
    margin-bottom: 0;
}
.si-partner-row {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-top: -1.5rem;
}
.si-logo-box {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    min-width: 0;
}
.si-logo-inner {
    width: 5rem;
    height: 5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    max-width: 320px;
}
.si-logo-inner a { width: 100%; height: 100%; display: block; }
.si-logo-inner img { width: 100%; height: 100%; object-fit: contain; }
.si-partner-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0 0.25rem;
}
.si-badge-pill {
    background-color: #FFBF52;
    color: #000066;
    font-weight: 700;
    font-size: 0.75rem;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.si-badge-line {
    width: 1px;
    height: 1rem;
    background-color: #e2e8f0;
    margin: 0.25rem 0;
}
.si-badge-sub { font-size: 0.75rem; color: #64748b; }

/* ── Progress Header ─────────────────────────────────────────── */
.si-progress {
    display: flex;
    align-items: center;
    gap: 3rem;
    margin-bottom: 3rem;
    justify-content: center;
    width: 100%;
    max-width: 56rem;
    margin-left: auto;
    margin-right: auto;
}
.si-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}
.si-step-indicator {
    width: 1.25rem;
    height: 1.25rem;
    border-radius: 9999px;
    border: 2px solid #f97316;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    flex-shrink: 0;
}
.si-step-indicator.done {
    background-color: #f97316;
    border-color: #f97316;
}
.si-step-indicator.inactive {
    border-color: #cbd5e1;
}
.si-step-dot {
    width: 0.625rem;
    height: 0.625rem;
    border-radius: 9999px;
    background: #f97316;
}
.si-step-check { width: 0.875rem; height: 0.875rem; color: #ffffff; }
.si-step-label {
    font-size: 0.625rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #1e293b;
}
.si-step-label.inactive { color: #94a3b8; }
.si-progress-line {
    height: 2px;
    width: 6rem;
    background-color: #e2e8f0;
    transition: background-color 0.3s;
    flex-shrink: 0;
}
.si-progress-line.orange { background-color: #f97316; }

/* ── Booking Card (Step 1) ───────────────────────────────────── */
.si-card {
    width: 100%;
    max-width: 56rem;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 0.75rem;
    box-shadow: 0 25px 50px -12px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid #f1f5f9;
    transition: all 0.3s;
}
/* Left dark column */
.si-calendar-col {
    width: 100%;
    background: #334155;
    color: #ffffff;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.si-cal-logo-wrap {
    width: 4rem;
    height: 4rem;
    background: #ffffff;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 20px 25px -5px rgba(0,0,0,0.2);
}
.si-cal-logo-wrap img { width: 2rem; height: 2rem; object-fit: contain; }
.si-cal-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    text-align: center;
}
.si-cal-duration {
    color: #94a3b8;
    font-size: 0.875rem;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
}
.si-cal-duration svg { width: 1rem; height: 1rem; }
.si-cal-nav {
    width: 100%;
}
.si-cal-nav-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}
.si-cal-nav-btn {
    padding: 0.25rem;
    background: transparent;
    border: none;
    cursor: pointer;
    color: #ffffff;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}
.si-cal-nav-btn:hover { background: rgba(255,255,255,0.1); }
.si-cal-nav-btn svg { width: 1.25rem; height: 1.25rem; }
.si-cal-month-label {
    font-size: 1.125rem;
    font-weight: 600;
}
.si-cal-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0.25rem;
    text-align: center;
    margin-bottom: 0.5rem;
}
.si-cal-weekday {
    font-size: 0.625rem;
    font-weight: 700;
    color: #94a3b8;
    letter-spacing: 0.1em;
    padding: 0.5rem 0;
}
.si-cal-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0.25rem;
}

/* Calendar day buttons — set by JS */
.cal-day-inactive {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 9999px;
    font-size: 0.875rem;
    color: #475569;
    background: transparent;
    border: none;
    cursor: default;
}
.cal-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 9999px;
    font-size: 0.875rem;
    background: transparent;
    border: none;
    color: #ffffff;
    cursor: pointer;
    position: relative;
    transition: all 0.15s;
}
.cal-day:hover { background: rgba(255,255,255,0.1); }
.cal-day.selected {
    background: #ffffff;
    color: #334155;
    font-weight: 700;
    transform: scale(1.1);
    box-shadow: 0 10px 15px rgba(0,0,0,0.2);
}
.cal-day.today {
    color: #fb923c;
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 4px;
}

/* Right time column */
.si-time-col {
    flex: 1;
    background: #ffffff;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    height: 600px;
}
.si-duration-label {
    font-size: 0.625rem;
    font-weight: 700;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
    display: block;
}
.si-duration-badge {
    background: #dbeafe;
    border: 1px solid #bfdbfe;
    border-radius: 0.375rem;
    padding: 0.75rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: #475569;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}
.si-time-heading { font-size: 1.25rem; font-weight: 700; color: #1e293b; margin-bottom: 0.25rem; }
.si-time-sub { font-size: 0.875rem; color: #64748b; margin-bottom: 1.5rem; }
.si-time-sub span { font-weight: 700; color: #374151; }
.si-tz-row {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.75rem;
    font-weight: 500;
    color: #0891b2;
    margin-bottom: 1.5rem;
    cursor: pointer;
}
.si-tz-row:hover { text-decoration: underline; }
.si-tz-row svg { width: 0.875rem; height: 0.875rem; }
.si-slots-list {
    flex: 1;
    overflow-y: auto;
    padding-right: 0.5rem;
    min-height: 0; /* required for flex child to shrink and scroll */
}
.si-slots-list::-webkit-scrollbar { width: 4px; }
.si-slots-list::-webkit-scrollbar-track { background: #f1f5f9; border-radius: 9999px; }
.si-slots-list::-webkit-scrollbar-thumb { background: #cbd5e1; border-radius: 9999px; }

/* Time slot buttons — set by JS */
.time-btn {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #e2e8f0;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    background: #ffffff;
    color: #475569;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.15s;
    margin-bottom: 0.5rem;
}
.time-btn:hover { border-color: #f97316; color: #f97316; }
.time-btn.selected {
    background: #f97316;
    border-color: #f97316;
    color: #ffffff;
    box-shadow: 0 10px 15px rgba(249,115,22,0.2);
}
.time-btn.selected svg { width: 1rem; height: 1rem; }

.si-confirm-area {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #f1f5f9;
    display: flex;
    justify-content: flex-end;
}
.si-confirm-btn {
    background: #1e293b;
    color: #ffffff;
    padding: 0.75rem 2rem;
    border-radius: 0.5rem;
    font-weight: 700;
    font-size: 0.875rem;
    border: none;
    cursor: pointer;
    box-shadow: 0 10px 15px rgba(30,41,59,0.2);
    transition: background 0.2s;
}
.si-confirm-btn:hover { background: #0f172a; }

/* ── Step 2: Info Form ───────────────────────────────────────── */
.si-info-card {
    width: 100%;
    max-width: 48rem;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 0.75rem;
    box-shadow: 0 25px 50px -12px rgba(0,0,0,0.1);
    overflow: hidden;
    border: 1px solid #f1f5f9;
    transition: all 0.3s;
}
.si-info-body { padding: 2.5rem; }
.si-info-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1.5rem;
}
.si-selected-datetime {
    font-size: 0.875rem;
    font-weight: 500;
    color: #374151;
    margin-bottom: 2rem;
}
.si-edit-btn {
    margin-left: 0.5rem;
    color: #0891b2;
    background: none;
    border: none;
    cursor: pointer;
    font-weight: 700;
    font-size: 0.875rem;
    padding: 0;
}
.si-edit-btn:hover { text-decoration: underline; }
.si-form-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}
.si-field { display: flex; flex-direction: column; gap: 0.375rem; }
.si-field label {
    font-size: 0.75rem;
    font-weight: 700;
    color: #374151;
}
.si-field input,
.si-field select,
.si-field textarea {
    width: 100%;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 0.375rem;
    padding: 0.75rem;
    font-size: 0.875rem;
    color: #1e293b;
    box-sizing: border-box;
    transition: border-color 0.2s;
    outline: none;
}
.si-field input:focus,
.si-field select:focus,
.si-field textarea:focus { border-color: #f97316; }
.si-field select { appearance: none; color: #94a3b8; }
.si-field select.has-value { color: #1e293b; }
.si-field textarea { resize: none; }
.si-field-wrap { position: relative; }
.si-field-wrap select { padding-right: 2rem; }
.si-field-wrap .si-select-icon {
    position: absolute;
    right: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    width: 1rem;
    height: 1rem;
    color: #0891b2;
    pointer-events: none;
}
.si-field-error {
    font-size: 0.625rem;
    color: #ef4444;
    font-weight: 500;
}
.si-field input.error,
.si-field select.error,
.si-field textarea.error { border-color: #f87171; }
.si-info-footer {
    background: #f8fafc;
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #f1f5f9;
}
.si-back-btn {
    padding: 0.625rem 1.5rem;
    border: 1px solid #cbd5e1;
    border-radius: 0.375rem;
    font-size: 0.875rem;
    font-weight: 700;
    color: #475569;
    background: #ffffff;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: background 0.2s;
}
.si-back-btn:hover { background: #f8fafc; }
.si-back-btn svg { width: 1rem; height: 1rem; }
.si-submit-btn {
    padding: 0.625rem 2.5rem;
    background: #1e293b;
    color: #ffffff;
    border-radius: 0.375rem;
    font-size: 0.875rem;
    font-weight: 700;
    border: none;
    cursor: pointer;
    box-shadow: 0 10px 15px rgba(30,41,59,0.2);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: background 0.2s;
}
.si-submit-btn:hover { background: #0f172a; }
.si-submit-btn:disabled { opacity: 0.7; cursor: not-allowed; }

/* Spinner */
@keyframes spin { to { transform: rotate(360deg); } }
.si-spinner {
    width: 1rem;
    height: 1rem;
    animation: spin 0.8s linear infinite;
}

/* ── Step 3: Success ─────────────────────────────────────────── */
.si-success-card {
    width: 100%;
    max-width: 48rem;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 0.75rem;
    box-shadow: 0 25px 50px -12px rgba(0,0,0,0.1);
    overflow: hidden;
    border: 1px solid #f1f5f9;
}
.si-success-body {
    padding: 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.si-success-icon {
    width: 5rem;
    height: 5rem;
    border-radius: 9999px;
    background: #dcfce7;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}
.si-success-icon svg { width: 2.5rem; height: 2.5rem; color: #22c55e; }
.si-success-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.75rem;
}
.si-success-desc { font-size: 0.875rem; color: #64748b; margin-bottom: 0.5rem; }
.si-success-date { font-size: 0.875rem; font-weight: 700; color: #374151; margin-bottom: 2rem; }
.si-home-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 2rem;
    background: #1e293b;
    color: #ffffff;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    font-weight: 700;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: background 0.2s;
}
.si-home-btn:hover { background: #0f172a; }
.si-home-btn svg { width: 1rem; height: 1rem; }

/* ── Responsive ──────────────────────────────────────────────── */
@media (min-width: 640px) {
    .si-logo-inner { width: 7rem; height: 7rem; }
    .si-hero-heading { font-size: 2.25rem; }
}
@media (min-width: 768px) {
    .si-logo-inner { width: 9rem; height: 9rem; }
    .si-card { flex-direction: row; }
    .si-calendar-col { width: 400px; }
    .si-time-col { height: 600px; overflow: hidden; } /* fixed height so slots list scrolls */
    .si-form-grid.two-col { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 1024px) {
    .si-logo-inner { width: 11rem; height: 11rem; }
}
@media (max-width: 768px) {
    .si-time-col { height: auto; padding: 1.25rem; }
    .si-slots-list { max-height: 45vh; }
    .si-confirm-area {
        position: sticky;
        bottom: 0;
        background: linear-gradient(transparent, #ffffff);
        padding-top: 0.5rem;
        margin-top: 0.5rem;
    }
}


/* ── SEO Velocity Page Styles ─────────────────────────────────── */

/* Spacer below nav (desktop only) */
.sv-spacer {
    display: none;
}

/* Hero Section */
.sv-hero {
    padding: 1rem 1rem 2rem;
}
.sv-container {
    max-width: 72rem;
    margin: 0 auto;
    text-align: center;
}
.sv-partner-label {
    font-size: 20px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-weight: 700;
    color: #94a3b8;
    margin-bottom: 0;
}

/* Partner row */
.sv-partner-row {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-top: -1.5rem;
    margin-bottom: 0;
}
.sv-logo-box {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    min-width: 0;
}
.sv-logo-inner {
    width: 5rem;
    height: 5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    max-width: 320px;
}
.sv-logo-inner a {
    width: 100%;
    height: 100%;
    display: block;
}
.sv-logo-inner img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Partner badge */
.sv-partner-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0 0.25rem;
}
.sv-badge-pill {
    background-color: #FFBF52;
    color: #000066;
    font-weight: 700;
    font-size: 0.75rem;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.sv-badge-line {
    width: 1px;
    height: 1rem;
    background-color: #e2e8f0;
    margin: 0.25rem 0;
}
.sv-badge-sub {
    font-size: 0.75rem;
    color: #64748b;
}

/* Hero text */
.sv-heading {
    font-size: 1.5rem;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.25;
    margin-bottom: 0.5rem;
}
.sv-subtext {
    font-size: 1.125rem;
    color: #64748b;
    max-width: 42rem;
    margin: 0 auto;
    line-height: 1.625;
}

/* Booking form card */
.sv-booking {
    background: #ffffff;
    padding: 1rem;
    border-radius: 1rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    border: 1px solid #e5e7eb;
    max-width: 48rem;
    margin: 1.5rem auto 0;
}
.sv-booking h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #111827;
    text-align: center;
    margin: 0 0 0.5rem;
}
.sv-booking > p {
    text-align: center;
    color: #4b5563;
    margin: 0;
}
.sv-iframe-wrap {
    margin-top: 0.5rem;
    min-height: 300px;
}
.sv-iframe-wrap iframe {
    border: none;
    width: 100%;
    height: 480px;
    min-height: 300px;
    display: block;
}

/* CTA section */
.sv-cta-section {
    padding: 2rem 1rem;
    background: #f8fafc;
}
.sv-cta-inner {
    max-width: 56rem;
    margin: 0 auto;
}
.sv-cta-card {
    background: linear-gradient(to right, #2563eb, #000066);
    color: #ffffff;
    border-radius: 1rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    padding: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}
.sv-cta-icon-col {
    flex-shrink: 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.sv-cta-icon-wrap {
    width: 8rem;
    height: 8rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.sv-cta-icon-wrap svg {
    width: 3rem;
    height: 3rem;
    fill: #ffffff;
    color: #ffffff;
}
.sv-cta-content {
    flex: 1;
    text-align: center;
}
.sv-cta-content h2 {
    font-size: 1.5rem;
    font-weight: 800;
    margin: 0 0 0.5rem;
}
.sv-cta-content p {
    color: #bfdbfe;
    margin: 0 0 1rem;
    max-width: 36rem;
}
.sv-cta-btn-wrap {
    display: flex;
    justify-content: center;
}
.sv-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: #ffffff;
    color: #1d4ed8;
    font-weight: 600;
    padding: 0.75rem 1.25rem;
    border-radius: 0.5rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    text-decoration: none;
    transition: background 0.2s ease;
}
.sv-cta-btn:hover {
    background: #f3f4f6;
}
.sv-cta-btn svg {
    width: 1.25rem;
    height: 1.25rem;
    flex-shrink: 0;
}

/* ── Responsive ───────────────────────────────────────────────── */
@media (min-width: 640px) {
    .sv-logo-inner {
        width: 7rem;
        height: 7rem;
    }
}

@media (min-width: 768px) {
    .sv-spacer {
        display: block;
        height: 3rem;
    }
    .sv-heading {
        font-size: 3rem;
    }
    .sv-booking {
        margin-top: 3rem;
        padding: 2.5rem;
    }
    .sv-iframe-wrap {
        margin-top: 1.5rem;
        min-height: 700px;
    }
    .sv-iframe-wrap iframe {
        height: 867px;
        min-height: 800px;
    }
    .sv-logo-inner {
        width: 9rem;
        height: 9rem;
    }
    .sv-cta-section {
        padding: 4rem 1rem;
    }
    .sv-cta-card {
        flex-direction: row;
        padding: 2.5rem;
        gap: 1.5rem;
    }
    .sv-cta-icon-col {
        width: auto;
    }
    .sv-cta-icon-wrap {
        width: 10rem;
        height: 10rem;
    }
    .sv-cta-content {
        text-align: left;
    }
    .sv-cta-content h2 {
        font-size: 1.875rem;
    }
    .sv-cta-btn-wrap {
        justify-content: flex-start;
    }
}

@media (min-width: 1024px) {
    .sv-logo-inner {
        width: 11rem;
        height: 11rem;
    }
}