/* ============ BASE ============ */
:root {
    --color-bg: #050814;
    --color-bg-light: #0f1523;
    --color-surface: #101827;
    --color-surface-light: #ffffff;
    --color-primary: #f97316;   /* warm orange */
    --color-primary-soft: rgba(249, 115, 22, 0.14);
    --color-accent: #22c55e;    /* soft green */
    --color-text: #e5e7eb;
    --color-text-muted: #9ca3af;
    --color-heading: #f9fafb;
    --color-border: rgba(148, 163, 184, 0.25);

    --radius-lg: 1.5rem;
    --radius-md: 1rem;
    --radius-pill: 999px;

    --shadow-soft: 0 18px 60px rgba(15, 23, 42, 0.7);
    --shadow-subtle: 0 12px 35px rgba(15, 23, 42, 0.45);

    --font-heading: "Playfair Display", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --font-body: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

    --container-width: 1120px;
    --transition-fast: 180ms ease-out;
    --transition-med: 220ms ease-out;

    --nav-height: 72px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    background-color: var(--color-bg);
}

body {
    margin: 0;
    font-family: var(--font-body);
    background-color: var(--color-bg);
    background-image: radial-gradient(circle at top, #111827 0, #020617 50%, #020617 100%);
    color: var(--color-text);
    line-height: 1.6;
}

/* ============ LAYOUT HELPERS ============ */
.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1.25rem;
}

img {
    max-width: 100%;
    display: block;
    border-radius: 1.1rem;
}

.section {
    padding: 5rem 0;
}

.section--light {
    background: radial-gradient(circle at top, #111827 0, #020617 60%);
}

.section--accent {
    background: radial-gradient(circle at top left, #f97316 0, #ea580c 40%, #b91c1c 100%);
    color: #fefce8;
}

/* ============ HEADER / NAVBAR ============ */
.header {
    position: sticky;
    top: 0;
    z-index: 2000;
    backdrop-filter: blur(14px);
    background: linear-gradient(to bottom, rgba(15, 23, 42, 0.96), rgba(15, 23, 42, 0.82), transparent);
    border-bottom: 1px solid rgba(148, 163, 184, 0.22);
}

.header__inner {
    height: var(--nav-height);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

/* Logo */
/* Logo container */
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Rectangular logo block */
.logo__mark {
    width: 80px;      /* rectangle width */
    height: 50px;     /* rectangle height */
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Keep logo proportional */
.logo__mark img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    margin-left: 0px;
}

.logo__mark {
    width: 160px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
}



.logo__mark--small {
    width: 1.5rem;
    height: 1.5rem;
    font-size: 0.75rem;
    box-shadow: none;
}

.logo__text {
    display: flex;
    flex-direction: column;
}

.logo__title {
    font-weight: 600;
    letter-spacing: 0.06em;
    font-size: 0.85rem;
    text-transform: uppercase;
    color: #e5e7eb;
}

.logo__subtitle {
    font-size: 0.75rem;
    color: #9ca3af;
}


/* Nav */
.nav {
    position: relative;
}

.nav__list {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav__link {
    text-decoration: none;
    font-size: 0.9rem;
    color: var(--color-text-muted);
    letter-spacing: 0.03em;
    text-transform: uppercase;
    padding-bottom: 0.15rem;
    position: relative;
    transition: color var(--transition-fast);
}

.nav__link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -0.35rem;
    width: 0;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(to right, #f97316, #22c55e);
    transition: width var(--transition-med);
}

.nav__link:hover {
    color: #e5e7eb;
}

.nav__link:hover::after {
    width: 100%;
}

.nav__link--btn {
    padding: 0.55rem 1.1rem;
    border-radius: var(--radius-pill);
    border: 1px solid rgba(249, 115, 22, 0.55);
    background: radial-gradient(circle at top left, rgba(249, 115, 22, 0.16), transparent 60%);
    color: #fefce8;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.3rem;
}

.nav__link--btn::after {
    display: none;
}

.nav__link--btn:hover {
    background: radial-gradient(circle at bottom right, rgba(249, 115, 22, 0.25), transparent 60%);
}

/* Nav Toggle (Mobile) */
.nav__toggle {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(148, 163, 184, 0.4);
    background: rgba(15, 23, 42, 0.9);
    display: none; /* hide on desktop */
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    cursor: pointer;
    padding: 0;
}

.nav__toggle span {
    display: block;
    height: 2px;
    width: 18PX;
    border-radius: 999px;
    background: #e5e7eb;
    transition: transform 150ms ease-out, opacity 150ms ease-out;
}

.nav__toggle--open span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.nav__toggle--open span:nth-child(2) {
    opacity: 0;
}

.nav__toggle--open span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

@media (max-width: 720px) {
    .nav__toggle {
        display: flex;
    }
}

@media (max-width: 720px) {
    .nav__list {
        position: absolute;
        right: 0;
        top: calc(100% + 0.6rem);
        flex-direction: column;
        align-items: flex-start;

        background: rgba(15, 23, 42, 0.98);
        border-radius: 1.1rem;
        padding: 0.75rem 0.9rem;

        border: 1px solid rgba(148, 163, 184, 0.6);
        box-shadow: 0 18px 50px rgba(15, 23, 42, 0.9);

        z-index: 3000;

        opacity: 0;
        transform: translateY(-6px);
        pointer-events: none;
        transition: opacity 250ms ease, transform 250ms ease;
    }

    .nav__list--open {
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
    }
}

.nav__link:hover,
.nav__link--active {
    color: #e5e7eb;
}

.nav__link:hover::after,
.nav__link--active::after {
    width: 100%;
}

/* Breadcrumb */
.breadcrumb {
    background: rgba(15, 23, 42, 0.95);
    border-bottom: 1px solid rgba(148, 163, 184, 0.2);
    padding: 0.75rem 0;
}

.breadcrumb .container {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.85rem;
}

.breadcrumb a {
    text-decoration: none;
    color: var(--color-text-muted);
    transition: color 0.2s ease;
}

.breadcrumb a:hover {
    color: #e5e7eb;
}

.breadcrumb__separator {
    color: rgba(148, 163, 184, 0.6);
}

.breadcrumb__current {
    color: #e5e7eb;
    font-weight: 500;
}
/* ============ HERO ============ */
.hero {
    position: relative;
    z-index: 0;
    min-height: calc(100vh - var(--nav-height));
    display: flex;
    align-items: center;
    padding: 3.5rem 0 4.5rem;
    overflow: hidden;
}

/* Set your hero background image here */
.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("images/hero.avif"); 
    background-size: cover;
    background-position: center;
    opacity: 0.42;
    transform: scale(1.03);
    filter: saturate(1.1);
    z-index: -2;
}

.hero__overlay {
    position: absolute;
    inset: 0;
   
    z-index: -1;
}

.hero__content {
    max-width: 640px;
}

.hero__eyebrow {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: #e5e7eb;
    margin-bottom: 0.75rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.hero__eyebrow::before {
    content: "";
    width: 32px;
    height: 1px;
    background: linear-gradient(to right, rgba(148, 163, 184, 0.2), #f97316);
}

.hero__title {
    font-family: var(--font-heading);
    font-size: clamp(2.4rem, 4vw, 3.35rem);
    line-height: 1.06;
    color: var(--color-heading);
    margin: 0 0 1rem;
}

.hero__subtitle {
    font-size: 1rem;
    color: var(--color-text-muted);
    max-width: 32rem;
    margin-bottom: 1.75rem;
}

.hero__buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    margin-bottom: 2.1rem;
}

/* Hero info */
.hero__info {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    padding: 0.75rem;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.85);
    border: 1px solid rgba(148, 163, 184, 0.4);
    box-shadow: var(--shadow-subtle);
}

.hero__info-item {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.35rem 0.85rem;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.9);
    font-size: 0.85rem;
}

.hero__info-item i {
    color: #f97316;
}

/* ============ BUTTONS ============ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    padding: 0.7rem 1.4rem;
    border-radius: var(--radius-pill);
    border: 1px solid transparent;
    font-size: 0.95rem;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: transform var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast), border-color var(--transition-fast);
}

.btn--primary {
    background: linear-gradient(135deg, #f97316, #ea580c);
    color: #fefce8;
    box-shadow: 0 16px 40px rgba(249, 115, 22, 0.75);
}

.btn--primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 22px 55px rgba(249, 115, 22, 0.85);
}

.btn--ghost {
    background: rgba(15, 23, 42, 0.7);
    border-color: rgba(148, 163, 184, 0.6);
    color: var(--color-text);
}

.btn--ghost:hover {
    background: rgba(15, 23, 42, 0.9);
}

.btn--outline {
    border-color: rgba(249, 115, 22, 0.7);
    color: #fed7aa;
    background: transparent;
}

.btn--outline:hover {
    background: rgba(15, 23, 42, 0.85);
}

.btn--full {
    width: 100%;
}

/* Landing About Preview */
.about-preview .section__text p {
    max-width: 520px;
}

.about-preview img {
    box-shadow: var(--shadow-soft);
}


/* ================= TEAM PREVIEW ================= */

.team-preview__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.team-card {
    background: #0f172a;
    border: 1px solid rgba(249,115,22,.15);
    border-radius: 16px;
    overflow: hidden;
    transition: all .3s ease;
}

.team-card:hover {
    transform: translateY(-6px);
    border-color: rgba(249,115,22,.5);
}

.team-card__image {
    aspect-ratio: 3 / 4;   /* 🔥 keeps portrait ratio consistent */
    width: 100%;
    overflow: hidden;
    background: #0b1220;
}

.team-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;          /* fills perfectly */
    object-position: center 20%; /* keeps face visible */
    display: block;
}

.team-card:hover img {
    transform: scale(1.05);
}

.team-card__content {
    padding: 1.8rem;
}

.team-card__content h3 {
    margin-bottom: .4rem;
    color: #fff;
}

.team-card__content span {
    display: block;
    color: #f97316;
    font-size: .9rem;
    margin-bottom: 1rem;
}

.team-card__content p {
    font-size: .9rem;
    color: #9ca3af;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .team-preview__grid {
        grid-template-columns: 1fr;
    }
}

/* ================= ROOMS PREVIEW ================= */

.rooms-preview__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.rooms-preview__card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--color-border);
    background: rgba(255,255,255,0.04);
    transition: transform var(--transition-med), box-shadow var(--transition-med);
}

.rooms-preview__card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-soft);
}

.rooms-preview__card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.rooms-preview__card:hover img {
    transform: scale(1.08);
}

.rooms-preview__content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.2rem;
    background: linear-gradient(to top, rgba(5,8,20,0.85), transparent);
}

.rooms-preview__content h3 {
    margin: 0 0 0.3rem;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: #fff;
}

.rooms-preview__content span {
    font-size: 0.8rem;
    color: #e5e7eb;
}

@media (max-width: 900px) {
    .rooms-preview__grid {
        grid-template-columns: 1fr;
    }
}


/* ================= DINING PREVIEW ================= */

.dining-preview__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.dining-preview__card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--color-border);
    transition: transform var(--transition-med), box-shadow var(--transition-med);
}

.dining-preview__card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-soft);
}

.dining-preview__card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.dining-preview__card:hover img {
    transform: scale(1.08);
}

.dining-preview__content {
    padding: 1.2rem;
}

.dining-preview__content h3 {
    margin-bottom: 0.4rem;
    font-family: var(--font-heading);
}

.dining-preview__content p {
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

@media (max-width: 900px) {
    .dining-preview__grid {
        grid-template-columns: 1fr;
    }
}

/* ================= EVENTS PREVIEW ================= */

.events-preview__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.events-preview__card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--color-border);
    transition: transform var(--transition-med), box-shadow var(--transition-med);
}

.events-preview__card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-soft);
}

.events-preview__card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.events-preview__card:hover img {
    transform: scale(1.08);
}

.events-preview__content {
    padding: 1.2rem;
}

.events-preview__content h3 {
    margin-bottom: 0.4rem;
    font-family: var(--font-heading);
}

.events-preview__content p {
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

/* Stats strip */
.events-preview__stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 3rem;
    text-align: center;
}

.events-preview__stats strong {
    display: block;
    font-size: 1.5rem;
    font-family: var(--font-heading);
    color: var(--color-primary);
}

.events-preview__stats span {
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

@media (max-width: 900px) {
    .events-preview__grid {
        grid-template-columns: 1fr;
    }

    .events-preview__stats {
        flex-direction: column;
        gap: 1.2rem;
    }
}

/* ================= REVIEWS PREVIEW ================= */

.reviews-preview__score {
    display: flex;
    justify-content: center;
    margin-top: 2.5rem;
}

.reviews-preview__rating {
    text-align: center;
}

.rating-number {
    font-size: 2.5rem;
    font-family: var(--font-heading);
    color: var(--color-primary);
    display: block;
}

.rating-stars {
    margin: 0.5rem 0;
    color: #f97316;
    font-size: 1.1rem;
}

.rating-label {
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

.reviews-preview__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.reviews-preview__card {
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--color-border);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    transition: transform var(--transition-med);
}

.reviews-preview__card:hover {
    transform: translateY(-4px);
}

.reviews-preview__card p {
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.reviews-preview__card strong {
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

.reviews-preview__platforms {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2.5rem;
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

@media (max-width: 900px) {
    .reviews-preview__grid {
        grid-template-columns: 1fr;
    }

    .reviews-preview__platforms {
        flex-direction: column;
        gap: 0.8rem;
        text-align: center;
    }
}


/* ================= ACTIVITIES PREVIEW ================= */

.activities-preview__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.8rem;
    margin-top: 3rem;
}

.activities-preview__card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--color-border);
    background: rgba(255,255,255,0.04);
    transition: transform var(--transition-med), box-shadow var(--transition-med);
}

.activities-preview__card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-soft);
}

.activities-preview__card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.activities-preview__card:hover img {
    transform: scale(1.08);
}

.activities-preview__content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1rem;
    background: linear-gradient(to top, rgba(5,8,20,0.85), transparent);
}

.activities-preview__content h3 {
    margin: 0 0 0.3rem;
    font-family: var(--font-heading);
    color: #fff;
    font-size: 1rem;
}

.activities-preview__content span {
    font-size: 0.75rem;
    color: #e5e7eb;
}

@media (max-width: 1100px) {
    .activities-preview__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 700px) {
    .activities-preview__grid {
        grid-template-columns: 1fr;
    }
}


/* ============ SECTION TITLES / TEXT ============ */
.section__title {
    font-family: var(--font-heading);
    font-size: clamp(1.7rem, 3vw, 2.2rem);
    margin: 0 0 0.6rem;
    color: var(--color-heading);
}

.section__title--center {
    text-align: center;
}

.section__title--light {
    color: #fefce8;
}

.section__subtitle {
    margin: 0 0 1.6rem;
    color: var(--color-text-muted);
    max-width: 32rem;
    font-size: 0.98rem;
}

.section__subtitle--center {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.section__subtitle--light {
    color: #fee2e2;
}

/* Layout grid */
.section__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
    gap: 3rem;
    align-items: center;
}

.section__grid--reverse {
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 1.1fr);
}

/* ============================================================
   about.css — About Page · Lone Resort & Spa
   Requires: base.css (provides --color-*, --font-*, --radius-*, etc.)
   ============================================================ */


   /* ============ ABOUT PAGE HERO BANNER ============ */
.about-page-hero {
    position: relative;
    width: 100%;
    height: 480px;
    background: url('images/hero-about.avif') center center / cover no-repeat;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}

.about-page-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(5, 8, 20, 0.35) 0%,
        rgba(5, 8, 20, 0.78) 100%
    );
}

.about-page-hero__content {
    position: relative;
    z-index: 1;
    padding-bottom: 3.5rem;
}

.about-page-hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-family: var(--font-body);
    font-size: 0.65rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--color-primary);
    background: rgba(249, 115, 22, 0.15);
    border: 1px solid rgba(249, 115, 22, 0.35);
    border-radius: var(--radius-pill);
    padding: 0.28rem 0.9rem;
    margin-bottom: 1rem;
}

.about-page-hero__title {
    font-family: var(--font-heading);
    font-size: clamp(2.6rem, 6vw, 4.2rem);
    font-weight: 700;
    color: #fff;
    line-height: 1.08;
    margin: 0 0 0.6rem;
    letter-spacing: -0.02em;
    text-shadow: 0 2px 24px rgba(5, 8, 20, 0.5);
}

.about-page-hero__sub {
    font-family: var(--font-heading);
    font-size: clamp(1rem, 2vw, 1.2rem);
    font-style: italic;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.72);
    margin: 0;
}

@media (max-width: 620px) {
    .about-page-hero          { height: 320px; }
    .about-page-hero__content { padding-bottom: 2rem; }
}

/* ── Eyebrow pill ── */
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-family: var(--font-body);
    font-size: 0.62rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--color-primary);
    background: var(--color-primary-soft);
    border: 1px solid rgba(249, 115, 22, 0.28);
    border-radius: var(--radius-pill);
    padding: 0.28rem 0.9rem;
    margin-bottom: 0.85rem;
}

/* ── Shimmer rule ── */
.shimmer {
    width: 68px;
    height: 2px;
    background: linear-gradient(to right, var(--color-primary), #fb923c, transparent);
    border-radius: var(--radius-pill);
    margin: 1.1rem 0 1.5rem;
}
.shimmer--center { margin-left: auto; margin-right: auto; }

/* ── Center helper ── */
.center { text-align: center; }

/* ── Section text paragraph spacing ── */
.section__text p { margin-bottom: 1rem; }

/* ── About page base ── */
.about-page {
    font-family: var(--font-body);
}

/* Upgrade section titles to use heading font */
.about-page .section__title {
    font-family: var(--font-heading);
    font-size: clamp(1.9rem, 3.5vw, 2.85rem);
    font-weight: 700;
    letter-spacing: -0.01em;
    line-height: 1.12;
    color: var(--color-heading);
}

.about-page .section__title em {
    font-style: italic;
    color: var(--color-primary);
    font-weight: 400;
}

.about-page .section__subtitle {
    font-family: var(--font-heading);
    font-size: clamp(1rem, 1.8vw, 1.15rem);
    font-style: italic;
    color: var(--color-text);
    line-height: 1.6;
    margin-bottom: 1rem;
    font-weight: 400;
}

.about-page p {
    color: var(--color-text-muted);
    line-height: 1.75;
    font-size: 0.95rem;
}


/* =============================================================
   HERO / INTRO
   ============================================================= */

.about-hero {
    position: relative;
    overflow: hidden;
}

.about-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 65% 55% at 15% 30%, rgba(249, 115, 22, 0.07) 0%, transparent 60%),
        radial-gradient(ellipse 50% 45% at 85% 70%, rgba(34, 197, 94, 0.04) 0%, transparent 55%);
    pointer-events: none;
    z-index: 0;
}

.about-hero .section__grid { position: relative; z-index: 1; }

/* Established badge */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.28);
    color: var(--color-accent);
    padding: 0.3rem 0.9rem;
    border-radius: var(--radius-pill);
    font-family: var(--font-body);
    font-size: 0.67rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 1rem;
}

/* Check list */
.list { list-style: none; padding: 0; margin: 1.3rem 0 0; }

.list li {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    margin-bottom: 0.6rem;
    font-size: 0.93rem;
    color: var(--color-text);
    line-height: 1.5;
}

.list i {
    color: var(--color-accent);
    font-size: 0.72rem;
    margin-top: 0.26rem;
    flex-shrink: 0;
}

/* Stats strip */
.stats-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    margin-top: 3.5rem;
    padding-top: 2.5rem;
    border-top: 1px solid var(--color-border);
    position: relative;
    z-index: 1;
}

.stat {
    text-align: center;
    padding: 0 1.5rem;
    border-right: 1px solid var(--color-border);
}
.stat:last-child { border-right: none; }

.stat h3 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-primary);
    line-height: 1;
    margin: 0 0 0.3rem;
}

.stat p {
    font-size: 0.63rem !important;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-text-muted) !important;
    font-weight: 600 !important;
    margin: 0 !important;
}


/* =============================================================
   IMAGE SLIDER
   ============================================================= */

.image-slider {
    position: relative;
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    aspect-ratio: 4/3;
    background: #111;
}

.image-slider__track { display: flex; width: 100%; height: 100%; position: relative; }

.image-slider__img {
    position: absolute;
    inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    opacity: 0;
    transform: scale(1.04);
    transition: opacity 0.9s cubic-bezier(0.4, 0, 0.2, 1), transform 1.1s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: opacity, transform;
}

.image-slider__img.active  { opacity: 1; transform: scale(1); z-index: 2; }
.image-slider__img.leaving { opacity: 0; transform: scale(0.97); z-index: 1; }

.image-slider::after {
    content: "";
    position: absolute; inset: 0;
    background: linear-gradient(to bottom, transparent 55%, rgba(5, 8, 20, 0.55) 100%);
    z-index: 3; pointer-events: none; border-radius: inherit;
}

.image-slider__dots {
    position: absolute;
    bottom: 1rem; left: 50%; transform: translateX(-50%);
    display: flex; gap: 0.5rem; z-index: 4;
}

.image-slider__dot {
    width: 7px; height: 7px; border-radius: 50%;
    background: rgba(255,255,255,0.35);
    border: none; cursor: pointer; padding: 0;
    transition: background var(--transition-med), width var(--transition-med);
}

.image-slider__dot.active { background: #fff; width: 22px; border-radius: 4px; }

.image-slider__arrow {
    position: absolute; top: 50%; transform: translateY(-50%);
    z-index: 4;
    background: rgba(255,255,255,0.12); backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.22);
    color: #fff; width: 2.4rem; height: 2.4rem; border-radius: 50%;
    font-size: 1rem; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: background var(--transition-fast), transform var(--transition-fast);
    line-height: 1;
}

.image-slider__arrow:hover {
    background: rgba(255,255,255,0.28);
    transform: translateY(-50%) scale(1.1);
}

.image-slider__arrow--prev { left: 0.8rem; }
.image-slider__arrow--next { right: 0.8rem; }


/* =============================================================
   OUR STORY + TIMELINE
   ============================================================= */

.about-story {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 4.5rem;
    align-items: flex-start;
}

.story-text blockquote {
    font-family: var(--font-heading);
    font-size: clamp(1.05rem, 2vw, 1.45rem);
    font-style: italic;
    font-weight: 400;
    color: var(--color-heading);
    border-left: 3px solid var(--color-primary);
    padding-left: 1.3rem;
    margin: 1.6rem 0;
    line-height: 1.55;
}

/* Timeline */
.timeline {
    display: flex;
    flex-direction: column;
    padding-left: 0;
    border-left: none;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 1rem; top: 0.8rem; bottom: 0.4rem;
    width: 1.5px;
    background: linear-gradient(to bottom, var(--color-primary), rgba(249, 115, 22, 0.05));
}

.timeline-item {
    display: flex;
    gap: 1.3rem;
    padding-bottom: 1.8rem;
    position: relative;
}

.timeline-item:last-child { padding-bottom: 0; }

.tl-dot {
    width: 2rem; height: 2rem;
    border-radius: 50%;
    background: var(--color-primary-soft);
    border: 1.5px solid rgba(249, 115, 22, 0.3);
    flex-shrink: 0;
    position: relative; z-index: 1;
    display: flex; align-items: center; justify-content: center;
}

.tl-dot i { color: var(--color-primary); font-size: 0.58rem; }

.tl-body { flex: 1; }

.timeline-item span {
    font-family: var(--font-body);
    font-size: 0.61rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--color-primary);
    font-weight: 700;
    display: block;
    margin-bottom: 0.22rem;
}

.timeline-item p {
    font-size: 0.87rem !important;
    color: var(--color-text-muted) !important;
    margin: 0 !important;
    line-height: 1.6 !important;
}


/* =============================================================
   VALUES GRID
   ============================================================= */

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.15rem;
    margin-top: 2.8rem;
}

.value-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 1.7rem 1.4rem;
    backdrop-filter: blur(14px);
    position: relative;
    overflow: hidden;
    transition: background var(--transition-med), transform var(--transition-med), box-shadow var(--transition-med);
}

/* Shimmer top line on hover */
.value-card::before {
    content: '';
    position: absolute;
    top: 0; left: 14%; right: 14%;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--color-primary), transparent);
    opacity: 0;
    border-radius: var(--radius-pill);
    transition: opacity var(--transition-med);
}

.value-card:hover {
    background: rgba(255, 255, 255, 0.07);
    transform: translateY(-4px);
    box-shadow: var(--shadow-subtle);
}

.value-card:hover::before { opacity: 0.65; }

.icon-wrap {
    width: 2.4rem; height: 2.4rem;
    border-radius: var(--radius-md);
    background: var(--color-primary-soft);
    border: 1px solid rgba(249, 115, 22, 0.28);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 0.9rem;
}

.icon-wrap i { color: var(--color-primary); font-size: 0.82rem; }

.value-card h3 {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--color-heading);
    margin: 0 0 0.45rem;
}

.value-card p {
    font-size: 0.83rem !important;
    line-height: 1.65 !important;
    margin: 0 !important;
    color: var(--color-text-muted) !important;
}


/* =============================================================
   AMENITIES GRID
   ============================================================= */

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-top: 2.8rem;
}

.amenity-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 1.35rem 1rem 1.25rem;
    text-align: center;
    backdrop-filter: blur(12px);
    transition: background var(--transition-fast), transform var(--transition-fast);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.55rem;
}

.amenity-card:hover {
    background: rgba(255, 255, 255, 0.07);
    transform: translateY(-3px);
}

.amenity-icon {
    width: 2.5rem; height: 2.5rem;
    border-radius: 50%;
    background: var(--color-primary-soft);
    border: 1px solid rgba(249, 115, 22, 0.25);
    display: flex; align-items: center; justify-content: center;
}

.amenity-icon i { color: var(--color-primary); font-size: 0.82rem; }

.amenity-name {
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--color-heading);
    letter-spacing: 0.01em;
}

.amenity-desc {
    font-size: 0.7rem;
    color: var(--color-text-muted);
    line-height: 1.45;
}


/* =============================================================
   TEAM GRID
   ============================================================= */

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.2rem;
    margin-top: 2.8rem;
}

.team-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: transform var(--transition-med), box-shadow var(--transition-med);
}

.team-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-soft);
}

.team-card__avatar {
    width: 100%;
    aspect-ratio: 3 / 3.5;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.08), rgba(15, 23, 42, 0.6));
    position: relative;
}

.team-card__avatar img {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
    transition: transform 0.55s ease;
}

.team-card:hover .team-card__avatar img { transform: scale(1.06); }

/* Subtle gradient over photo bottom */
.team-card__avatar::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 45%;
    background: linear-gradient(to top, rgba(5, 8, 20, 0.6), transparent);
    pointer-events: none;
}

/* Fallback when no photo */
.team-card__avatar-fallback {
    width: 100%; height: 100%;
    display: flex; align-items: center; justify-content: center;
}

.team-card__avatar-fallback i {
    font-size: 3.5rem;
    color: rgba(249, 115, 22, 0.28);
}

.team-card__info {
    padding: 1rem 1.2rem 1.3rem;
    border-top: 1px solid var(--color-border);
}

.team-card__info h3 {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--color-heading);
    margin: 0 0 0.12rem;
}

.team-card__role {
    font-family: var(--font-body);
    font-size: 0.61rem;
    letter-spacing: 0.11em;
    text-transform: uppercase;
    color: var(--color-primary);
    font-weight: 600;
    display: block;
    margin-bottom: 0.52rem;
}

.team-card__bio {
    font-size: 0.78rem;
    color: var(--color-text-muted);
    line-height: 1.58;
}


/* =============================================================
   AWARDS GRID
   ============================================================= */

.awards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.2rem;
    margin-top: 2.8rem;
}

.award-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 1.6rem 1.45rem;
    backdrop-filter: blur(12px);
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    transition: background var(--transition-fast), transform var(--transition-fast);
}

.award-card:hover {
    background: rgba(255, 255, 255, 0.07);
    transform: translateY(-3px);
}

.award-icon {
    width: 2.5rem; height: 2.5rem;
    border-radius: 50%;
    background: var(--color-primary-soft);
    border: 1px solid rgba(249, 115, 22, 0.25);
    display: flex; align-items: center; justify-content: center;
}

.award-icon i { color: var(--color-primary); font-size: 0.88rem; }

.award-year {
    font-family: var(--font-body);
    font-size: 0.59rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--color-primary);
    font-weight: 700;
    display: block;
}

.award-title {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-heading);
    line-height: 1.3;
    display: block;
}

.award-body {
    font-size: 0.78rem;
    color: var(--color-text-muted);
    line-height: 1.62;
}


/* =============================================================
   SUSTAINABILITY
   ============================================================= */

.sustainability { position: relative; }

.sustainability::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(ellipse 70% 60% at 50% 50%, rgba(34, 197, 94, 0.04) 0%, transparent 65%);
    pointer-events: none;
}

.sustain-inner {
    background: rgba(34, 197, 94, 0.04);
    border: 1px solid rgba(34, 197, 94, 0.14);
    border-radius: var(--radius-lg);
    padding: 2.8rem 3rem;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 3.5rem;
    align-items: center;
    position: relative;
}

.sustain-text .section__title em { color: #4ade80; }
.sustain-text p { font-size: 0.93rem !important; }

.sustain-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1.2rem;
}

.sustain-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-family: var(--font-body);
    font-size: 0.69rem;
    font-weight: 600;
    color: #4ade80;
    background: rgba(34, 197, 94, 0.08);
    border: 1px solid rgba(34, 197, 94, 0.22);
    border-radius: var(--radius-pill);
    padding: 0.26rem 0.72rem;
}

.sustain-pill i { font-size: 0.54rem; }

/* Progress bars */
.sustain-bars {
    display: flex;
    flex-direction: column;
    gap: 1.15rem;
    min-width: 220px;
}

.progress-bar { display: flex; flex-direction: column; gap: 0.32rem; }

.pb-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.pb-label {
    font-family: var(--font-body);
    font-size: 0.68rem;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: var(--color-text-muted);
    font-weight: 600;
}

.pb-pct {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    color: #4ade80;
}

.progress {
    background: rgba(255, 255, 255, 0.07);
    height: 5px;
    border-radius: var(--radius-pill);
    overflow: hidden;
}

.progress div {
    height: 100%;
    border-radius: var(--radius-pill);
    background: linear-gradient(to right, var(--color-accent), #4ade80);
    transition: width 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}


/* =============================================================
   CTA STRIP
   ============================================================= */

.cta-strip {
    border-top: 1px solid var(--color-border);
    padding: 5rem 1.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-strip::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(ellipse 60% 70% at 50% 50%, rgba(249, 115, 22, 0.06) 0%, transparent 60%);
    pointer-events: none;
}

.cta-strip .container { position: relative; z-index: 1; }

.cta-strip h2 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--color-heading);
    margin: 0.7rem 0 0.65rem;
    line-height: 1.15;
}

.cta-strip h2 em {
    font-style: italic;
    color: var(--color-primary);
    font-weight: 400;
}

.cta-strip > .container > p {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Button: primary (orange gradient) */
.btn--primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.82rem 1.85rem;
    background: linear-gradient(135deg, var(--color-primary), #fb923c);
    color: #fff;
    border: none;
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-size: 0.88rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    cursor: pointer;
    text-decoration: none;
    transition: transform var(--transition-fast), box-shadow var(--transition-fast);
    box-shadow: 0 8px 28px rgba(249, 115, 22, 0.32);
}

.btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 40px rgba(249, 115, 22, 0.48);
}

/* Button: outline / ghost */
.btn--outline {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.82rem 1.85rem;
    background: transparent;
    color: var(--color-text);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-size: 0.88rem;
    font-weight: 500;
    text-decoration: none;
    transition: background var(--transition-fast), border-color var(--transition-fast), transform var(--transition-fast);
    backdrop-filter: blur(8px);
}

.btn--outline:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(249, 115, 22, 0.35);
    transform: translateY(-2px);
}


/* =============================================================
   RESPONSIVE
   ============================================================= */

@media (max-width: 1024px) {
    .amenities-grid { grid-template-columns: repeat(3, 1fr); }
    .team-grid       { grid-template-columns: repeat(2, 1fr); }
    .awards-grid     { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
    .about-story   { grid-template-columns: 1fr; gap: 3rem; }
    .sustain-inner { grid-template-columns: 1fr; gap: 2rem; padding: 2rem 1.5rem; }
    .values-grid   { grid-template-columns: repeat(2, 1fr); }
    .stats-strip   { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
    .stat          { border-right: none; padding-bottom: 1.2rem; border-bottom: 1px solid var(--color-border); }
    .stat:nth-child(2), .stat:last-child { border-bottom: none; }
}

@media (max-width: 620px) {
    .values-grid    { grid-template-columns: 1fr; }
    .awards-grid    { grid-template-columns: 1fr; }
    .amenities-grid { grid-template-columns: repeat(2, 1fr); }
    .team-grid      { grid-template-columns: 1fr; }
    .stats-strip    { grid-template-columns: repeat(2, 1fr); }
}

/* ============ CARDS / HIGHLIGHTS ============ */
.cards {
    margin-top: 2.7rem;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.5rem;
}

.card {
    background: rgba(15, 23, 42, 0.96);
    border-radius: 1.25rem;
    padding: 1.3rem 1.2rem 1.3rem;
    border: 1px solid rgba(148, 163, 184, 0.3);
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.8);
    transform: translateY(0);
    transition: transform var(--transition-med), box-shadow var(--transition-med), border-color var(--transition-med), background var(--transition-med);
}

.card:hover {
    transform: translateY(-5px);
    border-color: rgba(249, 115, 22, 0.65);
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.95);
    background: radial-gradient(circle at top left, rgba(249, 115, 22, 0.18), rgba(15, 23, 42, 0.98));
}

.card__icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 1rem;
    background: radial-gradient(circle at 20% 0, rgba(249, 115, 22, 0.85), rgba(14, 116, 144, 0.85));
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.9rem;
}

.card__icon i {
    color: #fefce8;
    font-size: 1.1rem;
}

.card__title {
    margin: 0 0 0.45rem;
    font-size: 1.05rem;
    font-weight: 600;
    color: #f9fafb;
}

.card__text {
    margin: 0;
    font-size: 0.94rem;
    color: var(--color-text-muted);
}
.card--link {
    text-decoration: none;
    color: inherit;
    display: block;      /* so the whole card is clickable */
    height: 100%;
}
/* ============ GALLERY ============ */
.gallery {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(0, 1.2fr);
    gap: 2.5rem;
    align-items: center;
}

.gallery__grid {
    display: grid;
    gap: 0.75rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.gallery__item {
    border-radius: 1rem;
    overflow: hidden;
    position: relative;
}

.gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.02);
    transition: transform var(--transition-med), filter var(--transition-med);
}

.gallery__item::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    box-shadow: inset 0 0 0 1px rgba(15, 23, 42, 0.35);
    pointer-events: none;
}

.gallery__item:hover img {
    transform: scale(1.06);
    filter: saturate(1.2);
}
/* ============================================================
   contact.css — Contact & Booking Page Styles
   Depends on: Font Awesome 6, Google Fonts (loaded in contact.php)
   ============================================================ */

/* ── Google Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;1,400&family=DM+Sans:wght@300;400;500;600&display=swap');

/* ── CSS Variables ── */
:root {
    --orange:        #f97316;
    --orange-light:  #fb923c;
    --orange-glow:   rgba(249, 115, 22, 0.18);
    --surface:       rgba(255, 255, 255, 0.06);
    --border:        rgba(255, 255, 255, 0.12);
    --text-primary:  #f9fafb;
    --text-muted:    rgba(248, 250, 252, 0.65);
    --input-bg:      #f8fafc;
    --input-text:    #0f172a;
    --radius-card:   1.4rem;
    --radius-input:  0.75rem;
}

/* ============ PAGE SHELL ============ */
.contact-page {
    min-height: 100vh;
    padding: 6rem 1.5rem 5rem;
    position: relative;
    overflow: hidden;
    font-family: 'DM Sans', sans-serif;
}

/* Layered atmospheric glow */
.contact-page::before {
    content: '';
    position: fixed;
    inset: 0;
    background:
        radial-gradient(ellipse 70% 55% at 15% 30%, rgba(249,115,22,0.07) 0%, transparent 60%),
        radial-gradient(ellipse 60% 50% at 85% 70%, rgba(251,146,60,0.05) 0%, transparent 55%);
    pointer-events: none;
    z-index: 0;
}

/* Subtle noise grain overlay */
.contact-page::after {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 0;
    opacity: 0.6;
}

.contact-page__inner {
    position: relative;
    z-index: 1;
    max-width: 1180px;
    margin: 0 auto;
}

/* ============ PAGE HEADING ============ */
.contact-page__heading {
    text-align: center;
    margin-bottom: 3.5rem;
    animation: fadeUp 0.7s both;
}

.contact-page__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.68rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--orange);
    background: rgba(249,115,22,0.08);
    border: 1px solid rgba(249,115,22,0.22);
    border-radius: 999px;
    padding: 0.3rem 1rem;
    margin-bottom: 1rem;
    font-family: 'DM Sans', sans-serif;
    font-weight: 500;
}

.contact-page__title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(2.6rem, 5vw, 4rem);
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.1;
    margin: 0 0 0.75rem;
    letter-spacing: -0.01em;
}

.contact-page__title em {
    font-style: italic;
    color: var(--orange-light);
}

.contact-page__subtitle {
    font-size: 1rem;
    color: var(--text-muted);
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.65;
    font-weight: 300;
}

/* ============ TWO-COLUMN GRID ============ */
.contact-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 1.35fr);
    gap: 2rem;
    align-items: flex-start;
    animation: fadeUp 0.7s 0.15s both;
}

/* ============ LEFT COLUMN ============ */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

/* ── Info card base ── */
.info-card {
    background: var(--surface);
    border-radius: var(--radius-card);
    border: 1px solid var(--border);
    backdrop-filter: blur(20px);
    box-shadow: 0 20px 60px rgba(15,23,42,0.45);
    position: relative;
    overflow: hidden;
}

/* Shimmer top accent line */
.info-card::before {
    content: '';
    position: absolute;
    top: 0; left: 12%; right: 12%;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--orange), transparent);
    opacity: 0.65;
    border-radius: 999px;
}

/* ── Intro / property card ── */
.info-card--intro {
    padding: 1.6rem 1.5rem 1.4rem;
}

.info-card__label {
    font-size: 0.63rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--orange);
    font-weight: 600;
    margin-bottom: 0.55rem;
    display: block;
}

.info-card__property-name {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.55rem;
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.2;
    margin: 0 0 0.5rem;
}

.info-card__tagline {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.6;
    font-weight: 300;
    margin: 0 0 1.1rem;
}

/* ── Detail rows ── */
.info-details {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.info-detail {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.info-detail__icon {
    width: 2rem;
    height: 2rem;
    border-radius: 0.55rem;
    background: rgba(249,115,22,0.1);
    border: 1px solid rgba(249,115,22,0.22);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 0.05rem;
}

.info-detail__icon i {
    color: var(--orange);
    font-size: 0.7rem;
}

.info-detail__text { flex: 1; }

.info-detail__title {
    font-size: 0.68rem;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    color: var(--text-muted);
    font-weight: 600;
    display: block;
    margin-bottom: 0.12rem;
}

.info-detail__value {
    font-size: 0.88rem;
    color: var(--text-primary);
    line-height: 1.45;
}

.info-detail__value a {
    color: var(--text-primary);
    text-decoration: none;
    transition: color 0.2s;
}
.info-detail__value a:hover { color: var(--orange-light); }

/* Divider inside info card */
.info-divider {
    height: 1px;
    background: var(--border);
    margin: 0.9rem 0;
}

/* ── Stats strip ── */
.info-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid var(--border);
    margin: 0;
}

.info-stat {
    padding: 0.9rem 0.6rem;
    text-align: center;
    border-right: 1px solid var(--border);
}
.info-stat:last-child { border-right: none; }

.info-stat__number {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--orange-light);
    line-height: 1;
    display: block;
}

.info-stat__label {
    font-size: 0.6rem;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    color: var(--text-muted);
    display: block;
    margin-top: 0.2rem;
    font-weight: 500;
}

/* ============ MAP CARD ============ */
.info-card--map {
    padding: 0;
    overflow: hidden;
}

.map-header {
    padding: 0.9rem 1.2rem 0.85rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--border);
}

.map-header__left {
    display: flex;
    align-items: center;
    gap: 0.55rem;
}

.map-header__icon {
    width: 1.8rem;
    height: 1.8rem;
    background: rgba(249,115,22,0.1);
    border: 1px solid rgba(249,115,22,0.22);
    border-radius: 0.45rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-header__icon i { color: var(--orange); font-size: 0.65rem; }

.map-header__title {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-primary);
    display: block;
}

.map-header__subtitle {
    font-size: 0.68rem;
    color: var(--text-muted);
    display: block;
}

.map-badge {
    font-size: 0.6rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    background: rgba(249,115,22,0.08);
    border: 1px solid rgba(249,115,22,0.2);
    color: var(--orange);
    border-radius: 999px;
    padding: 0.22rem 0.65rem;
    font-weight: 500;
}

.map-embed {
    display: block;
    width: 100%;
    height: 240px;
    border: none;
    filter: saturate(0.6) contrast(1.1) brightness(0.82);
    transition: filter 0.4s;
}

.info-card--map:hover .map-embed {
    filter: saturate(0.8) contrast(1.05) brightness(0.9);
}

.map-footer {
    padding: 0.7rem 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border-top: 1px solid var(--border);
}

.map-footer i { color: var(--orange); font-size: 0.7rem; }

.map-footer__text {
    font-size: 0.75rem;
    color: var(--text-muted);
    flex: 1;
}

.map-footer__link {
    font-size: 0.7rem;
    color: var(--orange-light);
    text-decoration: none;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    transition: color 0.2s;
    white-space: nowrap;
}
.map-footer__link:hover { color: var(--text-primary); }

/* ============ BOOKING FORM ============ */
.contact__form {
    background: var(--surface);
    border-radius: var(--radius-card);
    padding: 2rem 1.8rem 1.9rem;
    box-shadow: 0 24px 70px rgba(15, 23, 42, 0.55);
    border: 1px solid var(--border);
    backdrop-filter: blur(24px);
    position: relative;
    animation: fadeUp 0.7s 0.25s both;
}

/* Gold shimmer line across top */
.contact__form::before {
    content: "";
    position: absolute;
    top: 0; left: 12%; right: 12%;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--orange), transparent);
    border-radius: 999px;
    opacity: 0.75;
}

/* ── Form header ── */
.form__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    padding-bottom: 1.1rem;
    border-bottom: 1px solid var(--border);
}

.form__header-meta { flex: 1; }

.form__header-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--text-primary);
    display: block;
    line-height: 1.2;
}

.form__header-sub {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 0.18rem;
    font-weight: 300;
    display: block;
}

.form__header-badge {
    font-size: 0.62rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--orange);
    background: rgba(249, 115, 22, 0.1);
    border: 1px solid rgba(249, 115, 22, 0.3);
    border-radius: 999px;
    padding: 0.3rem 0.8rem;
    flex-shrink: 0;
}

/* ── Progress dots ── */
.form__progress {
    display: flex;
    gap: 0.4rem;
    align-items: center;
    margin-bottom: 1.5rem;
}

.form__progress-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--border);
    transition: background 0.3s, width 0.3s, border-radius 0.3s;
}

.form__progress-dot.active {
    background: var(--orange);
    width: 20px;
    border-radius: 3px;
}

.form__progress-label {
    font-size: 0.67rem;
    color: var(--text-muted);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-left: 0.4rem;
    font-weight: 500;
}

/* ── Form groups ── */
.form__group {
    margin-bottom: 1rem;
    position: relative;
}

.form__row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.8rem;
}

/* ── Labels ── */
label {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 0.38rem;
    transition: color 0.2s;
    font-family: 'DM Sans', sans-serif;
}

label i { color: var(--orange); font-size: 0.62rem; }

.form__group:focus-within label { color: var(--text-primary); }

/* ── Inputs, selects, textarea ── */
input,
select,
textarea {
    width: 100%;
    border-radius: var(--radius-input);
    border: 1.5px solid rgba(203, 213, 225, 0.4);
    padding: 0.7rem 0.95rem;
    font-size: 0.88rem;
    background: var(--input-bg);
    color: var(--input-text);
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
    appearance: none;
    -webkit-appearance: none;
    font-family: 'DM Sans', sans-serif;
    box-sizing: border-box;
}

input::placeholder,
textarea::placeholder { color: #94a3b8; }

textarea {
    resize: vertical;
    min-height: 90px;
    line-height: 1.55;
}

input[type="date"]::-webkit-calendar-picker-indicator {
    opacity: 0.45;
    cursor: pointer;
}
input[type="date"]::-webkit-calendar-picker-indicator:hover { opacity: 0.9; }

input:focus,
select:focus,
textarea:focus {
    border-color: var(--orange);
    box-shadow:
        0 0 0 3px var(--orange-glow),
        0 2px 8px rgba(0, 0, 0, 0.08);
    background: #ffffff;
}

/* ── Animated focus underline ── */
.form__group::after {
    content: "";
    position: absolute;
    bottom: 0; left: 0.95rem; right: 0.95rem;
    height: 2px;
    background: linear-gradient(to right, var(--orange), var(--orange-light));
    border-radius: 999px;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    pointer-events: none;
}
.form__group:focus-within::after { transform: scaleX(1); }

/* ── Custom select arrow ── */
.select-wrap { position: relative; }

.select-wrap::after {
    content: "\f078";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    right: 0.9rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.55rem;
    color: var(--orange);
    pointer-events: none;
}

.select-wrap select {
    padding-right: 2.2rem;
    cursor: pointer;
}

/* ── Section label divider ── */
.form__section-label {
    font-size: 0.63rem;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    color: var(--orange);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 1.3rem 0 0.9rem;
    font-family: 'DM Sans', sans-serif;
}

.form__section-label::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--border);
}

/* ── Phone field with flag ── */
.phone-wrap { position: relative; }

.phone-flag {
    position: absolute;
    left: 0.9rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.85rem;
    pointer-events: none;
    z-index: 1;
}

.phone-wrap input { padding-left: 2.4rem; }

/* ── Submit button ── */
.btn--primary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    width: 100%;
    padding: 0.85rem 1.5rem;
    background: linear-gradient(135deg, var(--orange), var(--orange-light));
    color: #fff;
    border: none;
    border-radius: 0.85rem;
    font-size: 0.9rem;
    font-weight: 600;
    font-family: 'DM Sans', sans-serif;
    letter-spacing: 0.02em;
    cursor: pointer;
    margin-top: 1.4rem;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 8px 28px rgba(249,115,22,0.35);
    position: relative;
    overflow: hidden;
}

.btn--primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.15), transparent);
    opacity: 0;
    transition: opacity 0.2s;
}

.btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 40px rgba(249,115,22,0.5);
}
.btn--primary:hover::before { opacity: 1; }
.btn--primary:active { transform: translateY(0); }

/* ── Privacy note ── */
.form__privacy {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    margin-top: 0.9rem;
    justify-content: center;
}

.form__privacy i {
    font-size: 0.62rem;
    color: var(--text-muted);
}

.form__privacy span {
    font-size: 0.68rem;
    color: var(--text-muted);
}

/* ── Alert banners ── */
.form__alert {
    border-radius: 0.75rem;
    padding: 1rem 1.2rem;
    margin-bottom: 1.2rem;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.form__alert--success {
    background: rgba(74,222,128,0.1);
    border: 1px solid rgba(74,222,128,0.3);
    color: #4ade80;
}

.form__alert--error {
    background: rgba(248,113,113,0.1);
    border: 1px solid rgba(248,113,113,0.3);
    color: #f87171;
}

/* ============ TOAST NOTIFICATION ============ */
.toast {
    display: none;
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 999;
    background: rgba(15,23,42,0.95);
    border: 1px solid rgba(249,115,22,0.4);
    border-radius: 1rem;
    padding: 1rem 1.4rem 1rem 1rem;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
    backdrop-filter: blur(20px);
    max-width: 340px;
    animation: slideInRight 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.toast.show {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
}

.toast__icon {
    width: 2.2rem;
    height: 2.2rem;
    border-radius: 50%;
    background: rgba(249,115,22,0.15);
    border: 1px solid rgba(249,115,22,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.toast__icon i { color: var(--orange); font-size: 0.85rem; }

.toast__title {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-primary);
    display: block;
    margin-bottom: 0.15rem;
}

.toast__msg {
    font-size: 0.78rem;
    color: var(--text-muted);
    line-height: 1.45;
    display: block;
}

/* ============ KEYFRAMES ============ */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(22px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes slideInRight {
    from { opacity: 0; transform: translateX(30px); }
    to   { opacity: 1; transform: translateX(0); }
}

/* ============ RESPONSIVE ============ */
@media (max-width: 900px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .info-card--map { order: -1; }

    .contact-page { padding: 4.5rem 1rem 4rem; }
}

@media (max-width: 560px) {
    .form__row { grid-template-columns: 1fr; gap: 0; }
    .info-stats { grid-template-columns: repeat(3, 1fr); }
    .contact-page__title { font-size: 2.2rem; }
}

/* ================= GLOBAL FOOTER ================= */

.footer {
    padding: 3.5rem 0 1.6rem;
    background: #020617;
    border-top: 1px solid rgba(249,115,22,.15);
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: "";
    position: absolute;
    bottom: -70px;
    left: 50%;
    transform: translateX(-50%);
    width: 700px;
    height: 220px;
    background: radial-gradient(ellipse, rgba(249,115,22,.07), transparent 70%);
}

/* Grid Layout */
.footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.3fr;
    gap: 2.5rem;
}

/* Brand */
.footer__brand {
    display: flex;
    align-items: center;
    gap: .7rem;
    margin-bottom: 1rem;
}

.footer__logo {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer__logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.footer__brand-name {
    font-weight: 600;
    font-size: .95rem;
    color: #f9fafb;
}

.footer__brand-sub {
    font-size: .72rem;
    color: #6b7280;
}

.footer__description {
    font-size: .85rem;
    color: #9ca3af;
    line-height: 1.6;
    margin-bottom: 1.3rem;
}

/* Headings */
.footer__heading {
    font-size: .85rem;
    letter-spacing: .08em;
    text-transform: uppercase;
    margin-bottom: 1rem;
    color: #f9fafb;
}

/* Links */
.footer__links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer__links li {
    margin-bottom: .6rem;
}

.footer__links a {
    text-decoration: none;
    color: #9ca3af;
    font-size: .85rem;
    transition: color .25s, transform .25s;
}

.footer__links a:hover {
    color: #f97316;
    transform: translateX(4px);
}

/* Contact */
.footer__contact-item {
    display: flex;
    align-items: center;
    gap: .6rem;
    margin-bottom: .7rem;
    font-size: .85rem;
    color: #9ca3af;
    text-decoration: none;
    transition: color .25s;
}

.footer__contact-item i {
    color: #f97316;
    font-size: .8rem;
}

.footer__contact-item:hover {
    color: #f97316;
}

/* Socials */
.footer__socials {
    display: flex;
    gap: .6rem;
}

.footer__socials a {
    width: 2.2rem;
    height: 2.2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(15,23,42,.85);
    border: 1px solid rgba(148,163,184,.2);
    color: #9ca3af;
    font-size: .85rem;
    transition: all .25s ease;
}

.footer__socials a:hover {
    background: rgba(249,115,22,.15);
    border-color: rgba(249,115,22,.6);
    color: #f97316;
    transform: translateY(-3px);
}

/* Divider */
.footer__divider {
    height: 1px;
    margin: 2.2rem 0 1.2rem;
    background: linear-gradient(to right, transparent, rgba(148,163,184,.15), transparent);
}

/* Bottom */
.footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: .78rem;
    color: #4b5563;
}

.footer__bottom-links {
    display: flex;
    gap: 1.3rem;
}

.footer__bottom-links a {
    color: #4b5563;
    text-decoration: none;
    transition: color .25s;
}

.footer__bottom-links a:hover {
    color: #f97316;
}

/* Responsive */
@media (max-width: 1024px) {
    .footer__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 640px) {
    .footer__grid {
        grid-template-columns: 1fr;
    }

    .footer__bottom {
        flex-direction: column;
        gap: .7rem;
        text-align: center;
    }
}

/*back to top*\

/* ================= FLOATING BUTTONS ================= */

/* WhatsApp */
.floating-whatsapp {
    position: fixed;
    bottom: 24px;
    left: 24px;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: #25D366;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    box-shadow: 0 10px 25px rgba(0,0,0,0.4);
    z-index: 5000;
    transition: transform .25s ease, box-shadow .25s ease;
}

.floating-whatsapp:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 30px rgba(0,0,0,0.6);
}


/* Back To Top */
.back-to-top {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(15,23,42,.95);
    border: 1px solid rgba(249,115,22,.5);
    color: #f97316;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all .3s ease;
    z-index: 5000;
}

.back-to-top:hover {
    background: rgba(249,115,22,.15);
    transform: translateY(-3px);
}

/* Visible state */
.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
/* ============ RESPONSIVE ============ */
@media (max-width: 900px) {
    .section__grid,
    .section__grid--reverse,
    .gallery,
    .contact {
        grid-template-columns: minmax(0, 1fr);
    }

    .section__grid--reverse .section__media {
        order: -1;
    }

    .hero {
        padding-top: 3rem;
        padding-bottom: 3.5rem;
    }

    .hero__content {
        text-align: left;
    }

    .hero__buttons {
        justify-content: flex-start;
    }

    .cards {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 720px) {
    .header__inner {
        padding-top: 0.3rem;
        padding-bottom: 0.3rem;
    }

    .nav__toggle {
        display: flex;
    }

    .nav__list {
        position: absolute;
        right: 0;
        top: calc(100% + 0.6rem);
        flex-direction: column;
        align-items: flex-start;
        background: rgba(15, 23, 42, 0.98);
        border-radius: 1.1rem;
        padding: 0.75rem 0.9rem;
        border: 1px solid rgba(148, 163, 184, 0.6);
        box-shadow: 0 18px 50px rgba(15, 23, 42, 0.9);
        opacity: 0;
        transform: translateY(-6px);
        pointer-events: none;
        transition: opacity var(--transition-med), transform var(--transition-med);
    }

    .nav__list--open {
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
    }

    .nav__link {
        padding: 0.3rem 0.1rem;
    }

    .hero__info {
        border-radius: 1rem;
        flex-direction: column;
        align-items: flex-start;
    }

    .cards {
        grid-template-columns: minmax(0, 1fr);
    }

    .gallery__grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .contact__form {
        padding: 1.3rem 1.1rem;
    }
}

@media (max-width: 480px) {
    .hero__title {
        font-size: 2.1rem;
    }

    .hero__buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .hero__info {
        border-radius: 1rem;
    }

    .footer__inner {
        flex-direction: column;
        align-items: flex-start;
    }
}

.footer {
    position: relative;
    z-index: 999;
}

.footer a {
    position: relative;
    z-index: 1000;
}
/* ================= ROOMS PAGE ================= */

/* Hero */
.rooms-hero {
    position: relative;
    padding: 6rem 0 5rem;
    text-align: left;
    color: #f9fafb;
    background: url("images/rooms-hero.avif") center/cover no-repeat;
}

.rooms-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom right, rgba(15, 23, 42, 0.88), rgba(15, 23, 42, 0.55));
}

.rooms-hero__content {
    position: relative;
    max-width: 640px;
}

.rooms-hero__title {
    font-family: var(--font-heading);
    font-size: clamp(2.4rem, 4vw, 3.1rem);
    margin: 0 0 0.6rem;
}

.rooms-hero__subtitle {
    color: var(--color-text-muted);
    max-width: 32rem;
}

/* Booking bar */
.booking-bar {
    margin-top: -2.5rem;
    margin-bottom: 2.5rem;
}

.booking-bar__inner {
    background: rgba(15, 23, 42, 0.97);
    border-radius: 1.5rem;
    padding: 1.3rem 1.5rem;
    box-shadow: 0 18px 50px rgba(15, 23, 42, 0.9);
    border: 1px solid rgba(148, 163, 184, 0.6);
}

.booking-form {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr)) auto;
    gap: 0.9rem;
    align-items: flex-end;
}

.booking-form__group label {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #9ca3af;
    margin-bottom: 0.25rem;
}

.booking-form__submit {
    align-self: stretch;
    padding-inline: 1.3rem;
}

/* Rooms header + filters */
.rooms-header {
    margin-bottom: 2.3rem;
}

.room-filters {
    margin-top: 1rem;
    display: inline-flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    background: rgba(15, 23, 42, 0.85);
    border-radius: 999px;
    padding: 0.25rem;
    border: 1px solid rgba(148, 163, 184, 0.4);
}

.room-filter-btn {
    border: none;
    outline: none;
    cursor: pointer;
    padding: 0.45rem 0.95rem;
    border-radius: 999px;
    font-size: 0.86rem;
    background: transparent;
    color: var(--color-text-muted);
    transition: background 180ms ease-out, color 180ms ease-out, box-shadow 180ms ease-out;
}

.room-filter-btn.is-active {
    background: linear-gradient(135deg, #f97316, #ea580c);
    color: #fefce8;
    box-shadow: 0 12px 30px rgba(249, 115, 22, 0.7);
}

/* Room cards */
.room-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 2rem;
}

.room-card {
    background: rgba(15, 23, 42, 0.98);
    border-radius: 1.4rem;
    overflow: hidden;
    border: 1px solid rgba(148, 163, 184, 0.4);
    box-shadow: 0 20px 55px rgba(15, 23, 42, 0.9);
    position: relative;
    display: flex;
    flex-direction: column;
    transition: transform 220ms ease-out, box-shadow 220ms ease-out, border-color 220ms ease-out;
}

.room-card:hover {
    transform: translateY(-6px);
    border-color: rgba(249, 115, 22, 0.7);
    box-shadow: 0 26px 70px rgba(15, 23, 42, 1);
}

.room-card.is-hidden {
    display: none;
}

/* Price badge */
.room-card__badge {
    position: absolute;
    top: 0.9rem;
    left: 0.9rem;
    z-index: 3;
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 500;
    background: radial-gradient(circle at top left, rgba(249, 115, 22, 0.95), rgba(180, 83, 9, 0.95));
    color: #fef9c3;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6);
}

/* Slider */
.room-slider {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.room-slider__track {
    width: 100%;
    height: 100%;
    position: relative;
}

.room-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: scale(1.03);
    object-fit: cover;
    transition: opacity 260ms ease-out, transform 260ms ease-out;
}

.room-slide.is-active {
    opacity: 1;
    transform: scale(1);
}

.room-slider__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    border: none;
    width: 2.2rem;
    height: 2.2rem;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.8);
    color: #f9fafb;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 4;
    transition: background 180ms ease-out, transform 180ms ease-out;
}

.room-slider__nav--prev { left: 0.7rem; }
.room-slider__nav--next { right: 0.7rem; }

.room-slider__nav:hover {
    background: rgba(15, 23, 42, 1);
    transform: translateY(-50%) scale(1.05);
}

.room-slider__dots {
    position: absolute;
    bottom: 0.65rem;
    left: 50%;
    transform: translateX(-50%);
    display: inline-flex;
    gap: 0.3rem;
    z-index: 4;
}

.room-slider__dots .dot {
    width: 7px;
    height: 7px;
    border-radius: 999px;
    border: none;
    background: rgba(248, 250, 252, 0.35);
    cursor: pointer;
    transition: background 180ms ease-out, transform 180ms ease-out, width 180ms ease-out;
}

.room-slider__dots .dot.is-active {
    width: 16px;
    background: #f97316;
    transform: translateY(-1px);
}



/* Card content */
.room-card__content {
    padding: 1.2rem 1.3rem 1.4rem;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}

.room-card__content h3 {
    margin: 0;
    font-size: 1.1rem;
    color: #f9fafb;
}

.room-card__content p {
    margin: 0;
    color: var(--color-text-muted);
    font-size: 0.95rem;
}

.room-card__details {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 1rem;
    font-size: 0.86rem;
    color: #e5e7eb;
}

.room-card__details span i {
    margin-right: 0.25rem;
    color: #f97316;
}

/* Amenities grid (rooms page) */
.amenities-grid {
    margin-top: 2rem;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.amenities-grid div {
    padding: 0.9rem 1rem;
    background: #0f172a;
    border-radius: 1.1rem;
    border: 1px solid rgba(148, 163, 184, 0.4);
    font-size: 0.94rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    color: #e5e7eb;
}

.amenities-grid i {
    color: #f97316;
}

/* Rooms CTA */
.rooms-cta {
    text-align: center;
    max-width: 600px;
}

/* Modal (shared style) */
.modal {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.75);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 80;
}

.modal-content {
    background: #020617;
    border-radius: 1.4rem;
    padding: 1.6rem 1.6rem 1.7rem;
    border: 1px solid rgba(248, 250, 252, 0.6);
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.9);
    max-width: 480px;
    width: 90%;
    color: #e5e7eb;
    position: relative;
}

.close-modal {
    position: absolute;
    top: 0.7rem;
    right: 0.7rem;
    border: none;
    background: rgba(15, 23, 42, 0.8);
    border-radius: 999px;
    width: 2rem;
    height: 2rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #e5e7eb;
}

.modal-title {
    margin: 0 0 0.3rem;
    font-family: var(--font-heading);
    font-size: 1.4rem;
}

.modal-price {
    margin: 0 0 0.8rem;
    font-size: 0.98rem;
    color: #fed7aa;
}

.modal-body {
    margin: 0;
    font-size: 0.95rem;
    color: var(--color-text-muted);
}

.show-modal {
    display: flex;
}

/* Scroll reveal */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 280ms ease-out, transform 280ms ease-out;
}

.reveal-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive tweaks */
@media (max-width: 1024px) {
    .booking-form {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        align-items: stretch;
    }

    .room-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .amenities-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 720px) {
    .rooms-hero {
        padding: 5rem 0 3.5rem;
        text-align: left;
    }

    .booking-bar__inner {
        padding: 1.1rem 1rem;
    }

    .booking-form {
        grid-template-columns: minmax(0, 1fr);
    }

    .room-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .amenities-grid {
        grid-template-columns: minmax(0, 1fr);
    }
}
/* ================= DINING / MENU PAGE ================= */

/* Hero */
.menu-hero {
    position: relative;
    padding: 6rem 0 4.5rem;
    background: url("images/dining-hero.avif") center/cover no-repeat;
    color: #f9fafb;
}

.menu-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom right, rgba(15, 23, 42, 0.9), rgba(15, 23, 42, 0.6));
}

.menu-hero__content {
    position: relative;
    max-width: 640px;
}

.menu-hero__title {
    font-family: var(--font-heading);
    font-size: clamp(2.4rem, 4vw, 3rem);
    margin: 0 0 0.5rem;
}

.menu-hero__subtitle {
    margin: 0 0 1rem;
    color: var(--color-text-muted);
}

.menu-hero__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    font-size: 0.85rem;
}

.menu-hero__tags span {
    padding: 0.35rem 0.9rem;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.9);
    border: 1px solid rgba(148, 163, 184, 0.5);
}

/* Header & filters */
.menu-header {
    margin-bottom: 2.4rem;
}

.menu-filters {
    margin-top: 1.2rem;
    display: inline-flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    padding: 0.3rem;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.85);
    border: 1px solid rgba(148, 163, 184, 0.4);
}

.menu-filter-btn {
    border: none;
    outline: none;
    cursor: pointer;
    padding: 0.45rem 0.95rem;
    border-radius: 999px;
    font-size: 0.86rem;
    background: transparent;
    color: var(--color-text-muted);
    transition: background 180ms ease-out, color 180ms ease-out, box-shadow 180ms ease-out;
}

.menu-filter-btn.is-active {
    background: linear-gradient(135deg, #f97316, #ea580c);
    color: #fefce8;
    box-shadow: 0 12px 30px rgba(249, 115, 22, 0.7);
}

/* Grid */
.menu-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.8rem;
}

/* Dish card */
.dish-card {
    background: rgba(15, 23, 42, 0.98);
    border-radius: 1.3rem;
    overflow: hidden;
    border: 1px solid rgba(148, 163, 184, 0.4);
    box-shadow: 0 20px 55px rgba(15, 23, 42, 0.9);
    display: flex;
    flex-direction: column;
    transition: transform 220ms ease-out, box-shadow 220ms ease-out, border-color 220ms ease-out;
}

.dish-card:hover {
    transform: translateY(-6px);
    border-color: rgba(249, 115, 22, 0.7);
    box-shadow: 0 26px 70px rgba(15, 23, 42, 1);
}

.dish-card.is-hidden {
    display: none;
}

.dish-card__image-wrap {
    position: relative;
    height: 210px;
    overflow: hidden;
}

.dish-card__image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.03);
    transition: transform 220ms ease-out, filter 220ms ease-out;
}

.dish-card:hover .dish-card__image-wrap img {
    transform: scale(1.07);
    filter: saturate(1.15);
}

/* Badge */
.dish-card__badge {
    position: absolute;
    top: 0.8rem;
    left: 0.9rem;
    padding: 0.3rem 0.8rem;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 500;
    background: radial-gradient(circle at top left, rgba(249, 115, 22, 0.98), rgba(180, 83, 9, 0.98));
    color: #fefce8;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.7);
}

.dish-card__badge--veg {
    background: radial-gradient(circle at top left, #22c55e, #16a34a);
}

/* Body */
.dish-card__body {
    padding: 1.1rem 1.2rem 1.3rem;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}

.dish-card__top-row {
    display: flex;
    justify-content: space-between;
    gap: 0.75rem;
    align-items: baseline;
}

.dish-card__top-row h3 {
    margin: 0;
    font-size: 1.02rem;
    color: #f9fafb;
}

.dish-card__price {
    font-weight: 600;
    font-size: 0.96rem;
    color: #fed7aa;
}

.dish-card__body p {
    margin: 0;
    font-size: 0.95rem;
    color: var(--color-text-muted);
}

.dish-card__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem 0.8rem;
    font-size: 0.85rem;
    color: #e5e7eb;
}

.dish-card__meta span i {
    margin-right: 0.25rem;
    color: #f97316;
}

/* Responsive */
@media (max-width: 1024px) {
    .menu-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 720px) {
    .menu-hero {
        padding: 5rem 0 3.5rem;
    }

    .menu-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .menu-filters {
        width: 100%;
        justify-content: flex-start;
    }
}

/*  GALLERY.CSS   */

/* ---- CUSTOM PROPERTIES ------------------------------------ */
:root {
    --gallery-accent:       #f97316;
    --gallery-accent-light: #fb923c;
    --gallery-accent-dim:   rgba(249, 115, 22, 0.18);
    --gallery-dark:         #020617;
    --gallery-dark-muted:   rgba(15, 23, 42, 0.85);
    --gallery-border:       rgba(148, 163, 184, 0.22);
    --gallery-border-hover: rgba(249, 115, 22, 0.7);
    --gallery-text:         #f1f5f9;
    --gallery-text-muted:   #94a3b8;
    --gallery-radius:       1.25rem;
    --gallery-transition:   cubic-bezier(0.4, 0, 0.2, 1);
    --gallery-spring:       cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ---- CURSOR GLOW ------------------------------------------ */
.cursor-glow {
    position: fixed;
    top: 0;
    left: 0;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.08) 0%, transparent 70%);
    pointer-events: none;
    transform: translate(-50%, -50%);
    transition: transform 0.08s linear;
    z-index: 0;
    will-change: transform;
}

/* ---- HERO SECTION ----------------------------------------- */
.gallery-hero {
    position: relative;
    min-height: 88vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    color: var(--gallery-text);
}

.gallery-hero__bg {
    position: absolute;
    inset: 0;
    background: url("images/gallery-hero.avif") center / cover no-repeat;
    transform: scale(1.06);
    animation: heroZoom 18s ease-in-out infinite alternate;
}

@keyframes heroZoom {
    from { transform: scale(1.06) translateX(0); }
    to   { transform: scale(1.12) translateX(-1.5%); }
}

.gallery-hero__overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to bottom, rgba(2,6,23,0.72) 0%, rgba(2,6,23,0.45) 50%, rgba(2,6,23,0.85) 100%),
        linear-gradient(120deg, rgba(249,115,22,0.12) 0%, transparent 60%);
}

/* Floating particles */
.gallery-hero__particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.particle {
    position: absolute;
    border-radius: 50%;
    background: var(--gallery-accent);
    opacity: 0;
    animation: particleFloat linear infinite;
}

@keyframes particleFloat {
    0%   { opacity: 0;    transform: translateY(0) scale(0.5); }
    15%  { opacity: 0.55; }
    85%  { opacity: 0.3; }
    100% { opacity: 0;    transform: translateY(-110vh) scale(1.2); }
}

/* Hero content */
.gallery-hero__content {
    position: relative;
    z-index: 2;
    padding: 8rem 0 5rem;
}

.gallery-hero__eyebrow {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.78rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gallery-accent);
    margin-bottom: 1.2rem;
    opacity: 0;
    animation: fadeSlideUp 0.8s var(--gallery-transition) 0.2s forwards;
}

.gallery-hero__line {
    flex: 0 0 32px;
    height: 1px;
    background: var(--gallery-accent);
    opacity: 0.7;
}

.gallery-hero__title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3.2rem, 7vw, 6rem);
    line-height: 0.95;
    margin: 0 0 1.4rem;
    overflow: hidden;
}

.gallery-hero__title-line {
    display: block;
    opacity: 0;
    transform: translateY(80px);
    animation: heroLineReveal 0.9s var(--gallery-spring) forwards;
}

.gallery-hero__title-line:nth-child(1) { animation-delay: 0.35s; }

.gallery-hero__title-line--accent {
    color: var(--gallery-accent);
    font-style: italic;
    animation-delay: 0.52s;
}

@keyframes heroLineReveal {
    to { opacity: 1; transform: translateY(0); }
}

.gallery-hero__subtitle {
    max-width: 520px;
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--gallery-text-muted);
    margin-bottom: 2rem;
    opacity: 0;
    animation: fadeSlideUp 0.8s var(--gallery-transition) 0.7s forwards;
}

.gallery-hero__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-bottom: 3rem;
    opacity: 0;
    animation: fadeSlideUp 0.8s var(--gallery-transition) 0.9s forwards;
}

.gallery-hero__tag {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.45rem 1rem;
    border-radius: 999px;
    border: 1px solid var(--gallery-border);
    background: rgba(2, 6, 23, 0.6);
    backdrop-filter: blur(10px);
    font-size: 0.82rem;
    color: var(--gallery-text);
    transition: border-color 0.3s, background 0.3s, transform 0.3s var(--gallery-spring);
}

.gallery-hero__tag:hover {
    border-color: var(--gallery-border-hover);
    background: var(--gallery-accent-dim);
    transform: translateY(-2px);
}

.gallery-hero__tag i {
    color: var(--gallery-accent);
    font-size: 0.85rem;
}

/* Scroll hint */
.gallery-hero__scroll-hint {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.4rem;
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gallery-text-muted);
    opacity: 0;
    animation: fadeSlideUp 0.8s var(--gallery-transition) 1.1s forwards;
}

.gallery-hero__scroll-hint i {
    animation: bounceDown 1.6s ease-in-out infinite;
}

@keyframes bounceDown {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(6px); }
}

@keyframes fadeSlideUp {
    from { opacity: 0; transform: translateY(28px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ---- FILTER BAR ------------------------------------------- */
.gallery-filters {
    position: sticky;
    top: 0;
    z-index: 40;
    padding: 1rem 0;
    background: rgba(2, 6, 23, 0.92);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--gallery-border);
}

.filter-bar {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.filter-btn {
    position: relative;
    padding: 0.5rem 1.25rem;
    border-radius: 999px;
    border: 1px solid var(--gallery-border);
    background: transparent;
    color: var(--gallery-text-muted);
    font-size: 0.85rem;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    transition: color 0.3s, border-color 0.3s, background 0.3s, transform 0.25s var(--gallery-spring);
    overflow: hidden;
}

.filter-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gallery-accent);
    border-radius: 999px;
    opacity: 0;
    transform: scale(0.6);
    transition: transform 0.3s var(--gallery-spring), opacity 0.3s;
}

.filter-btn:hover {
    color: var(--gallery-text);
    border-color: rgba(249, 115, 22, 0.5);
    transform: translateY(-2px);
}

.filter-btn--active {
    color: #fff;
    border-color: var(--gallery-accent);
    background: var(--gallery-accent-dim);
}

.filter-btn--active::before {
    opacity: 0.15;
    transform: scale(1);
}

/* ---- GALLERY SECTION -------------------------------------- */
.gallery-section {
    padding-top: 3rem;
}

.gallery-header {
    margin-bottom: 2.5rem;
}

/* ---- GALLERY GRID ----------------------------------------- */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-auto-rows: 175px;
    grid-auto-flow: dense;
    gap: 1rem;
}

.gallery-item--wide { grid-column: span 2; }
.gallery-item--tall { grid-row:    span 2; }
.gallery-item--big  { grid-column: span 2; grid-row: span 2; }

/* Base card */
.gallery-item {
    position: relative;
    border-radius: var(--gallery-radius);
    overflow: hidden;
    background: #0d1425;
    cursor: pointer;
    border: 1px solid var(--gallery-border);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
    transform: translateY(0) scale(1);
    transition:
        transform 0.35s var(--gallery-spring),
        box-shadow 0.35s ease,
        border-color 0.35s ease;
    will-change: transform;
}

/* Staggered entry animation */
.gallery-item.is-visible {
    animation: cardReveal 0.7s var(--gallery-spring) forwards;
}

@keyframes cardReveal {
    from {
        opacity: 0;
        transform: translateY(40px) scale(0.96);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Give each item a slightly different delay */
.gallery-item:nth-child(1)  { animation-delay: 0.05s; }
.gallery-item:nth-child(2)  { animation-delay: 0.10s; }
.gallery-item:nth-child(3)  { animation-delay: 0.15s; }
.gallery-item:nth-child(4)  { animation-delay: 0.20s; }
.gallery-item:nth-child(5)  { animation-delay: 0.25s; }
.gallery-item:nth-child(6)  { animation-delay: 0.30s; }
.gallery-item:nth-child(7)  { animation-delay: 0.35s; }
.gallery-item:nth-child(8)  { animation-delay: 0.40s; }
.gallery-item:nth-child(9)  { animation-delay: 0.45s; }
.gallery-item:nth-child(10) { animation-delay: 0.50s; }
.gallery-item:nth-child(11) { animation-delay: 0.10s; }
.gallery-item:nth-child(12) { animation-delay: 0.15s; }
.gallery-item:nth-child(13) { animation-delay: 0.20s; }
.gallery-item:nth-child(14) { animation-delay: 0.25s; }
.gallery-item:nth-child(15) { animation-delay: 0.30s; }
.gallery-item:nth-child(16) { animation-delay: 0.35s; }
.gallery-item:nth-child(17) { animation-delay: 0.40s; }
.gallery-item:nth-child(18) { animation-delay: 0.45s; }
.gallery-item:nth-child(19) { animation-delay: 0.50s; }
.gallery-item:nth-child(20) { animation-delay: 0.55s; }

/* Image */
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transform: scale(1.04);
    transition: transform 0.55s var(--gallery-transition), filter 0.55s ease;
    will-change: transform;
}

/* Hover */
.gallery-item:hover {
    transform: translateY(-6px) scale(1.015);
    box-shadow:
        0 28px 60px rgba(0, 0, 0, 0.75),
        0 0 0 1px var(--gallery-border-hover),
        0 0 30px rgba(249, 115, 22, 0.2);
    border-color: var(--gallery-border-hover);
}

.gallery-item:hover img {
    transform: scale(1.12);
    filter: saturate(1.25) brightness(0.88);
}

/* Overlay */
.gallery-item__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(2, 6, 23, 0.9) 0%,
        rgba(2, 6, 23, 0.5) 45%,
        transparent 100%
    );
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 1.25rem;
    opacity: 0;
    transition: opacity 0.35s ease;
}

.gallery-item:hover .gallery-item__overlay {
    opacity: 1;
}

.gallery-item__overlay-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.35rem;
    transform: translateY(14px);
    transition: transform 0.4s var(--gallery-spring);
    color: #fff;
    font-size: 0.82rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.gallery-item:hover .gallery-item__overlay-inner {
    transform: translateY(0);
}

.gallery-item__overlay-inner i {
    font-size: 1.35rem;
    color: var(--gallery-accent);
    filter: drop-shadow(0 0 8px rgba(249, 115, 22, 0.7));
    animation: iconPulse 2s ease-in-out infinite;
}

@keyframes iconPulse {
    0%, 100% { transform: scale(1); }
    50%       { transform: scale(1.15); }
}

/* Shimmer effect on hover */
.gallery-item__shimmer {
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(
        105deg,
        transparent 20%,
        rgba(255, 255, 255, 0.08) 50%,
        transparent 80%
    );
    transform: skewX(-15deg);
    transition: left 0s;
    pointer-events: none;
}

.gallery-item:hover .gallery-item__shimmer {
    left: 160%;
    transition: left 0.65s ease;
}

/* Filtered out state */
.gallery-item--hidden {
    opacity: 0;
    transform: scale(0.9) translateY(20px);
    pointer-events: none;
    transition: opacity 0.35s ease, transform 0.35s ease;
}

.gallery-item--visible {
    opacity: 1;
    transform: scale(1) translateY(0);
    transition: opacity 0.45s ease, transform 0.45s var(--gallery-spring);
}

/* ---- LIGHTBOX --------------------------------------------- */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    visibility: hidden;
    pointer-events: none;
}

.lightbox--open {
    visibility: visible;
    pointer-events: all;
}

.lightbox__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(2, 6, 23, 0.97);
    backdrop-filter: blur(24px) saturate(0.5);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.lightbox--open .lightbox__backdrop {
    opacity: 1;
}

.lightbox__panel {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    max-width: 100vw;
    max-height: 100vh;
    opacity: 0;
    transform: scale(0.95) translateY(20px);
    transition: opacity 0.4s ease, transform 0.4s var(--gallery-spring);
}

.lightbox--open .lightbox__panel {
    opacity: 1;
    transform: scale(1) translateY(0);
}

/* Toolbar */
.lightbox__toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid var(--gallery-border);
    flex-shrink: 0;
}

.lightbox__meta {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.lightbox__caption {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    color: var(--gallery-text);
    font-style: italic;
}

.lightbox__counter {
    font-size: 0.78rem;
    letter-spacing: 0.12em;
    color: var(--gallery-text-muted);
    text-transform: uppercase;
}

.lightbox__controls {
    display: flex;
    gap: 0.5rem;
}

.lightbox__ctrl-btn {
    width: 2.4rem;
    height: 2.4rem;
    border-radius: 50%;
    border: 1px solid var(--gallery-border);
    background: rgba(15, 23, 42, 0.8);
    color: var(--gallery-text);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    transition: background 0.25s, border-color 0.25s, transform 0.25s var(--gallery-spring);
}

.lightbox__ctrl-btn:hover {
    background: var(--gallery-accent);
    border-color: var(--gallery-accent);
    transform: scale(1.1);
}

.lightbox__ctrl-btn--close:hover {
    background: #ef4444;
    border-color: #ef4444;
}

/* Stage (image area) */
.lightbox__stage {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    min-height: 0;
}

.lightbox__img-wrap {
    position: relative;
    max-width: calc(100vw - 120px);
    max-height: calc(100vh - 180px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox__image {
    display: block;
    max-width: 100%;
    max-height: calc(100vh - 180px);
    object-fit: contain;
    border-radius: 0.75rem;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.8);
    opacity: 0;
    transition: opacity 0.35s ease;
    user-select: none;
    cursor: zoom-in;
}

.lightbox__image--loaded {
    opacity: 1;
}

.lightbox__image--zoomed {
    cursor: zoom-out;
    transform: scale(1.85);
    transition: transform 0.4s var(--gallery-spring), opacity 0.35s ease;
}

/* Loader */
.lightbox__loader {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transition: opacity 0.3s;
}

.lightbox__loader--hidden {
    opacity: 0;
    pointer-events: none;
}

.lightbox__spinner {
    width: 2.5rem;
    height: 2.5rem;
    border: 2px solid var(--gallery-border);
    border-top-color: var(--gallery-accent);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Navigation arrows */
.lightbox__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    border: 1px solid var(--gallery-border);
    background: rgba(15, 23, 42, 0.7);
    color: var(--gallery-text);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition:
        background 0.25s,
        border-color 0.25s,
        transform 0.3s var(--gallery-spring);
    z-index: 2;
    backdrop-filter: blur(8px);
}

.lightbox__nav:hover {
    background: var(--gallery-accent);
    border-color: var(--gallery-accent);
}

.lightbox__nav--prev {
    left: 1rem;
}
.lightbox__nav--prev:hover {
    transform: translateY(-50%) translateX(-3px);
}

.lightbox__nav--next {
    right: 1rem;
}
.lightbox__nav--next:hover {
    transform: translateY(-50%) translateX(3px);
}

/* Image transition states */
.lightbox__image--exit-left {
    animation: imgExitLeft 0.3s ease forwards;
}
.lightbox__image--exit-right {
    animation: imgExitRight 0.3s ease forwards;
}
.lightbox__image--enter-left {
    animation: imgEnterLeft 0.35s var(--gallery-spring) forwards;
}
.lightbox__image--enter-right {
    animation: imgEnterRight 0.35s var(--gallery-spring) forwards;
}

@keyframes imgExitLeft  { to { opacity: 0; transform: translateX(-60px) scale(0.95); } }
@keyframes imgExitRight { to { opacity: 0; transform: translateX( 60px) scale(0.95); } }
@keyframes imgEnterLeft  { from { opacity: 0; transform: translateX( 60px) scale(0.95); } to { opacity: 1; transform: none; } }
@keyframes imgEnterRight { from { opacity: 0; transform: translateX(-60px) scale(0.95); } to { opacity: 1; transform: none; } }

/* Filmstrip */
.lightbox__filmstrip {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    overflow-x: auto;
    scrollbar-width: none;
    flex-shrink: 0;
    border-top: 1px solid var(--gallery-border);
}

.lightbox__filmstrip::-webkit-scrollbar {
    display: none;
}

.lightbox__thumb {
    flex-shrink: 0;
    width: 52px;
    height: 40px;
    border-radius: 0.4rem;
    overflow: hidden;
    border: 2px solid transparent;
    cursor: pointer;
    opacity: 0.5;
    transition: opacity 0.25s, border-color 0.25s, transform 0.25s var(--gallery-spring);
}

.lightbox__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.lightbox__thumb:hover {
    opacity: 0.85;
    transform: translateY(-3px);
}

.lightbox__thumb--active {
    border-color: var(--gallery-accent);
    opacity: 1;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 0 12px rgba(249, 115, 22, 0.6);
}

/* ---- SCROLL REVEAL ---------------------------------------- */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.7s ease, transform 0.7s var(--gallery-spring);
}

.reveal-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ---- RESPONSIVE ------------------------------------------- */
@media (max-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        grid-auto-rows: 160px;
    }
}

@media (max-width: 720px) {
    .gallery-hero {
        min-height: 75vh;
    }
    .gallery-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-auto-rows: 150px;
    }
    .lightbox__filmstrip {
        display: none;
    }
    .lightbox__img-wrap {
        max-width: calc(100vw - 80px);
    }
    .lightbox__nav {
        width: 2.4rem;
        height: 2.4rem;
        font-size: 0.85rem;
    }
    .lightbox__nav--prev { left: 0.4rem; }
    .lightbox__nav--next { right: 0.4rem; }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: minmax(0, 1fr);
        grid-auto-rows: 200px;
    }
    .gallery-hero__title {
        font-size: 3rem;
    }
    .filter-bar {
        gap: 0.35rem;
    }
    .filter-btn {
        padding: 0.4rem 0.85rem;
        font-size: 0.78rem;
    }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    .gallery-hero__bg,
    .gallery-item,
    .gallery-item img,
    .lightbox__panel,
    .lightbox__image {
        animation: none !important;
        transition: none !important;
    }
}

/* ================= ACTIVITIES PAGE ================= */

/* Hero */
.activities-hero {
    position: relative;
    padding: 6rem 0 4.5rem;
    background: url("images/activities-hero.avif") center/cover no-repeat;
    color: #f9fafb;
}

.activities-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom right, rgba(15, 23, 42, 0.93), rgba(15, 23, 42, 0.65));
}

.activities-hero__content {
    position: relative;
    max-width: 640px;
}

.activities-hero__title {
    font-family: var(--font-heading);
    font-size: clamp(2.4rem, 4vw, 3rem);
    margin: 0 0 0.5rem;
}

.activities-hero__subtitle {
    margin: 0 0 1rem;
    color: var(--color-text-muted);
}

.activities-hero__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    font-size: 0.85rem;
}

.activities-hero__tags span {
    padding: 0.35rem 0.9rem;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.95);
    border: 1px solid rgba(148, 163, 184, 0.55);
}

/* Header */
.activities-header {
    margin-bottom: 2.4rem;
}

/* Grid */
.activities-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.8rem;
}

/* Activity card */
.activity-card {
    background: rgba(15, 23, 42, 0.98);
    border-radius: 1.4rem;
    overflow: hidden;
    border: 1px solid rgba(148, 163, 184, 0.45);
    box-shadow: 0 22px 60px rgba(15, 23, 42, 0.98);
    display: flex;
    flex-direction: column;
    transition: transform 220ms ease-out, box-shadow 220ms ease-out, border-color 220ms ease-out;
}

.activity-card:hover {
    transform: translateY(-6px);
    border-color: rgba(249, 115, 22, 0.8);
    box-shadow: 0 28px 80px rgba(15, 23, 42, 1);
}

.activity-card__image-wrap {
    position: relative;
    height: 210px;
    overflow: hidden;
}

.activity-card__image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.04);
    transition: transform 220ms ease-out, filter 220ms ease-out;
}

.activity-card:hover .activity-card__image-wrap img {
    transform: scale(1.1);
    filter: saturate(1.15);
}

/* Price badge */
.activity-card__badge {
    position: absolute;
    top: 0.9rem;
    left: 0.9rem;
    padding: 0.32rem 0.9rem;
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 600;
    background: radial-gradient(circle at top left, rgba(249, 115, 22, 0.98), rgba(180, 83, 9, 0.98));
    color: #fefce8;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.8);
}

/* Body */
.activity-card__body {
    padding: 1.1rem 1.25rem 1.3rem;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}

.activity-card__title-row {
    display: flex;
    justify-content: space-between;
    gap: 0.75rem;
    align-items: center;
}

.activity-card__title-row h3 {
    margin: 0;
    font-size: 1.05rem;
    color: #f9fafb;
}

/* Tags */
.activity-tag {
    padding: 0.25rem 0.75rem;
    border-radius: 999px;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border: 1px solid rgba(148, 163, 184, 0.7);
    background: rgba(15, 23, 42, 0.9);
    color: #e5e7eb;
}

.activity-tag--family { border-color: #22c55e; color: #bbf7d0; }
.activity-tag--thrill  { border-color: #f97316; color: #fed7aa; }
.activity-tag--splash  { border-color: #0ea5e9; color: #bae6fd; }
.activity-tag--kids    { border-color: #a855f7; color: #e9d5ff; }
.activity-tag--adventure{ border-color: #facc15; color: #fef9c3; }
.activity-tag--race    { border-color: #ef4444; color: #fecaca; }
.activity-tag--team    { border-color: #14b8a6; color: #a5f3fc; }

.activity-card__body p {
    margin: 0;
    font-size: 0.95rem;
    color: var(--color-text-muted);
}

/* Meta list */
.activity-card__meta {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem 0.9rem;
    font-size: 0.86rem;
    color: #e5e7eb;
}

.activity-card__meta li i {
    margin-right: 0.3rem;
    color: #f97316;
}

/* Go-Kart pricing block */
.activity-pricing {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.6rem;
    padding: 0.65rem 0.75rem;
    margin: 0.2rem 0 0.4rem;
    border-radius: 0.9rem;
    background: rgba(15, 23, 42, 0.9);
    border: 1px dashed rgba(249, 115, 22, 0.7);
    font-size: 0.86rem;
}

.activity-pricing strong {
    display: block;
    color: #fed7aa;
    margin-bottom: 0.1rem;
}

/* Notes section */
.activities-notes {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.8rem;
}

.activities-notes__title {
    margin: 0 0 0.5rem;
    font-size: 1rem;
    color: #f9fafb;
}

/* Responsive */
@media (max-width: 1024px) {
    .activities-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .activities-notes {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 720px) {
    .activities-hero {
        padding: 5rem 0 3.5rem;
    }

    .activities-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .activities-notes {
        grid-template-columns: minmax(0, 1fr);
    }
}

/* ================= REVIEWS PAGE ================= */

/* ── HERO ── */
.reviews-hero {
    position: relative;
    min-height: 58vh;
    display: flex;
    align-items: center;
    padding: 7rem 0 5rem;
    background: url("images/reviews-hero.avif") center/cover no-repeat;
    color: #fff;
    overflow: hidden;
}

.reviews-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
    background-size: 180px;
    pointer-events: none;
    z-index: 2;
    animation: reviewsGrain 0.4s steps(2) infinite;
}

@keyframes reviewsGrain {
    0%   { transform: translate(0, 0); }
    25%  { transform: translate(-2px, 2px); }
    50%  { transform: translate(2px, -2px); }
    75%  { transform: translate(-1px, -1px); }
    100% { transform: translate(1px, 1px); }
}

.reviews-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(2, 6, 23, 0.95) 0%,
        rgba(15, 23, 42, 0.80) 55%,
        rgba(25, 12, 3, 0.88) 100%
    );
    z-index: 1;
}

.reviews-hero__content {
    position: relative;
    z-index: 3;
    max-width: 620px;
}

.reviews-hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #f97316;
    margin-bottom: 1.2rem;
    opacity: 0;
    animation: rhFadeUp 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.15s forwards;
}

.reviews-hero__eyebrow::before {
    content: "";
    display: block;
    width: 24px;
    height: 1.5px;
    background: #f97316;
}

.reviews-hero__title {
    font-family: var(--font-heading);
    font-size: clamp(2.4rem, 5.5vw, 4.2rem);
    line-height: 1.1;
    margin: 0 0 1rem;
    opacity: 0;
    animation: rhFadeUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.3s forwards;
}

.reviews-hero__title em {
    font-style: italic;
    color: #f97316;
}

.reviews-hero__subtitle {
    font-size: 1rem;
    line-height: 1.75;
    color: rgba(248, 250, 252, 0.65);
    max-width: 460px;
    margin: 0 0 2rem;
    opacity: 0;
    animation: rhFadeUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.45s forwards;
}

.reviews-hero__score {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 1.4rem;
    background: rgba(15, 23, 42, 0.82);
    border: 1px solid rgba(249, 115, 22, 0.35);
    border-radius: 999px;
    backdrop-filter: blur(12px);
    opacity: 0;
    animation: rhFadeUp 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.6s forwards;
}

.reviews-hero__score-num {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: #f97316;
    line-height: 1;
}

.reviews-hero__score-detail {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.reviews-hero__score-stars {
    display: flex;
    gap: 3px;
}

.reviews-hero__score-stars i {
    color: #f97316;
    font-size: 0.7rem;
}

.reviews-hero__score-label {
    font-size: 0.7rem;
    letter-spacing: 0.08em;
    color: #94a3b8;
}

.reviews-hero__scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    width: 1px;
    height: 52px;
    background: linear-gradient(to bottom, #f97316, transparent);
    opacity: 0;
    animation: rhFadeUp 0.5s ease 1.1s forwards, rhScrollPulse 2s ease-in-out 1.6s infinite;
}

@keyframes rhScrollPulse {
    0%, 100% { opacity: 0.4; transform: translateX(-50%) scaleY(1); }
    50%       { opacity: 1;   transform: translateX(-50%) scaleY(1.18); }
}

@keyframes rhFadeUp {
    from { opacity: 0; transform: translateY(18px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ── INTRO STRIP ── */
.reviews-intro {
    padding: 3.5rem 0 2rem;
    text-align: center;
}

.reviews-intro__label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.7rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #f97316;
    margin-bottom: 0.8rem;
}

.reviews-intro__title {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    color: #f9fafb;
    margin-bottom: 0.65rem;
}

.reviews-intro__sub {
    font-size: 0.95rem;
    color: #94a3b8;
    max-width: 480px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ── REVIEWS GRID ── */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    padding-bottom: 1rem;
}

/* ── REVIEW CARD ── */
.review-card {
    position: relative;
    background: #0f172a;
    padding: 2rem 1.8rem 1.6rem;
    border-radius: 1.4rem;
    border: 1px solid rgba(148, 163, 184, 0.1);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    opacity: 0;
    transform: translateY(36px) scale(0.97);
    transition:
        opacity 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        transform 0.65s cubic-bezier(0.34, 1.56, 0.64, 1),
        box-shadow 0.4s ease,
        border-color 0.35s ease;
}

.review-card.is-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.review-card:nth-child(2) { transition-delay: 0.08s; }
.review-card:nth-child(3) { transition-delay: 0.15s; }
.review-card:nth-child(4) { transition-delay: 0.22s; }
.review-card:nth-child(5) { transition-delay: 0.29s; }

.review-card:hover {
    border-color: rgba(249, 115, 22, 0.4);
    box-shadow:
        0 28px 70px rgba(0, 0, 0, 0.7),
        0 0 0 1px rgba(249, 115, 22, 0.25),
        0 0 32px rgba(249, 115, 22, 0.1);
    transform: translateY(-6px) scale(1.01);
}

/* Decorative quote watermark */
.review-card::before {
    content: "\201C";
    position: absolute;
    top: -0.3rem;
    right: 1.4rem;
    font-family: var(--font-heading);
    font-size: 7rem;
    line-height: 1;
    color: rgba(249, 115, 22, 0.08);
    pointer-events: none;
    transition: color 0.35s;
}

.review-card:hover::before {
    color: rgba(249, 115, 22, 0.15);
}

/* Top shimmer line on hover */
.review-card::after {
    content: "";
    position: absolute;
    top: 0;
    left: 15%;
    right: 15%;
    height: 1.5px;
    background: linear-gradient(to right, transparent, #f97316, transparent);
    border-radius: 999px;
    opacity: 0;
    transition: opacity 0.35s;
}

.review-card:hover::after {
    opacity: 1;
}

/* Stars */
.review-stars {
    display: flex;
    gap: 3px;
    margin-bottom: 1rem;
}

.review-stars i {
    color: #f97316;
    font-size: 0.85rem;
    transition: transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.review-card:hover .review-stars i { transform: scale(1.2); }
.review-card:hover .review-stars i:nth-child(1) { transition-delay: 0.00s; }
.review-card:hover .review-stars i:nth-child(2) { transition-delay: 0.04s; }
.review-card:hover .review-stars i:nth-child(3) { transition-delay: 0.08s; }
.review-card:hover .review-stars i:nth-child(4) { transition-delay: 0.12s; }
.review-card:hover .review-stars i:nth-child(5) { transition-delay: 0.16s; }

/* Quote text */
.review-card__quote {
    font-size: 0.97rem;
    line-height: 1.75;
    color: rgba(248, 250, 252, 0.78);
    position: relative;
    z-index: 1;
    margin-bottom: 1.4rem;
}

/* Profile */
.review-profile {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    padding-top: 1.2rem;
    border-top: 1px solid rgba(148, 163, 184, 0.1);
}

.review-profile img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #f97316;
    box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.15);
    transition: box-shadow 0.3s, transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.review-card:hover .review-profile img {
    box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.3);
    transform: scale(1.06);
}

.review-profile__text strong {
    display: block;
    font-size: 0.9rem;
    color: #f9fafb;
    font-weight: 600;
}

.review-profile__text span {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.78rem;
    color: #94a3b8;
    margin-top: 0.15rem;
}

.review-profile__text span i {
    color: #f97316;
    font-size: 0.6rem;
}

/* ── FEATURED CARD ── */
.review-card--featured {
    grid-column: span 2;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 1.5rem;
    align-items: center;
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    border-color: rgba(249, 115, 22, 0.2);
}

.review-card--featured .review-card__body {
    flex: 1;
}

.review-card--featured .review-card__quote {
    font-size: 1.08rem;
    font-style: italic;
    font-family: var(--font-heading);
    color: rgba(248, 250, 252, 0.88);
}

.review-card--featured .review-profile {
    flex-direction: column;
    text-align: center;
    border-top: none;
    padding-top: 0;
    border-left: 1px solid rgba(148, 163, 184, 0.1);
    padding-left: 1.5rem;
    min-width: 130px;
}

.review-card--featured .review-profile img {
    width: 64px;
    height: 64px;
}

.review-card--featured .review-profile__text span {
    justify-content: center;
}

/* ── PLATFORM BADGES ── */
.review-platforms {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    padding: 2.5rem 0 0.5rem;
}

.platform-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.55rem 1.1rem;
    background: rgba(15, 23, 42, 0.8);
    border: 1px solid rgba(148, 163, 184, 0.15);
    border-radius: 999px;
    font-size: 0.78rem;
    color: #94a3b8;
    backdrop-filter: blur(8px);
    transition:
        border-color 0.25s,
        color 0.25s,
        transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.platform-badge i {
    color: #f97316;
    font-size: 0.85rem;
}

.platform-badge:hover {
    border-color: rgba(249, 115, 22, 0.4);
    color: #f9fafb;
    transform: translateY(-2px);
}

/* ── RESPONSIVE ── */
@media (max-width: 820px) {
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    .review-card--featured {
        grid-column: span 1;
        grid-template-columns: 1fr;
    }
    .review-card--featured .review-profile {
        flex-direction: row;
        text-align: left;
        border-left: none;
        border-top: 1px solid rgba(148, 163, 184, 0.1);
        padding-left: 0;
        padding-top: 1rem;
        min-width: unset;
    }
    .review-card--featured .review-profile__text span {
        justify-content: flex-start;
    }
}

@media (max-width: 480px) {
    .reviews-hero {
        min-height: 50vh;
        padding: 6rem 0 4rem;
    }
}

/* ================= EVENTS PAGE ================= */

/* Hero */
.events-hero {
    position: relative;
    padding: 6rem 0 4.5rem;
    background: url("images/events-hero.avif") center/cover no-repeat;
    color: #f9fafb;
}

.events-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom right, rgba(15,23,42,.92), rgba(15,23,42,.6));
}

.events-hero__content {
    position: relative;
    max-width: 720px;
}

.events-hero__eyebrow {
    font-size: .85rem;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: #fed7aa;
    margin-bottom: .6rem;
}

.events-hero__eyebrow i {
    margin-right: .4rem;
    color: #f97316;
}

.events-hero__title {
    font-family: var(--font-heading);
    font-size: clamp(2.4rem, 4vw, 3rem);
    margin: 0 0 .6rem;
}

.events-hero__subtitle {
    margin: 0 0 1.4rem;
    color: var(--color-text-muted);
    max-width: 40rem;
}

.events-hero__cta {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
    margin-bottom: 1.8rem;
}

/* Hero stats */
.events-hero__stats {
    display: flex;
    flex-wrap: wrap;
    gap: 1.4rem;
}

.events-stat {
    padding: .7rem 1rem;
    border-radius: 1rem;
    background: rgba(15,23,42,.9);
    border: 1px solid rgba(148,163,184,.45);
    box-shadow: 0 18px 40px rgba(15,23,42,.9);
    min-width: 120px;
}

.events-stat__number {
    display: block;
    font-size: 1.4rem;
    font-weight: 600;
    color: #fefce8;
}

.events-stat__label {
    display: block;
    font-size: .78rem;
    color: #9ca3af;
}

/* Scroll hint */
.events-hero__scroll {
    position: absolute;
    bottom: 1.8rem;
    left: 50%;
    transform: translateX(-50%);
    font-size: .8rem;
    color: #9ca3af;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .25rem;
    pointer-events: none;
}

.events-hero__scroll i {
    animation: bounceDown 1.4s infinite;
}

@keyframes bounceDown {
    0%, 100% { transform: translateY(0); opacity: .7; }
    50% { transform: translateY(6px); opacity: 1; }
}

/* Event types */
.events-types-header {
    margin-bottom: 2.2rem;
}

.events-types-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0,1fr));
    gap: 1.8rem;
}

.event-type-card {
    background: rgba(15,23,42,.98);
    border-radius: 1.4rem;
    overflow: hidden;
    border: 1px solid rgba(148,163,184,.4);
    box-shadow: 0 22px 55px rgba(15,23,42,.98);
    display: grid;
    grid-template-columns: 1.2fr 2fr;
    min-height: 220px;
    transition: transform .22s ease-out, box-shadow .22s ease-out, border-color .22s ease-out;
}

.event-type-card:hover {
    transform: translateY(-6px);
    border-color: rgba(249,115,22,.75);
    box-shadow: 0 28px 80px rgba(15,23,42,1);
}

.event-type-card__image {
    position: relative;
    overflow: hidden;
}

.event-type-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.04);
    transition: transform .25s ease-out, filter .25s ease-out;
}

.event-type-card:hover .event-type-card__image img {
    transform: scale(1.09);
    filter: saturate(1.2);
}

.event-type-card__icon {
    position: absolute;
    bottom: .75rem;
    left: .75rem;
    width: 2.3rem;
    height: 2.3rem;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(15,23,42,.9);
    border: 1px solid rgba(248,250,252,.6);
    color: #f97316;
    font-size: 1rem;
}

.event-type-card__body {
    padding: 1.1rem 1.2rem 1.3rem;
    display: flex;
    flex-direction: column;
    gap: .55rem;
}

.event-type-card__body h3 {
    margin: 0;
    font-size: 1.05rem;
    color: #f9fafb;
}

.event-type-card__body p {
    margin: 0;
    font-size: .95rem;
    color: var(--color-text-muted);
}

.event-type-card__body ul {
    list-style: none;
    padding: 0;
    margin: .4rem 0 0;
    display: grid;
    gap: .25rem;
    font-size: .86rem;
    color: #e5e7eb;
}

.event-type-card__body ul li::before {
    content: "• ";
    color: #f97316;
}

/* Venues */
.events-venues-header {
    margin-bottom: 2.2rem;
}

.venues-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0,1fr));
    gap: 1.8rem;
}

.venue-card {
    background: #020617;
    border-radius: 1.4rem;
    overflow: hidden;
    border: 1px solid rgba(148,163,184,.45);
    box-shadow: 0 22px 60px rgba(15,23,42,.98);
    display: flex;
    flex-direction: column;
    transition: transform .22s ease-out, box-shadow .22s ease-out, border-color .22s ease-out;
}

.venue-card:hover {
    transform: translateY(-5px);
    border-color: rgba(249,115,22,.8);
    box-shadow: 0 26px 80px rgba(15,23,42,1);
}

.venue-card__image {
    position: relative;
    height: 210px;
    overflow: hidden;
}

.venue-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.04);
    transition: transform .25s ease-out, filter .25s ease-out;
}

.venue-card:hover .venue-card__image img {
    transform: scale(1.08);
    filter: saturate(1.18);
}

.venue-chip {
    position: absolute;
    top: .85rem;
    left: .9rem;
    padding: .25rem .8rem;
    border-radius: 999px;
    font-size: .75rem;
    background: rgba(15,23,42,.92);
    border: 1px solid rgba(248,250,252,.6);
    color: #e5e7eb;
}

.venue-chip--outdoor {
    border-color: #4ade80;
    color: #bbf7d0;
}

.venue-card__body {
    padding: 1.1rem 1.3rem 1.4rem;
    display: flex;
    flex-direction: column;
    gap: .6rem;
}

.venue-card__body h3 {
    margin: 0;
    font-size: 1.02rem;
    color: #f9fafb;
}

.venue-card__body p {
    margin: 0;
    font-size: .95rem;
    color: var(--color-text-muted);
}

.venue-meta {
    display: flex;
    flex-wrap: wrap;
    gap: .6rem 1.1rem;
    font-size: .86rem;
    color: #e5e7eb;
}

.venue-meta span i {
    margin-right: .25rem;
    color: #f97316;
}

.venue-actions {
    margin-top: .8rem;
    display: flex;
    flex-wrap: wrap;
    gap: .6rem;
}

/* Packages */
.packages-header {
    margin-bottom: 2rem;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0,1fr));
    gap: 1.6rem;
}

.package-card {
    background: rgba(15,23,42,.98);
    border-radius: 1.4rem;
    padding: 1.3rem 1.3rem 1.5rem;
    border: 1px solid rgba(148,163,184,.4);
    box-shadow: 0 20px 55px rgba(15,23,42,.98);
    position: relative;
    display: flex;
    flex-direction: column;
    gap: .65rem;
    transition: transform .22s ease-out, box-shadow .22s ease-out, border-color .22s ease-out;
}

.package-card:hover {
    transform: translateY(-6px);
    border-color: rgba(249,115,22,.75);
    box-shadow: 0 26px 80px rgba(15,23,42,1);
}

.package-card--highlight {
    background: radial-gradient(circle at top left, rgba(249,115,22,.18), rgba(15,23,42,1));
    border-color: rgba(249,115,22,.7);
}

.package-card__badge {
    position: absolute;
    top: .9rem;
    right: 1rem;
    padding: .25rem .8rem;
    border-radius: 999px;
    font-size: .75rem;
    letter-spacing: .08em;
    text-transform: uppercase;
    background: rgba(15,23,42,.96);
    border: 1px solid rgba(248,250,252,.5);
    color: #e5e7eb;
}

.package-card__badge--highlight {
    background: #f97316;
    border-color: #fed7aa;
    color: #0f172a;
}

.package-card h3 {
    margin: 1.1rem 0 .1rem;
    font-size: 1.02rem;
    color: #f9fafb;
}

.package-card__tagline {
    margin: 0;
    font-size: .9rem;
    color: #e5e7eb;
}

.package-list {
    list-style: none;
    padding: 0;
    margin: .4rem 0 .3rem;
    display: grid;
    gap: .25rem;
    font-size: .87rem;
    color: #e5e7eb;
}

.package-list li i {
    margin-right: .35rem;
    color: #f97316;
}

.package-note {
    margin: .25rem 0 .5rem;
    font-size: .8rem;
    color: #9ca3af;
}

.btn--full {
    width: 100%;
    text-align: center;
}

.packages-footnote {
    margin-top: 1.7rem;
    font-size: .82rem;
    color: #9ca3af;
}

/* Responsive */
@media (max-width: 1024px) {
    .events-types-grid {
        grid-template-columns: minmax(0,1fr);
    }
    .venues-grid {
        grid-template-columns: minmax(0,1fr);
    }
    .packages-grid {
        grid-template-columns: repeat(2, minmax(0,1fr));
    }
}

@media (max-width: 768px) {
    .events-hero {
        padding: 5.2rem 0 3.6rem;
    }

    .event-type-card {
        grid-template-columns: minmax(0,1fr);
    }

    .events-hero__stats {
        gap: 1rem;
    }
}

@media (max-width: 640px) {
    .packages-grid {
        grid-template-columns: minmax(0,1fr);
    }
}