:root{
    --dark:#111;
    --gold:#c9a44c;
    --light:#faf7f2;
}

*{margin:0;padding:0;box-sizing:border-box}

body{
    font-family:Poppins,sans-serif;
    background:var(--light);
    color:#222;
}


/* NAVBAR */
.navbar{
    position:fixed;
    top:0;
    width:100%;
    padding:15px 40px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    background:rgba(255,255,255,.9);
    backdrop-filter:blur(10px);
    z-index:999;
}
.logo{height:50px}
.navbar a{
    margin-left:25px;
    text-decoration:none;
    color:#000;
}

/* HERO */
.hero{
    height:100vh;
    position:relative;
    overflow:hidden;
}
.slides{
    position:absolute;
    inset:0;
    background-size:cover;
    background-position:center;
    opacity:0;
    transition:1.2s;
}
.slides.active{opacity:1}
.hero-overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.55);
}
.hero-content{
    position:relative;
    z-index:2;
    color:white;
    height:100%;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    text-align:center;
}
.hero-content h1{
    font-family:Playfair Display,serif;
    font-size:clamp(3rem,6vw,5rem);
}
.hero-content button{
    margin-top:30px;
    padding:14px 40px;
    border:none;
    border-radius:30px;
    background:var(--gold);
    cursor:pointer;
}

/* SECTIONS */
section{padding:100px 20px;max-width:1200px;margin:auto}
h2{
    font-family:Playfair Display,serif;
    font-size:42px;
    text-align:center;
    margin-bottom:30px;
}

/* FEATURES */
.features{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
    gap:20px;
    text-align:center;
    font-size:18px;
}

/* GALLERY */
.gallery-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:20px;
}
.gallery-grid img{
    width:100%;
    border-radius:20px;
    cursor:pointer;
    transition:.4s;
}
.gallery-grid img:hover{transform:scale(1.05)}

/* ===== VIDEO SECTION ===== */
.videos{
    padding:100px 8%;
    background:linear-gradient(180deg,#0b0b0b,#141414);
    text-align:center;
}

.section-title{
    font-size:42px;
    font-family:'Playfair Display',serif;
    color:#fff;
    margin-bottom:60px;
}

/* GRID */
.video-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:35px;
}

/* CARD */
.video-card{
    position:relative;
    border-radius:22px;
    overflow:hidden;
    cursor:pointer;
    box-shadow:0 30px 60px rgba(0,0,0,.6);
    transition:.5s;
}

.video-card img{
    width:100%;
    height:100%;
    object-fit:cover;
    filter:brightness(.8);
    transition:.5s;
}

.video-card:hover img{
    transform:scale(1.08);
    filter:brightness(.5);
}

/* PLAY BUTTON */
.play-btn{
    position:absolute;
    inset:0;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:70px;
    color:#fff;
    background:rgba(0,0,0,.25);
    transition:.4s;
}

.video-card:hover .play-btn{
    transform:scale(1.2);
}

/* ===== MODAL ===== */
.video-modal{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.95);
    display:none;
    align-items:center;
    justify-content:center;
    z-index:9999;
}

.video-modal iframe{
    width:80%;
    height:70%;
    border-radius:20px;
}

.close-btn{
    position:absolute;
    top:30px;
    right:40px;
    font-size:35px;
    color:white;
    cursor:pointer;
}

/* MOBILE */
@media(max-width:768px){
    .video-modal iframe{
        width:95%;
        height:45%;
    }
}

/* LOCATION */
.location iframe{
    width:100%;
    height:420px;
    border:none;
    border-radius:20px;
}

/* FOOTER */
footer{
    background:#111;
    color:white;
    text-align:center;
    padding:30px;
}

/* ===== PREMIUM NAVBAR ===== */
.lux-navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 999;
    backdrop-filter: blur(12px);
    background: rgba(15, 15, 15, 0.6);
    transition: all 0.4s ease;
}

.lux-navbar.scrolled {
    background: rgba(10, 10, 10, 0.95);
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

.nav-container {
    max-width: 1200px;
    margin: auto;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* LOGO */
.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-logo img {
    height: 42px;
    border-radius: 50%;
}

.nav-logo span {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    color: #fff;
    font-weight: 600;
}

/* LINKS */
.nav-links {
    display: flex;
    gap: 28px;
    align-items: center;
}

.nav-links a {
    position: relative;
    text-decoration: none;
    color: #fff;
    font-size: 15px;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0%;
    height: 2px;
    background: #d4af37;
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a:hover {
    color: #d4af37;
}

/* CTA BUTTON */
.nav-btn {
    padding: 10px 22px;
    border-radius: 30px;
    background: linear-gradient(135deg, #d4af37, #b8962e);
    color: #000 !important;
    font-weight: 500;
}

/* HAMBURGER */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.hamburger span {
    width: 26px;
    height: 2px;
    background: #fff;
}

/* MOBILE */
@media (max-width: 768px) {
    .nav-links {
        position: absolute;
        top: 100%;
        right: 0;
        background: rgba(10,10,10,0.95);
        flex-direction: column;
        width: 100%;
        padding: 20px 0;
        display: none;
    }

    .nav-links.active {
        display: flex;
    }

    .hamburger {
        display: flex;
    }
}

/* ===== FEATURES SECTION ===== */
/* ===== FEATURES WITH PHOTOS ===== */
.features-photo{
  padding:140px 8%;
  background:
    radial-gradient(circle at top,
      rgba(212,175,55,0.25),
      transparent 60%),
    linear-gradient(180deg,#0e0e0e,#151515);
  color:white;
  position:relative;
  overflow:hidden;
}

/* HEADER */
.features-header{
  text-align:center;
  max-width:750px;
  margin:0 auto 90px;
}

.luxury-badge{
  display:inline-block;
  padding:10px 26px;
  border-radius:40px;
  background:linear-gradient(135deg,#d4af37,#f3e5ab);
  color:#000;
  font-size:13px;
  font-weight:600;
  margin-bottom:25px;
}

.features-header h2{
  font-family:'Playfair Display',serif;
  font-size:48px;
  margin-bottom:20px;
}

.features-header p{
  font-size:16px;
  color:#d0d0d0;
  line-height:1.8;
}

/* GRID */
.features-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
  gap:35px;
}

/* CARD */
.feature-card{
  position:relative;
  height:420px;
  border-radius:26px;
  overflow:hidden;
  cursor:pointer;
  box-shadow:0 40px 80px rgba(0,0,0,.7);
  transition:.6s;
}

.feature-card img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:.6s;
}

/* OVERLAY */
.feature-overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(
    to top,
    rgba(0,0,0,.85),
    rgba(0,0,0,.2),
    transparent
  );
  padding:35px;
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
  opacity:.95;
  transition:.6s;
}

.feature-overlay h3{
  font-family:'Playfair Display',serif;
  font-size:22px;
  margin-bottom:12px;
}

.feature-overlay p{
  font-size:14px;
  line-height:1.7;
  color:#e0e0e0;
}

/* HOVER EFFECT */
.feature-card:hover{
  transform:translateY(-15px) scale(1.03);
}

.feature-card:hover img{
  transform:scale(1.1);
}

/* RESPONSIVE */
@media(max-width:900px){
  .features-header h2{
    font-size:36px;
  }

  .feature-card{
    height:360px;
  }
}

@media(max-width:480px){
  .feature-card{
    height:300px;
  }
}

/* ===== FEATURE VIDEO MODAL ===== */
.feature-video-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(6px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.feature-video-box {
  width: 90%;
  max-width: 900px;
  aspect-ratio: 16 / 9;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.7);
}

.feature-video-box iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.feature-video-modal .close-btn {
  position: absolute;
  top: 20px;
  right: 25px;
  font-size: 26px;
  color: #fff;
  cursor: pointer;
}

/* Mobile refinement */
@media (max-width: 768px) {
  .feature-video-box {
    border-radius: 14px;
  }
}

/* ===== PREMIUM ABOUT ===== */
.about-premium{
  padding:130px 8%;
  background:linear-gradient(180deg,#f7f5f1,#ffffff);
}

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

/* BADGE */
.about-badge{
  display:inline-block;
  padding:8px 18px;
  border-radius:30px;
  background:#d4af37;
  color:#000;
  font-size:13px;
  font-weight:500;
  margin-bottom:20px;
}

/* HEADLINE */
.about-left h2{
  font-family:'Playfair Display',serif;
  font-size:48px;
  line-height:1.2;
  margin-bottom:30px;
  color:#1c1c1c;
}

.about-left h2 span{
  color:#d4af37;
}

/* TEXT */
.about-left p{
  font-size:16px;
  line-height:1.9;
  color:#444;
  margin-bottom:18px;
}

.lead-text{
  font-size:18px;
  color:#222;
  font-weight:500;
}

/* RIGHT STATS */
.about-right{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:30px;
}

.stat-card{
  background:#ffffff;
  padding:35px 25px;
  border-radius:22px;
  text-align:center;
  box-shadow:0 25px 50px rgba(0,0,0,.12);
  transition:.4s;
}

.stat-card:hover{
  transform:translateY(-10px);
}

.stat-card span{
  font-size:34px;
  font-weight:700;
  color:#d4af37;
  display:block;
  margin-bottom:10px;
}

.stat-card p{
  font-size:14px;
  color:#555;
  letter-spacing:.5px;
}

/* RESPONSIVE */
@media(max-width:900px){
  .about-wrap{
    grid-template-columns:1fr;
    text-align:center;
  }

  .about-left h2{
    font-size:36px;
  }

  .about-right{
    grid-template-columns:1fr 1fr;
  }
}

@media(max-width:480px){
  .about-right{
    grid-template-columns:1fr;
  }
}

/* AVAILABILITY SECTION */
.availability {
    padding: 80px 20px;
    background: #f9f9f9;
    text-align: center;
}

.availability h2 {
    font-size: 32px;
    margin: 15px 0;
}

.availability-sub {
    max-width: 650px;
    margin: 0 auto 30px;
    color: #666;
    font-size: 16px;
}

/* RESPONSIVE CALENDAR */
.calendar-wrapper {
    position: relative;
    width: 100%;
    max-width: 1000px;
    margin: auto;
    padding-bottom: 75%; /* height control */
    height: 0;
}

.calendar-wrapper iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border-radius: 16px;
    background: #fff;
}

.calendar-wrapper iframe {
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

/* LEGEND */
.calendar-legend {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 25px;
    flex-wrap: wrap;
    font-size: 14px;
}

.calendar-legend span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.legend {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    display: inline-block;
}

.legend.booked {
    background: #e53935;
}

.legend.tentative {
    background: #fbc02d;
}

.legend.blocked {
    background: #1e88e5;
}

@media (max-width: 768px) {
  .calendar-wrapper {
    padding-bottom: 120%;
  }
}

/* Mobile Fix */
@media (max-width: 768px) {
  .availability h2 {
    font-size: 2rem;
  }
}
.availability {
    animation: fadeUp 0.8s ease-in-out;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.site-footer {
    background: #0f0f0f;
    text-align: center;
    padding: 20px 10px;
    color: #aaa;
}

.site-footer p {
    margin: 5px 0;
    font-size: 14px;
}

.dev-credit a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
}

.dev-credit a:hover {
    text-decoration: underline;
}

/* PREMIUM VIDEO INDICATOR */
.feature-card .play-indicator {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 10;
}

.feature-card .play-indicator::after {
    content: '';
    width: 0; 
    height: 0; 
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 15px solid #fff;
    margin-left: 5px;
}

/* Show play button on hover */
.feature-card:hover .play-indicator {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

/* Glassmorphism Badge */
.video-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    padding: 6px 15px;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 30px;
    color: #d4af37;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 10;
}

/* Pulsing Red Dot */
.video-badge::before {
    content: '';
    width: 6px;
    height: 6px;
    background: #ff4b2b;
    border-radius: 50%;
    box-shadow: 0 0 8px #ff4b2b;
}


.parallax {
    background-attachment: fixed;
}

@media (max-width: 768px) {
    .parallax {
        background-attachment: scroll; /* mobile safe */
    }
}

html {
    scroll-behavior: smooth;
}
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ===== IMAGE LIGHTBOX MODAL ===== */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    padding: 20px;
}

/* Image */
.lightbox img {
    max-width: 90%;
    max-height: 85%;
    border-radius: 16px;
    box-shadow: 0 30px 80px rgba(0,0,0,0.6);
    animation: zoomIn 0.3s ease;
}

/* Close Button */
.lightbox-close {
    position: absolute;
    top: 25px;
    right: 30px;
    font-size: 32px;
    color: #fff;
    cursor: pointer;
    z-index: 10001;
}

/* Animation */
@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.85);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Mobile Fix */
@media (max-width: 768px) {
    .lightbox img {
        max-width: 95%;
        max-height: 75%;
    }
}

.no-scroll {
    overflow: hidden;
}

/* ===== FLOATING SMART CTA ===== */
.smart-cta {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 9999;
}

/* Main Button */
.cta-main {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    font-size: 22px;
    background: linear-gradient(135deg, #d4af37, #b8962e);
    color: #000;
    box-shadow: 0 15px 40px rgba(0,0,0,0.35);
}

/* Actions Container */
.cta-actions {
    position: absolute;
    bottom: 70px;
    right: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(10px);
    transition: all 0.35s ease;
}

/* Active State */
.smart-cta.active .cta-actions {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

/* Individual Action */
.cta-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(15,15,15,0.95);
    color: #fff;
    padding: 12px 16px;
    border-radius: 30px;
    font-size: 14px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    box-shadow: 0 12px 30px rgba(0,0,0,0.4);
}

/* Hover */
.cta-item:hover {
    background: #d4af37;
    color: #000;
}

/* Hide text on very small screens */
@media (max-width: 360px) {
    .cta-item span {
        display: none;
    }
}

/* ===== MOBILE CTA FIX ===== */
@media (max-width: 768px) {
    .smart-cta {
        right: 16px;
        bottom: 90px; /* lift above mobile bottom bar / gesture area */
    }
}

@media (max-width: 768px) {
    .cta-main {
        width: 52px;
        height: 52px;
        font-size: 20px;
    }
}

/* ===== STICKY MOBILE BOOKING BAR ===== */
.mobile-booking-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 56px;
    background: rgba(15,15,15,0.95);
    backdrop-filter: blur(10px);
    display: none;
    align-items: center;
    justify-content: space-around;
    z-index: 9998;
    box-shadow: 0 -10px 30px rgba(0,0,0,0.4);
}

/* Items */
.mb-item {
    flex: 1;
    height: 100%;
    border: none;
    background: transparent;
    color: #fff;
    text-decoration: none;
    font-size: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    cursor: pointer;
}

/* Highlight Book */
.mb-item.book {
    color: #d4af37;
    font-weight: 600;
}

/* Show ONLY on mobile */
@media (max-width: 768px) {
    .mobile-booking-bar {
        display: flex;
    }
}

/* ===== VENUE MANAGER ===== */
.venue-manager {
    padding: 120px 8%;
    background: #fff;
    text-align: center;
}

.manager-card {
    max-width: 420px;
    margin: 40px auto 0;
    background: #f9f9f9;
    padding: 40px 30px;
    border-radius: 24px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.12);
}

.manager-card img {
    width: 110px;
    height: 110px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 20px;
    border: 4px solid #d4af37;
}

.manager-card h3 {
    font-size: 20px;
    margin-bottom: 6px;
}

.manager-card .role {
    font-size: 14px;
    color: #888;
    margin-bottom: 18px;
}

.manager-text {
    font-size: 15px;
    line-height: 1.7;
    color: #444;
    margin-bottom: 25px;
}

.manager-btn {
    display: inline-block;
    padding: 12px 26px;
    background: linear-gradient(135deg, #25D366, #1ebe5d);
    color: #fff;
    text-decoration: none;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 500;
}

/* Mobile spacing */
@media (max-width: 768px) {
    .venue-manager {
        padding: 90px 6%;
    }
}

/* ===== BOOKING PANEL ===== */
.booking-panel {
    max-width: 420px;
    margin: 40px auto 0;
    padding: 30px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.12);
    text-align: center;
}

.booking-panel h3 {
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
}

.booking-panel input,
.booking-panel select {
    width: 100%;
    padding: 12px 14px;
    margin-bottom: 14px;
    border-radius: 12px;
    border: 1px solid #ddd;
    font-size: 14px;
}

.booking-panel button {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg,#25D366,#1ebe5d);
    color: #fff;
    border: none;
    border-radius: 30px;
    font-size: 15px;
    cursor: pointer;
}

/* ===== GOOGLE REVIEWS (CURATED) ===== */
.google-reviews {
    padding: 120px 8%;
    background: linear-gradient(180deg,#ffffff,#f7f7f7);
    text-align: center;
}

.google-reviews h2 {
    margin: 15px 0 10px;
}

.rating-summary {
    font-size: 20px;
    color: #d4af37;
    margin-bottom: 50px;
}

.rating-summary span {
    display: block;
    font-size: 14px;
    color: #666;
    margin-top: 6px;
}

/* GRID */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: auto;
}

/* CARD */
.review-card {
    background: #fff;
    padding: 30px;
    border-radius: 22px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.12);
    transition: transform 0.4s ease;
}

.review-card:hover {
    transform: translateY(-10px);
}

.review-card p {
    font-size: 15px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 20px;
}

.review-card h4 {
    font-size: 16px;
    margin-bottom: 4px;
}

.review-card span {
    font-size: 13px;
    color: #888;
}

/* GOOGLE BUTTON */
.google-review-btn {
    display: inline-block;
    margin-top: 50px;
    padding: 14px 34px;
    border-radius: 30px;
    background: linear-gradient(135deg,#4285F4,#34A853);
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    box-shadow: 0 15px 40px rgba(0,0,0,0.25);
}

/* Mobile spacing */
@media (max-width: 768px) {
    .google-reviews {
        padding: 90px 6%;
    }
}

/* ===== FIX MOBILE DATE INPUT ===== */
.booking-panel input[type="date"] {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;

    background-color: #ffffff;
    color: #222;

    min-height: 44px;
    font-size: 14px;
    padding: 12px 14px;

    border-radius: 12px;
    border: 1px solid #ddd;
}

/* Ensure date text is visible on iOS */
.booking-panel input[type="date"]::-webkit-datetime-edit {
    color: #222;
}

.booking-panel input[type="date"]::-webkit-datetime-edit-text,
.booking-panel input[type="date"]::-webkit-datetime-edit-month-field,
.booking-panel input[type="date"]::-webkit-datetime-edit-day-field,
.booking-panel input[type="date"]::-webkit-datetime-edit-year-field {
    color: #222;
}

/* Placeholder style fallback */
.booking-panel input[type="date"]::placeholder {
    color: #777;
}

.booking-label {
    display: block;
    text-align: left;
    font-size: 13px;
    color: #555;
    margin-bottom: 6px;
}

/* Default */
.date-desktop {
    width: 100%;
    padding: 12px 14px;
    border-radius: 12px;
    border: 1px solid #ddd;
    font-size: 14px;
}

/* Hide mobile elements on desktop */
.date-mobile,
.real-mobile-date {
    display: none;
}

/* Mobile behavior */
@media (max-width: 768px) {
    .date-desktop {
        display: none;
    }

    .date-mobile {
        display: block;
        width: 100%;
        padding: 12px 14px;
        border-radius: 12px;
        border: 1px solid #ddd;
        font-size: 14px;
        background: #fff;
        color: #222;
    }

     .real-mobile-date {
        position: absolute;
        opacity: 0;
        width: 100%;
        height: 44px;
        z-index: -1;
    }
}

.date-wrapper {
    position: relative;
    width: 100%;
    cursor: pointer;
}

#bookingDateDisplay {
    width: 100%;
    padding: 12px 14px;
    border-radius: 12px;
    border: 1px solid #ddd;
    font-size: 14px;
    background: #fff;
    color: #222;
    cursor: pointer;
}

/* Hide real picker but keep it functional */
#bookingDateReal {
    position: absolute;
    inset: 0;
    opacity: 0;
    cursor: pointer;
}
/* FIX: Make full date input clickable on desktop */
.booking-panel input[type="date"] {
    cursor: pointer;
    pointer-events: auto;
    background-color: #fff;
}

/* Chrome / Edge full click support */
.booking-panel input[type="date"]::-webkit-calendar-picker-indicator {
    cursor: pointer;
    opacity: 1;
}
.booking-panel select,
.booking-panel button {
    width: 100%;
    padding: 12px 14px;
    margin-bottom: 14px;
    border-radius: 12px;
    border: 1px solid #ddd;
    font-size: 14px;
}