/* Chaitanya Resort — Konkan editorial theme (Outfit + Fraunces) */

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --ink: #0c1222;
    --ink-soft: #3d4a5c;
    --paper: #f6f3ee;
    --cream: #fffcf7;
    --sea: #0d4f5c;
    --sea-light: #1a7a8c;
    --coral: #e85d4c;
    --coral-dark: #c94a3b;
    --gold: #c9a227;
    --line: rgba(12, 18, 34, 0.08);
    --shadow: 0 20px 50px rgba(12, 18, 34, 0.12);
    --shadow-sm: 0 8px 24px rgba(12, 18, 34, 0.08);
    --radius: 20px;
    --radius-sm: 12px;
    --font-sans: 'Outfit', system-ui, sans-serif;
    --font-display: 'Fraunces', Georgia, serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    color: var(--ink);
    line-height: 1.65;
    background: var(--paper);
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: var(--font-display);
    font-weight: 600;
    line-height: 1.15;
    letter-spacing: -0.02em;
}

em {
    font-style: italic;
    color: var(--sea-light);
}

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 22px;
}

/* ——— Site header ——— */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
}

.booking-strip {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem 1.5rem;
    flex-wrap: wrap;
    padding: 0.65rem 0;
}

.booking-strip--hero {
    padding-top: 0;
    padding-bottom: 0.35rem;
}

.booking-strip--hero .booking-strip-label {
    color: rgba(255, 255, 255, 0.88);
    text-shadow: 0 1px 12px rgba(0, 0, 0, 0.35);
}

.hero-booking {
    margin-bottom: 1.5rem;
    max-width: 640px;
}

.hero-booking .booking-ota {
    box-shadow: 0 10px 32px rgba(0, 0, 0, 0.28);
}

.hero-booking .booking-ota:hover {
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.32);
}

/* Hero OTA: desktop — align with headline column, equal cards, grouped layout */
@media (min-width: 521px) {
    .hero-booking .booking-strip--hero {
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        gap: 0.75rem;
        padding: 1rem 1.2rem;
        background: rgba(12, 18, 34, 0.42);
        backdrop-filter: blur(14px);
        -webkit-backdrop-filter: blur(14px);
        border-radius: 16px;
        border: 1px solid rgba(255, 255, 255, 0.14);
        box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
    }

    .hero-booking .booking-strip-label {
        letter-spacing: 0.16em;
    }

    .hero-booking .booking-ota-row {
        justify-content: stretch;
        align-items: stretch;
        flex: none;
        width: 100%;
        gap: 0.65rem;
    }

    .hero-booking .booking-ota {
        flex: 1 1 0;
        min-width: 0;
        max-width: none;
        padding: 0.65rem 1rem 0.65rem 1.1rem;
        border-radius: 12px;
    }

    .hero-booking .booking-ota-brand {
        gap: 0.6rem;
    }

    .hero-booking .logo-mmt-type,
    .hero-booking .logo-goibibo-type {
        font-size: 0.95rem;
    }

    .hero-booking .booking-ota-cta {
        font-size: 0.78rem;
    }
}

.booking-strip-label {
    margin: 0;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--ink-soft);
}

.booking-ota-row {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    justify-content: flex-end;
    gap: 0.75rem;
    flex: 1 1 auto;
}

.booking-ota {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex: 1 1 248px;
    max-width: 360px;
    min-width: min(100%, 248px);
    padding: 0.55rem 1.05rem 0.55rem 1.15rem;
    border-radius: 14px;
    text-decoration: none;
    color: var(--ink);
    background: #fff;
    border: 1px solid var(--line);
    box-shadow: var(--shadow-sm);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.booking-ota:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.booking-ota--mmt:hover {
    border-color: rgba(0, 168, 232, 0.4);
}

.booking-ota--goibibo:hover {
    border-color: rgba(227, 30, 36, 0.4);
}

.booking-ota-brand {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    min-width: 0;
}

.logo-mmt-mark {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 3px;
    width: 24px;
    flex-shrink: 0;
}

.logo-mmt-mark__bar {
    display: block;
    height: 4px;
    border-radius: 2px;
}

.logo-mmt-mark__bar--blue {
    background: #00a8e8;
}

.logo-mmt-mark__bar--red {
    background: #ff3b30;
}

.logo-mmt-type {
    font-family: var(--font-sans);
    font-weight: 800;
    font-size: 1.02rem;
    letter-spacing: -0.045em;
    line-height: 1;
    white-space: nowrap;
}

.logo-mmt-type__b {
    color: #00a8e8;
}

.logo-mmt-type__r {
    color: #ff3b30;
}

.logo-goibibo-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.55rem;
    height: 1.55rem;
    border-radius: 50%;
    background: linear-gradient(145deg, #ff4755 0%, #e31e24 55%, #c41218 100%);
    color: #fff;
    font-family: var(--font-sans);
    font-weight: 800;
    font-size: 0.95rem;
    line-height: 1;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(227, 30, 36, 0.35);
}

.logo-goibibo-type {
    font-family: var(--font-sans);
    font-weight: 800;
    font-size: 1.02rem;
    letter-spacing: -0.03em;
    line-height: 1;
    color: #e31e24;
    white-space: nowrap;
}

.booking-ota-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--sea);
    white-space: nowrap;
}

.booking-ota-cta i {
    font-size: 0.68rem;
    opacity: 0.88;
}

.booking-ota--goibibo .booking-ota-cta {
    color: #b81920;
}

/* ——— Nav ——— */
.navbar {
    background: rgba(246, 243, 238, 0.88);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--line);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.85rem 0;
    flex-wrap: wrap;
}

.brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: inherit;
}

.brand-mark {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: linear-gradient(145deg, var(--sea) 0%, var(--sea-light) 100%);
    box-shadow: var(--shadow-sm);
    position: relative;
}

.brand-mark::after {
    content: '';
    position: absolute;
    inset: 8px;
    border-radius: 6px;
    border: 2px solid rgba(255, 255, 255, 0.35);
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.brand-name {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.15rem;
    color: var(--ink);
}

.brand-tag {
    font-size: 0.7rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--ink-soft);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 1.35rem;
    align-items: center;
    flex-wrap: wrap;
}

.nav-menu a {
    text-decoration: none;
    color: var(--ink-soft);
    font-weight: 500;
    font-size: 0.9rem;
    position: relative;
    padding: 0.25rem 0;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--sea);
}

.nav-menu a.active::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background: var(--coral);
    border-radius: 2px;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 0.65rem;
}

.nav-phone {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.5rem 0.85rem;
    border-radius: 999px;
    background: var(--cream);
    border: 1px solid var(--line);
    text-decoration: none;
    color: var(--ink);
    font-weight: 600;
    font-size: 0.88rem;
}

.nav-phone i {
    color: var(--sea);
    font-size: 0.85rem;
}

.nav-wa {
    padding: 0.5rem 1rem;
    border-radius: 999px;
    background: #25d366;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
}

.nav-wa:hover {
    filter: brightness(1.05);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 8px;
}

.hamburger span {
    width: 24px;
    height: 2px;
    background: var(--sea);
    border-radius: 2px;
    transition: 0.25s ease;
}

/* ——— Hero ——— */
.hero {
    position: relative;
    min-height: 92vh;
    display: flex;
    align-items: center;
    color: #fff;
    overflow: hidden;
}

.hero-media {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-media video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-scrim {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(105deg, rgba(12, 18, 34, 0.82) 0%, rgba(13, 79, 92, 0.55) 48%, rgba(12, 18, 34, 0.45) 100%);
}

.hero-pattern {
    position: absolute;
    inset: 0;
    z-index: 1;
    opacity: 0.07;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 60L60 0M-15 15L15 -15M45 75L75 45' stroke='%23fff' stroke-width='1' fill='none'/%3E%3C/svg%3E");
    pointer-events: none;
}

.hero-layout {
    position: relative;
    z-index: 2;
    padding: 6rem 22px 5rem;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: stretch;
}

.hero-copy {
    max-width: 640px;
}

.hero-eyebrow {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 1rem;
}

.hero-title {
    font-size: clamp(2.1rem, 5vw, 3.6rem);
    margin-bottom: 1.25rem;
    text-shadow: 0 2px 30px rgba(0, 0, 0, 0.35);
}

.hero-title em {
    color: #9ee8f0;
}

.hero-lead {
    font-size: 1.08rem;
    opacity: 0.92;
    margin-bottom: 1.5rem;
    max-width: 520px;
}

.hero-highlights {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem 1.5rem;
    margin-bottom: 2rem;
    font-size: 0.92rem;
    opacity: 0.9;
}

.hero-highlights li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.hero-highlights i {
    color: var(--gold);
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.scroll-hint {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.4rem;
    animation: bounce 2.2s infinite;
    text-decoration: none;
}

/* ——— Buttons ——— */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.85rem 1.5rem;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.92rem;
    text-decoration: none;
    border: 2px solid transparent;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s, background 0.2s, color 0.2s;
    font-family: var(--font-sans);
}

.btn-primary {
    background: var(--coral);
    color: #fff;
    border-color: var(--coral);
}

.btn-primary:hover {
    background: var(--coral-dark);
    border-color: var(--coral-dark);
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(232, 93, 76, 0.35);
}

.btn-whatsapp {
    background: #25d366;
    border-color: #25d366;
    color: #fff;
}

.btn-whatsapp:hover {
    background: #1da851;
    border-color: #1da851;
    box-shadow: 0 12px 28px rgba(37, 211, 102, 0.35);
}

.btn-ghost {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.45);
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.22);
}

.btn-outline {
    background: transparent;
    color: #fff;
    border-color: rgba(255, 255, 255, 0.5);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.12);
}

.btn-light {
    background: #fff;
    color: var(--sea);
    border-color: #fff;
}

.btn-light:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.btn-outline-light {
    background: transparent;
    color: #fff;
    border-color: rgba(255, 255, 255, 0.65);
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
}

.btn-block {
    width: 100%;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--sea);
    font-weight: 600;
    text-decoration: none;
    margin-top: 0.5rem;
}

.text-link:hover {
    color: var(--coral);
}

/* ——— Sections ——— */
.section-head {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 3rem;
}

.section-label {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--coral);
    margin-bottom: 0.6rem;
}

.section-title {
    font-size: clamp(1.85rem, 4vw, 2.75rem);
    color: var(--ink);
    margin-bottom: 0.75rem;
}

.section-subtitle {
    color: var(--ink-soft);
    font-size: 1.05rem;
}

.section-head--on-dark .section-title {
    color: #fff;
}

.section-head--on-dark .section-subtitle {
    color: rgba(255, 255, 255, 0.82);
}

/* ——— Features bento ——— */
.features {
    padding: 5.5rem 0;
    background: var(--cream);
}

.bento {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 1.25rem;
}

.bento-card {
    grid-column: span 4;
    background: #fff;
    border-radius: var(--radius);
    padding: 2rem 1.75rem;
    border: 1px solid var(--line);
    box-shadow: var(--shadow-sm);
    transition: transform 0.25s, box-shadow 0.25s;
}

.bento-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.bento-wide {
    grid-column: span 8;
}

.bento-accent {
    grid-column: span 4;
    background: linear-gradient(160deg, var(--sea) 0%, #0a3d47 100%);
    color: #fff;
    border: none;
}

.bento-accent h3 {
    color: #fff;
}

.bento-accent p {
    color: rgba(255, 255, 255, 0.88);
}

.bento-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: rgba(13, 79, 92, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--sea);
    margin-bottom: 1.1rem;
}

.bento-accent .bento-icon {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
}

.bento-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.65rem;
    color: var(--ink);
}

.bento-card p {
    color: var(--ink-soft);
    font-size: 0.95rem;
}

/* ——— About ——— */
.about-preview {
    padding: 5.5rem 0;
    background: var(--paper);
}

.about-split {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 3.5rem;
    align-items: center;
}

.about-visual {
    position: relative;
}

.about-frame {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 3px solid #fff;
}

.about-img {
    width: 100%;
    height: min(520px, 70vh);
    object-fit: cover;
    display: block;
}

.about-stat-card {
    position: absolute;
    bottom: -1.25rem;
    right: 1.5rem;
    background: #fff;
    padding: 1rem 1.25rem;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow);
    border: 1px solid var(--line);
    max-width: 240px;
}

.about-stat-card strong {
    display: block;
    font-family: var(--font-display);
    color: var(--sea);
    font-size: 1rem;
}

.about-stat-card span {
    font-size: 0.82rem;
    color: var(--ink-soft);
}

.about-text .section-label {
    margin-bottom: 0.5rem;
}

.about-text h2 {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    margin-bottom: 1.25rem;
    color: var(--ink);
}

.about-text p {
    color: var(--ink-soft);
    margin-bottom: 1rem;
    font-size: 1.02rem;
}

/* ——— Gallery ——— */
.gallery-section {
    padding: 5.5rem 0;
    background: var(--cream);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1rem;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-sm);
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.06);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(13, 79, 92, 0.72);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    font-size: 2rem;
    color: #fff;
}

/* ——— Video ——— */
.video-section {
    padding: 5.5rem 0;
    background: #fff;
}

.video-wrapper {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    max-width: 920px;
    margin: 0 auto;
    max-height: 60vh;
}

.video-wrapper video {
    width: 100%;
    height: auto;
    max-height: 60vh;
    min-height: 200px;
    object-fit: contain;
    display: block;
    background: #000;
}

.location-video-wrapper {
    margin-top: 3.5rem;
    text-align: center;
}

.location-video-wrapper h3 {
    font-size: 1.5rem;
    color: var(--sea);
    margin-bottom: 1.5rem;
}

.location-video-wrapper .video-wrapper {
    max-height: 50vh;
}

/* ——— Amenities ——— */
.amenities {
    padding: 5.5rem 0;
    background: linear-gradient(165deg, var(--sea) 0%, #083540 100%);
    color: #fff;
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.25rem;
}

.amenity-item {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius);
    padding: 2rem 1.5rem;
    text-align: center;
    transition: background 0.25s, transform 0.25s;
}

.amenity-item:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-3px);
}

.amenity-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #9ee8f0;
}

.amenity-item h3 {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.amenity-item p {
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.92rem;
}

/* ——— Information ——— */
.information-section {
    padding: 5.5rem 0;
    background: var(--paper);
}

.information-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.25rem;
}

.info-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 2rem 1.5rem;
    border: 1px solid var(--line);
    box-shadow: var(--shadow-sm);
    transition: transform 0.2s, box-shadow 0.2s;
}

.info-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.info-icon {
    font-size: 2rem;
    color: var(--coral);
    margin-bottom: 1rem;
}

.info-card h3 {
    color: var(--sea);
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
}

.info-card p {
    color: var(--ink-soft);
    font-size: 0.95rem;
    line-height: 1.7;
}

.info-card strong {
    color: var(--ink);
}

/* ——— Map ——— */
.map-section {
    padding: 5.5rem 0;
    background: var(--cream);
}

.map-wrapper {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid var(--line);
}

.map-wrapper iframe {
    width: 100%;
    height: 450px;
    display: block;
    border: 0;
}

/* ——— Contact ——— */
.contact-section {
    padding: 5.5rem 0;
    background: #fff;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.25rem;
}

.contact-card {
    background: var(--paper);
    border-radius: var(--radius);
    padding: 1.75rem;
    border: 1px solid var(--line);
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.contact-card--primary {
    background: linear-gradient(145deg, var(--sea) 0%, var(--sea-light) 100%);
    color: #fff;
    border: none;
}

.contact-card--primary h3,
.contact-card--primary p {
    color: rgba(255, 255, 255, 0.92);
}

.contact-card-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(13, 79, 92, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--sea);
    font-size: 1.1rem;
}

.contact-card--primary .contact-card-icon {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
}

.contact-card-icon--wa {
    background: rgba(37, 211, 102, 0.15);
    color: #128c7e;
}

.contact-card h3 {
    font-size: 1.15rem;
    color: var(--ink);
}

.contact-card p {
    font-size: 0.92rem;
    color: var(--ink-soft);
    flex-grow: 1;
}

.contact-big {
    font-size: 1.35rem;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    font-family: var(--font-sans);
}

.contact-big:hover {
    text-decoration: underline;
}

.contact-link {
    color: var(--sea);
    font-weight: 600;
    text-decoration: none;
}

.contact-link:hover {
    color: var(--coral);
}

.contact-card .btn-whatsapp,
.contact-card .btn-primary {
    margin-top: auto;
}

.contact-card--map .btn-outline {
    border-color: var(--sea);
    color: var(--sea);
}

.contact-card--map .btn-outline:hover {
    background: var(--sea);
    color: #fff;
}

/* ——— CTA ——— */
.cta {
    padding: 4.5rem 0;
    background: var(--ink);
    color: #fff;
    text-align: center;
}

.cta-inner h2 {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    color: #fff;
    margin-bottom: 0.75rem;
}

.cta-inner p {
    opacity: 0.85;
    margin-bottom: 1.75rem;
    font-size: 1.05rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ——— Footer ——— */
.footer {
    background: #080c14;
    color: rgba(255, 255, 255, 0.78);
    padding: 3.5rem 0 1.5rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2.5rem;
    margin-bottom: 2.5rem;
}

.footer-section h3,
.footer-section h4 {
    color: #fff;
    font-family: var(--font-display);
    margin-bottom: 1rem;
}

.footer-section p {
    line-height: 1.7;
    font-size: 0.92rem;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
}

.footer-section a:hover {
    color: #9ee8f0;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.72);
}

.social-links {
    display: flex;
    gap: 0.65rem;
    margin-top: 1.25rem;
}

.social-links a {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: background 0.2s, transform 0.2s;
}

.social-links a:hover {
    background: var(--coral);
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.45);
}

/* ——— Floating ——— */
.floating-buttons {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.floating-btn {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.22);
    transition: transform 0.2s, box-shadow 0.2s;
    font-size: 1.55rem;
    color: #fff;
}

.floating-btn:hover {
    transform: scale(1.08) translateY(-2px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.28);
}

.floating-btn-whatsapp {
    background: #25d366;
}

.floating-btn-location {
    background: linear-gradient(145deg, var(--sea-light) 0%, var(--sea) 100%);
}

/* ——— Modals (gallery, video) ——— */
.gallery-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    inset: 0;
    background: rgba(8, 12, 20, 0.94);
    animation: fadeIn 0.25s ease;
    overflow: auto;
}

.gallery-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal-content {
    max-width: 92%;
    max-height: 88vh;
    object-fit: contain;
    border-radius: var(--radius-sm);
    animation: zoomIn 0.25s ease;
}

.close-modal {
    position: absolute;
    top: 24px;
    right: 24px;
    color: #fff;
    font-size: 2.25rem;
    cursor: pointer;
    z-index: 2001;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.close-modal:hover {
    background: var(--coral);
}

.modal-caption {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    text-align: center;
    max-width: 90%;
}

.video-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    inset: 0;
    background: rgba(8, 12, 20, 0.94);
    overflow: auto;
}

.video-modal.active {
    display: flex !important;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.video-modal-content {
    position: relative;
    max-width: 92%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-modal-content video {
    width: 100%;
    max-width: 1000px;
    max-height: 88vh;
    border-radius: var(--radius-sm);
    background: #000;
}

.close-video-modal {
    position: absolute;
    top: 24px;
    right: 24px;
    color: #fff;
    font-size: 2.25rem;
    cursor: pointer;
    z-index: 2001;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.close-video-modal:hover {
    background: var(--coral);
}

.video-clickable {
    cursor: pointer;
    position: relative;
}

.video-clickable::before {
    content: '▶';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.75rem;
    color: rgba(255, 255, 255, 0.95);
    z-index: 2;
    pointer-events: none;
    background: rgba(0, 0, 0, 0.55);
    width: 72px;
    height: 72px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.85;
}

.video-clickable:hover::before {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.05);
}

.video-clickable video {
    position: relative;
    z-index: 1;
}

/* ——— Feedback ——— */
.feedback-section {
    padding: 5rem 0;
    background: var(--paper);
}

.feedback-form-container {
    max-width: 720px;
    margin: 0 auto 3rem;
    background: #fff;
    padding: 2.25rem;
    border-radius: var(--radius);
    border: 1px solid var(--line);
    box-shadow: var(--shadow-sm);
}

.feedback-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
    margin-bottom: 1rem;
}

.feedback-form .form-group {
    margin-bottom: 1rem;
}

.feedback-form label {
    display: block;
    margin-bottom: 0.35rem;
    font-weight: 500;
    font-size: 0.9rem;
}

.feedback-form .required {
    color: #c94a3b;
}

.feedback-form input,
.feedback-form textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    font-family: var(--font-sans);
    font-size: 1rem;
}

.feedback-form textarea {
    resize: vertical;
    min-height: 110px;
}

.feedback-form input:focus,
.feedback-form textarea:focus {
    outline: none;
    border-color: var(--sea-light);
    box-shadow: 0 0 0 3px rgba(26, 122, 140, 0.12);
}

.rating-input {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    gap: 4px;
}

.rating-input input[type="radio"] {
    display: none;
}

.rating-input label.star {
    font-size: 1.75rem;
    color: #ddd;
    cursor: pointer;
    transition: color 0.2s;
}

.rating-input label.star:hover,
.rating-input label.star:hover ~ label.star {
    color: var(--gold);
}

.rating-input input[type="radio"]:checked ~ label.star,
.rating-input input[type="radio"]:checked ~ label.star ~ label.star {
    color: var(--gold);
}

.feedbacks-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.25rem;
    margin-bottom: 2rem;
}

.feedback-card {
    background: #fff;
    padding: 1.5rem;
    border-radius: var(--radius-sm);
    border: 1px solid var(--line);
    box-shadow: var(--shadow-sm);
}

.feedback-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.75rem;
}

.feedback-name {
    font-weight: 600;
}

.feedback-rating {
    color: var(--gold);
}

.feedback-message {
    color: var(--ink-soft);
    font-size: 0.92rem;
}

.feedback-date {
    font-size: 0.8rem;
    color: #999;
    margin-top: 0.75rem;
}

.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.65rem;
    flex-wrap: wrap;
}

.pagination button {
    padding: 0.5rem 1.1rem;
    border: 2px solid var(--sea);
    background: #fff;
    color: var(--sea);
    border-radius: var(--radius-sm);
    cursor: pointer;
    font-family: var(--font-sans);
    font-weight: 500;
}

.pagination button:hover:not(:disabled) {
    background: var(--sea);
    color: #fff;
}

.pagination button:disabled {
    opacity: 0.45;
    cursor: not-allowed;
}

.pagination .page-info {
    font-weight: 500;
    color: var(--ink-soft);
}

/* ——— Spinners ——— */
.spinner {
    display: inline-block;
    margin-left: 8px;
}

.btn-primary.loading .btn-text,
.btn-secondary.loading .btn-text {
    display: none;
}

.btn-primary.loading .spinner,
.btn-secondary.loading .spinner {
    display: inline-block !important;
}

.global-spinner {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.spinner-overlay {
    position: absolute;
    inset: 0;
    background: rgba(8, 12, 20, 0.45);
    backdrop-filter: blur(3px);
}

.spinner-content {
    position: relative;
    background: #fff;
    padding: 1.75rem 2rem;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow);
    text-align: center;
    z-index: 1;
}

.spinner-content i {
    font-size: 2rem;
    color: var(--sea);
    display: block;
    margin-bottom: 0.5rem;
}

.floating-btn-whatsapp.loading {
    pointer-events: none;
    opacity: 0.75;
}

.floating-btn-whatsapp.loading i.fa-whatsapp {
    display: none;
}

.floating-btn-whatsapp.loading::after {
    content: '\f110';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    animation: fa-spin 1s infinite linear;
}

/* ——— Keyframes ——— */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes zoomIn {
    from { opacity: 0; transform: scale(0.92); }
    to { opacity: 1; transform: scale(1); }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-4px); }
}

/* ——— Responsive ——— */
@media (max-width: 1024px) {
    .bento-card,
    .bento-wide,
    .bento-accent {
        grid-column: span 6;
    }
}

@media (max-width: 900px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 0;
        flex-direction: column;
        align-items: flex-start;
        background: var(--cream);
        width: 100%;
        max-width: 320px;
        height: 100vh;
        padding: 5rem 1.5rem 2rem;
        box-shadow: var(--shadow);
        transition: left 0.3s ease;
        z-index: 999;
        gap: 0;
    }

    .nav-menu li {
        width: 100%;
        padding: 0.65rem 0;
        border-bottom: 1px solid var(--line);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-actions {
        margin-left: auto;
    }

    .hamburger {
        display: flex;
        z-index: 1001;
    }

    .hamburger.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .about-split {
        grid-template-columns: 1fr;
    }

    .about-stat-card {
        position: relative;
        bottom: auto;
        right: auto;
        margin-top: 1rem;
        max-width: none;
    }
}

@media (max-width: 520px) {
    .booking-strip {
        flex-direction: column;
        align-items: stretch;
    }

    .booking-ota-row {
        flex-direction: column;
        justify-content: stretch;
    }

    .booking-ota {
        max-width: none;
        flex: 1 1 auto;
        min-width: 0;
    }

    .logo-mmt-type,
    .logo-goibibo-type {
        font-size: 0.92rem;
    }

    .logo-goibibo-mark {
        width: 1.4rem;
        height: 1.4rem;
        font-size: 0.85rem;
    }
}

@media (max-width: 640px) {
    .nav-phone span {
        display: none;
    }

    .nav-wa {
        padding: 0.45rem 0.75rem;
        font-size: 0.8rem;
    }

    .bento-card,
    .bento-wide,
    .bento-accent {
        grid-column: span 12;
    }

    .features,
    .about-preview,
    .gallery-section,
    .video-section,
    .amenities,
    .information-section,
    .map-section,
    .contact-section,
    .feedback-section {
        padding: 3.5rem 0;
    }

    .feedback-form .form-row {
        grid-template-columns: 1fr;
    }

    .floating-buttons {
        right: 14px;
        bottom: 14px;
    }

    .floating-btn {
        width: 52px;
        height: 52px;
        font-size: 1.35rem;
    }

    .close-modal,
    .close-video-modal {
        top: 12px;
        right: 12px;
    }
}
