@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;700;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Great+Vibes&display=swap');

/* =========================================
   LUXURY BASE & TYPOGRAPHY
========================================= */
:root {
    --gold: #C6A87C;
    --gold-dark: #A88B60;
    --dark: #111827;
    --darker: #0f172a;
    --cream: #f9f9f9;
    --white: #ffffff;
    --maroon: #032770; 
    --font-heading: 'Inter', sans-serif;
    --font-body: 'Inter', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
/* FIXED: Smooth scrolling added for buttons! */
html { scroll-behavior: smooth; background-color: var(--maroon); }
body { 
    background-color: var(--cream); 
    background-image: linear-gradient(135deg, rgba(198, 168, 124, 0.05) 25%, transparent 25%), linear-gradient(225deg, rgba(198, 168, 124, 0.05) 25%, transparent 25%), linear-gradient(45deg, rgba(198, 168, 124, 0.05) 25%, transparent 25%), linear-gradient(315deg, rgba(198, 168, 124, 0.05) 25%, var(--cream) 25%); 
    background-position: 10px 0, 10px 0, 0 0, 0 0; 
    background-size: 20px 20px; 
    background-repeat: repeat;
    color: var(--dark); 
    font-family: var(--font-body); 
    line-height: 1.7; 
    width: 100%; max-width: 100vw; overflow-x: hidden; 
    padding: 0 !important; margin: 0 !important; 
}
h1, h2, h3, h4 { font-family: var(--font-heading); font-weight: 700; color: var(--darker); }
a { text-decoration: none; transition: all 0.3s ease; }
img { max-width: 100%; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.text-white { color: var(--white) !important; }
.text-center { text-align: center; }
.max-w { max-width: 700px; margin: 0 auto; }

/* THEME SPECIFIC TYPOGRAPHY */
.theme-royal h1, .theme-royal h2, .theme-royal h3 { font-family: 'Playfair Display', serif; }
.theme-modern { font-family: 'Inter', sans-serif; }
.theme-modern h1, .theme-modern h2, .theme-modern h3 { font-family: 'Inter', sans-serif; font-weight: 900; letter-spacing: -1px; text-transform: uppercase; }
.theme-modern .subtitle { font-family: 'Inter', sans-serif; font-weight: 700; letter-spacing: 2px; }

/* LOGOS */
.logo-wrapper-nav { background: var(--white); border-radius: 4px; display: inline-flex; align-items: center; justify-content: center; padding: 5px 10px; height: 80px; }
#nav-logo-img { height: 70px !important; width: auto !important; display: block; mix-blend-mode: multiply; }
#nav-logo-text-img { height: 45px !important; width: auto !important; display: block; mix-blend-mode: multiply; margin-left: 15px; }
.logo-wrapper-footer {
    background-color: transparent;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 300 150' preserveAspectRatio='none'%3E%3Cpath fill='%23ffffff' d='M15,75 C25,25 100,45 150,25 C200,5 280,35 285,75 C290,115 220,135 150,140 C80,145 5,125 15,75 Z'/%3E%3Cpath fill='%23ffffff' d='M25,85 C45,45 120,55 170,35 C220,15 275,55 275,85 C275,115 200,125 130,135 C60,145 5,115 25,85 Z' opacity='0.7'/%3E%3Cpath fill='%23ffffff' d='M5,65 C35,25 120,20 180,10 C240,0 295,25 295,55 C295,85 220,110 150,120 C80,130 -15,105 5,65 Z' opacity='0.5'/%3E%3C/svg%3E");
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 0;
    box-shadow: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 30px 50px;
    height: 180px;
}
.footer-logo { height: 140px !important; width: auto !important; display: block; mix-blend-mode: multiply; transform: translateY(5px); }

/* =========================================
   SNAPPY WIPE TRANSITION (LANDO STYLE)
========================================= */
.samita-wipe-transition {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: var(--white); /* White background for dark logo */
  z-index: 999999;
  display: flex;
  justify-content: center;
  align-items: center;
  transform: translateX(-100%); 
  pointer-events: none;
  visibility: hidden;
  contain: paint;
  backface-visibility: hidden;
  -webkit-font-smoothing: antialiased;
}

.samita-wipe-transition.active {
    visibility: visible;
    transform: translateY(0) translateZ(0); /* Force GPU */
}

/* The white pill container holding the transition image */
.logo-cluster {
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0.5) translateZ(0);
  max-width: 90%;
}

.wipe-logo {
  height: 200px; 
  width: auto;
  object-fit: contain;
  will-change: transform;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .logo-cluster {
    border-radius: 30px;
    padding: 15px 25px;
  }
  .wipe-logo {
    height: 50px;
  }
}

/* --------------------------------------
   ANIMATION: LEAVING THE PAGE
--------------------------------------- */
.samita-wipe-transition.wipe-in {
  pointer-events: auto;
  animation: sweepRightIn 0.8s cubic-bezier(0.77, 0, 0.175, 1) forwards;
}

.samita-wipe-transition.wipe-in .logo-cluster {
  animation: sweepInScale 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0.2s both;
}

/* --------------------------------------
   ANIMATION: ENTERING THE NEW PAGE
--------------------------------------- */
.samita-wipe-transition.wipe-out {
  pointer-events: auto;
  transform: translateX(0) translateZ(0); 
  animation: sweepLeftOut 0.8s cubic-bezier(0.77, 0, 0.175, 1) 0.6s both;
}

.samita-wipe-transition.wipe-out .logo-cluster {
  opacity: 1;
  transform: scale(1.5) translateZ(0);
  will-change: transform, opacity;
  animation: sweepOutScale 0.6s cubic-bezier(0.77, 0, 0.175, 1) 0.3s both;
}

/* Keyframes for Lando style wipe */
@keyframes sweepRightIn {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(0); }
}

@keyframes sweepLeftOut {
  0% { transform: translateX(0); }
  100% { transform: translateX(100%); }
}

@keyframes sweepInScale {
  0% { opacity: 0; transform: scale(0.5); }
  100% { opacity: 1; transform: scale(1.5); }
}

@keyframes sweepOutScale {
  0% { opacity: 1; transform: scale(1.5); }
  100% { opacity: 0; transform: scale(5); }
}

/* ADDITIONAL REFINEMENT */
#luxury-goo { color-interpolation-filters: sRGB; }

@keyframes flashLogo { 0% { opacity: 0.1; transform: scale(0.95); } 100% { opacity: 1; transform: scale(1.05); } }

/* STAGGERED WAVE TEXT ANIMATION */
.stagger-text { display: inline-flex; overflow: hidden; vertical-align: top; cursor: pointer; }
.char-wrap { overflow: hidden; display: inline-block; }
.char { display: inline-block; position: relative; transition: transform 0.5s cubic-bezier(0.76, 0, 0.24, 1); transition-delay: calc(var(--char-index) * 0.03s); }
.char::after { content: attr(data-char); position: absolute; top: 100%; left: 0; width: 100%; height: 100%; color: var(--gold); }
.stagger-text:hover .char { transform: translateY(-100%); }

/* =========================================
   FIXED: HEADER SITS AT TOP AND SCROLLS AWAY
========================================= */
.luxury-nav { 
    position: relative !important; 
    top: 0 !important; left: 0 !important; width: 100%; 
    display: flex; justify-content: space-between; align-items: center; 
    padding: 25px 50px; z-index: 9999; 
    background: var(--white) !important; 
    box-shadow: 0 4px 15px rgba(0,0,0,0.05) !important; transform: none !important;
}
.nav-links { flex: 1; display: flex; align-items: center; }
.nav-links.right { justify-content: flex-end; }
.nav-links a { color: var(--darker); text-transform: uppercase; font-size: 0.8rem; letter-spacing: 2px; font-weight: 600; margin: 0 15px; cursor: pointer; text-shadow: none; transition: color 0.3s ease;}
.nav-links a:hover { color: var(--gold) !important; }

/* HERO SECTION & LIQUID MASK */
.hero-section { position: relative; height: auto; min-height: calc(100vh - 85px); width: 100%; background: var(--cream); overflow: hidden; display: flex; align-items: center; justify-content: center; }
.hero-bg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-size: cover; background-position: center bottom; }
.base-bg { z-index: 1; }
/* The Mask Layer */
.reveal-layer { 
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    z-index: 2; pointer-events: none;
    background-size: cover; background-position: center bottom;
    -webkit-mask-image: radial-gradient(circle var(--m-size, 0px) at var(--m-x, 50%) var(--m-y, 50%), black 30%, transparent 70%);
    mask-image: radial-gradient(circle var(--m-size, 0px) at var(--m-x, 50%) var(--m-y, 50%), black 30%, transparent 70%);
}
.video-bg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 4; background: rgba(0,0,0,0.3); pointer-events: none; }

.hero-content { position: relative; z-index: 10; text-align: center; color: #fff; pointer-events: none; }
.hero-content h1 { color: var(--white) !important; text-shadow: 0 4px 15px rgba(0,0,0,0.6); font-size: 4.5rem; margin-bottom: 20px;}
.hero-content h1, .hero-content .btn-gold { pointer-events: auto; }

/* LUXURY PORTFOLIO LAYOUT */
.portfolio-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; margin-top: 40px; }
.portfolio-card { background: var(--white); border-radius: 8px; box-shadow: 0 15px 40px rgba(0,0,0,0.06); overflow: hidden; border: 1px solid rgba(0,0,0,0.03); transition: transform 0.4s ease; display: inline-block; width: 100%; break-inside: avoid; margin-bottom: 40px; }
.portfolio-card:hover { transform: translateY(-10px); box-shadow: 0 25px 50px rgba(0,0,0,0.1); }
.portfolio-img { width: 100%; height: auto; display: block; }
.portfolio-info { padding: 30px; display: flex; flex-direction: column; flex-grow: 1; }
.portfolio-title { font-family: var(--font-heading); font-size: 1.45rem; margin-bottom: 10px; color: var(--darker); font-weight: 700; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; letter-spacing: -0.5px; }
.portfolio-desc { font-size: 1rem; color: #555; margin-bottom: 20px; flex-grow: 1; }
.portfolio-meta { font-family: var(--font-heading); color: var(--gold-dark); font-size: 1rem; font-style: italic; margin-bottom: 15px; }

/* BUTTONS */
.btn-gold { display: inline-block; padding: 15px 35px; border: 1px solid var(--white); color: var(--white); text-transform: uppercase; letter-spacing: 2px; font-size: 0.8rem; margin-top: 30px; transition: all 0.4s ease;}
.btn-gold:hover { background: var(--white); color: var(--dark); }
.btn-gold-solid { background: var(--gold); color: var(--white); padding: 15px 30px; border: none; text-transform: uppercase; letter-spacing: 2px; font-weight: bold; cursor: pointer; transition: all 0.4s ease; border-radius: 4px; display: inline-block;}
.btn-gold-solid:hover { background: var(--gold-dark); transform: scale(1.05); }
.btn-book-now { background: var(--dark); color: var(--gold); font-family: var(--font-heading); text-transform: uppercase; letter-spacing: 2px; padding: 15px; border: none; width: 100%; cursor: pointer; transition: all 0.3s ease; margin-top: 20px; border-radius: 4px; display: flex; justify-content: center; align-items: center; }
.btn-book-now:hover { background: var(--gold); color: var(--white); }

/* RETURN TO TOP BUTTON */
#scroll-top-btn { position: fixed; bottom: 30px; left: 30px; width: 50px; height: 50px; background: var(--gold); color: var(--white); border: none; border-radius: 50%; font-size: 24px; cursor: pointer; z-index: 99999; box-shadow: 0 4px 15px rgba(0,0,0,0.3); opacity: 0; visibility: hidden; transition: all 0.3s ease; display: flex; justify-content: center; align-items: center; }
@media (max-width: 768px) { #scroll-top-btn { bottom: 20px; left: 20px; } }
#scroll-top-btn.show { opacity: 1; visibility: visible; }
#scroll-top-btn:hover { background: var(--darker); transform: translateY(-5px); }

/* SOCIAL ICONS */
.socials-tab { display: flex; gap: 15px; justify-content: center; margin-top: 25px; }
.social-icon { display: flex !important; align-items: center !important; justify-content: center !important; width: 45px !important; height: 45px !important; border-radius: 50% !important; background: transparent; border: 1px solid var(--gold) !important; color: var(--gold) !important; transition: all 0.3s ease; padding: 0 !important; overflow: hidden !important; }
.social-icon svg { width: 20px !important; height: 20px !important; fill: currentColor; margin: 0 !important; }
.social-icon:hover { background: var(--gold); color: var(--darker) !important; transform: translateY(-3px); }

/* OTHER SECTIONS */
.subtitle { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 4px; font-weight: 700; margin-bottom: 15px; display: block; }
.gold-text { color: var(--gold); }
.gold-line { width: 60px; height: 2px; background-color: var(--gold); margin: 20px 0; }
.gold-line.center { margin: 20px auto; }
.section-hotels { padding: 150px 0 100px; }

/* HOME PAGE - HOTEL SHOWCASE ALIGNMENT */
.hotel-showcase { display: flex; flex-direction: column; gap: 80px; margin-top: 50px;}
.hotel-card-large { display: flex; align-items: center; gap: 50px; background: var(--white); border-radius: 4px; box-shadow: 0 20px 40px rgba(0,0,0,0.05); overflow: hidden;}
.hotel-card-large.reverse { flex-direction: row-reverse; }
.hotel-img { flex: 1; height: 550px; background-size: cover; background-position: center; }
.hotel-info { flex: 1; padding: 50px; text-align: left; }
.hotel-title-group { display: flex; align-items: center; gap: 20px; margin-bottom: 20px; }
.hotel-title-group .brand-logo { height: 70px; width: auto; margin-bottom: 0; }
.hotel-title-group h3 { font-size: 2.2rem; margin-bottom: 0; color: var(--darker); font-weight: 700; word-break: break-word;}
.link-gold { color: var(--gold); text-transform: uppercase; letter-spacing: 1.5px; font-size: 0.85rem; font-weight: 700; display: inline-block; margin-top: 15px; }

/* DISCOVER MANALI - SPLIT MAP/IMAGE LAYOUT */
.catalogue-container { padding: 100px 0; }
.catalogue-card { background: #fff; border-radius: 8px; box-shadow: 0 15px 40px rgba(0,0,0,0.06); overflow: hidden; margin-bottom: 60px; border: 1px solid rgba(0,0,0,0.03); transition: transform 0.4s ease; }
.catalogue-card:hover { transform: translateY(-10px); box-shadow: 0 25px 50px rgba(0,0,0,0.1); }
.media-split { display: flex; width: 100%; height: 400px; }
.map-box-half { flex: 1; height: 100%; border: none; border-bottom: 4px solid var(--gold); }
.img-box-half { flex: 1; height: 100%; background-size: cover; background-position: center; border-bottom: 4px solid var(--gold); }
.info-box { padding: 40px 50px; }
.info-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; gap: 20px; }
.info-header h3 { font-size: 2.4rem; margin-bottom: 0; color: var(--darker); font-weight: 700; transition: color 0.3s; word-break: break-word;}
.info-header a:hover h3 { color: var(--gold); }
.info-header .catalogue-meta { font-family: var(--font-heading); color: var(--gold-dark); font-size: 1.1rem; font-style: italic; padding: 8px 25px; background: var(--cream); border-radius: 30px; margin-bottom: 0; white-space: nowrap; }

/* SUB PAGES */
.page-header { height: 70vh; min-height: 500px; display: flex; align-items: center; justify-content: center; text-align: center; position: relative; color: #fff; background: #111; }
.page-header-bg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-size: cover; background-position: center; z-index: 0; opacity: 0.6; }
.page-content { position: relative; z-index: 3; padding: 100px 20px 0; } 
.page-content h1 { font-size: 4rem; color: #fff; text-shadow: 0 4px 15px rgba(0,0,0,0.5); margin-bottom: 10px; word-break: break-word;}

/* ROOM CARDS / PORTFOLIO MODALS */
.rooms-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 40px; margin-top: 40px;}
.room-card { border: none; border-radius: 4px; background: var(--white); box-shadow: 0 10px 30px rgba(0,0,0,0.05); padding: 40px; transition: transform 0.4s ease; text-align: left; cursor: pointer; display: flex; flex-direction: column;}
.room-img { background-size: cover; background-position: center bottom; background-repeat: no-repeat; border-radius: 4px 4px 0 0; margin: -40px -40px 30px -40px; }
.room-card:hover { transform: translateY(-10px); box-shadow: 0 15px 40px rgba(0,0,0,0.1); }
.room-title { font-family: var(--font-heading); font-size: 1.8rem; border-bottom: 1px solid var(--gold); padding-bottom: 15px; margin-bottom: 20px; color: var(--darker); font-weight: 700; word-break: break-word;}
ul.room-features { list-style: none; padding: 0; margin: 0; flex-grow: 1;}
ul.room-features li { border-bottom: 1px solid #eee; padding: 12px 0; color: #555;}

/* B2B TABLE */
.b2b-table-wrapper { overflow-x: auto; -webkit-overflow-scrolling: touch; width: 100%; margin-bottom: 20px; }
table.premium-table { width: 100%; min-width: 850px; border-collapse: collapse; }

/* GALLERIES & PLACEHOLDERS */
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 20px; margin-top: 40px; }
.gallery-img { width: 100%; height: 250px; object-fit: cover; border-radius: 4px; box-shadow: 0 10px 30px rgba(0,0,0,0.08); transition: transform 0.4s ease; cursor: pointer; }
.gallery-img:hover { transform: translateY(-5px) scale(1.02); }
.gallery-placeholder { width: 100%; height: 250px; border-radius: 4px; background: #e0e0e0; display: flex; align-items: center; justify-content: center; color: #aaa; font-style: italic; border: 2px dashed #ccc; }
.content-section { padding: 100px 0; }
.amenities-list { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 15px; list-style: none; margin-top: 30px; font-size: 1.1rem; color: #444; }

/* BACKGROUNDS */
.pattern-bg-light { background-color: var(--cream); background-image: linear-gradient(135deg, rgba(198, 168, 124, 0.05) 25%, transparent 25%), linear-gradient(225deg, rgba(198, 168, 124, 0.05) 25%, transparent 25%), linear-gradient(45deg, rgba(198, 168, 124, 0.05) 25%, transparent 25%), linear-gradient(315deg, rgba(198, 168, 124, 0.05) 25%, var(--cream) 25%); background-position: 10px 0, 10px 0, 0 0, 0 0; background-size: 20px 20px; background-repeat: repeat; }
.pattern-overlay-2 { padding: 100px 0; position: relative; background-color: var(--darker); overflow: hidden; }
.pattern-overlay-2::before { content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 100%; opacity: 0.15; background-image: repeating-radial-gradient( circle at 0 0, transparent 0, var(--darker) 15px, transparent 15px, var(--gold) 16px, transparent 16px, transparent 30px ); z-index: 1; }

/* MODALS */
.modal-overlay { position: fixed; top: 0; left: 0; width: 100vw; height: 100vh; background: rgba(0,0,0,0.8); display: flex; align-items: center; justify-content: center; z-index: 200000; opacity: 0; visibility: hidden; transition: all 0.3s ease; }
.modal-overlay.active { opacity: 1; visibility: visible; }
.modal-content { background: #fff; padding: 40px; border-radius: 8px; width: 95%; max-width: 900px; max-height: 90vh; overflow-y: auto; position: relative; transform: translateY(20px); transition: all 0.3s ease; text-align: left; }
.modal-overlay.active .modal-content { transform: translateY(0); }
.close-modal { position: absolute; top: 15px; right: 20px; font-size: 32px; cursor: pointer; color: #333; background: none; border: none; }
.scroll-gallery { display: flex; overflow-x: auto; gap: 15px; margin: 20px 0; padding-bottom: 10px; scroll-snap-type: x mandatory; }
.scroll-gallery img { height: 300px; border-radius: 4px; object-fit: cover; scroll-snap-align: center; }
.modal-placeholder { min-width: 300px; height: 300px; background: #eee; border-radius: 4px; display: flex; align-items: center; justify-content: center; color: #999; font-style: italic; border: 2px dashed #ccc; scroll-snap-align: center; }

/* ANIMATED NETWORK FOOTER (SHORTER, WITH GOLD BORDER) */
.full-page-footer { position: relative; min-height: 40vh; display: flex; flex-direction: column; align-items: center; justify-content: center; background-color: var(--darker); overflow: hidden; padding: 60px 20px 0px; color: var(--white); }
#footer-network { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 1; opacity: 0.6; }

.footer-grid-container { display: grid; grid-template-columns: 1fr auto 1fr; grid-template-rows: auto auto; gap: 40px 40px; width: 100%; max-width: 1200px; position: relative; z-index: 2; flex: 1; align-content: center; margin-bottom: 20px; }
.footer-node h4 { color: var(--gold); text-transform: uppercase; font-family: var(--font-body); letter-spacing: 3px; font-size: 0.9rem; margin-bottom: 20px; }
.footer-node a { display: block; color: #aaa; margin-bottom: 12px; font-size: 0.95rem; transition: color 0.3s; }
.footer-node a:hover { color: var(--white); }

.node-tl { grid-column: 1; grid-row: 1; align-self: center; justify-self: end; text-align: left; }
.node-tr { grid-column: 3; grid-row: 1; align-self: center; justify-self: start; text-align: left; }
.node-bl { grid-column: 1; grid-row: 3; align-self: start; justify-self: end; text-align: right; }
.node-br { grid-column: 3; grid-row: 3; align-self: start; justify-self: start; text-align: left; }

.footer-center-node { grid-column: 2; grid-row: 1; text-align: center; display: flex; flex-direction: column; align-items: center; justify-content: center; }
.designer-tagline { font-family: 'Playfair Display', serif; font-style: italic; font-size: 1.6rem; color: var(--gold); letter-spacing: 2px; margin-top: 30px; text-shadow: 0 0 20px rgba(198,168,124,0.3); }

.mini-socials { justify-content: flex-end; margin-top: 15px; }
.footer-bottom-copyright { width: 100%; text-align: center; padding: 20px 0; margin-top: 40px; color: #666; font-size: 0.85rem; position: relative; z-index: 2; }
.footer-bottom-copyright::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--gold) 0%, rgba(198,168,124,0.1) 50%, var(--gold) 100%); }

/* =========================================
   THE MASTER MOBILE RESPONSIVENESS FIX
========================================= */
@media (max-width: 900px) {
    html, body { overflow-x: hidden !important; width: 100% !important; max-width: 100vw !important; margin: 0; padding: 0 !important; }

    /* 1. Header: Relative so it sits naturally at the top and scrolls OUT of view! */
    .luxury-nav, .luxury-nav.scrolled { 
        position: relative !important; 
        top: 0 !important; left: 0 !important; 
        width: 100vw !important; 
        background: var(--white) !important; 
        padding: 25px 15px !important; 
        flex-direction: column; gap: 10px; 
        z-index: 99999 !important; 
        box-shadow: 0 4px 15px rgba(0,0,0,0.05) !important;
        box-sizing: border-box !important;
        transform: none !important;
    }
    .luxury-nav .nav-links { flex-wrap: wrap; justify-content: center; gap: 10px; width: 100%; }
    .luxury-nav .nav-links a { margin: 0 5px; font-size: 0.75rem; text-shadow: none; color: var(--darker) !important; }
    
    /* 2. Layouts */
    .hero-section { height: auto !important; min-height: 80vh !important; padding: 40px 10px !important; flex-direction: column; justify-content: center; margin-top: 0 !important; }
    .hero-content h1 { font-size: 2.2rem !important; line-height: 1.2; padding: 0; word-break: break-word; margin-top: 0; }
    .page-content { margin-top: 0 !important; padding-top: 10px !important; }
    .page-header { height: auto !important; min-height: 40vh !important; padding: 40px 10px !important; }
    .page-content h1 { font-size: 2.2rem !important; line-height: 1.2; word-break: break-word; }
    .b2b-header { padding: 60px 15px 40px !important; }
    .b2b-header h1 { font-size: 2rem !important; word-wrap: break-word; line-height: 1.2; }

    /* 3. Layout */
    .b2b-header { padding: 60px 15px 40px !important; }
    .b2b-header h1 { font-size: 2rem !important; word-wrap: break-word; line-height: 1.2; }

    /* 4. Hotel Showcase */
    .hotel-card-large, .hotel-card-large.reverse { flex-direction: column; gap: 0; margin-bottom: 30px; width: 100% !important; }
    .hotel-img { height: 250px; width: 100% !important; }
    .hotel-info { padding: 20px 15px !important; text-align: center; }
    .hotel-title-group { flex-direction: column; text-align: center; gap: 10px; }
    .hotel-title-group h3 { font-size: 1.6rem; word-break: break-word; }

    /* 5. Contact Us Page */
    .main-heading { margin-top: 40px !important; position: relative !important; top: 0 !important; left: 0 !important; transform: none !important; text-align: center; font-size: 2.2rem !important; padding: 0 15px; }
    .booking-split { min-height: auto !important; padding-top: 0 !important;}
    .booking-half { padding: 40px 15px !important; width: 100% !important; min-width: 100% !important; box-sizing: border-box !important; }
    .glass-card { padding: 30px 20px !important; width: 100% !important; box-sizing: border-box !important; }
    .contact-item { flex-direction: column !important; align-items: center !important; text-align: center !important; gap: 10px !important; margin-bottom: 20px !important; }
    .contact-item p { width: 100% !important; word-break: break-word; font-size: 0.9rem; }
    .btn-directions { padding: 12px 15px !important; font-size: 0.8rem !important; display: block !important; width: 100% !important; margin: 10px auto 0 !important; }

    /* 6. Discover Manali */
    .media-split { flex-direction: column; height: auto; }
    .map-box-half, .img-box-half { height: 200px; width: 100% !important; border-bottom: none !important; border-right: none !important; }
    .info-box { padding: 20px 15px !important; }
    .info-header { flex-direction: column; align-items: center; text-align: center; gap: 10px; }
    .info-header h3 { font-size: 1.6rem; white-space: normal; word-break: break-word; line-height: 1.2; }
    .catalogue-meta { white-space: normal; word-break: break-word; height: auto; display: inline-block; padding: 5px 15px; font-size: 0.85rem; }

    /* 7. Mobile Footer */
    .full-page-footer { padding: 40px 15px 0 !important; display: block !important; width: 100vw !important; box-sizing: border-box !important; }
    .footer-grid-container { display: flex !important; flex-direction: column !important; gap: 30px !important; text-align: center !important; width: 100% !important; padding: 0 !important; margin: 0 !important; }
    .footer-node { text-align: center !important; width: 100% !important; }
    .footer-center-node { order: -1; margin-bottom: 10px !important; width: 100% !important; } 
    .designer-tagline { font-size: 1.1rem !important; margin-top: 15px !important; line-height: 1.4; word-break: break-word; white-space: normal !important; }
    .mini-socials { justify-content: center !important; }

    /* 8. B2B Table Fix */
    .b2b-section { padding: 15px 10px !important; margin: 20px auto !important; width: 100% !important; box-sizing: border-box !important; overflow: hidden !important; }
    .b2b-table-wrapper { margin: 0 !important; padding: 0 !important; overflow-x: auto !important; width: 100% !important; -webkit-overflow-scrolling: touch; }
    table.premium-table { min-width: 800px !important; }
}

/* =========================================
   CUSTOM LUXURY CURSOR
========================================= */
@media (min-width: 901px) {
    body, a, button, select, input, .stagger-text, .hotel-card-large, .room-card, .gallery-img, .social-icon, .link-gold, [data-modal] { 
        cursor: none !important; 
    }

    .luxury-cursor-container {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        pointer-events: none;
        z-index: 9999999;
    }

    .cursor-triangle {
        position: absolute;
        width: 0;
        height: 0;
        border-left: 7px solid transparent;
        border-right: 7px solid transparent;
        border-bottom: 14px solid var(--gold);
        transform-origin: center;
        filter: drop-shadow(0 2px 5px rgba(0,0,0,0.3));
        pointer-events: none;
        top: 0;
        left: 0;
    }

    .cursor-snowflake {
        position: absolute;
        font-size: 45px;
        color: var(--gold);
        opacity: 0.8;
        transform-origin: center;
        filter: drop-shadow(0 0 10px rgba(198, 168, 124, 0.4));
        line-height: 1;
        pointer-events: none;
        top: 0;
        left: 0;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .snowflake-inner {
        display: block;
        animation: rotateSnowflake 8s linear infinite;
    }

    @keyframes rotateSnowflake {
        from { transform: translate(25px, -15px) rotate(0deg); }
        to { transform: translate(25px, -15px) rotate(360deg); }
    }
}

/* =========================================
   SPLASH SCREEN ANIMATION
========================================= */
#intro-splash {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: #000;
    z-index: 9999999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.8s cubic-bezier(0.77, 0, 0.175, 1);
    overflow: hidden;
}

#intro-splash.slide-up {
    transform: translateY(-100%);
}

.splash-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.intro-welcome {
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    font-size: 1.5rem;
    letter-spacing: 10px;
    color: #fff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.8), 0 0 20px rgba(255, 255, 255, 0.4);
    opacity: 0;
    animation: fadeInGlow 1.5s ease-out forwards;
}

.intro-brand-wrapper {
    position: relative;
    display: inline-block;
}

.intro-brand {
    font-family: 'Great Vibes', cursive;
    font-size: 6rem;
    white-space: nowrap;
    
    /* Diamond texture gradient */
    background: repeating-linear-gradient(
        45deg,
        #f8f9fa 0%,
        #e2e8f0 10%,
        #ffffff 20%,
        #cbd5e1 30%,
        #f8f9fa 40%
    );
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    
    /* Reveal animation */
    clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
    animation: writeText 2s ease-in-out 1.5s forwards, shimmerDiamond 3s linear infinite;
}

/* Sparkles container */
.sparkles-container {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    pointer-events: none;
}

.sparkle {
    position: absolute;
    color: #ffffff;
    font-size: 1.5rem;
    text-shadow: 0 0 10px #fff, 0 0 20px #fff;
    opacity: 0;
    transform: scale(0);
}

.s1 { top: 10%; left: -10%; animation: popSparkle 1.5s ease-in-out 1.8s forwards; }
.s2 { top: 80%; left: 20%; animation: popSparkle 1.5s ease-in-out 2.2s forwards; }
.s3 { top: -10%; left: 50%; animation: popSparkle 1.5s ease-in-out 2.6s forwards; }
.s4 { top: 90%; left: 80%; animation: popSparkle 1.5s ease-in-out 3.0s forwards; }
.s5 { top: 15%; right: -15%; animation: popSparkle 1.5s ease-in-out 3.3s forwards; }

/* Keyframes */
@keyframes fadeInGlow {
    0% { opacity: 0; filter: blur(5px); }
    100% { opacity: 1; filter: blur(0); }
}

@keyframes writeText {
    0% { clip-path: polygon(0 0, 0 0, 0 100%, 0 100%); }
    100% { clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%); }
}

@keyframes shimmerDiamond {
    0% { background-position: 0% center; }
    100% { background-position: 200% center; }
}

@keyframes popSparkle {
    0% { opacity: 0; transform: scale(0) rotate(0deg); }
    50% { opacity: 1; transform: scale(1.2) rotate(180deg); }
    100% { opacity: 0; transform: scale(0) rotate(360deg); }
}

/* =========================================
   FAQ SECTION
========================================= */
.section-faq { position: relative; z-index: 10; }
.faq-tabs-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
}
.faq-tab {
    padding: 10px 24px;
    border: 1px solid var(--gold);
    background: var(--white);
    color: var(--darker);
    border-radius: 30px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(0,0,0,0.02);
}
.faq-tab:hover {
    background: rgba(198, 168, 124, 0.1);
}
.faq-tab.active {
    background: var(--gold);
    color: var(--white);
    border-color: var(--gold);
}

.faq-tab-content {
    display: none;
    animation: fadeIn 0.4s ease;
}
.faq-tab-content.active {
    display: block;
}

.faq-accordion-item {
    margin-bottom: 15px;
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 6px;
    background: var(--white);
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
}
.faq-question {
    width: 100%;
    text-align: left;
    padding: 22px 30px;
    background: transparent;
    border: none;
    font-family: var(--font-body);
    font-size: 1.05rem;
    color: var(--darker);
    font-weight: 500;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
}
.faq-question:hover {
    background: rgba(0,0,0,0.02);
}
.faq-question .chevron {
    font-size: 1.2rem;
    color: var(--dark);
    transition: transform 0.3s ease;
    line-height: 1;
}
.faq-question.active .chevron {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0, 1, 0, 1);
    background: var(--white);
}
.faq-answer.expanded {
    max-height: 1000px;
    transition: max-height 0.6s ease-in-out;
}
.faq-answer-inner {
    padding: 0 30px 25px;
    color: #555;
    font-size: 0.95rem;
    line-height: 1.7;
    border-top: 1px solid rgba(0,0,0,0.03);
    margin-top: -5px;
    padding-top: 15px;
}

/* =========================================
   COOKIE BANNER
========================================= */
.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    max-width: 600px;
    background: var(--white);
    padding: 25px 30px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 15px;
    border-left: 4px solid var(--gold);
    transform: translateY(150%);
    transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.cookie-banner.show {
    transform: translateY(0);
}
.cookie-content h4 {
    margin-bottom: 8px;
    font-family: var(--font-heading);
    color: var(--darker);
    font-size: 1.2rem;
}
.cookie-content p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
    margin: 0;
}
.cookie-buttons {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
}
.cookie-btn {
    padding: 10px 24px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid var(--gold);
}
.cookie-btn.accept {
    background: var(--gold);
    color: var(--white);
}
.cookie-btn.accept:hover {
    background: var(--gold-dark);
}
.cookie-btn.decline {
    background: transparent;
    color: var(--darker);
}
.cookie-btn.decline:hover {
    background: rgba(198,168,124,0.1);
}
@media (max-width: 768px) {
    .cookie-banner { 
        top: 15px; 
        bottom: auto; 
        left: 10px; 
        right: 10px; 
        padding: 20px; 
        transform: translateY(-150%);
        z-index: 200000;
    }
    .cookie-banner.show {
        transform: translateY(0);
    }
    .cookie-buttons { flex-direction: column; }
    .cookie-btn { width: 100%; text-align: center; }
}

/* =========================================
   FLOATING ACTION BUTTON
========================================= */
.fab-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}
.fab-main {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--gold);
    color: var(--white);
    border: none;
    box-shadow: 0 4px 15px rgba(198, 168, 124, 0.4);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}
.fab-main:hover {
    transform: scale(1.05);
    background: var(--gold-dark);
}
.fab-options {
    display: flex;
    flex-direction: column;
    gap: 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.fab-options.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.fab-option {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--white);
    color: var(--darker);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    text-decoration: none;
}
.fab-option:hover {
    background: var(--gold);
    color: var(--white);
    transform: scale(1.1);
}
@media (max-width: 768px) {
    .fab-container { bottom: 20px; right: 20px; }
}

@media (max-width: 768px) {
    .intro-welcome { font-size: 1rem; letter-spacing: 5px; }
    .intro-brand { font-size: 3.5rem; }
}

@media (max-width: 1024px) { .portfolio-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 768px) { .portfolio-grid { grid-template-columns: 1fr; } }

.node-bottom-contact { grid-column: 1 / span 3; grid-row: 2; text-align: center; border-top: 1px solid rgba(198,168,124,0.15); padding-top: 40px; margin-top: 20px; }
.contact-links-inline { display: flex; justify-content: center; gap: 30px; flex-wrap: wrap; margin-bottom: 20px; }
.contact-links-inline a { display: inline-block; margin: 0; color: #aaa; transition: color 0.3s; }
.contact-links-inline a:hover { color: var(--white); }
.centered-socials { display: flex; justify-content: center; gap: 15px; }
