/* ============================================================
   SEGMENT "COMING SOON" PAGE — shared styles
   Matches the Direct Booking Info tricolour theme.
   Saffron #ff9933 · White #ffffff · Green #138808 · Navy #1a2a6c
   ============================================================ */

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    scroll-padding-top: 72px;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

@media (min-width: 320px) {
    html { font-size: clamp(14px, 0.875rem + 0.25vw, 18px); }
}

img, svg, video { max-width: 100%; height: auto; display: block; }

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    min-height: 100vh;
    min-height: 100dvh;
    /* Same animated tricolour flow as the homepage */
    background: linear-gradient(135deg, #1a2a6c, #b21f1f, #ff9933, #138808);
    background-size: 400% 400%;
    animation: gradient 15s ease infinite;
    color: #fff;
    text-align: center;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    line-height: 1.5;
    display: flex;
    flex-direction: column;
}

@keyframes gradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

.sr-only {
    position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
    overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}

/* ---- Navbar (light frosted, matches homepage) ---- */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: clamp(7px, 1.2vw, 11px) clamp(16px, 4vw, 50px);
    background: rgba(255, 255, 255, 0.96);
    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid rgba(26, 42, 108, 0.08);
}

.navbar .brand { display: flex; align-items: center; line-height: 0; }
.navbar .brand img {
    width: clamp(122px, 14vw, 176px);
    height: auto; display: block; object-fit: contain;
}

.navbar ul {
    list-style: none;
    display: flex;
    align-items: center;
    gap: clamp(4px, 1.2vw, 14px);
    flex-wrap: wrap;
    justify-content: flex-end;
}

.navbar ul li a {
    position: relative;
    color: #1a2a6c;
    text-decoration: none;
    font-size: clamp(0.82rem, 1vw, 0.9rem);
    font-weight: 600;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    padding: 7px 14px;
    border-radius: 8px;
    transition: color 0.25s, background 0.25s;
    display: inline-block;
    white-space: nowrap;
}

.navbar ul li a::after {
    content: "";
    position: absolute;
    left: 14px; right: 14px; bottom: 3px;
    height: 2px; border-radius: 2px;
    background: #ff9933;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.28s ease;
}

.navbar ul li a:hover,
.navbar ul li a:focus-visible,
.navbar ul li a.active {
    color: #b21f1f;
    background: rgba(26, 42, 108, 0.05);
    outline: none;
}
.navbar ul li a:hover::after,
.navbar ul li a:focus-visible::after,
.navbar ul li a.active::after { transform: scaleX(1); }

.navbar ul li.nav-cta a {
    color: #fff;
    background: #1a2a6c;
}
.navbar ul li.nav-cta a::after { display: none; }
.navbar ul li.nav-cta a:hover,
.navbar ul li.nav-cta a:focus-visible { background: #b21f1f; color: #fff; }

.navbar ul li a:focus-visible {
    outline: 2px solid #ff9933;
    outline-offset: 2px;
}

.menu-toggle {
    display: none;
    background: none; border: none;
    color: #1a2a6c;
    font-size: 1.6rem;
    cursor: pointer;
    padding: 8px 12px;
    min-width: 44px; min-height: 44px;
    border-radius: 8px;
}
.menu-toggle:focus-visible { outline: 2px solid #ff9933; outline-offset: 2px; }

@media (max-width: 768px) {
    .navbar { position: relative; }
    .navbar ul {
        position: absolute;
        top: 100%; left: 0; right: 0;
        flex-direction: column;
        background: rgba(255, 255, 255, 0.97);
        -webkit-backdrop-filter: blur(16px);
        backdrop-filter: blur(16px);
        padding: 14px 18px 18px;
        gap: 4px;
        display: none;
        max-height: calc(100dvh - 70px);
        overflow-y: auto;
        border-bottom: 4px solid transparent;
        border-image: linear-gradient(to right, #ff9933 33.33%, #fff 33.33% 66.66%, #138808 66.66%) 1;
        box-shadow: 0 12px 24px rgba(26, 42, 108, 0.12);
    }
    .navbar ul.open { display: flex; }
    .navbar ul li { width: 100%; }
    .navbar ul li a { display: block; width: 100%; padding: 14px 16px; text-align: center; }
    .navbar ul li a::after { display: none; }
    .navbar ul li.nav-cta a { margin-top: 6px; }
    .menu-toggle { display: flex; align-items: center; justify-content: center; }
}

/* ---- Tricolour signature stripe ---- */
.tricolor-bar {
    height: 4px;
    width: 100%;
    background: linear-gradient(to right,
        #ff9933 0%, #ff9933 33.33%,
        #ffffff 33.33%, #ffffff 66.66%,
        #138808 66.66%, #138808 100%);
}
.navbar + .tricolor-bar {
    height: 3px;
    position: sticky;
    top: 0;
    z-index: 99;
    box-shadow: 0 2px 8px rgba(26, 42, 108, 0.15);
}

/* ---- Breadcrumbs ---- */
.cs-breadcrumb {
    padding: clamp(14px, 2vw, 20px) clamp(16px, 4vw, 50px) 0;
    font-size: clamp(0.78rem, 1vw, 0.86rem);
}
.cs-breadcrumb ol {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin: 0 auto;
    max-width: min(1200px, 100%);
    justify-content: flex-start;
}
.cs-breadcrumb li {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.85);
}
.cs-breadcrumb a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: color 0.2s;
}
.cs-breadcrumb a:hover,
.cs-breadcrumb a:focus-visible { color: #ff9933; outline: none; }
.cs-breadcrumb li[aria-current="page"] { color: #ff9933; font-weight: 600; }
.cs-breadcrumb .sep { color: rgba(255, 255, 255, 0.45); }

/* ============================================================
   HERO BANNER — blog-style image banner with animated SVG scene
   ============================================================ */
main { flex: 1 0 auto; }

.cs-banner {
    position: relative;
    height: clamp(360px, 52vh, 560px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    padding: clamp(24px, 5vw, 52px) clamp(16px, 4vw, 32px);
    overflow: hidden;
}
.cs-banner .banner-bg {
    position: absolute; inset: 0;
    background-image: var(--banner-img);
    background-size: cover;
    background-position: center;
    transform: scale(1.06);
    z-index: 0;
    /* slow Ken Burns drift on top of the SVG's own animation */
    animation: banner-kenburns 24s ease-in-out infinite alternate;
}
@keyframes banner-kenburns {
    0%   { transform: scale(1.06) translate(0, 0); }
    100% { transform: scale(1.14) translate(-1.5%, -1.5%); }
}
/* dark scrim so the title stays legible over the scene */
.cs-banner .banner-scrim {
    position: absolute; inset: 0; z-index: 1;
    background: linear-gradient(180deg,
        rgba(10, 12, 26, 0.55) 0%,
        rgba(10, 12, 26, 0.38) 42%,
        rgba(10, 12, 26, 0.72) 100%);
}
/* thin tricolour edge at the very bottom of the banner */
.cs-banner::after {
    content: "";
    position: absolute; left: 0; right: 0; bottom: 0; height: 4px; z-index: 3;
    background: linear-gradient(to right, #ff9933 33.33%, #fff 33.33% 66.66%, #138808 66.66%);
}
.cs-banner .banner-inner {
    position: relative; z-index: 2;
    max-width: min(820px, 100%);
}
.cs-banner .banner-icon {
    width: clamp(56px, 8vw, 76px);
    height: clamp(56px, 8vw, 76px);
    margin: 0 auto clamp(14px, 2vw, 20px);
    display: flex; align-items: center; justify-content: center;
    border-radius: 20px;
    background: rgba(255, 153, 51, 0.18);
    border: 1px solid rgba(255, 153, 51, 0.5);
    color: #ffcf87;
    -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px);
}
.cs-banner .banner-icon svg { width: 48%; height: 48%; stroke-width: 1.6; }
.cs-banner .banner-eyebrow {
    display: inline-block;
    font-size: clamp(0.68rem, 1vw, 0.8rem);
    font-weight: 700; text-transform: uppercase;
    letter-spacing: clamp(2px, 0.5vw, 4px);
    color: #ff9933;
    margin-bottom: 14px;
    padding: 6px 18px;
    border: 1px solid rgba(255, 153, 51, 0.55);
    border-radius: 40px;
    background: rgba(0, 0, 0, 0.28);
}
.cs-banner h1 {
    font-size: clamp(2rem, 5.5vw, 3.6rem);
    font-weight: 700; line-height: 1.1; letter-spacing: 0.5px;
    margin-bottom: clamp(10px, 1.6vw, 16px);
    text-shadow: 0 2px 18px rgba(0, 0, 0, 0.55);
    overflow-wrap: break-word;
}
.cs-banner .banner-soon {
    display: inline-block;
    font-size: clamp(0.9rem, 1.8vw, 1.25rem);
    font-weight: 700; letter-spacing: 3px; text-transform: uppercase;
    background: linear-gradient(to right, #ffc27a 0%, #ffffff 50%, #9dffa0 100%);
    -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent; color: #fff;
    filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.7));
}

@media (prefers-reduced-motion: reduce) {
    .cs-banner .banner-bg { animation: none; transform: scale(1.06); }
}

/* ============================================================
   COMING SOON — compact CTA section below the banner
   ============================================================ */
.cs-hero {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: clamp(40px, 7vw, 76px) clamp(20px, 4vw, 40px);
    position: relative;
    overflow: hidden;
}

/* Faint Ashoka chakra watermark behind the card */
.cs-chakra {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: clamp(300px, 60vw, 640px);
    height: clamp(300px, 60vw, 640px);
    opacity: 0.05;
    color: #fff;
    pointer-events: none;
    z-index: 0;
    animation: chakra-spin 120s linear infinite;
}
@keyframes chakra-spin { to { transform: translate(-50%, -50%) rotate(360deg); } }

.cs-card {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: min(680px, 100%);
    padding: clamp(28px, 4.5vw, 48px) clamp(24px, 5vw, 52px);
    background: rgba(0, 0, 0, 0.32);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    border-radius: clamp(16px, 2.5vw, 26px);
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}
.cs-card .cs-lines:first-child { margin-top: 0; }

/* Segment icon badge */
.cs-icon {
    width: clamp(70px, 10vw, 92px);
    height: clamp(70px, 10vw, 92px);
    margin: 0 auto clamp(20px, 3vw, 28px);
    display: flex; align-items: center; justify-content: center;
    border-radius: 22px;
    background: rgba(255, 153, 51, 0.16);
    border: 1px solid rgba(255, 153, 51, 0.4);
    color: #ffcf87;
}
.cs-icon svg { width: 48%; height: 48%; stroke-width: 1.6; }

.cs-kicker {
    display: inline-block;
    font-size: clamp(0.68rem, 1vw, 0.8rem);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: clamp(2px, 0.5vw, 4px);
    color: #ff9933;
    margin-bottom: 16px;
    padding: 7px 18px;
    border: 1px solid rgba(255, 153, 51, 0.5);
    border-radius: 40px;
    background: rgba(0, 0, 0, 0.2);
}

.cs-card h1 {
    font-size: clamp(2rem, 6.5vw, 4.2rem);
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: 0.5px;
    margin-bottom: clamp(10px, 1.6vw, 16px);
    /* prefer word-boundary breaks; only split a word if it truly can't fit
       (avoids one-letter-per-line at extreme zoom) */
    overflow-wrap: break-word;
    hyphens: auto;
}

.cs-soon {
    display: block;
    font-size: clamp(1.15rem, 2.4vw, 1.75rem);
    font-weight: 700; /* heavier for legibility on the busy backdrop */
    letter-spacing: 3px;
    text-transform: uppercase;
    /* saffron → white → green tricolour text, brightened green stop for contrast */
    background: linear-gradient(to right, #ffc27a 0%, #ffffff 50%, #9dffa0 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: #fff;
    /* subtle dark shadow lifts every letter off the red/orange bg (WCAG safety) */
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.55));
    margin-bottom: clamp(20px, 3vw, 28px);
}

.cs-lines {
    font-size: clamp(1rem, 1.8vw, 1.22rem);
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.92);
    max-width: 54ch;
    margin: 0 auto clamp(28px, 4vw, 38px);
}

/* Buttons row */
.cs-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: center;
}

.cs-btn {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-size: clamp(0.9rem, 1.2vw, 1rem);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 14px 30px;
    border-radius: 50px;
    text-decoration: none;
    min-height: 48px;
    transition: transform 0.25s, box-shadow 0.25s, background 0.25s, color 0.25s;
}
.cs-btn svg { width: 17px; height: 17px; transition: transform 0.25s; }

.cs-btn.primary {
    background: #ff9933;
    color: #1a2a6c;
    box-shadow: 0 12px 30px rgba(255, 153, 51, 0.3);
}
.cs-btn.primary:hover,
.cs-btn.primary:focus-visible {
    transform: translateY(-3px);
    background: linear-gradient(135deg, #ff9933, #138808);
    color: #fff;
    box-shadow: 0 16px 40px rgba(19, 136, 8, 0.35);
    outline: none;
}
.cs-btn.primary:hover svg { transform: translateX(4px); }

.cs-btn.ghost {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.25);
}
.cs-btn.ghost:hover,
.cs-btn.ghost:focus-visible {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.18);
    outline: none;
}
.cs-btn svg.arrow-back { transform: scaleX(-1); }
.cs-btn.ghost:hover svg.arrow-back { transform: scaleX(-1) translateX(4px); }

.cs-btn:focus-visible { outline: 2px solid #fff; outline-offset: 3px; }

/* Notify form */
.cs-notify {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin: clamp(24px, 4vw, 32px) auto 0;
    width: 100%;
    max-width: 480px;
}
.cs-notify input {
    flex: 1 1 220px;
    padding: 14px 20px;
    border: none;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.96);
    color: #333;
    font-size: max(16px, 1rem);
    min-width: 0; outline: none; min-height: 48px;
}
.cs-notify input:focus-visible { box-shadow: 0 0 0 3px rgba(255, 153, 51, 0.6); }
.cs-notify button {
    flex: 0 1 auto;
    padding: 14px 28px;
    border: none;
    border-radius: 50px;
    background: #1a2a6c;
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: transform 0.2s, background 0.2s;
    min-height: 48px;
    white-space: nowrap;
}
.cs-notify button:hover,
.cs-notify button:focus-visible {
    transform: translateY(-2px);
    background: #b21f1f;
    outline: none;
}
.cs-notify-msg {
    margin-top: 14px;
    min-height: 1.4em;
    font-size: 0.95rem;
    color: #ffcf87;
    font-weight: 500;
}
.cs-notify-msg.error { color: #ffb4b4; }

@media (max-width: 480px) {
    .cs-notify { flex-direction: column; }
    .cs-notify input, .cs-notify button { width: 100%; flex: 1 1 auto; }
    .cs-actions { flex-direction: column; }
    .cs-btn { width: 100%; justify-content: center; }
}

/* ---- Site Footer (full — identical to homepage & blog for consistency) ---- */
.site-footer {
    flex-shrink: 0;
    background: rgba(0, 0, 0, 0.55);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    color: #fff;
    padding: clamp(40px, 7vw, 60px) clamp(16px, 4vw, 40px) clamp(16px, 3vw, 24px);
    padding-bottom: max(clamp(16px, 3vw, 24px), env(safe-area-inset-bottom));
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-container {
    max-width: min(1400px, 100%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(220px, 100%), 1fr));
    gap: clamp(24px, 4vw, 40px);
    text-align: left;
}

.footer-col h4 {
    font-size: clamp(0.9rem, 1.2vw, 1rem);
    text-transform: uppercase;
    letter-spacing: clamp(1px, 0.25vw, 2px);
    margin-bottom: clamp(12px, 2vw, 18px);
    color: #fdbb2d;
}

.footer-col p,
.footer-col a {
    font-size: clamp(0.85rem, 1.1vw, 0.92rem);
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    display: block;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.footer-col a {
    transition: padding-left 0.2s, color 0.2s;
    min-height: 28px;
}

.footer-col a:hover,
.footer-col a:focus-visible {
    color: #fff;
    padding-left: 4px;
    outline: none;
}

.footer-brand p { margin-top: 12px; }

.footer-brand .footer-logo {
    display: inline-block;
    background: #fff;
    padding: 14px 22px;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
    margin-bottom: 14px;
    max-width: 100%;
}

.footer-brand .footer-logo img {
    width: clamp(220px, 18vw, 300px);
    height: auto;
    max-width: 100%;
    display: block;
    object-fit: contain;
}

.social-icons {
    display: flex;
    gap: 12px;
    margin-top: 18px;
    flex-wrap: wrap;
}

.social-icons a {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #fff;
    transition: background 0.3s, transform 0.2s, color 0.3s, border-color 0.3s;
    padding: 0;
}

.social-icons a svg { width: 18px; height: 18px; }

.social-icons a:hover,
.social-icons a:focus-visible {
    background: #fdbb2d;
    color: #1a2a6c;
    border-color: #fdbb2d;
    transform: translateY(-3px);
    padding-left: 0;
    outline: none;
}

.footer-contact .contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 10px;
    font-size: clamp(0.85rem, 1.1vw, 0.92rem);
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
    word-break: break-word;
}
.footer-contact .ci-icon {
    width: 17px; height: 17px; flex: 0 0 auto; margin-top: 2px;
    color: #fdbb2d;
}

.footer-bottom {
    max-width: min(1400px, 100%);
    margin: clamp(24px, 5vw, 40px) auto 0;
    padding-top: clamp(16px, 3vw, 20px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
    font-size: clamp(0.75rem, 1vw, 0.85rem);
    color: rgba(255, 255, 255, 0.6);
}

.footer-bottom-links {
    display: flex;
    gap: clamp(12px, 2vw, 20px);
    flex-wrap: wrap;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-bottom-links a:hover,
.footer-bottom-links a:focus-visible {
    color: #fff;
    outline: none;
}
