/* CSS Variables */
:root {
    --color-teal: #2A7F8E;
    --color-teal-dark: #1E626E;
    --color-teal-overlay: rgba(42, 127, 142, 0.25);
    --color-white: #FFFFFF;
    --color-cream: #F9F9F7;
    --color-gray-dark: #222222;
    --color-gray-light: #F0F0F0;
    --color-accent: #C7B08B;

    --font-heading: 'Montserrat', sans-serif;
    --font-serif: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;

    --radius-soft: 8px;
    --transition-smooth: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Reset & Setup */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html.lenis {
    height: auto;
}

.lenis.lenis-smooth {
    scroll-behavior: auto;
}

.lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
}

.lenis.lenis-stopped {
    overflow: hidden;
}

/* Custom Cursor Base */
body.custom-cursor-active {
    font-family: var(--font-body);
    color: var(--color-gray-dark);
    background-color: var(--color-white);
    line-height: 1.6;
    overflow-x: hidden;
    cursor: none;
    /* Hide default cursor */
}

/* Global Custom Cursor Styles */
.cursor-dot {
    position: fixed;
    top: 0;
    left: 0;
    width: 6px;
    height: 6px;
    background-color: var(--color-teal);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    z-index: 10000;
    pointer-events: none;
    transition: opacity 0.3s;
}

.cursor-outline {
    position: fixed;
    top: 0;
    left: 0;
    width: 30px;
    height: 30px;
    border: 1px solid var(--color-teal);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    z-index: 10000;
    pointer-events: none;
    transition: width 0.3s, height 0.3s, background-color 0.3s, opacity 0.3s;
}

.cursor-outline.hover-active {
    width: 60px;
    height: 60px;
    background-color: var(--color-teal-overlay);
    border-color: transparent;
}

/* Hide cursor on mobile or touch devices */
@media (max-width: 1024px) {
    body.custom-cursor-active {
        cursor: auto;
    }

    .cursor-dot,
    .cursor-outline {
        display: none;
    }
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 500;
}

.font-serif {
    font-family: var(--font-serif);
    font-weight: 400;
    font-style: italic;
}

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

img {
    max-width: 100%;
    display: block;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.text-center {
    text-align: center;
}

.mb-0 {
    margin-bottom: 0 !important;
}

.mt-4 {
    margin-top: 1.5rem !important;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 32px;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: var(--radius-soft);
    transition: var(--transition-smooth);
    border: none;
    cursor: none;
}

.btn-teal {
    background-color: var(--color-teal);
    color: var(--color-white);
}

.btn-teal:hover {
    background-color: var(--color-teal-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(42, 127, 142, 0.2);
}

.btn-teal.hover-invert:hover {
    background-color: var(--color-white);
    color: var(--color-teal);
}

.btn-outline-white {
    background-color: transparent;
    color: var(--color-white);
    border: 1px solid var(--color-white);
}

.btn-outline-white:hover {
    background-color: var(--color-white);
    color: var(--color-teal);
}

/* Utilities */
.char {
    display: inline-block;
}

.word {
    display: inline-block;
    overflow: hidden;
}

/* Artistic Preloader */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.8s ease;
}

.preloader-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--color-teal);
    z-index: -1;
    transform-origin: top;
    transition: backdrop-filter 1s ease;
}

.preloader-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.preloader-logo {
    width: 80px;
    margin-bottom: 24px;
    opacity: 0;
    transform: translateY(20px);
    filter: brightness(0) invert(1);
}

.preloader-text-wrap {
    display: flex;
    gap: 16px;
    font-family: var(--font-heading);
    color: var(--color-white);
    font-size: 1.2rem;
    letter-spacing: 4px;
    margin-bottom: 30px;
}

.preloader-text {
    opacity: 0;
    transform: translateY(10px);
    display: inline-block;
}

.loading-line-wrapper {
    width: 200px;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.2);
    overflow: hidden;
}

.loading-line {
    width: 0%;
    height: 100%;
    background-color: var(--color-white);
}

/* Floating Elegant Header */
header {
    position: fixed;
    top: 20px;
    left: 0;
    width: 100%;
    z-index: 100;
    transition: var(--transition-smooth);
    padding: 0 20px;
}

.header-wrapper {
    max-width: 1300px;
    margin: 0 auto;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    border-radius: 50px;
    padding: 10px 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: var(--transition-smooth);
}

header.scrolled {
    top: 10px;
}

header.scrolled .header-container {
    padding: 6px 24px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    background-color: rgba(255, 255, 255, 0.98);
}

.logo img {
    height: 80px;
    transition: var(--transition-smooth);
}

header.scrolled .logo img {
    height: 42px;
}

.desktop-nav a {
    margin: 0 16px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-gray-dark);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.desktop-nav a:hover {
    color: var(--color-accent);
}

.header-btn {
    padding: 10px 24px;
    font-size: 0.8rem;
    border-radius: 30px;
}

/* Hamburger */
.hamburger {
    display: none;
    background: none;
    border: none;
    width: 30px;
    height: 20px;
    position: relative;
    z-index: 101;
    cursor: none;
}

.hamburger span {
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: var(--color-gray-dark);
    transition: var(--transition-smooth);
}

.hamburger span:nth-child(1) {
    top: 0;
}

.hamburger span:nth-child(2) {
    top: 9px;
}

.hamburger span:nth-child(3) {
    top: 18px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg);
    top: 9px;
    background-color: var(--color-teal);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg);
    top: 9px;
    background-color: var(--color-teal);
}

/* Mobile Nav */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--color-white);
    z-index: 99;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-smooth);
}

.mobile-menu.active {
    opacity: 1;
    pointer-events: auto;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
}

.mobile-nav a {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--color-teal);
    font-weight: 500;
}

/* 1. HERO BANNER */
.hero-banner {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg,
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transform: scale(1.05);
    transition: opacity 2.5s ease, transform 12s linear;
}

.hero-slide.active {
    opacity: 1;
    transform: scale(1.15);
    z-index: 1;
}

.hero-overlay {
    background: linear-gradient(to bottom, rgba(42, 127, 142, 0.1), rgba(0, 0, 0, 0.5));
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: var(--color-white);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-logo-svg {
    margin-bottom: 24px;
}

.hero-headline {
    font-size: 3.5rem;
    letter-spacing: 14px;
    font-weight: 200;
    font-family: var(--font-heading);
    margin-bottom: 24px;
    line-height: 1.3;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.hero-subheadline {
    font-size: 1.25rem;
    font-weight: 300;
    margin-bottom: 40px;
    opacity: 0.9;
    letter-spacing: 1px;
}

.scroll-down-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--color-white);
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 2;
    opacity: 0.7;
    animation: bounce 2s infinite;
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.scroll-down-indicator i {
    font-size: 1.5rem;
    margin-bottom: 8px;
}

@keyframes bounce {

    0%,
    100% {
        transform: translate(-50%, 0);
    }

    50% {
        transform: translate(-50%, 10px);
    }
}

/* Shared Section Styles */
.section-title {
    font-size: 3rem;
    color: var(--color-teal);
    margin-bottom: 24px;
}

.section-desc {
    font-size: 1.15rem;
    color: var(--color-gray-dark);
    line-height: 1.8;
    opacity: 0.8;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--color-gray-dark);
    margin-bottom: 60px;
    font-style: italic;
}

/* 2. THE CONCEPT */
.concept-section {
    padding: 140px 0;
    background-color: var(--color-cream);
    position: relative;
    overflow: hidden;
}

.concept-container {
    display: flex;
    align-items: center;
    gap: 80px;
}

.concept-left {
    flex: 1;
}

.image-wrapper {
    position: relative;
    border-radius: var(--radius-soft);
    overflow: hidden;
    height: 650px;
}

.concept-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.concept-right {
    flex: 1;
    position: relative;
    padding-left: 40px;
}

.teal-line {
    background-color: var(--color-teal);
    position: absolute;
    transform-origin: left;
}

.teal-line.horizontal {
    width: 80px;
    height: 1.5px;
    top: -30px;
    left: 40px;
}

.teal-line.vertical {
    width: 1.5px;
    height: 120px;
    top: -30px;
    left: 20px;
    transform-origin: top;
}

/* 3. THE STORY */
.story-section {
    padding: 140px 0;
    background-color: var(--color-white);
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
}

.story-title {
    font-size: 4rem;
    color: var(--color-teal-dark);
    margin-bottom: 30px;
    line-height: 1;
}

.story-divider {
    width: 100px;
    height: 2px;
    background-color: var(--color-accent);
    margin-bottom: 30px;
}

.story-text {
    font-size: 1.15rem;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.8;
}

.story-images {
    position: relative;
    height: 600px;
}

.img-large {
    width: 80%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-soft);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.img-small {
    width: 50%;
    height: 60%;
    object-fit: cover;
    border-radius: var(--radius-soft);
    position: absolute;
    bottom: -40px;
    right: 0;
    z-index: 2;
    box-shadow: -10px -10px 40px rgba(0, 0, 0, 0.1);
}

/* 4. THE EXPERIENCE (Suites Slider) */
.suites-section {
    padding: 120px 0 0 0;
    background-color: var(--color-cream);
    overflow: hidden;
}

.suitesSwiper {
    width: 100%;
    height: 85vh;
    min-height: 600px;
    margin-top: 40px;
}

.suite-slide {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.slide-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.2) 100%);
}

.slide-content {
    position: relative;
    z-index: 2;
    color: var(--color-white);
    padding-left: 5%;
    width: 100%;
}

.slide-title {
    font-size: 4rem;
    margin-bottom: 16px;
    line-height: 1;
}

.slide-meta {
    display: flex;
    gap: 24px;
    font-size: 1rem;
    margin-bottom: 24px;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-family: var(--font-heading);
}

.slide-meta i {
    color: var(--color-accent);
    font-size: 1.2rem;
    vertical-align: middle;
    margin-right: 4px;
}

.slide-desc {
    font-size: 1.2rem;
    max-width: 500px;
    line-height: 1.8;
    opacity: 0.9;
    margin-bottom: 20px;
}

.suite-nav {
    color: var(--color-white);
}

.swiper-pagination-bullet {
    background: var(--color-white);
    opacity: 0.5;
}

.swiper-pagination-bullet-active {
    background: var(--color-white);
    opacity: 1;
}

/* 5. CULINARY DINING SECTION */
.dining-section {
    padding: 140px 0;
    background-color: var(--color-white);
}

.dining-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.dining-content {
    padding-right: 20px;
}

.dining-swiper-container {
    width: 100%;
    max-width: 600px;
    margin-top: 40px;
}

.diningSwiper {
    width: 100%;
    padding-bottom: 40px;
}

.dining-subimg {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: var(--radius-soft);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.diningSwiper .swiper-pagination-bullet {
    background: var(--color-teal);
    opacity: 0.3;
}

.diningSwiper .swiper-pagination-bullet-active {
    opacity: 1;
}

.dining-video-container {
    display: flex;
    justify-content: flex-end;
}

.video-frame {
    background-color: var(--color-cream);
    padding: 10px;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    display: inline-block;
    max-width: 330px;
    width: 100%;
}

.video-frame iframe {
    border-radius: 12px;
}

/* 6. THE VISUAL JOURNEY (BENTO GRID) */
.gallery-section {
    padding: 140px 0;
    background-color: var(--color-cream);
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 250px;
    gap: 20px;
    margin-top: 50px;
}

.bento-item {
    border-radius: var(--radius-soft);
    overflow: hidden;
    position: relative;
    cursor: none;
}

.bento-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease, opacity 2s ease-in-out;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
}

.bento-item img.active {
    opacity: 1;
    z-index: 1;
}

.bento-item:hover img.active {
    transform: scale(1.05);
}

.span-2 {
    grid-column: span 2;
}

.row-2 {
    grid-row: span 2;
}

/* Lightbox */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(25, 25, 25, 0.98);
    backdrop-filter: blur(10px);
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
    cursor: none;
}

.lightbox.active {
    opacity: 1;
    pointer-events: auto;
}

.lightbox-close {
    position: absolute;
    top: 40px;
    right: 40px;
    font-size: 2.5rem;
    color: var(--color-white);
    cursor: none;
}

.lightbox-close:hover {
    color: var(--color-accent);
    transform: rotate(90deg);
}

.lightbox-img {
    max-width: 90%;
    max-height: 90%;
    border-radius: var(--radius-soft);
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
}

/* 7. SIGNATURE SERVICES */
.services-section {
    padding: 140px 0;
    background-color: var(--color-white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 40px;
}

.service-card {
    text-align: center;
    padding: 50px 30px;
    background-color: var(--color-cream);
    border-radius: var(--radius-soft);
    transition: var(--transition-smooth);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.02);
    opacity: 0;
    transform: translateY(30px);
}

.service-icon {
    font-size: 3.5rem;
    color: var(--color-teal);
    margin-bottom: 30px;
}

.service-title {
    font-size: 1.6rem;
    margin-bottom: 20px;
    color: var(--color-teal-dark);
}

.service-desc {
    color: var(--color-gray-dark);
    font-size: 1.05rem;
}

/* 8. TESTIMONIALS */
.testimonials-section {
    padding: 120px 0;
    background-color: var(--color-teal);
    color: var(--color-white);
}

.testimonials-section .section-title {
    color: var(--color-white);
    font-size: 3.5rem;
}

.testimonials-icon {
    font-size: 4rem;
    color: var(--color-accent);
    opacity: 0.5;
    margin-bottom: 10px;
    display: block;
}

.testSwiper {
    width: 100%;
    max-width: 800px;
    margin: 40px auto 0;
    padding-bottom: 60px;
}

.test-slide {
    text-align: center;
}

.test-quote {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    line-height: 1.6;
    margin-bottom: 30px;
    font-style: italic;
}

.test-author {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-accent);
}

.testSwiper .swiper-pagination-bullet {
    background: var(--color-white);
}

/* 9. INSTAGRAM FEED */
.instagram-section {
    padding: 120px 0;
    background-color: var(--color-white);
}

.ig-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 60px;
}

.ig-title {
    display: flex;
    flex-direction: column;
}

.ig-handle {
    font-family: var(--font-heading);
    color: var(--color-accent);
    font-weight: 500;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 8px;
}

.ig-handle:hover {
    color: var(--color-teal);
}

.max-w-sm {
    max-width: 400px;
    text-align: right;
}

.ig-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
}

.ig-item {
    position: relative;
    border-radius: var(--radius-soft);
    overflow: hidden;
    aspect-ratio: 1/1;
    display: block;
    opacity: 0;
    transform: scale(0.95);
}

.ig-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.ig-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(42, 127, 142, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: var(--transition-smooth);
}

.ig-overlay i {
    color: var(--color-white);
    font-size: 2.5rem;
    transform: scale(0);
    transition: var(--transition-smooth);
    transition-delay: 0.1s;
}

.ig-item:hover img {
    transform: scale(1.1);
}

.ig-item:hover .ig-overlay {
    opacity: 1;
}

.ig-item:hover .ig-overlay i {
    transform: scale(1);
}

/* 10. LOCATION & MAP */
.location-section {
    padding: 140px 0;
    background-color: var(--color-cream);
}

.location-container {
    display: flex;
    gap: 60px;
    align-items: stretch;
}

.location-sidebar {
    width: 350px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.address-box {
    margin-bottom: 40px;
}

.address-box i {
    font-size: 2rem;
    color: var(--color-teal);
    margin-bottom: 16px;
    display: block;
}

.address-box p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--color-gray-dark);
}

.destinations-list {
    list-style: none;
}

.destinations-list li {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    align-items: flex-start;
}

.destinations-list i {
    font-size: 1.8rem;
    color: var(--color-accent);
    margin-top: 4px;
}

.dest-info strong {
    display: block;
    font-family: var(--font-heading);
    color: var(--color-teal-dark);
    margin-bottom: 6px;
    font-size: 1.1rem;
}

.dest-info span {
    font-size: 1rem;
    color: #666;
}

.map-container {
    flex: 1;
    height: 500px;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    filter: sepia(20%) hue-rotate(140deg) saturate(120%) brightness(90%) contrast(90%);
    transition: var(--transition-smooth);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.map-container:hover {
    filter: none;
}

/* 11. BOOKING OTAs */
.ota-section {
    background-color: var(--color-teal-dark);
    padding: 100px 0;
}

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

.ota-subtitle {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.2rem;
    margin-top: 10px;
    margin-bottom: 50px;
}

.ota-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.ota-card {
    background-color: var(--color-white);
    border-radius: var(--radius-soft);
    padding: 24px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 300px;
    transition: var(--transition-smooth);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    gap: 16px;
}

.ota-logo {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--color-cream);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

.ota-logo.true-brand {
    background-color: transparent !important;
}

.ota-logo i {
    font-size: 1.2rem !important;
    color: var(--color-teal) !important;
}

.ota-name {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-teal-dark);
    flex: 1;
}

.ota-card>i {
    font-size: 1.5rem;
    color: var(--color-accent);
    transition: transform 0.3s;
}

.ota-card:hover {
    transform: translateY(-8px);
}

.ota-card:hover>i {
    transform: translateX(8px);
}

/* 12. FOOTER */
.site-footer {
    background-color: #164C56;
    padding: 80px 0 40px;
    color: var(--color-white);
    position: relative;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 40px;
}

.footer-contact-info {
    text-align: center;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.05rem;
    line-height: 1.8;
}

.footer-contact-info strong {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--color-white);
    display: inline-block;
    margin-bottom: 8px;
    font-weight: 500;
}

.footer-logo img {
    height: 60px;
    opacity: 0.9;
}

.social-links {
    display: flex;
    gap: 20px;
}

.social-links a {
    font-size: 1.8rem;
    color: rgba(255, 255, 255, 0.8);
}

.social-links a:hover {
    color: var(--color-accent);
    transform: translateY(-4px);
}

.sticky-mobile-btn {
    display: none;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 20px;
}

.copyright {
    opacity: 0.6;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

/* Responsive */
@media (max-width: 1024px) {
    .header-wrapper {
        padding: 0 10px;
    }

    .story-grid,
    .dining-grid {
        grid-template-columns: 1fr;
    }

    .story-images {
        height: 500px;
        margin-top: 40px;
    }

    .dining-video-container {
        justify-content: center;
        margin-top: 40px;
    }

    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .concept-container,
    .location-container {
        flex-direction: column;
    }

    .concept-left,
    .location-sidebar {
        width: 100%;
    }

    .image-wrapper {
        height: 500px;
    }

    .ig-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .max-w-sm {
        text-align: left;
        max-width: 100%;
    }

    .ig-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .suite-slide .slide-content {
        padding: 0 24px;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .slide-desc {
        text-align: center;
    }
}

@media (max-width: 768px) {
    header {
        top: 0;
        padding: 0;
    }

    .header-container {
        border-radius: 0;
        padding: 16px 20px;
    }

    .desktop-nav,
    .header-btn {
        display: none;
    }

    .hamburger {
        display: block;
    }

    .hero-headline {
        font-size: 2.5rem;
    }

    .slide-title {
        font-size: 2.5rem;
    }

    .bento-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 300px;
    }

    .span-2,
    .row-2 {
        grid-column: span 1;
        grid-row: span 1;
    }

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

    .ig-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-content {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }

    .sticky-mobile-btn {
        display: block;
        position: fixed;
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
        width: 90%;
        text-align: center;
        z-index: 100;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    }
}