/* Header */
:root {
    --ink: #202020;
    --green: #17783c;
    --blue: #1472aa;
    --header-height: 120px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-width: 320px;
    color: var(--ink);
    background: #fff;
    font-family: "DM Sans", sans-serif;
}

.site-header {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    z-index: 10;
    height: var(--header-height);
    background: transparent;
    border-bottom: 1px solid transparent;
    transition: background-color 220ms ease, box-shadow 220ms ease;
}

.site-header.is-scrolled {
    position: fixed;
    background: #ffd400;
    border-bottom-color: rgba(32, 32, 32, 0.12);
    box-shadow: 0 3px 12px rgba(32, 32, 32, 0.12);
}

.header-inner {
    /* width: min(100% - 48px, 1080px); */
    width: 75%;
    height: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    color: var(--ink);
    text-decoration: none;
    line-height: 1;
}

.brand-mark {
    display: block;
    margin-bottom: 1px;
}

.brand-name {
    font-size: 27px;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.brand-name sup {
    position: relative;
    top: -1em;
    margin-left: 2px;
    font-size: 5px;
    font-weight: 700;
}

.primary-navigation {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-right: 15px;
}

.primary-navigation a {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 20px;
    color: var(--ink);
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.01em;
    text-decoration: none;
    border: 1px solid #042544;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.08);
    /* box-shadow: inset 0 0 0 1px rgba(42, 208, 255, 0.4); */
    transition: background-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.primary-navigation a:hover,
.primary-navigation a:focus-visible {
    background: rgba(255, 255, 255, 0.16);
    box-shadow: 0 0 0 2px rgba(42, 208, 255, 0.15);
    transform: translateY(-1px);
}

.primary-navigation a::after {
    display: none;
}

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    padding: 10px;
    border: 0;
    background: transparent;
    cursor: pointer;
}

.menu-icon {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.menu-icon span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--ink);
    transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle[aria-expanded="true"] .menu-icon span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-icon span:nth-child(2) {
    opacity: 0;
}

.menu-toggle[aria-expanded="true"] .menu-icon span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.hero {
    width: 100%;
    overflow: hidden;
}

.hero-picture {
    display: block;
    width: 100%;
    height: auto;
}

.hero-image {
    display: block;
    width: 100%;
    height: auto;
}

.neral-section {
    position: relative;
    min-height: 840px;
    overflow: hidden;
    color: #fff;
    background: linear-gradient(110deg, #154d87 0%, #24477f 43%, #bf263f 100%);
}

.neral-content {
    position: relative;
    z-index: 2;
    width: 80%;
    margin: 0 auto;
    padding: 58px 0 70px;
}

.section-kicker {
    margin: 0 0 8px;
    color: #ffd400;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .16em;
    text-align: center;
    text-transform: uppercase;
}

.neral-section h1 {
    font-family: "Bebas Neue";
    margin: 0 auto;
    font-size: clamp(34px, 5vw, 54px);
    font-weight: 700;
    letter-spacing: .02em;
    line-height: 1;
    text-align: center;
    position: relative;
    width: fit-content;
}

.neral-section h1::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 6px;
    background: #ffd400;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
    border-radius: 3px;
    box-shadow: 0 0 15px rgba(255, 212, 0, 0.6);
}

.neral-section.is-visible h1::after {
    transform: scaleX(1);
    transition-delay: 0.6s;
}

.section-intro {
    font-family: "Montserrat";
    margin: 12px 0 42px;
    color: #ffd400;
    font-size: 14px;
    font-weight: 700;
    text-align: center;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 42px;
}

.benefit-item {
    text-align: center;
    animation: rise-in 700ms both;
}

.benefit-item:nth-child(2) {
    animation-delay: 100ms;
}

.benefit-item:nth-child(3) {
    animation-delay: 200ms;
}

.benefit-item:nth-child(4) {
    animation-delay: 300ms;
}

.benefit-icon {
    display: grid;
    margin: 0 auto 15px;
    place-items: center;
}

.benefit-icon img {
    display: block;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), filter 0.8s ease;
}

.benefit-item:hover .benefit-icon img {
    transform: scale(1.15) translateY(-8px);
    filter: drop-shadow(0 15px 25px rgba(255, 255, 255, 0.5));
}

.benefit-item h2 {
    font-family: "Montserrat";
    margin: 0 0 7px;
    font-size: 14px;
    font-weight: 700;
}

.benefit-item p {
    font-family: "Montserrat";
    max-width: 150px;
    margin: auto;
    color: #ffd400;
    font-size: 12px;
    line-height: 1.4;
}

.insights-grid {
    display: grid;
    grid-template-columns: 245px 1fr;
    align-items: stretch;
    gap: 24px;
    margin-left: 7%;
    width: 45%;
    perspective: 1200px;
}

.location-card,
.price-card {
    position: relative;
    border-radius: 10px;
    color: #242424;
    background: #f5eee1;
    transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.6s ease;
    transform-style: preserve-3d;
}

/*.location-card:hover,*/
/*.price-card:hover {*/
/*    transform: translateY(-15px) rotateX(8deg) rotateY(-8deg) scale(1.03);*/
/*    box-shadow: -20px 20px 40px rgba(0, 0, 0, 0.35);*/
/*    z-index: 10;*/
/*}*/

.location-card {
    overflow: hidden;
    background: #f3ead9;
}

.location-card img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.price-card {
    padding: 50px 25px 16px;
}

.price-card h2 {
    margin: 0 0 18px;
    font-size: 14px;
    font-weight: 500;
    text-align: center;
}

.price-card h2 span {
    font-weight: 400;
}

.price-chart {
    display: grid;
    gap: 12px;
}

.price-row {
    display: grid;
    grid-template-columns: 65px minmax(70px, 1fr) 72px;
    align-items: center;
    gap: 10px;
}

.price-row strong {
    font-size: 14px;
}

.price-row output {
    font-size: 14px;
    white-space: nowrap;
}

.bar {
    height: 20px;
    background: rgba(39, 61, 131, .12);
}

.bar i {
    display: block;
    width: 0;
    height: 100%;
    background: #2d4389;
    transition: width 2.2s cubic-bezier(.22, 1, .36, 1);
}

.price-row-highlight .bar i {
    background: #dc1e2d;
}

.price-row-highlight output {
    color: #dc1e2d;
}

.price-row.is-animated .bar i {
    width: calc(var(--bar-width) * 1%);
}

.closing-line {
    font-family: "Montserrat";
    margin: -310px 0 0 calc(13% + 663px);
    color: #fff;
    font-size: 18px;
    line-height: 1.2;
}

.closing-line strong {
    color: #ffd400;
}

.train-image {
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 3;
    display: block;
    height: auto;
    object-fit: contain;
    object-position: bottom right;
    pointer-events: none;
    opacity: 0;
    transform: translateX(-100vw);
}

.neral-section.is-visible .train-image {
    animation: train-luxury-entry 2.5s cubic-bezier(0.1, 1, 0.2, 1) forwards, train-levitate 6s ease-in-out infinite 2.5s;
}

@keyframes train-luxury-entry {
    0% {
        transform: translateX(-100vw) skewX(10deg) scale(1.05);
        opacity: 0;
        filter: blur(15px) brightness(1.5) drop-shadow(20px 20px 20px rgba(0,0,0,0.5));
    }
    40% {
        opacity: 1;
        filter: blur(2px) brightness(1.2) drop-shadow(10px 10px 15px rgba(0,0,0,0.4));
    }
    100% {
        transform: translateX(0) skewX(0deg) scale(1);
        opacity: 1;
        filter: blur(0px) brightness(1) drop-shadow(5px 5px 10px rgba(0,0,0,0.3));
    }
}

@keyframes train-levitate {
    0%, 100% { transform: translateY(0); filter: drop-shadow(5px 5px 10px rgba(0,0,0,0.3)); }
    50% { transform: translateY(-4px); filter: drop-shadow(5px 9px 15px rgba(0,0,0,0.2)); }
}

.amenities-section {
    position: relative;
    overflow: hidden;
    color: #171717;
    background: radial-gradient(41.63% 63.14% at 50% 36.86%, #FBDD7F 0%, #FECB2A 100%);
}

.corner-art {
    position: absolute;
    z-index: 1;
    display: block;
    max-width: 24%;
    height: auto;
    pointer-events: none;
    opacity: 0;
}

@keyframes leaf-sway-left {
    0%, 100% { transform: rotate(0deg) scale(1) translateX(0); filter: drop-shadow(0 0 0 rgba(0,0,0,0)); }
    50% { transform: rotate(4deg) scale(1.02) translateX(3px); filter: drop-shadow(5px 5px 15px rgba(0,0,0,0.15)); }
}

@keyframes leaf-sway-right {
    0%, 100% { transform: rotate(0deg) scale(1) translateX(0); filter: drop-shadow(0 0 0 rgba(0,0,0,0)); }
    50% { transform: rotate(-4deg) scale(1.02) translateX(-3px); filter: drop-shadow(-5px -5px 15px rgba(0,0,0,0.15)); }
}

@keyframes leaf-entrance-left {
    0% { opacity: 0; transform: translate(-30px, -30px) rotate(-10deg); }
    100% { opacity: 1; transform: translate(0, 0) rotate(0deg); }
}

@keyframes leaf-entrance-right {
    0% { opacity: 0; transform: translate(30px, 30px) rotate(10deg); }
    100% { opacity: 1; transform: translate(0, 0) rotate(0deg); }
}

.corner-art-left {
    top: 0;
    left: 0;
    transform-origin: top left;
}

.amenities-section.is-visible .corner-art-left {
    animation: leaf-entrance-left 1.5s ease-out forwards, leaf-sway-left 7s ease-in-out infinite 1.5s;
}

.corner-art-right {
    right: 0;
    bottom: 0;
    transform-origin: bottom right;
}

.amenities-section.is-visible .corner-art-right {
    animation: leaf-entrance-right 1.5s ease-out forwards, leaf-sway-right 8.5s ease-in-out infinite 1.5s;
}

.amenities-content {
    position: relative;
    z-index: 2;
    width: 80%;
    margin: 0 auto;
    padding: 34px 0 54px;
}

.amenities-content>h2 {
    font-family: "Bebas Neue";
    margin: 0;
    color: #d31d2e;
    font-size: 40px;
    text-align: center;
}

.amenities-tagline {
    font-family: "Montserrat";
    margin: 10px 0 30px;
    font-size: 15px;
    text-align: center;
}

.amenities-showcase {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 160px 1fr;
    align-items: center;
    min-height: 220px;
}

.amenity-orbit {
    position: relative;
    height: auto;
}

.amenity {
    position: absolute;
    text-align: center;
    opacity: 0;
    transform: translate(var(--start-x, 0), var(--start-y, 0)) scale(0);
    transition: opacity 1.5s ease, transform 2.5s cubic-bezier(0.2, 0.8, 0.2, 1);
    margin-top: 5%;
}

.amenity-orbit-left .amenity:nth-child(1) {
    top: 0;
    left: 45%;
    --start-x: 25vw;
    --start-y: 120px;
    transition-delay: 120ms;
}

.amenity-orbit-left .amenity:nth-child(2) {
    top: 0;
    right: 11%;
    --start-x: 13vw;
    --start-y: 120px;
    transition-delay: 360ms;
}

.amenity-orbit-left .amenity:nth-child(3) {
    bottom: 0;
    left: 45%;
    --start-x: 25vw;
    --start-y: -120px;
    transition-delay: 600ms;
}

.amenity-orbit-left .amenity:nth-child(4) {
    right: 11%;
    bottom: 0;
    --start-x: 13vw;
    --start-y: -120px;
    transition-delay: 840ms;
}

.amenity-orbit-right .amenity:nth-child(1) {
    top: 0;
    left: 11%;
    --start-x: -10vw;
    --start-y: 120px;
    transition-delay: 360ms;
}

.amenity-orbit-right .amenity:nth-child(2) {
    top: 0;
    right: 45%;
    --start-x: -22vw;
    --start-y: 120px;
    transition-delay: 120ms;
}

.amenity-orbit-right .amenity:nth-child(3) {
    bottom: 0;
    left: 11%;
    --start-x: -10vw;
    --start-y: -120px;
    transition-delay: 840ms;
}

.amenity-orbit-right .amenity:nth-child(4) {
    right: 45%;
    bottom: 0;
    --start-x: -22vw;
    --start-y: -120px;
    transition-delay: 600ms;
}

.amenities-content.is-visible .amenity {
    opacity: 1;
    transform: translate(0, 0) scale(1);
}

.amenity-icon {
    display: grid;
    margin: 0 auto 9px;
    place-items: center;
}

.amenity-icon img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.amenity p {
    font-family: "Montserrat";
    margin: 0;
    font-size: 14px;
}

.amenities-counter {
    display: grid;
    width: 190px;
    height: 190px;
    place-content: center;
    border: 5px solid #eb9f1b;
    border-radius: 50%;
    color: #fff;
    background: radial-gradient(50% 50% at 50% 50%, #AD1F23 35%, #88171A 100%);
    /* box-shadow: inset 0 0 0 3px rgba(255, 218, 73, .65); */
    text-align: center;
}

.amenities-counter strong {
    font-size: 58px;
    line-height: .9;
}

.amenities-counter span {
    font-family: "Montserrat";
    margin-top: 12px;
    font-size: 18px;
    line-height: 1.15;
    color: #F8ECB1;
}

.amenity-pillars {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin: 80px auto 10px;
    border-radius: 18px;
    color: #fff;
    background: linear-gradient(100deg, #1d4e87, #c82032);
    width: 80%;

    clip-path: inset(0 50% 0 50%);
    opacity: 0;
    transform: translateY(30px);
    transition: clip-path 1.2s cubic-bezier(0.85, 0, 0.15, 1), opacity 0.8s ease, transform 1s ease;
}

.amenities-content.is-visible .amenity-pillars {
    clip-path: inset(0 0% 0 0%);
    opacity: 1;
    transform: translateY(0);
    transition-delay: 200ms;
}

.amenity-pillars div {
    display: grid;
    min-height: 140px;
    place-items: center;
    align-content: center;
    gap: 5px;
    border-right: 1px solid rgba(255, 211, 56, .45);
    text-align: center;
    perspective: 1000px;
    cursor: pointer;
}

@keyframes pop-in-pillar {
    0% {
        opacity: 0;
        transform: translateY(20px) scale(0.8);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.amenity-pillars div img,
.amenity-pillars div span {
    opacity: 0;
    transition: transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.amenities-content.is-visible .amenity-pillars div img,
.amenities-content.is-visible .amenity-pillars div span {
    opacity: 1;
    animation: pop-in-pillar 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) backwards;
}

.amenities-content.is-visible .amenity-pillars div:hover img {
    transform: translateY(-5px) scale(1.1) rotateY(360deg);
}

.amenities-content.is-visible .amenity-pillars div:nth-child(1) img,
.amenities-content.is-visible .amenity-pillars div:nth-child(1) span { animation-delay: 600ms; }

.amenities-content.is-visible .amenity-pillars div:nth-child(2) img,
.amenities-content.is-visible .amenity-pillars div:nth-child(2) span { animation-delay: 800ms; }

.amenities-content.is-visible .amenity-pillars div:nth-child(3) img,
.amenities-content.is-visible .amenity-pillars div:nth-child(3) span { animation-delay: 1000ms; }

.amenities-content.is-visible .amenity-pillars div:nth-child(4) img,
.amenities-content.is-visible .amenity-pillars div:nth-child(4) span { animation-delay: 1200ms; }

.amenity-pillars div:last-child {
    border-right: 0;
}

.amenity-pillars img {
    /* width: 36px;
    height: 36px; */
    object-fit: contain;
}

.amenity-pillars span {
    font-size: 11px;
    line-height: 1.15;
}

.amenity-statistics {
    width: 62%;
    margin: 40px auto 10px;
    text-align: center;
}

.stat-copy {
    padding-bottom: 17px;
    color: #174b8a;
    font-size: 18px;
    font-weight: 700;
    text-align: left;
}

.stat-copy strong,
.stat-copy span {
    display: block;
}

.stat-copy strong {
    color: #d31d2e;
}

.stat-copy-right {
    text-align: right;
}

.main-stat {
    grid-column: 2;
    grid-row: 1 / span 2;
}

.main-stat strong {
    display: block;
    color: #d31d2e;
    font-size: 66px;
    line-height: .9;
}

.main-stat span {
    display: block;
    margin-top: 10px;
    font-size: 13px;
}

.small-stat {
    margin-top: 13px;
    padding-top: 14px;
    border-top: 1px solid rgba(23, 23, 23, .55);
    color: #d31d2e;
}

.small-stat strong {
    display: block;
    font-size: 28px;
}

.small-stat span {
    display: block;
    color: #174b8a;
    font-size: 14px;
}

.small-stat:last-child {
    grid-column: 3;
}

.diwali-section {
    position: relative;
    overflow: hidden;
    color: #fff;
    background: linear-gradient(112deg, #e4ad22, #df271f);
}

.diwali-content {
    position: relative;
    z-index: 2;
    width: 45%;
    margin: 0 auto;
    padding: 60px 0 60px;
    text-align: center;
}

.diwali-content>h2 {
    margin: 0;
    font-size: clamp(32px, 5vw, 54px);
    line-height: 1.05;
}

.diwali-intro {
    margin: 12px 0 18px;
    color: #ffd72e;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.3;
}

.comparison-table {
    display: grid;
    grid-template-columns: 1fr 1fr;
    text-align: left;
}

.comparison-column {
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .8);
    border-radius: 18px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 800ms ease, transform 800ms cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 400ms ease;
}

.diwali-content.is-visible .comparison-column {
    opacity: 1;
    transform: translateY(0);
}

.diwali-content.is-visible .comparison-column:hover {
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    transform: translateY(-5px);
}

.comparison-column+.comparison-column {
    margin-left: -1px;
}

.comparison-column h3 {
    min-height: 48px;
    margin: 0;
    padding: 10px 8px;
    font-size: 18px;
    line-height: 1.1;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.comparison-column h3::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.7s ease;
}

.comparison-column:hover h3::before {
    left: 100%;
}

.comparison-column h3 span {
    font-size: 14px;
    font-weight: 400;
}

.comparison-riviera h3 {
    background: #d81e2b;
}

.comparison-typical h3 {
    background: #293f81;
}

.comparison-column ul {
    display: grid;
    gap: 30px;
    margin: 0;
    padding: 10px 20px 13px;
    list-style: none;
}

.comparison-column li {
    display: grid;
    grid-template-columns: 52px 1fr;
    align-items: center;
    min-height: 48px;
    gap: 30px;
    font-size: 16px;
    line-height: 1.15;
}

.comparison-column li img {
    display: block;
    object-fit: contain;
    transition: transform 1s ease-in-out;
}

.diya-art {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 1;
    display: block;
    max-width: 17%;
    height: auto;
    pointer-events: none;
    animation: flicker-flame 2s infinite;
}

@keyframes flicker-flame {
    0% { filter: brightness(1) drop-shadow(0 0 10px rgba(255, 160, 0, 0.3)); }
    15% { filter: brightness(1.1) drop-shadow(0 0 20px rgba(255, 160, 0, 0.6)); }
    25% { filter: brightness(0.95) drop-shadow(0 0 5px rgba(255, 160, 0, 0.1)); }
    40% { filter: brightness(1.15) drop-shadow(0 0 25px rgba(255, 160, 0, 0.8)); }
    50% { filter: brightness(1) drop-shadow(0 0 10px rgba(255, 160, 0, 0.4)); }
    65% { filter: brightness(1.05) drop-shadow(0 0 15px rgba(255, 160, 0, 0.5)); }
    75% { filter: brightness(0.9) drop-shadow(0 0 3px rgba(255, 160, 0, 0.1)); }
    90% { filter: brightness(1.1) drop-shadow(0 0 20px rgba(255, 160, 0, 0.7)); }
    100% { filter: brightness(1) drop-shadow(0 0 10px rgba(255, 160, 0, 0.3)); }
}

.diwali-cta {
    display: inline-block;
    margin: 22px 0 0;
    padding: 9px 40px;
    border-radius: 7px;
    color: #ffffff;
    background: #d81e2b;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.2;
    transition: all 300ms ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
    box-shadow: 0 4px 15px rgba(216, 30, 43, 0.4);
    text-decoration: none;
}

.diwali-cta:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 25px rgba(216, 30, 43, 0.6);
}

.diwali-cta::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.3) 50%, rgba(255,255,255,0) 100%);
    transform: skewX(-25deg);
    animation: shine-cta 3s infinite;
    z-index: -1;
}

@keyframes shine-cta {
    0% { left: -100%; }
    20% { left: 200%; }
    100% { left: 200%; }
}

.comparison-column li {
    opacity: 0;
    transform: translateY(20px) scale(0.95);
    transition: opacity 600ms ease, transform 700ms cubic-bezier(0.34, 1.56, 0.64, 1), background-color 300ms ease;
    padding: 6px 10px;
    border-radius: 8px;
    margin-left: -10px;
    width: calc(100% + 20px);
}

.diwali-content.is-visible .comparison-column li {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.diwali-content.is-visible .comparison-column li:hover {
    background-color: rgba(255, 255, 255, 0.15);
}

.diwali-content.is-visible .comparison-column li:hover img {
    transform: rotateY(360deg);
}

.diwali-content.is-visible .comparison-riviera li:nth-child(2) {
    transition-delay: 80ms;
}

.diwali-content.is-visible .comparison-riviera li:nth-child(3) {
    transition-delay: 160ms;
}

.diwali-content.is-visible .comparison-riviera li:nth-child(4) {
    transition-delay: 240ms;
}

.diwali-content.is-visible .comparison-riviera li:nth-child(5) {
    transition-delay: 320ms;
}

.diwali-content.is-visible .comparison-typical li:nth-child(2) {
    transition-delay: 80ms;
}

.diwali-content.is-visible .comparison-typical li:nth-child(3) {
    transition-delay: 160ms;
}

.diwali-content.is-visible .comparison-typical li:nth-child(4) {
    transition-delay: 240ms;
}

.diwali-content.is-visible .comparison-typical li:nth-child(5) {
    transition-delay: 320ms;
}

.contact-section {
    position: relative;
    overflow: hidden;
    min-height: 490px;
    color: #fff;
    background: linear-gradient(108deg, #1d4e87 0%, #4d3968 48%, #e31c2d 100%);
}

.contact-content {
    position: relative;
    z-index: 2;
    width: 35%;
    margin: 0 auto;
    padding: 42px 0 100px;
}

.contact-content>h2 {
    margin: 0 0 25px;
    font-size: clamp(38px, 5vw, 58px);
    line-height: 1;
    text-align: center;
}

.contact-form {
    padding: 25px 20px 18px;
    border-radius: 9px;
    color: #424242;
    background: #fff5d8;
    /* box-shadow: 0 10px 25px rgba(19, 28, 52, .16); */
}

.form-field {
    margin-bottom: 12px;
}

.form-field label {
    display: block;
    margin-bottom: 5px;
    font-size: 14px;
}

.form-field label span {
    color: #dc1e2d;
}

.form-field input[type="text"],
.form-field input[type="tel"],
.form-field input[type="email"] {
    display: block;
    width: 100%;
    height: 35px;
    padding: 4px 8px;
    border: 1px solid #d8dce2;
    border-radius: 6px;
    outline: none;
    background: #fff;
    font: inherit;
}

.form-field input:focus {
    border-color: #24477f;
    box-shadow: 0 0 0 2px rgba(36, 71, 127, .15);
}

.consent-field {
    display: flex;
    align-items: flex-start;
    gap: 5px;
    margin: 10px 0 17px;
    font-size: 12px;
    line-height: 1.25;
}

.consent-field input {
    flex: 0 0 auto;
    margin: 1px 0 0;
}

.contact-form button {
    padding: 7px 14px;
    border: 0;
    border-radius: 4px;
    color: #fff;
    background: #183b79;
    box-shadow: 0 4px 7px rgba(24, 59, 121, .25);
    font: 600 11px inherit;
}

/* --- Crazy Contact Form Animation --- */

@keyframes crazy-form-reveal {
    0% {
        opacity: 0;
        transform: perspective(1000px) rotateX(90deg) scale(0.5);
    }
    50% {
        opacity: 1;
        transform: perspective(1000px) rotateX(-15deg) scale(1.05);
    }
    75% {
        transform: perspective(1000px) rotateX(10deg) scale(0.98);
    }
    100% {
        opacity: 1;
        transform: perspective(1000px) rotateX(0deg) scale(1);
    }
}

@keyframes input-skew-right {
    0% { opacity: 0; transform: translateX(-60px) skewX(30deg); }
    80% { opacity: 1; transform: translateX(10px) skewX(-10deg); }
    100% { opacity: 1; transform: translateX(0) skewX(0); }
}

@keyframes input-skew-left {
    0% { opacity: 0; transform: translateX(60px) skewX(-30deg); }
    80% { opacity: 1; transform: translateX(-10px) skewX(10deg); }
    100% { opacity: 1; transform: translateX(0) skewX(0); }
}

@keyframes pop-in-title {
    0% { opacity: 0; transform: translateY(40px) scale(0.5); filter: blur(10px); }
    100% { opacity: 1; transform: translateY(0) scale(1); filter: blur(0px); }
}

.contact-content>h2 {
    opacity: 0;
}

.contact-section.is-visible .contact-content>h2 {
    animation: pop-in-title 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.contact-form {
    opacity: 0;
    transform-origin: top center;
}

.contact-section.is-visible .contact-form {
    animation: crazy-form-reveal 1.2s cubic-bezier(0.25, 1, 0.3, 1) forwards;
    animation-delay: 200ms;
}

.contact-form .form-field,
.contact-form .consent-field,
.contact-form button {
    opacity: 0;
}

.contact-section.is-visible .contact-form .form-field:nth-child(odd) {
    animation: input-skew-right 0.7s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.contact-section.is-visible .contact-form .form-field:nth-child(even) {
    animation: input-skew-left 0.7s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.contact-section.is-visible .contact-form .consent-field {
    animation: input-skew-right 0.7s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.contact-section.is-visible .contact-form button {
    animation: pop-in-title 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
    transform-origin: left center;
}

.contact-section.is-visible .contact-form .form-field:nth-child(1) { animation-delay: 700ms; }
.contact-section.is-visible .contact-form .form-field:nth-child(2) { animation-delay: 850ms; }
.contact-section.is-visible .contact-form .form-field:nth-child(3) { animation-delay: 1000ms; }
.contact-section.is-visible .contact-form .consent-field { animation-delay: 1150ms; }
.contact-section.is-visible .contact-form button { animation-delay: 1300ms; }
.contact-form button:hover,
.contact-form button:focus-visible {
    background: #102c5c;
}

.quick-contact-panel {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 35;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.quick-contact {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border: 0;
    border-radius: 14px;
    box-shadow: 0 10px 25px rgba(12, 33, 69, 0.18);
    text-decoration: none;
    cursor: pointer;
    transition: transform 180ms ease, box-shadow 180ms ease;
}

.quick-contact:hover,
.quick-contact:focus-visible {
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(12, 33, 69, 0.22);
}

.quick-contact svg,
.quick-contact img {
    width: 24px;
    height: 24px;
    fill: #fff;
    object-fit: contain;
}

.quick-contact--enquiry {
    width: 62px;
    height: 118px;
    padding: 8px 6px;
    background: #d7b66d;
    color: #1c1c1c;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.04em;
    border-radius: 10px;
}

.quick-contact-label {
    display: inline-block;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    line-height: 1.1;
    text-align: center;
}

.quick-contact--call {
    background: linear-gradient(135deg, #1d4e87, #143f72);
    border-radius: 14px;
}

.quick-contact--wa {
    background: linear-gradient(135deg, #2db742, #0faa42);
    border-radius: 14px;
}

@media (max-width: 1000px) {
    .quick-contact-panel {
        position: fixed;
        right: 14px;
        bottom: 14px;
        left: auto;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 12px;
        width: auto;
        padding: 0;
        transform: none;
        border-radius: 0;
        background: transparent;
        box-shadow: none;
    }

    .quick-contact {
        width: 52px;
        height: 52px;
        border-radius: 12px;
        box-shadow: 0 8px 18px rgba(0, 0, 0, 0.16);
    }

    .quick-contact--enquiry {
        display: none;
    }

    
    .quick-contact-label {
        display: none;
    }

    .quick-contact svg,
    .quick-contact img {
        width: 22px;
        height: 22px;
    }
}

.lead-modal {
    position: fixed;
    inset: 0;
    z-index: 60;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 200ms ease, visibility 200ms ease;
}

.lead-modal.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.lead-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(9, 15, 28, 0.6);
}

.lead-modal-dialog {
    position: relative;
    z-index: 1;
    width: min(92vw, 430px);
    max-height: 90vh;
    overflow: auto;
    padding: 24px 20px 18px;
    border-radius: 16px;
    background: #fff5d8;
    box-shadow: 0 25px 55px rgba(0, 0, 0, 0.28);
}

.lead-modal-header {
    margin-bottom: 18px;
    text-align: center;
}

.lead-modal-tag {
    margin: 0 0 6px;
    color: #1d4e87;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    width: 90%;
}

.lead-modal-header h3 {
    margin: 0;
    color: #1b2a4b;
    font-size: clamp(26px, 4vw, 36px);
    line-height: 1.1;
}

.lead-modal-close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 34px;
    height: 34px;
    border: 0;
    border-radius: 50%;
    background: rgb(255 245 216);
    color: #1d4e87;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
}

.lead-form {
    margin: 0;
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
}

.lead-form .form-field,
.lead-form .consent-field,
.lead-form button,
.lead-form .field-error,
.lead-form .form-message {
    opacity: 1 !important;
    animation: none !important;
}

.lead-form .field-error {
    display: block;
    min-height: 16px;
}

.contact-corner-art {
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 1;
    display: block;
    max-width: 21%;
    height: auto;
    pointer-events: none;
}

.site-footer {
    color: #fff;
    background: #1c2b61;
}

.footer-main {
    display: grid;
    grid-template-columns: 1.2fr 1fr .75fr;
    align-items: start;
    gap: 70px;
    width: 80%;
    margin: 0 auto;
    padding: 28px 0 35px;
}

.footer-brand img {
    display: block;
    height: auto;
    margin-bottom: 3px;
}

.footer-brand strong {
    color: #ffd400;
    font-size: 16px;
    font-weight: 500;
}

.footer-brand p,
.footer-contact p,
.footer-qr p {
    margin: 14px 0 0;
    font-size: 16px;
    line-height: 1.45;
}

.footer-contact h2 {
    margin: 0 0 10px;
    color: #ffd400;
    font-size: 16px;
}

.footer-contact a {
    display: inline-block;
    margin: 4px 0;
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    line-height: 1.5;
}

.footer-contact a:hover,
.footer-contact a:focus,
.footer-contact a:active {
    text-decoration: none;
    color: #fff;
}

.footer-contact p {
    margin: 0;
}

.footer-qr {
    text-align: center;
}

.footer-qr img {
    display: block;
    width: 126px;
    height: 126px;
    margin: 0 auto;
    object-fit: contain;
    background: #fff;
}

.footer-qr p {
    margin-top: 13px;
}

.footer-legal {
    padding: 18px max(16px, calc((100% - 1220px) / 2));
    border-top: 1px solid rgba(255, 255, 255, .2);
    text-align: center;
    font-size: 11px;
    line-height: 1.45;
}

@keyframes rise-in {
    from {
        opacity: 0;
        transform: translateY(18px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 680px) {
    :root {
        --header-height: 84px;
    }

    .header-inner {
        width: min(100% - 32px, 520px);
    }

    .brand-mark {
        width: 50px;
        /* height: 42px; */
    }

    .brand-name {
        font-size: 19px;
    }

    .menu-toggle {
        position: relative;
        z-index: 2;
        display: block;
    }

    .primary-navigation {
        position: absolute;
        top: var(--header-height);
        right: 0;
        left: 0;
        display: flex;
        align-items: stretch;
        flex-direction: column;
        gap: 0;
        margin: 0;
        padding: 0;
        background: transparent;
        border: 0;
        box-shadow: none;
        visibility: hidden;
        opacity: 0;
        transform: translateY(-8px);
        transition: opacity 180ms ease, transform 180ms ease, visibility 180ms;
    }

    .primary-navigation.is-open {
        visibility: visible;
        opacity: 1;
        transform: translateY(0);
    }

    .primary-navigation a {
        padding: 14px 12px;
        border-bottom: 1px solid #000;
        background: transparent;
        border-radius: 0;
        box-shadow: none;
        font-size: 14px;
        color: #000;
    }

    .primary-navigation a:last-child {
        border-bottom: 1px solid #000;
    }

    .neral-content {
        width: min(100% - 32px, 520px);
        padding: 44px 0 52px;
    }

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 28px 10px;
        margin-bottom: 30px;
    }

    .insights-grid {
        grid-template-columns: 1fr;
        margin-left: 0;
    }

    .location-card {
        min-height: 180px;
    }

    .price-card {
        padding: 16px 12px 20px;
    }

    .price-row {
        grid-template-columns: 62px minmax(60px, 1fr) 67px;
        gap: 7px;
    }

    .price-row strong {
        font-size: 11px;
    }

    .price-row output {
        font-size: 10px;
    }

    .closing-line {
        margin: 26px 0 0;
        text-align: center;
    }

    .train-image {
        max-width: 92%;
    }

    .amenities-content {
        padding-top: 42px;
    }

    .amenities-content>h2 {
        font-size: 34px;
    }

    .amenities-tagline {
        font-size: 12px;
    }

    .amenities-showcase {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .amenities-counter {
        grid-row: 1;
        width: 160px;
        height: 160px;
        margin: 0 auto;
    }

    .amenities-counter strong {
        font-size: 48px;
    }

    .amenity-orbit {
        grid-row: 2;
        height: 340px;
    }

    .amenity-orbit-left,
    .amenity-orbit-right {
        display: contents;
    }

    .amenity {
        position: absolute;
    }

    .amenity-orbit-left .amenity:nth-child(1),
    .amenity-orbit-right .amenity:nth-child(1) {
        top: 0;
    }

    .amenity-orbit-left .amenity:nth-child(2),
    .amenity-orbit-right .amenity:nth-child(2) {
        top: 0;
    }

    .amenity-orbit-left .amenity:nth-child(3),
    .amenity-orbit-right .amenity:nth-child(3) {
        bottom: 0;
    }

    .amenity-orbit-left .amenity:nth-child(4),
    .amenity-orbit-right .amenity:nth-child(4) {
        bottom: 0;
    }

    .amenity-orbit-left .amenity:nth-child(1),
    .amenity-orbit-left .amenity:nth-child(3) {
        left: 7%;
    }

    .amenity-orbit-left .amenity:nth-child(2),
    .amenity-orbit-left .amenity:nth-child(4) {
        right: 7%;
    }

    .amenity-orbit-right .amenity:nth-child(1),
    .amenity-orbit-right .amenity:nth-child(3) {
        left: 7%;
    }

    .amenity-orbit-right .amenity:nth-child(2),
    .amenity-orbit-right .amenity:nth-child(4) {
        right: 7%;
    }

    .amenity-pillars {
        grid-template-columns: repeat(2, 1fr);
    }

    .amenity-pillars div:nth-child(2) {
        border-right: 0;
    }

   

    .main-stat {
        grid-column: 1 / span 2;
        grid-row: 1;
        margin-bottom: 20px;
    }

    .stat-copy {
        grid-row: 2;
    }

    .stat-copy-right {
        grid-column: 2;
    }

    .small-stat {
        grid-row: 3;
    }


    .amenity-statistics {
    width: 100%;
}

.stat-row-top {
    grid-template-columns: 1fr !important;
    gap: 8px;
}

.stat-tagline {
    text-align: center !important;
}

.stat-hero-label strong {
    text-align: center !important;
}

.stat-tagline,
.stat-hero-label strong {
    text-align: center;
}

.stat-hero strong {
    font-size: 56px;
}

.stat-row-bottom {
    grid-template-columns: 1fr;
}

.stat-block {
    border-right: 0;
    border-bottom: 1px solid rgba(23, 23, 23, .35);
}

.stat-block:last-child {
    border-bottom: 0;
}

    .small-stat:last-child {
        grid-column: 2;
    }

    .diwali-content {
        padding-top: 40px;
    }

    .diwali-intro {
        font-size: 14px;
    }

    .comparison-table {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .comparison-column+.comparison-column {
        margin-left: 0;
    }

    .comparison-column li {
        grid-template-columns: 44px 1fr;
        font-size: 12px;
    }

    .comparison-column li img {
        width: 40px;
        height: 40px;
    }

    .diya-art {
        max-width: 32%;
    }

    .contact-section {
        min-height: 540px;
    }

    .contact-content {
        padding-top: 38px;
    }

    .contact-form {
        padding: 20px 14px 16px;
    }

    .contact-corner-art {
        max-width: 38%;
    }

    .footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 28px 20px;
        padding: 34px 0 28px;
    }

    .footer-brand {
        grid-column: 1 / span 2;
        text-align: center;
    }

    .footer-brand img {
        margin-right: auto;
        margin-left: auto;
    }

    .footer-contact {
        text-align: left;
    }

    .footer-qr {
        align-self: center;
    }

    .footer-qr img {
        width: 110px;
        height: 110px;
    }

    .footer-legal {
        padding: 16px;
        font-size: 9px;
    }

    .stat-row-bottom {
    grid-template-columns: repeat(1, 1fr) !important;
}
}

@media (min-width: 681px) and (max-width: 1000px) {
    .insights-grid {
        margin-left: 0;
    }

    .closing-line {
        margin-left: calc(7% + 570px);
    }
}

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
    }
}

@media (min-width: 0px) and (max-width: 1000px) {

    .neral-section h1 {
        font-size: 34px !important;
    }

    .neral-section h1::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: #ffd400;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
    border-radius: 3px;
    box-shadow: 0 0 15px rgba(255, 212, 0, 0.6);
}




}


/* =========================================
   FORM VALIDATION ERRORS
========================================= */

.field-error {
    display: none;
    margin: 6px 0 0;
    color: #d60000;
    font-size: 13px;
    line-height: 1.4;
}


/* Input with error */

.input-error {
    border-color: #d60000 !important;
}


/* Checkbox error */

.checkbox-error {
    outline: 1px solid #d60000;
    outline-offset: 2px;
}


/* Success message */

.form-message {
    margin-top: 15px;
    font-size: 14px;
    line-height: 1.5;
}


.success-message {
    color: #16803c;
}


/* Submission error */

.error-message {
    color: #d60000;
}


/* Disabled submit button */

.contact-form button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}


/* ---- Top row ---- */
.stat-row-top {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 18px;
}

.stat-tagline {
    text-align: left;
    line-height: 1.15;
}

.stat-tagline strong {
    display: block;
    color: #d31d2e;
    font-size: 24px;
    font-weight: 800;
    letter-spacing: .01em;
}

.stat-tagline span {
    display: block;
    color: #174b8a;
    font-size: 24px;
    font-weight: 800;
}

.stat-hero strong {
    display: block;
    color: #d31d2e;
    font-family: "Bebas Neue", sans-serif;
    font-size: clamp(52px, 6vw, 84px);
    line-height: .85;
    font-weight: 700;
}

.stat-hero-label strong {
    display: block;
    color: #174b8a;
    font-size: 24px;
    font-weight: 800;
    line-height: 1.15;
    text-align: right;
}

/* ---- Divider ---- */
.stat-divider {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 18px 0;
}

.stat-divider-line {
    flex: 1;
    height: 1px;
    background: rgba(23, 23, 23, .55);
}

.stat-divider p {
    margin: 0;
    color: #174b8a;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: .04em;
    white-space: nowrap;
}

/* ---- Bottom row ---- */
.stat-row-bottom {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border: 1.5px solid rgba(23, 23, 23, .55);
    border-radius: 4px;
}

.stat-block {
    display: grid;
    gap: 6px;
    padding: 16px 12px;
}

.stat-block:last-child {
    border-right: 0;
}

.stat-block strong {
    color: #d31d2e;
    font-size: 30px;
    font-weight: 800;
    line-height: 1;
}

.stat-block span {
    color: #174b8a;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .01em;
}