:root {
    --primary: #d8ad63;
    --primary-dark: #b58b47;
    --secondary: #3f7c87;
    --sand: #f5efe5;
    --mist: #eef5f6;
    --surface: #ffffff;
    --surface-soft: #f8f4ed;
    --ink: #11222c;
    --ink-soft: #35515e;
    --text: #495b64;
    --border: rgba(17, 34, 44, 0.12);
    --shadow-lg: 0 30px 80px rgba(7, 24, 32, 0.18);
    --shadow-md: 0 20px 40px rgba(7, 24, 32, 0.12);
    --shadow-sm: 0 10px 24px rgba(7, 24, 32, 0.08);
    --radius-xl: 32px;
    --radius-lg: 24px;
    --radius-md: 18px;
    --radius-sm: 12px;
    --transition: 0.35s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Manrope", sans-serif;
    color: var(--text);
    background: var(--sand);
    line-height: 1.7;
    overflow-x: hidden;
}

.container {
    padding-right: 20px;
    padding-left: 20px;
}

h1,
h2,
h3,
h4,
h5,
h6,
.display-1,
.display-2,
.display-3,
.display-4,
.display-5,
.display-6 {
    font-family: "Cormorant Garamond", serif;
    color: var(--ink);
    line-height: 1.1;
    letter-spacing: -0.02em;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--primary-dark);
}

img {
    max-width: 100%;
}

.text-primary {
    color: var(--primary) !important;
}

.bg-primary {
    background-color: var(--primary) !important;
}

.bg-dark {
    background-color: var(--ink) !important;
}

.bg-light {
    background-color: var(--surface-soft) !important;
}

.section-padding {
    padding: 88px 0;
}

.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
    color: var(--primary);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.24em;
    text-transform: uppercase;
}

.section-kicker::before {
    content: "";
    width: 44px;
    height: 1px;
    background: currentColor;
}

.section-heading {
    margin-bottom: 14px;
    font-size: clamp(2.05rem, 3.2vw, 3.35rem);
}

.section-copy {
    max-width: 620px;
    font-size: 1.05rem;
}

.surface-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.soft-panel {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(245, 239, 229, 0.96));
    border: 1px solid rgba(216, 173, 99, 0.18);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.btn {
    padding: 0.92rem 1.8rem;
    font-weight: 700;
    border-radius: 999px;
    transition: var(--transition);
}

.btn:focus {
    box-shadow: 0 0 0 0.2rem rgba(216, 173, 99, 0.2);
}

.btn-primary {
    color: #fff;
    background: linear-gradient(135deg, var(--primary), #e1c481);
    border-color: transparent;
}

.btn-primary:hover,
.btn-primary:focus {
    color: #fff;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    transform: translateY(-2px);
}

.btn-outline-light {
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.7);
    background: rgba(255, 255, 255, 0.04);
}

.btn-outline-light:hover,
.btn-outline-light:focus {
    color: var(--ink);
    background: #fff;
    border-color: #fff;
}

.btn-outline-dark {
    color: var(--ink);
    border: 1px solid rgba(17, 34, 44, 0.16);
}

.btn-outline-dark:hover,
.btn-outline-dark:focus {
    color: #fff;
    background: var(--ink);
    border-color: var(--ink);
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border-radius: 50%;
}

.btn-square {
    width: 44px;
    height: 44px;
}

.btn-sm-square {
    width: 36px;
    height: 36px;
}

.btn-lg-square {
    width: 56px;
    height: 56px;
}

.topbar {
    background: #0c1a22;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.84rem;
}

.topbar .container {
    padding-top: 12px;
    padding-bottom: 12px;
}

.topbar-item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-right: 22px;
}

.topbar-item:last-child {
    margin-right: 0;
}

.topbar-item i {
    color: var(--primary);
}

.site-navbar {
    background: rgba(8, 20, 27, 0.88);
    backdrop-filter: blur(18px);
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.08);
}

.site-navbar.navbar {
    padding-top: 0;
    padding-bottom: 0;
}

.site-navbar .container {
    min-height: 92px;
}

.site-navbar .navbar-brand {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-right: 30px;
}

.site-navbar .navbar-brand img {
    height: 64px;
    width: auto;
}

.brand-text strong {
    display: block;
    color: #fff;
    font-size: 1.1rem;
    letter-spacing: 0.02em;
}

.brand-text span {
    display: block;
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.8rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.site-navbar .navbar-nav .nav-link {
    margin-right: 0;
    padding: 34px 16px;
    color: rgba(255, 255, 255, 0.76);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.82rem;
}

.site-navbar .navbar-nav .nav-link:hover,
.site-navbar .navbar-nav .nav-link.active {
    color: #fff;
}

.site-navbar .navbar-toggler {
    width: 46px;
    height: 46px;
    display: none;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.04);
    box-shadow: none;
}

.site-navbar .navbar-toggler-icon {
    width: 22px;
    height: 22px;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255,255,255,0.95%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2.2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    background-position: center;
    background-repeat: no-repeat;
    background-size: 22px 22px;
    filter: none;
}

.nav-cta {
    margin-left: 20px;
}

.hero-section,
.inner-hero {
    position: relative;
    overflow: hidden;
    color: #fff;
}

.hero-section::before,
.inner-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(110deg, rgba(6, 17, 23, 0.54) 0%, rgba(11, 31, 40, 0.4) 45%, rgba(14, 59, 70, 0.2) 100%);
    z-index: 1;
}

.hero-media,
.inner-hero-media {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-media {
    overflow: hidden;
    background: #061117;
}

.hero-video-shell {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.hero-video-player,
.hero-video-player iframe {
    width: 100%;
    height: 100%;
}

.hero-media.video-ready .hero-video-shell {
    opacity: 1;
}

.hero-media::after {
    content: "";
    position: absolute;
    inset: -4%;
    background: url("../img/newimg/Data/vediobanner1.jpg") center center / cover no-repeat;
    animation: heroDrift 18s ease-in-out infinite alternate;
}

.hero-media.video-ready::after {
    opacity: 0.18;
}

.hero-media img,
.inner-hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-video-frame {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 177.77777778vh;
    height: 56.25vw;
    min-width: 100%;
    min-height: 100%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.hero-content,
.inner-hero-content {
    position: relative;
    z-index: 2;
}

.hero-section .container,
.inner-hero .container {
    position: relative;
    z-index: 2;
}

.hero-section .row {
    min-height: 100vh;
}

.hero-row {
    min-height: calc(100vh - 110px) !important;
    padding-top: 148px;
    padding-bottom: 70px;
}

.hero-title {
    max-width: 680px;
    margin-bottom: 16px;
    color: #fff;
    font-size: clamp(2.85rem, 5.2vw, 5rem);
}

.hero-copy {
    max-width: 580px;
    margin-bottom: 24px;
    color: rgba(255, 255, 255, 0.84);
    font-size: 1.02rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 34px;
}

.hero-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.hero-highlight {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 18px;
    color: rgba(255, 255, 255, 0.9);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    backdrop-filter: blur(12px);
}

.hero-panel {
    max-width: 430px;
    margin-left: auto;
    padding: 26px 28px;
    color: rgba(255, 255, 255, 0.82);
    background: rgba(10, 24, 31, 0.56);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: var(--radius-xl);
    backdrop-filter: blur(18px);
    box-shadow: var(--shadow-lg);
}

.hero-panel h3,
.hero-panel h4 {
    color: #fff;
}

.hero-panel h3 {
    font-size: clamp(1.85rem, 2.2vw, 2.35rem);
}

.hero-panel-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin: 28px 0;
}

.hero-panel-stat {
    padding: 18px 16px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-md);
    text-align: center;
}

.hero-panel-stat strong {
    display: block;
    margin-bottom: 6px;
    color: #fff;
    font-size: 1.2rem;
}

.hero-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.hero-list li,
.feature-list li,
.room-amenities li,
.article-points li {
    position: relative;
    margin-bottom: 12px;
    padding-left: 28px;
}

.hero-list li::before,
.feature-list li::before,
.room-amenities li::before,
.article-points li::before {
    content: "\f00c";
    position: absolute;
    top: 2px;
    left: 0;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: var(--primary);
}

.welcome-grid {
    align-items: center;
}

.welcome-visual {
    position: relative;
}

.welcome-visual .main-image {
    width: 100%;
    min-height: 560px;
    object-fit: cover;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

.floating-quote {
    position: absolute;
    right: -26px;
    bottom: 42px;
    width: min(290px, 72%);
    padding: 28px;
    color: #fff;
    background: rgba(17, 34, 44, 0.88);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.floating-quote strong {
    display: block;
    margin-bottom: 12px;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.82rem;
}

.info-tiles {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-top: 34px;
}

.info-tile {
    padding: 24px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.info-tile h4 {
    margin-bottom: 8px;
    font-size: 1.22rem;
}

.image-carousel-card,
.room-card,
.article-card,
.contact-card,
.policy-card {
    height: 100%;
}

.interior-carousel .item {
    padding: 14px;
}

.interior-carousel .gallery-frame {
    overflow: hidden;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.interior-carousel img {
    width: 100%;
    height: 420px;
    object-fit: cover;
}

.carousel-caption-card {
    width: min(760px, 92%);
    margin: 38px auto 0;
    padding: 28px;
    text-align: center;
}

.owl-carousel .owl-nav button.owl-prev,
.owl-carousel .owl-nav button.owl-next {
    width: 50px;
    height: 50px;
    color: var(--ink);
    background: rgba(255, 255, 255, 0.92) !important;
    border-radius: 50%;
    box-shadow: var(--shadow-sm);
}

.owl-carousel .owl-nav button.owl-prev:hover,
.owl-carousel .owl-nav button.owl-next:hover {
    color: #fff;
    background: var(--primary) !important;
}

.owl-carousel .owl-dots {
    margin-top: 24px;
    text-align: center;
}

.owl-carousel button.owl-dot span {
    width: 12px;
    height: 12px;
    margin: 5px;
    display: block;
    background: rgba(17, 34, 44, 0.18);
    border-radius: 50%;
    transition: var(--transition);
}

.owl-carousel button.owl-dot.active span {
    width: 34px;
    background: var(--primary);
    border-radius: 999px;
}

.story-quote {
    max-width: 900px;
    margin: 34px auto 0;
    color: var(--ink);
    text-align: center;
    font-size: 1.26rem;
}

.rooms-grid {
    gap: 30px 0;
}

.room-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

.room-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
}

.room-card-body {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 24px 24px 22px;
}

.room-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 16px 0 16px;
}

.room-meta span,
.detail-meta span,
.tag-list span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    color: var(--ink-soft);
    background: var(--surface-soft);
    border-radius: 999px;
    font-size: 0.9rem;
    font-weight: 700;
}

.room-amenities,
.feature-list,
.article-points {
    margin: 0;
    padding: 0;
    list-style: none;
}

.room-card .btn {
    margin-top: auto;
}

.rooms-grid .comparison-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.rooms-grid .comparison-card .btn {
    margin-top: auto;
}

.room-gallery-carousel {
    position: relative;
}

.room-gallery-carousel .item img {
    width: 100%;
    height: 280px;
    object-fit: cover;
}

.room-gallery-carousel .owl-dots {
    position: absolute;
    right: 0;
    bottom: 12px;
    left: 0;
    margin-top: 0;
}

.room-gallery-carousel .owl-nav {
    position: absolute;
    top: 50%;
    right: 12px;
    left: 12px;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    pointer-events: none;
}

.room-gallery-carousel .owl-nav button.owl-prev,
.room-gallery-carousel .owl-nav button.owl-next {
    width: 42px;
    height: 42px;
    color: #fff;
    background: rgba(2, 8, 12, 0.94) !important;
    border: 1px solid rgba(255, 255, 255, 0.42);
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.22);
    pointer-events: auto;
}

.room-gallery-carousel .owl-nav button.owl-prev:hover,
.room-gallery-carousel .owl-nav button.owl-next:hover {
    background: var(--primary) !important;
}

.room-gallery-carousel button.owl-dot span {
    background: rgba(255, 255, 255, 0.54);
}

.room-gallery-carousel button.owl-dot.active span {
    background: #fff;
}

.experience-strip {
    padding: 30px 34px;
    color: #fff;
    background: linear-gradient(135deg, var(--secondary), #1b4d58);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

.experience-strip .tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 18px;
}

.experience-strip .tag-list span {
    color: rgba(255, 255, 255, 0.92);
    background: rgba(255, 255, 255, 0.12);
}

.video-showcase {
    overflow: hidden;
    color: #fff;
    background: linear-gradient(135deg, #102634, #183b44 48%, #275866);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

.video-frame {
    position: relative;
    min-height: 460px;
    overflow: hidden;
    background: #061117 url("../img/newimg/Data/vediobanner1.jpg") center center / cover no-repeat;
}

.video-link-card {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    min-height: 460px;
    padding: 0;
    border: 0;
    background: transparent;
    color: #fff;
    text-align: left;
    cursor: pointer;
}

.video-link-card img {
    width: 100%;
    height: 100%;
    min-height: 460px;
    object-fit: cover;
}

.video-link-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 30px;
    text-align: left;
    background: linear-gradient(180deg, rgba(6, 17, 23, 0.26), rgba(6, 17, 23, 0.62));
}

.play-chip {
    width: 92px;
    height: 92px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #fff;
    background: rgba(216, 173, 99, 0.9);
    border-radius: 50%;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.3);
    font-size: 2.4rem;
}

.video-link-text {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.video-link-text strong {
    font-size: 1.35rem;
    letter-spacing: 0.02em;
}

.video-link-text span {
    color: rgba(255, 255, 255, 0.82);
}

.video-link-card:hover {
    color: #fff;
}

.video-link-card:hover .play-chip {
    transform: scale(1.05);
    background: #fff;
    color: var(--ink);
}

.video-content {
    padding: 48px;
}

.amenity-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.amenity-card {
    padding: 24px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.amenity-icon {
    width: 54px;
    height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    color: var(--primary);
    background: rgba(216, 173, 99, 0.12);
    border-radius: 16px;
    font-size: 1.2rem;
}

.inner-hero {
    min-height: 500px;
}

.inner-hero .container {
    padding-top: 160px;
    padding-bottom: 110px;
}

.inner-hero h1 {
    color: #fff;
    font-size: clamp(2.55rem, 5.2vw, 4.2rem);
}

.breadcrumb-lite {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 14px;
    padding: 0;
    margin: 0;
    list-style: none;
    color: rgba(255, 255, 255, 0.76);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.76rem;
}

.breadcrumb-lite li::after {
    content: "/";
    margin-left: 14px;
}

.breadcrumb-lite li:last-child::after {
    display: none;
}

.comparison-card,
.contact-card,
.policy-card,
.detail-panel {
    padding: 24px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.comparison-card .btn,
.detail-panel .btn {
    margin-top: 10px;
}

.detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 18px 0 26px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.gallery-grid a {
    display: block;
    overflow: hidden;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.gallery-grid img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: transform var(--transition);
}

.gallery-grid a:hover img {
    transform: scale(1.04);
}

.spec-grid,
.contact-grid,
.policy-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.spec-card {
    padding: 20px 22px;
    background: var(--surface-soft);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
}

.spec-card strong {
    display: block;
    color: var(--ink);
    font-size: 1.05rem;
}

.detail-columns {
    display: grid;
    grid-template-columns: 1.3fr 0.9fr;
    gap: 28px;
    align-items: start;
}

.detail-columns > div {
    align-self: start;
}

.detail-sidebar-card + .detail-sidebar-card {
    margin-top: 20px;
}

.detail-panel,
.feature-panel {
    height: auto;
}

.feature-panel {
    padding: 26px;
    background: linear-gradient(180deg, rgba(63, 124, 135, 0.08), rgba(216, 173, 99, 0.08));
    border: 1px solid rgba(63, 124, 135, 0.12);
    border-radius: var(--radius-lg);
}

.article-card {
    overflow: hidden;
    background: var(--surface);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

.article-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
}

.article-card-body {
    padding: 28px;
}

.article-section {
    padding: 34px;
    background: var(--surface);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-sm);
}

.article-section + .article-section {
    margin-top: 26px;
}

.contact-card i,
.policy-card i {
    margin-bottom: 18px;
    color: var(--primary);
    font-size: 1.8rem;
}

.contact-form,
.newsletter-form {
    display: grid;
    gap: 16px;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    color: var(--ink);
    font-weight: 700;
}

.form-control,
.form-select {
    min-height: 56px;
    padding: 14px 18px;
    color: var(--ink);
    background: var(--surface);
    border: 1px solid rgba(17, 34, 44, 0.14);
    border-radius: 16px;
    box-shadow: none;
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

.form-control:focus,
.form-select:focus {
    border-color: rgba(216, 173, 99, 0.8);
    box-shadow: 0 0 0 0.2rem rgba(216, 173, 99, 0.15);
}

.map-frame {
    display: block;
    width: 100%;
    max-width: 100%;
    height: 420px;
    min-height: 420px;
    border: 0;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

.video-modal .modal-dialog {
    max-width: 1100px;
}

.video-modal .modal-content {
    position: relative;
    overflow: hidden;
    color: #fff;
    background: #0d2029;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 28px;
}

.video-modal-close {
    position: absolute;
    top: 18px;
    right: 18px;
    z-index: 3;
}

.video-modal-poster img {
    width: 100%;
    height: 100%;
    min-height: 420px;
    object-fit: cover;
}

.video-modal-body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    padding: 42px;
}

.video-modal-body h3 {
    color: #fff;
    font-size: clamp(2rem, 2.4vw, 2.9rem);
}

.video-modal-body p {
    color: rgba(255, 255, 255, 0.78);
}

.newsletter-section {
    position: relative;
    overflow: hidden;
    margin-top: 96px;
    background: linear-gradient(rgba(7, 24, 32, 0.76), rgba(7, 24, 32, 0.72)), url("../img/newimg/ocean.jpg") center center / cover no-repeat;
}

.newsletter-section .container {
    position: relative;
    z-index: 1;
}

.newsletter-panel {
    padding: 44px;
    color: rgba(255, 255, 255, 0.84);
    background: rgba(11, 31, 40, 0.54);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-xl);
    backdrop-filter: blur(18px);
}

.newsletter-panel h2 {
    color: #fff;
}

.newsletter-form-inline {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 14px;
}

.newsletter-form-inline .form-control {
    background: rgba(255, 255, 255, 0.92);
}

.footer {
    color: rgba(255, 255, 255, 0.78);
    background: #0b1d26;
}

.footer-logo {
    max-width: 180px;
    margin-bottom: 18px;
}

.footer-title {
    margin-bottom: 18px;
    color: #fff;
    font-size: 1.7rem;
}

.footer-link,
.footer p a {
    color: rgba(255, 255, 255, 0.72);
}

.footer-link:hover {
    color: var(--primary);
}

.footer-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-list li + li {
    margin-top: 12px;
}

.footer-social {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}

.footer-social a {
    width: 46px;
    height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50%;
}

.footer-social a:hover {
    color: var(--ink);
    background: var(--primary);
}

.footer-bottom {
    padding: 24px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.policy-links {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    justify-content: flex-end;
}

.back-to-top {
    position: fixed;
    right: 26px;
    bottom: 26px;
    z-index: 99;
    display: none;
    width: 58px;
    height: 58px;
    padding: 0;
    line-height: 1;
    align-items: center;
    justify-content: center;
    color: var(--ink);
    background: linear-gradient(135deg, #f1ca82, var(--primary));
    border: 1px solid rgba(255, 255, 255, 0.42);
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.28);
}

.back-to-top.show-flex {
    display: inline-flex !important;
}

.back-to-top i {
    font-size: 1.18rem;
}

.back-to-top:hover {
    color: #fff;
    background: var(--ink);
    border-color: rgba(255, 255, 255, 0.26);
}

.whatsapp-float {
    position: fixed;
    right: 26px;
    bottom: 96px;
    z-index: 100;
    width: 58px;
    height: 58px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: #25d366;
    border-radius: 50%;
    box-shadow: 0 18px 40px rgba(37, 211, 102, 0.32);
    font-size: 1.5rem;
}

.whatsapp-float:hover {
    color: #fff;
    background: #1eae54;
    transform: translateY(-2px);
}

.call-float {
    position: fixed;
    right: 26px;
    bottom: 166px;
    z-index: 100;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 0 18px;
    height: 54px;
    color: #fff;
    background: linear-gradient(135deg, #f1ca82, var(--primary));
    border-radius: 999px;
    box-shadow: 0 18px 38px rgba(216, 173, 99, 0.34);
    font-weight: 800;
    letter-spacing: 0.02em;
}

.call-float i {
    font-size: 1rem;
}

.call-float:hover {
    color: #fff;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    transform: translateY(-2px);
}

#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0s linear 0.4s;
    z-index: 99999;
}

#spinner.show {
    opacity: 1;
    visibility: visible;
    transition: opacity 0.4s ease;
}

@media (max-width: 1199.98px) {
    .container {
        max-width: 100%;
    }

    .info-tiles,
    .amenity-grid,
    .spec-grid,
    .contact-grid,
    .policy-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .detail-columns {
        grid-template-columns: 1fr;
    }

    .site-navbar .navbar-brand img {
        height: 56px;
    }
}

@media (max-width: 991.98px) {
    .section-padding {
        padding: 74px 0;
    }

    .site-navbar .navbar-toggler {
        display: inline-flex;
    }

    .site-navbar .container {
        min-height: 84px;
    }

    .site-navbar .navbar-collapse {
        margin-top: 14px;
        padding: 22px 0 14px;
        border-top: 1px solid rgba(255, 255, 255, 0.12);
    }

    .site-navbar .navbar-nav .nav-link {
        padding: 12px 0;
    }

    .nav-cta {
        margin: 12px 0 0;
    }

    .hero-section .row,
    .hero-row {
        min-height: auto !important;
        padding-top: 140px;
        padding-bottom: 84px;
    }

    .hero-panel {
        max-width: none;
        margin-top: 34px;
    }

    .hero-panel-grid,
    .newsletter-form-inline {
        grid-template-columns: 1fr;
    }

    .welcome-visual .main-image {
        min-height: 480px;
    }

    .floating-quote {
        right: 24px;
        left: 24px;
        width: auto;
    }

    .video-content {
        padding: 28px;
    }

    .footer-bottom,
    .policy-links {
        justify-content: center;
        text-align: center;
    }
}

@media (max-width: 767.98px) {
    body {
        font-size: 0.98rem;
    }

    .section-heading {
        font-size: 2.35rem;
    }

    .hero-title {
        font-size: 2.9rem;
    }

    .hero-copy {
        font-size: 1rem;
    }

    .info-tiles,
    .amenity-grid,
    .spec-grid,
    .contact-grid,
    .policy-grid,
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .video-frame,
    .video-link-card,
    .video-link-card img {
        min-height: 320px;
    }

    .video-link-overlay {
        flex-direction: column;
        text-align: center;
    }

    .video-modal-body {
        padding: 24px;
    }

    .newsletter-panel,
    .article-section,
    .comparison-card,
    .contact-card,
    .policy-card,
    .detail-panel,
    .room-card-body,
    .video-content {
        padding: 24px;
    }

    .interior-carousel img,
    .room-card img,
    .room-gallery-carousel .item img,
    .article-card img,
    .gallery-grid img {
        height: 240px;
    }

    .whatsapp-float {
        right: 18px;
        bottom: 88px;
        width: 54px;
        height: 54px;
    }

    .call-float {
        right: 18px;
        bottom: 154px;
        padding: 0 16px;
        height: 50px;
        font-size: 0.92rem;
    }

    .back-to-top {
        right: 18px;
        bottom: 18px;
        width: 54px;
        height: 54px;
    }
}

@media (min-width: 1200px) {
    .container {
        max-width: 1280px;
    }
}

@keyframes heroDrift {
    from {
        transform: scale(1.02);
    }
    to {
        transform: scale(1.1) translate3d(-1%, -1%, 0);
    }
}
