/* ==========================================================================
   1. VARIABLES & RESET
   ========================================================================== */
:root {
  --gold: #d4af37;
  --gold-glow: rgba(212, 175, 55, 0.4);
  --gold-gradient: linear-gradient(
    135deg,
    #b38728 0%,
    #fbf5b7 25%,
    #daa520 50%,
    #fbf5b7 75%,
    #aa771c 100%
  );
  --white: #ffffff;
  --black: #000000;
  --dark-charcoal: #0d0d0d;
  --glass-bg: rgba(255, 255, 255, 0.03);
  --glass-border: rgba(212, 175, 55, 0.15);
  --glass-border-hover: rgba(212, 175, 55, 0.6);
  --font-luxury: "Playfair Display", Georgia, serif;
  --font-clean: "Montserrat", sans-serif;
  --transition-smooth: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  --transition-fast: all 0.2s ease-out;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  user-select: none;
}

html {
  scroll-behavior: smooth;
  background-color: var(--black);
  color: var(--white);
  font-family: var(--font-clean);
  overflow-x: hidden;
}

body {
  overflow-x: hidden;
  position: relative;
}

/* ==========================================================================
   2. CUSTOM UTILITIES & LUXURY ELEMENT EFFECT
   ========================================================================== */
.gold-text {
  color: var(--gold);
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Custom Cursors */
.custom-cursor {
  width: 40px;
  height: 40px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  position: fixed;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 10000;
  transition:
    width 0.3s,
    height 0.3s,
    background-color 0.3s;
}

.custom-cursor-dot {
  width: 6px;
  height: 6px;
  background-color: var(--gold);
  border-radius: 50%;
  position: fixed;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 10001;
}

.custom-cursor.hover {
  width: 60px;
  height: 60px;
  background-color: rgba(212, 175, 55, 0.1);
  border-color: var(--white);
}

/* Scroll Progress Line */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  /* background: var(--gold-gradient); */
  z-index: 9999;
  width: 0%;
}

/* Preloader Screen */ 
.preloader{
    position:fixed;
    top:0;
    left:0;
    width:100vw;
    height:100vh;
    background:#000;
    z-index:10500;
    display:flex;
    justify-content:center;
    align-items:center;
    overflow:hidden;
    transition:opacity 1s ease, visibility 1s ease;
}

/* Logo container */
.preloader-content{
    position:relative;
}

/* Logo Image */
.preloader-logo{
    width:500px; /* desktop size */
    max-width:100%;
    object-fit:contain;
    animation:
    logoZoom 1s ease-in-out infinite alternate,
    logoGlow 1s infinite;
}

/* Floating zoom animation */
@keyframes logoZoom{
    0%{
        transform:scale(.9) translateY(0);
        opacity:.5;
    }

    100%{
        transform:scale(1.05) translateY(-8px);
        opacity:1;
    }
}

/* Soft glow effect */
@keyframes logoGlow{

    0%{
        filter:
        drop-shadow(0 0 5px rgba(255,255,255,.2))
        drop-shadow(0 0 10px rgba(255,215,0,.3));
    }

    100%{
        filter:
        drop-shadow(0 0 15px rgba(255,255,255,.5))
        drop-shadow(0 0 30px rgba(255,215,0,.7));
    }

}

/* Mobile Responsive */
@media(max-width:768px){

.preloader-logo{
    width:130px;
}

}

/* ==========================================================================
   3. BACKGROUND ANIMATION MESH / ORBS
   ========================================================================== */
/* new css */
.hero-subheading-img{
    display:block;
    max-width:100%;
    width:250px;    
    height:auto;
    margin:20px auto;
    object-fit:contain;
}

/* Mobile responsive */
@media (max-width:768px){
    .hero-subheading-img{
        width:45%;
    }
}
/* hearo 3 logo css */
.hero-logos{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:40px;
    flex-wrap:wrap;
    margin-top:50px;
    margin-bottom:20px;
}

.hero-logos img{
    height:140px;
    object-fit:contain;
    display:block;
    cursor:pointer;

    transition:transform 0.4s ease, filter 0.4s ease;
}

/* Hover Zoom Effect */
.hero-logos img:hover{
    transform:scale(1.15);
    filter:drop-shadow(0px 10px 20px rgba(255,255,255,0.25));
}

/* Tablet */
@media (max-width:992px){
    .hero-logos{
        gap:20px;
    }

    .hero-logos img{
        height:60px;
    }
}

/* Mobile */
@media (max-width:576px){
    .hero-logos{
        gap:15px;
    }
    
    .hero-logos img:hover{
        transform:scale(1.08); /* mobile pe thoda less zoom */
    }
}
/* end */

.bg-mesh-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1;
  overflow: hidden;
  background: radial-gradient(
    circle at 50% 50%,
    var(--dark-charcoal) 0%,
    var(--black) 100%
  );
}

#particleCanvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.35;
}

.bg-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(140px);
  opacity: 0.18;
  mix-blend-mode: screen;
  animation: orbMovement 25s infinite alternate ease-in-out;
}

.orb-1 {
  width: 500px;
  height: 500px;
  background: var(--gold);
  top: -10%;
  left: -10%;
}

.orb-2 {
  width: 600px;
  height: 600px;
  background: #4a3b1a;
  bottom: -20%;
  right: -10%;
  animation-delay: -5s;
}

.orb-3 {
  width: 400px;
  height: 400px;
  background: #7a6122;
  top: 40%;
  left: 60%;
  animation-delay: -10s;
}

.light-ray {
  position: absolute;
  top: -50%;
  left: -20%;
  width: 150%;
  height: 200%;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.03) 0%,
    rgba(212, 175, 55, 0.01) 50%,
    transparent 100%
  );
  transform: rotate(-15deg);
  pointer-events: none;
}

@keyframes orbMovement {
  0% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(80px, 50px) scale(1.15);
  }
  100% {
    transform: translate(-40px, -80px) scale(0.9);
  }
}

/* ==========================================================================
   4. NAVIGATION BAR
   ========================================================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 25px 50px;
  z-index: 1000;
  backdrop-filter: blur(0px);
  background: rgba(0, 0, 0, 0);
  border-bottom: 1px solid transparent;
  transition: var(--transition-smooth);
}

/* .navbar.scrolled {
  padding: 15px 50px;
  background: rgba(13, 13, 13, 0.8);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(212, 175, 55, 0.15);
} */

.nav-container {
  max-width: 1600px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  font-family: var(--font-luxury);
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: 4px;
  color: var(--white);
  text-decoration: none;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 40px;
}

.nav-item {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 400;
  position: relative;
  padding: 8px 0;
  transition: var(--transition-fast);
}

.nav-item:hover,
.nav-item.active {
  color: var(--gold);
}

.nav-item::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold-gradient);
  transition: var(--transition-smooth);
}

.nav-item:hover::after,
.nav-item.active::after {
  width: 100%;
}

.burger-menu {
  display: none;
  cursor: pointer;
}

.burger-menu div {
  width: 25px;
  height: 1px;
  background-color: var(--white);
  margin: 6px;
  transition: var(--transition-smooth);
}

/* ==========================================================================
   5. HERO SECTION
   ========================================================================== */
.hero-section {
  height: 100vh;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  padding: 0 20px;
}

.hero-subheading {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 6px;
  color: var(--gold);
  margin-bottom: 25px;
  font-weight: 400;
}

.hero-heading {
  font-family: var(--font-luxury);
  font-size: 7.5rem;
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 10px;
  animation: textShimmer 4s infinite linear;
  background: linear-gradient(
    to right,
    #fff 20%,
    #d4af37 40%,
    #d4af37 60%,
    #fff 80%
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-tagline {
    font-size: 32px;
    text-transform: uppercase;
    letter-spacing: 4px;
    opacity: 0.8;
    /* margin-top: 50px; */
    margin-bottom: 50px;
    font-weight: 900;
}

@keyframes textShimmer {
  to {
    background-position: 200% center;
  }
}

.booking-container{
    display:flex;
    justify-content:center;
    align-items:center;
    padding:30px;
    width:100%;
    max-width:1400px;
    margin:0 auto;
    box-sizing:border-box;
}

/* Mobile devices */
@media (max-width:768px){
    .booking-container{
        padding-bottom: 10px !important;
    }
}
.booking-box{
max-width:100%;
margin:0 auto;
padding:13px;
border-radius:30px;

background:rgba(255,255,255,.08);
backdrop-filter:blur(20px);
border:1px solid rgba(255,255,255,.2);

display:flex;
align-items:center;
/* justify-content:center;
flex-wrap:wrap; */
gap:12px;

box-shadow:0 10px 40px rgba(0,0,0,.4);
}

.booking-input{

flex:1 1 200px; /* all selects grow/shrink evenly, no more isolated wide items */
max-width:280px;
width:auto;

height:60px;
padding:0 20px;

background:rgba(255,255,255,.06);

border:1px solid rgba(255,255,255,.1);

border-radius:15px;

color:#fff;
font-size:15px;

outline:none;

transition:.4s;
}

.booking-input:focus{

border-color:#d4af37;
box-shadow:0 0 20px rgba(212,175,55,.4);

}

.booking-input option{

background:#111;
color:#fff;

}

.submit-btn{

flex:1 1 160px;
max-width:220px;
height:60px;
padding:0 40px;

border:none;
border-radius:15px;

background:linear-gradient(
45deg,
#d4af37,
#f4e48a
);

font-weight:600;
cursor:pointer;
transition:.5s;

white-space:nowrap;
}

.submit-btn:hover{

transform:translateY(-5px);

box-shadow:0 10px 25px rgba(212,175,55,.5);

}

/* Promote dynamicFields' children into booking-box's own flex row —
   stops the hotel select from wrapping alone onto its own line */
#dynamicFields{
display:contents;
}

@media(max-width:768px){

.booking-box{

padding:20px;
flex-wrap:wrap;

}

.booking-input,
.submit-btn{

flex:1 1 100%;
max-width:100%;
width:100%;
min-width:100%;

}

.date-wrapper{
width:100%;
flex:1 1 100%;
}

.date-wrapper .booking-input{
width:100%;
height:60px;
font-size:15px;
padding:0 20px;
}

.room-counter{
width:100%;
flex:1 1 100%;
display:flex;
justify-content:center;
}

.counter-box{
width:100%;
height:60px;
justify-content:space-between;
}

.counter-box button{
width:60px;
height:60px;
font-size:24px;
}

.counter-box input{
flex:1;
font-size:20px;
}

}
/* ==========================================================================
   6. SHOWCASE SECTION (3D GLASS CARDS)
   ========================================================================== */
.showcase-section,
.about-section,
.contact-section {
  padding: 140px 80px;
  max-width: 1600px;
  margin: 0 auto;
  position: relative;
}

.section-title-block {
  text-align: center;
  margin-bottom: 80px;
}

.section-subtitle {
  color: var(--gold);
  font-size: 0.85rem;
  letter-spacing: 5px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 15px;
}

.section-heading {
  font-family: var(--font-luxury);
  font-size: 3.5rem;
  font-weight: 400;
  letter-spacing: 2px;
}

.gold-divider {
  width: 60px;
  height: 1px;
  background: var(--gold-gradient);
  margin: 25px auto 0;
}

/* 3D Glass Cards Grid */
.showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  perspective: 1200px; /* High-end 3D space depth context */
}

.glass-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border-radius: 12px;
  padding: 60px 40px;
  position: relative;
  overflow: hidden;
  transform-style: preserve-3d;
  transition:
    border 0.5s ease out,
    box-shadow 0.5s ease out;
}

.glass-card:hover {
  border: 1px solid var(--glass-border-hover);
  box-shadow:
    0 30px 60px rgba(0, 0, 0, 0.6),
    0 0 40px rgba(212, 175, 55, 0.1);
}

.card-content {
  transform: translateZ(
    50px
  ); /* Pushes elements out creating realistic depth layer */
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.card-logo {
  font-size: 2.5rem;
  color: var(--gold);
  margin-bottom: 30px;
  transition: transform 0.4s ease;
}

.glass-card:hover .card-logo {
  transform: translateZ(20px) scale(1.1);
}

.card-title {
  font-family: var(--font-luxury);
  font-size: 2rem;
  font-weight: 400;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.card-description {
  font-size: 0.9rem;
  line-height: 1.7;
  opacity: 0.7;
  margin-bottom: 40px;
  font-weight: 300;
}

.card-btn {
  text-decoration: none;
  color: var(--gold);
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  transition: var(--transition-fast);
}

.card-btn i {
  transition: transform 0.3s ease;
}

.card-btn:hover i {
  transform: translateX(8px);
}

/* Luxury Reflection & Light Trace Layers */
.card-reflection {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.15) 0%,
    transparent 60%
  );
  pointer-events: none;
  z-index: 1;
}

.card-glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle at 50% 50%,
    rgba(212, 175, 55, 0.15),
    transparent 70%
  );
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
  z-index: 0;
}

.glass-card:hover .card-glow {
  opacity: 1;
}

/* ==========================================================================
   7. ABOUT SECTION (ESTATE DETAILS & COUNTERS)
   ========================================================================== */
.about-container {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 80px;
  align-items: center;
}

.about-text-side .section-heading {
  margin-bottom: 30px;
}

.about-paragraph {
  font-size: 1rem;
  line-height: 1.8;
  opacity: 0.75;
  margin-bottom: 40px;
  font-weight: 300;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.feature-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.feature-icon {
  font-size: 1.8rem;
  color: var(--gold);
  background: rgba(212, 175, 55, 0.05);
  padding: 15px;
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 6px;
}

.feature-item h4 {
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 5px;
  letter-spacing: 1px;
}

.feature-item p {
  font-size: 0.9rem;
  opacity: 0.6;
  line-height: 1.5;
}

/* Glass Metrics Infrastructure */
.stats-glass-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

.stat-box {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(10px);
  border-radius: 8px;
  padding: 40px 25px;
  text-align: center;
  transition: var(--transition-smooth);
}

.stat-box:hover {
  border-color: var(--gold);
  transform: translateY(-5px);
}

.stat-box h3 {
  font-family: var(--font-luxury);
  font-size: 3.5rem;
  color: var(--gold);
  margin-bottom: 10px;
  font-weight: 600;
}

.stat-box p {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  opacity: 0.7;
}

/* ==========================================================================
   8. CONTACT SECTION (GLASSMORPHIC FORM)
   ========================================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
}

.contact-info-block h3 {
  font-family: var(--font-luxury);
  font-size: 2.2rem;
  font-weight: 400;
  margin-bottom: 20px;
}

.info-desc {
  font-size: 1rem;
  line-height: 1.7;
  opacity: 0.7;
  margin-bottom: 40px;
}

.info-details {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.info-line {
  display: flex;
  align-items: center;
  gap: 20px;
}

.info-line i {
  font-size: 1.3rem;
  color: var(--gold);
  width: 25px;
}

.info-line p {
  font-size: 0.95rem;
  opacity: 0.85;
}

/* Interactive Input Framework */
.glass-form {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(20px);
  padding: 50px;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 35px;
}

.input-group {
  position: relative;
  width: 100%;
}

.input-group input,
.input-group textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding: 10px 0;
  font-size: 1rem;
  color: var(--white);
  font-family: var(--font-clean);
  outline: none;
  transition: var(--transition-fast);
}

.input-group textarea {
  resize: none;
}

.input-group label {
  position: absolute;
  top: 10px;
  left: 0;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
  pointer-events: none;
  transition: var(--transition-smooth);
}

/* Target input floating states */
.input-group input:focus ~ label,
.input-group input:not(:placeholder-shown) ~ label,
.input-group textarea:focus ~ label,
.input-group textarea:not(:placeholder-shown) ~ label {
  top: -18px;
  font-size: 0.75rem;
  color: var(--gold);
  letter-spacing: 1px;
}

.input-line {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold-gradient);
  transition: var(--transition-smooth);
}

.input-group input:focus ~ .input-line,
.input-group textarea:focus ~ .input-line {
  width: 100%;
}

.form-submit-btn {
  width: 100%;
  text-align: center;
  cursor: pointer;
}

/* ==========================================================================
   9. LUXURY FOOTER & COMPONENT BASE
   ========================================================================== */
.luxury-footer {
  background: rgba(5, 5, 5, 0.9);
  border-top: 1px solid rgba(212, 175, 55, 0.1);
  padding: 80px 80px 40px;
  position: relative;
  z-index: 5;
}

.footer-container {
  max-width: 1600px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 100px;
  margin-bottom: 60px;
}

.footer-logo {
  font-family: var(--font-luxury);
  font-size: 2rem;
  letter-spacing: 6px;
  margin-bottom: 25px;
}

.footer-brand-column p {
  font-size: 0.95rem;
  line-height: 1.7;
  opacity: 0.6;
  max-width: 500px;
  margin-bottom: 30px;
}

.social-links {
  display: flex;
  gap: 20px;
}

.social-icon {
  width: 45px;
  height: 45px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--white);
  text-decoration: none;
  transition: var(--transition-smooth);
}

.social-icon:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-3px);
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.2);
}

.footer-links-column h4 {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 25px;
  color: var(--gold);
}

.footer-links-column ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.footer-links-column a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  transition: var(--transition-fast);
}

.footer-links-column a:hover {
  color: var(--white);
  padding-left: 5px;
}

.footer-bottom {
  max-width: 1600px;
  margin: 0 auto;
  text-align: center;
}

.footer-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    rgba(212, 175, 55, 0.3),
    transparent
  );
  margin-bottom: 30px;
}

.copyright-text {
  font-size: 0.8rem;
  letter-spacing: 1px;
  opacity: 0.4;
}

/* Scroll To Top Button */
.scroll-to-top {
  position: fixed;
  bottom: 40px;
  right: 40px;
  width: 50px;
  height: 50px;
  background: var(--dark-charcoal);
  border: 1px solid var(--glass-border);
  border-radius: 50%;
  color: var(--white);
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  z-index: 999;
  opacity: 0;
  transform: translateY(20px);
  transition: var(--transition-smooth);
}

.scroll-to-top.visible {
  opacity: 1;
  transform: translateY(0);
}

.scroll-to-top:hover {
  border-color: var(--gold);
  color: var(--gold);
  box-shadow: 0 0 20px var(--gold-glow);
}

/* ==========================================================================
   10. HARDCORE MOTION UTILITIES ENGINE (SCROLL REVEALS)
   ========================================================================== */
.scroll-reveal-up {
  opacity: 0;
  transform: translateY(60px);
  transition:
    opacity 1.2s cubic-bezier(0.25, 1, 0.5, 1),
    transform 1.2s cubic-bezier(0.25, 1, 0.5, 1);
}

.scroll-reveal-left {
  opacity: 0;
  transform: translateX(-60px);
  transition:
    opacity 1.2s cubic-bezier(0.25, 1, 0.5, 1),
    transform 1.2s cubic-bezier(0.25, 1, 0.5, 1);
}

.scroll-reveal-right {
  opacity: 0;
  transform: translateX(60px);
  transition:
    opacity 1.2s cubic-bezier(0.25, 1, 0.5, 1),
    transform 1.2s cubic-bezier(0.25, 1, 0.5, 1);
}

.scroll-reveal-active {
  opacity: 1;
  transform: translate(0, 0);
}

/* ==========================================================================
   11. SYSTEM ADAPTIVE BREAKPOINTS (RESPONSIVENESS)
   ========================================================================== */
@media (max-width: 1200px) {
  .hero-heading {
    font-size: 5.5rem;
  }
  .showcase-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
  .about-container {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  .showcase-section,
  .about-section,
  .contact-section {
    padding: 100px 40px;
  }
  .luxury-footer {
    padding: 80px 40px 40px;
  }
}

@media (max-width: 768px) {
  .custom-cursor,
  .custom-cursor-dot {
    display: none;
  } /* Kill complex tracking loops on touch */
  .navbar {
    padding: 20px 30px;
  }
  .navbar.scrolled {
    padding: 15px 30px;
  }
  .burger-menu {
    display: block;
    z-index: 1001;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 80%;
    max-width: 400px;
    background: rgba(13, 13, 13, 0.98);
    backdrop-filter: blur(25px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 35px;
    transition: var(--transition-smooth);
    border-left: 1px solid var(--glass-border);
  }

  .nav-links.active {
    right: 0;
  }

  /* Mobile Burger State Transitions */
  .burger-menu.toggle .line1 {
    transform: rotate(-45deg) translate(-5px, 6px);
    background-color: var(--gold);
  }
  .burger-menu.toggle .line2 {
    opacity: 0;
  }
  .burger-menu.toggle .line3 {
    transform: rotate(45deg) translate(-5px, -6px);
    background-color: var(--gold);
  }

  .hero-heading {
    font-size: 3.8rem;
  }
  .hero-subheading {
    font-size: 0.7rem;
    letter-spacing: 4px;
  }
  .hero-tagline {
    font-size: 1.1rem;
    letter-spacing: 8px;
  }
  .hero-cta-container {
    flex-direction: column;
    gap: 15px;
    width: 100%;
    /* max-width: 300px; */
  }
  .btn {
    text-align: center;
    width: 100%;
  }

  .showcase-grid {
    grid-template-columns: 1fr;
  }
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .glass-form {
    padding: 30px 20px;
  }
  .footer-container {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .section-heading {
    font-size: 2.5rem;
  }
}

@media (max-width: 480px) {
  .hero-heading {
    font-size: 2.8rem;
  }
  .section-heading {
    font-size: 2rem;
  }
  .stat-box h3 {
    font-size: 2.5rem;
  }
}

/* increement /decrement css */
.room-counter{
    margin:15px 0;
}

.room-counter label{
    display:block;
    margin-bottom:8px;
    font-weight:600;
}

.counter-box{
    display:flex;
    /* align-items:center; */
    border:1px solid rgba(255, 255, 255, .1);
    border-radius:15px;
    overflow:hidden;
    width:130px;
    height:58px;
}

.counter-box button{
    width:50px;
    height:62px;
    border:none;
    background:rgba(255, 255, 255, .08);
    font-size:22px;
    cursor:pointer;
    color: #ddd;
    transition:.3s;
}

.counter-box button:hover{
    background: linear-gradient(45deg, #d4af37, #f4e48a);
    color: #000;
}

.counter-box input{
    width:35px;
    border:none;
    text-align:center;
    font-size:18px;
    color: #ddd;
    font-weight:600;
    background:rgba(255, 255, 255, .08);
    outline:none;
}

/* date css */
 .date-wrapper{
    /* display:flex; */
    flex-direction:column;
    gap:5px;
    width:220px;
    /* flex:0 0 220px; */
}

.date-wrapper small{
    font-size: 13px;
    padding-bottom: 0;
    color:#bdbdbd;
    text-align:center;
    white-space:nowrap;
}

.date-wrapper small strong{
    color:#fff;
    font-weight:600;
}
.date-wrapper .booking-input {
    flex: none;
    /* min-width: 170px; */
    width: 100%;
    height: 35px;
    padding: 0 20px;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 15px;
    color: #fff;
    font-size: 11px;
    outline: none;
    transition: .4s;
}

/* ==========================================================================
   12. EXTRA SMALL DEVICES (SMALL PHONES 400px & BELOW)
   ========================================================================== */
@media (max-width: 400px) {

    .hero-section{
        padding: 0 12px;
    }

    .hero-subheading-img{
        width: 60%;
    }

    .hero-subheading{
        font-size: 0.6rem;
        letter-spacing: 2px;
    }

    .hero-tagline{
        font-size: 0.9rem;
        letter-spacing: 4px;
        margin-bottom: 30px;
    }

    .hero-logos{
        gap: 12px;
        margin-top: 30px;
    }

    .hero-logos img{
        height: 45px;
    }

    .booking-container{
        padding: 15px 10px;
    }

    .booking-box{
        padding: 15px;
        border-radius: 20px;
    }

    .booking-input{
        height: 50px;
        font-size: 13px;
        padding: 0 15px;
    }

    .submit-btn{
        height: 50px;
        padding: 0 20px;
        font-size: 14px;
    }

    .counter-box{
        width: 100%;
        height: 50px;
        justify-content: space-between;
    }

    .counter-box button{
        width: 50px;
        height: 50px;
        font-size: 18px;
    }

    .counter-box input{
        flex: 1;
        font-size: 16px;
    }

    .date-wrapper .booking-input{
        width: 100%;
        height: 50px;
        font-size: 13px;
        padding: 0 15px;
    }

    .scroll-to-top{
        width: 42px;
        height: 42px;
        bottom: 20px;
        right: 20px;
    }
}