:root{
  --bg:#000000;
  --accent:#d4af37;
  --accent-dark:#b58c21;
  --text:#ffffff;
  --muted:#c5c5c5;
  --surface:#0f0f0f;
  --border:rgba(212,175,55,0.35);
  --shadow: 0 10px 30px rgba(0,0,0,0.65);
  --radius:12px;
  --header-h:72px;
  font-family: 'Poppins', system-ui, -apple-system, 'Segoe UI', Roboto, Arial, sans-serif;
}
*{box-sizing:border-box}
html,body{height:100%;background:var(--bg);}
body{
  margin:0;
  background:var(--bg);
  color:var(--text);
  -webkit-font-smoothing:antialiased;
  line-height:1.5;
  padding-top:var(--header-h); /* avoid content under fixed header */
  min-height:100vh;
}
.has-sticky-cta{
  padding-top: calc(var(--header-h) + 64px); /* account for fixed CTA bar */
}

/* layout */
.container{max-width:1100px;margin:0 auto;padding:0 6px}
.header-inner{display:flex;align-items:center;gap:34px;justify-content:space-between}

/* Header / Navbar */
.site-header{
  position:fixed;
  top:0;left:0;right:0;
  height:var(--header-h);
  background:rgba(0,0,0,0.92);
  z-index:120;
  border-bottom:1px solid var(--border);
  box-shadow:0 6px 24px rgba(0,0,0,0.55);
  backdrop-filter: blur(6px);
  display:flex;
  align-items:center;
}
.brand{font-weight:700;color:var(--text);text-decoration:none;font-size:1.125rem}
.main-nav ul{list-style:none;padding:0;margin:0;display:flex;gap:32px;align-items:center}
.main-nav a{
  color:var(--muted);
  text-decoration:none;
  padding:8px 10px;
  border-radius:8px;
  transition:color .18s ease;
  position:relative; /* required for the underline pseudo-element */
  display:inline-block;
}

/* animated gold underline */
.main-nav a::after{
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px; /* sits just below the link text */
  height: 3px;
  width: 0;
  background: var(--accent);
  border-radius: 3px;
  transition: width .22s cubic-bezier(.2,.9,.2,1), opacity .18s ease;
  opacity: 0.95;
}

/* expand underline on hover, focus and active */
.main-nav a:hover,
.main-nav a:focus,
.main-nav a:focus-visible{
  color: var(--accent);
  transform: translateY(-3px);
}
.main-nav a.active{color:var(--accent)}
.main-nav a:hover::after,
.main-nav a:focus::after,
.main-nav a:focus-visible::after,
.main-nav a.active::after{
  width: 100%;
}

/* CTA */
.header-cta{display:flex;align-items:center;gap:12px}
.btn{display:inline-block;padding:9px 14px;border-radius:10px;text-decoration:none;border:1px solid var(--border);cursor:pointer;transition:all .16s ease;font-weight:600;color:var(--text);background:transparent}
.btn.primary{background:var(--accent);color:#0f0f0f;box-shadow:var(--shadow);border-color:var(--accent)}
.btn.primary:hover{background:var(--accent-dark);transform:translateY(-3px);color:#000}
.btn.signin{background:transparent;color:var(--accent);border:1px solid var(--border);padding:8px 12px}
.btn.signin:hover{background:rgba(212,175,55,0.12)}
#deleteCustomerBtn{background:#c73833;color:#fff;border-color:#c73833}
#deleteCustomerBtn:hover{background:#aa2d2b;color:#fff}

/* Hamburger (mobile) */
.nav-toggle{display:none;background:none;border:0;padding:8px;cursor:pointer}
.hamburger{width:22px;height:2px;background:var(--text);display:block;position:relative}
.hamburger::after,.hamburger::before{content:"";position:absolute;left:0;right:0;height:2px;background:var(--text)}
.hamburger::before{top:-7px}
.hamburger::after{top:7px}

/* Hero */
.hero{position:relative}
.hero-image{
  height:420px;
  background-size:cover;
  background-position:center 65%;
  filter:brightness(1);
}
.hero-content{position:relative;text-align:center;padding:40px 20px;margin-top:-120px;color:#fff}
.hero-content h1{font-size:2.25rem;margin:0 0 8px;text-shadow:0 10px 30px rgba(0,0,0,0.45)}
.hero-content .sub{opacity:.95;margin-bottom:18px}

/* Home page layering */
.home-page main{
  background:var(--bg);
}
.home-page .hero{
  padding-bottom:80px;
  overflow:hidden;
  background:
    radial-gradient(120% 120% at 16% 0%, rgba(212,175,55,0.12), transparent 55%),
    radial-gradient(120% 140% at 85% 10%, rgba(212,175,55,0.09), transparent 60%),
    linear-gradient(135deg, rgba(10,10,10,0.96), #000000 55%);
}
.home-page .hero::after{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.32) 100%),
    radial-gradient(140% 190% at 50% 18%, rgba(255,255,255,0.05), transparent 60%),
    radial-gradient(80% 60% at 50% 0%, rgba(212,175,55,0.08), transparent 70%);
  opacity:0.38;
  pointer-events:none;
}
.home-page .hero::before{
  content:"";
  position:absolute;
  inset:-6%;
  background:radial-gradient(80% 80% at 50% 12%, rgba(0,0,0,0.28), rgba(0,0,0,0.65) 70%);
  z-index:0;
  pointer-events:none;
}
.home-page .hero-image{
  height:460px;
  position:relative;
  isolation:isolate;
  background-blend-mode:normal;
  box-shadow:inset 0 -24px 70px rgba(0,0,0,0.32);
}
.home-page .hero-overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(180deg, rgba(0,0,0,0.1), rgba(0,0,0,0.3));
}
.home-page .hero-content{
  margin:-90px auto 0;
  max-width:820px;
  padding:46px 34px 40px;
  background:linear-gradient(145deg, rgba(10,10,10,0.9), rgba(16,16,16,0.88));
  border:1px solid rgba(212,175,55,0.4);
  border-radius:16px;
  box-shadow:0 26px 70px rgba(0,0,0,0.55), 0 0 0 6px rgba(212,175,55,0.06);
  animation: heroFadeUp 0.65s ease 0.08s both;
  position:relative;
  overflow:hidden;
}
.home-page .hero-content::after{
  content:"";
  position:absolute;
  inset:-12px;
  border-radius:18px;
  background:linear-gradient(120deg, rgba(212,175,55,0.12), rgba(212,175,55,0));
  opacity:0.6;
  z-index:-1;
}
.home-page .hero-content::before{
  content:"";
  position:absolute;
  inset:-10px;
  border-radius:24px;
  border:3px solid var(--accent);
  box-shadow:0 0 0 9px rgba(212,175,55,0.2);
  opacity:0.6;
  transform:scale(1);
  transition:opacity 0.22s ease, transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
  pointer-events:none;
  animation: heroRingPulse 4.2s ease-in-out infinite;
}
.home-page .hero-content:hover::before,
.home-page .hero-content:focus-within::before{
  opacity:1;
  box-shadow:0 0 0 12px rgba(212,175,55,0.3);
  border-color: var(--accent);
}
.home-page .hero-content h1{
  text-shadow:0 14px 36px rgba(0,0,0,0.65);
}
.hero-content,
.hero-content h1,
.hero-content .sub{
  will-change: transform, opacity;
}

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

@keyframes heroRingPulse {
  0%   { opacity: 0.6; box-shadow:0 0 0 9px rgba(212,175,55,0.2); }
  50%  { opacity: 0.78; box-shadow:0 0 0 11px rgba(212,175,55,0.28); }
  100% { opacity: 0.6; box-shadow:0 0 0 9px rgba(212,175,55,0.2); }
}
.home-page .hero-content .btn.primary{
  box-shadow:0 14px 36px rgba(0,0,0,0.55), 0 0 0 3px rgba(212,175,55,0.3);
  background:linear-gradient(135deg, rgba(212,175,55,0.92), rgba(155,126,60,0.92));
  color:#0b0b0b;
}
.home-page .hero-content .btn.primary:hover{
  background:linear-gradient(135deg, rgba(212,175,55,1), rgba(155,126,60,0.98));
  box-shadow:0 16px 44px rgba(0,0,0,0.6), 0 0 0 3px rgba(212,175,55,0.42);
}
.home-page .header-cta .btn.signin{
  background:linear-gradient(135deg, rgba(212,175,55,0.24), rgba(212,175,55,0.1));
  border-color:rgba(212,175,55,0.6);
  color:var(--accent);
}
.home-page .header-cta .btn.signin:hover{
  background:linear-gradient(135deg, rgba(212,175,55,0.35), rgba(212,175,55,0.16));
}
.home-page section.services-preview,
.home-page section.testimonials{
  position:relative;
  padding:58px 0;
  isolation:isolate;
}
.home-page section.services-preview::before,
.home-page section.testimonials::before{
  content:"";
  position:absolute;
  inset:0;
  left:50%;
  width:100vw;
  transform:translateX(-50%);
  z-index:0;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140' viewBox='0 0 140 140'%3E%3Cdefs%3E%3ClinearGradient id='g' x1='0' y1='0' x2='1' y2='1'%3E%3Cstop stop-color='%23ffffff' stop-opacity='0.02' offset='0'/%3E%3Cstop stop-color='%23ffffff' stop-opacity='0' offset='1'/%3E%3C/linearGradient%3E%3C/defs%3E%3Crect width='140' height='140' fill='url(%23g)'/%3E%3Cpath d='M0 70h140M70 0v140' stroke='%23ffffff' stroke-opacity='0.02' stroke-width='1'/%3E%3C/svg%3E");
  background-size:120px 120px;
  background-repeat:repeat;
}
.home-page section.services-preview::before{
  background:
    linear-gradient(180deg, rgba(255,255,255,0.02), rgba(0,0,0,0.08)),
    linear-gradient(145deg, rgba(18,18,18,0.92), rgba(8,8,8,0.92));
}
.home-page section.testimonials::before{
  background:
    radial-gradient(160% 160% at 20% 20%, rgba(212,175,55,0.08), transparent 60%),
    linear-gradient(180deg, rgba(10,10,10,0.96), rgba(4,4,4,0.94));
}
.home-page section.services-preview::after,
.home-page section.testimonials::after{
  filter: drop-shadow(0 6px 18px rgba(0,0,0,0.4));
}
.home-page .services-preview .gold-panel,
.home-page .testimonials .gold-panel{
  position:relative;
  z-index:1;
  background:linear-gradient(160deg, rgba(18,18,18,0.95), rgba(12,12,12,0.92));
  border:1px solid rgba(212,175,55,0.5);
  box-shadow:0 18px 55px rgba(0,0,0,0.55);
}
.home-page .services-preview .grid{
  background:rgba(255,255,255,0.015);
  border-radius:12px;
  padding:12px;
  box-shadow:inset 0 1px 0 rgba(255,255,255,0.05);
}
.home-page .service-card{
  background:linear-gradient(160deg, rgba(16,16,16,0.98), rgba(8,8,8,0.96));
  border:1px solid rgba(255,255,255,0.08);
  box-shadow:0 12px 28px rgba(0,0,0,0.45);
  transition:transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}
.home-page .service-card:hover{
  transform:translateY(-4px);
  border-color:rgba(212,175,55,0.45);
  box-shadow:0 16px 38px rgba(0,0,0,0.5), 0 0 0 2px rgba(212,175,55,0.18);
}
.home-page .testimonials .testimonial{
  background:linear-gradient(170deg, rgba(12,12,12,0.95), rgba(6,6,6,0.94));
  border:1px solid rgba(255,255,255,0.07);
  box-shadow:0 12px 32px rgba(0,0,0,0.48);
  position:relative;
}
.home-page .testimonials .testimonial::before{
  content:"";
  position:absolute;
  inset:0;
  border-radius:inherit;
  border:1px solid rgba(212,175,55,0.12);
  pointer-events:none;
}
.home-page .testimonials .stars{
  color:var(--accent);
  text-shadow:0 6px 18px rgba(0,0,0,0.45);
}
.home-page section + section{
  margin-top:-10px;
}
.home-page section.services-preview::after,
.home-page section.testimonials::after{
  content:"";
  position:absolute;
  left:50%;
  bottom:0;
  width:200px;
  height:1px;
  transform:translateX(-50%);
  background:linear-gradient(90deg, rgba(255,255,255,0), rgba(212,175,55,0.6), rgba(255,255,255,0));
  opacity:0.7;
}

/* Main content */
.main-content{padding-bottom:60px}
.page-head{text-align:center;margin:36px 0}
.lead{color:var(--muted);max-width:780px;margin:0 auto}

/* Cards & grids */
.about-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:20px;margin:24px 0}
.card,
.gold-panel{
  background:#111111;
  color:var(--text);
  padding:24px;
  border-radius:10px;
  box-shadow:var(--shadow);
  border:1px solid var(--accent);
}
.services-preview .grid{display:grid;grid-template-columns:repeat(3,1fr);gap:18px;margin-top:16px}
.services-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:18px;
  margin-top:16px;
}
.service-card{
  background:#111111;
  color:var(--text);
  padding:18px;
  border-radius:10px;
  border:1px solid var(--accent);
  box-shadow:var(--shadow);
}
.service-card .price-line{
  margin-top:12px;
  font-weight:600;
  color:var(--accent);
}
.service-card .price-line span{
  text-transform:uppercase;
  letter-spacing:.05em;
  color:#f5f5f5;
  font-size:.85rem;
}
.home-services-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(240px, 1fr));
  gap:18px;
  margin-top:12px;
}
.home-service-card{
  display:block;
  border-radius:14px;
  overflow:hidden;
  position:relative;
  background:#0c0c0c;
  border:1px solid rgba(255,255,255,0.08);
  box-shadow:0 10px 30px rgba(0,0,0,0.4);
  cursor:pointer;
  transition:transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.home-service-image{
  position:relative;
  padding-top:62%;
  background-size:cover;
  background-position:center;
  background-repeat:no-repeat;
  transition:transform 0.3s ease;
}
.home-service-overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(180deg, rgba(0,0,0,0) 45%, rgba(0,0,0,0.7) 100%);
  display:flex;
  align-items:flex-end;
  justify-content:flex-start;
  padding:14px 16px;
}
.home-service-overlay h3{
  margin:0;
  font-size:1.05rem;
  color:#f5f5f5;
}
.home-service-card:hover,
.home-service-card:focus-visible{
  transform:translateY(-4px);
  box-shadow:0 14px 38px rgba(0,0,0,0.5);
  border-color:rgba(255,255,255,0.18);
  outline:none;
}
.home-service-card:hover .home-service-image,
.home-service-card:focus-visible .home-service-image{
  transform:scale(1.03);
}
.services-cta{
  display:flex;
  justify-content:center;
  margin-top:16px;
}
.testimonials{margin-top:32px}
.testimonials .testimonial + .testimonial{margin-top:20px}
.testimonial{
  border:1px solid var(--accent);
  border-radius:10px;
  padding:20px;
  background:#111111;
  box-shadow:var(--shadow);
}
.testimonials .stars{display:inline-block;margin-bottom:8px;color:var(--accent)}
.mobile-faq{margin:32px 0}
.mobile-faq .faq-card{
  padding:20px;
  border:1px solid var(--accent);
  border-radius:10px;
  background:#111111;
}
.mobile-faq .faq-card h2{margin:0;padding:24px 24px 12px}
.accordion{border-top:1px solid var(--border)}
.accordion-item{border-bottom:1px solid var(--border)}
.accordion-toggle{
  width:100%;
  background:transparent;
  color:var(--text);
  font-size:1rem;
  font-weight:600;
  border:0;
  padding:18px 24px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  cursor:pointer;
  text-align:left;
}
.accordion-toggle span:first-child{transition:color .18s ease}
.accordion-toggle:hover span:first-child{color:var(--accent)}
.accordion-toggle .chevron{
  width:12px;
  height:12px;
  border-right:2px solid var(--accent);
  border-bottom:2px solid var(--accent);
  transform:rotate(45deg);
  transition:transform .2s ease;
}
.accordion-item.open .accordion-toggle .chevron{transform:rotate(-135deg)}
.accordion-panel{
  max-height:0;
  overflow:hidden;
  transition:max-height .3s ease;
  padding:0 24px;
  background:#050505;
}
.accordion-panel p{margin:0;padding:0 0 18px;color:var(--text)}

/* Forms */
.contact-grid{display:grid;grid-template-columns:1fr 320px;gap:28px;align-items:start}
.contact-form,
.payment-form{
  display:flex;
  flex-direction:column;
  gap:10px;
}
.contact-form label,
.payment-form label{
  display:block;
  font-size:.95rem;
  color:#f5f5f5;
  font-weight:600;
}
.contact-form input,
.contact-form textarea,
.payment-form input,
.payment-form textarea{
  width:100%;
  padding:12px 14px;
  border-radius:8px;
  border:1.5px solid rgba(255,255,255,0.1);
  background:#1a1a1a;
  color:#f5f5f5;
  font-size:1rem;
}
.contact-form input:focus,
.contact-form textarea:focus,
.payment-form input:focus,
.payment-form textarea:focus{
  border-color:var(--accent);
  box-shadow:0 0 0 2px rgba(212,175,55,0.3);
  outline:none;
}
.contact-options{
  display:flex;
  justify-content:center;
}
.contact-card{
  width:min(780px, 100%);
  margin:0 auto;
  padding:28px 30px;
}
.contact-list{
  display:flex;
  flex-direction:column;
  gap:14px;
}
.contact-line{
  margin:0;
  font-size:1.05rem;
  color:#f5f5f5;
  display:flex;
  align-items:center;
  gap:10px;
}
.contact-line a{
  color:var(--accent);
  font-weight:700;
}
.contact-icon{
  width:32px;
  height:32px;
  border-radius:10px;
  background:rgba(255, 210, 120, 0.12);
  color:var(--accent);
  display:inline-flex;
  align-items:center;
  justify-content:center;
  flex-shrink:0;
  box-shadow:0 10px 22px rgba(0,0,0,0.35);
}
.contact-icon svg{
  width:18px;
  height:18px;
}
.loyalty-shell{
  margin-top:48px;
}
@media (max-width:640px){
  .loyalty-shell{
    margin-top:36px;
  }
}
.payment-options{
  display:flex;
  justify-content:center;
}
.payment-card{
  text-align:left;
}
.payment-card--list{
  width:min(780px, 100%);
  margin:0 auto;
  padding:28px 30px;
}
.payment-lines{
  display:flex;
  flex-direction:column;
  gap:12px;
  margin:12px 0 6px;
}
.payment-line{
  display:flex;
  align-items:center;
  gap:10px;
  padding:12px 14px;
  border:1px solid rgba(255,255,255,0.12);
  border-radius:10px;
  background:#0b0b0b;
  color:#f5f5f5;
  font-size:1.05rem;
  transition:border-color .18s ease, box-shadow .18s ease, background .18s ease;
}
.payment-line:hover,
.payment-line:focus-within{
  border-color:rgba(255,210,120,0.6);
  box-shadow:0 10px 26px rgba(0,0,0,0.35);
  background:rgba(255,255,255,0.04);
}
.payment-icon{
  width:32px;
  height:32px;
  border-radius:10px;
  background:rgba(255, 210, 120, 0.12);
  color:var(--accent);
  display:inline-flex;
  align-items:center;
  justify-content:center;
  flex-shrink:0;
  box-shadow:0 10px 22px rgba(0,0,0,0.35);
  font-weight:800;
}
.payment-icon svg{
  width:18px;
  height:18px;
}
.payment-text{
  font-weight:700;
}
.payment-helper{
  margin:10px 0 0;
  color:#dcdcdc;
}
.booking-form{max-width:640px;margin:0 auto}
.form-card{
  background:#111111;
  padding:24px;
  border-radius:10px;
  border:1px solid var(--accent);
  color:#f5f5f5;
  box-shadow:0 18px 50px rgba(0,0,0,0.4);
}
.booking-form form{
  margin:0;
}
.booking-form label{
  display:block;
  color:#f5f5f5;
  font-size:.95rem;
  margin-top:14px;
  font-weight:600;
}
.booking-form label:first-of-type{margin-top:0}
.form-section-title{
  text-transform:uppercase;
  letter-spacing:.08em;
  font-size:.78rem;
  color:var(--accent);
  font-weight:700;
  margin:12px 0 8px;
}
.form-section-title:first-child{margin-top:0}
.form-divider{
  height:1px;
  width:100%;
  background:linear-gradient(90deg, rgba(255,255,255,0), rgba(212,175,55,0.6), rgba(255,255,255,0));
  margin:18px 0;
  border-radius:999px;
}
.booking-form input,
.booking-form select,
.booking-form textarea{
  width:100%;
  padding:12px 14px;
  border-radius:8px;
  border:1.5px solid rgba(255,255,255,0.1);
  background:#1a1a1a;
  color:#f5f5f5;
  margin-top:8px;
  font-size:1rem;
  transition:border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.service-price-hint{
  margin:6px 0 2px;
  color:var(--accent);
  font-weight:600;
  font-size:0.95rem;
  min-height:20px;
}
.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus{
  border-color:var(--accent);
  box-shadow:0 0 0 2px rgba(212,175,55,0.3);
  outline:none;
}
.booking-form input::placeholder,
.booking-form textarea::placeholder{color:#b5b5b5}
.booking-form .time-row{display:flex;flex-wrap:wrap;gap:14px;align-items:center;margin-top:6px}
.booking-form .time-picker{gap:18px;flex-wrap:wrap}
.booking-form .time-input-wrapper{
  position:relative;
  flex:1 1 240px;
  min-width:220px;
}
.booking-form .time-display{
  width:100%;
  padding:12px 16px;
  border-radius:8px;
  border:1.5px solid rgba(255,255,255,0.1);
  background:#1a1a1a;
  color:#f5f5f5;
  font-size:1rem;
  cursor:pointer;
}
.booking-form .time-display::placeholder{color:#b5b5b5}
.time-input-wrapper.active .time-display{
  border-color:var(--accent);
  box-shadow:0 0 0 2px rgba(212,175,55,0.3);
}
.time-dropdowns{
  position:absolute;
  top:calc(100% + 8px);
  left:0;
  display:flex;
  gap:10px;
  background:#111111;
  border:1px solid rgba(255,255,255,0.15);
  border-radius:10px;
  padding:12px;
  box-shadow:0 18px 30px rgba(0,0,0,0.2);
  opacity:0;
  pointer-events:none;
  transform:translateY(6px);
  transition:opacity .18s ease, transform .18s ease;
  z-index:90;
}
.time-dropdowns.visible{
  opacity:1;
  pointer-events:auto;
  transform:none;
  border-color:var(--accent);
  box-shadow:0 22px 36px rgba(0,0,0,0.25);
}
.time-dropdowns select{
  background:#1a1a1a;
  border:1.5px solid rgba(255,255,255,0.1);
  color:#f5f5f5;
  font-weight:600;
  border-radius:8px;
  padding:8px 14px;
  font-size:1rem;
  min-width:120px; /* ensures "Hour" and "Minutes" labels fit without truncation */
}
.time-dropdowns select:focus{
  border-color:var(--accent);
  outline:none;
  box-shadow:0 0 0 2px rgba(212,175,55,0.3);
}
.booking-form .ampm-toggle{
  display:flex;
  border:1.5px solid rgba(255,255,255,0.15);
  border-radius:999px;
  overflow:hidden;
  background:#1a1a1a;
}
.booking-form .ampm-toggle button{
  font-family:inherit;
  font-weight:600;
  font-size:1rem;
  padding:10px 22px;
  border:0;
  background:transparent;
  color:#f5f5f5;
  cursor:pointer;
  transition:background .18s ease,color .18s ease;
}
.booking-form .ampm-toggle button + button{border-left:1px solid rgba(0,0,0,0.08)}
.booking-form .ampm-toggle button.active{
  background:#000000;
  color:var(--accent);
}
.booking-form .ampm-toggle button:focus-visible{outline:2px solid var(--accent-dark);outline-offset:2px}
.booking-form .info-link{display:inline-flex;width:20px;height:20px;border-radius:50%;border:1px solid var(--accent);color:var(--accent);align-items:center;justify-content:center;font-size:.75rem;font-weight:600;margin-left:6px;text-decoration:none;transition:background .18s ease,color .18s ease}
.booking-form .info-link:hover{background:var(--accent);color:#000}
.booking-form input[type="date"],
.booking-form select{font-family:inherit}
.date-picker{
  display:flex;
  align-items:center;
  gap:16px;
  border:1.5px solid rgba(255,255,255,0.15);
  border-radius:10px;
  padding:0 0 0 16px;
  background:#1a1a1a;
  margin-top:10px;
  transition:border-color .2s ease, box-shadow .2s ease;
}
.date-picker:focus-within{
  border-color:var(--accent);
  box-shadow:0 0 0 2px rgba(212,175,55,0.3);
}
.date-picker .date-field{
  border:0;
  border-radius:0;
  margin:0;
  padding:14px 0;
  background:transparent;
  color:#f5f5f5;
}
.date-picker input[type="date"]::-webkit-calendar-picker-indicator{
  opacity:0;
  display:none;
}
.date-picker input[type="date"]::-webkit-inner-spin-button,
.date-picker input[type="date"]::-webkit-clear-button{
  display:none;
}
.date-picker input[type="date"]{
  color-scheme:light;
}
.date-picker .date-field:focus{
  border:0;
  box-shadow:none;
}
.calendar-btn{
  border:0;
  background:transparent;
  color:#f5f5f5;
  font-weight:600;
  font-size:.95rem;
  padding:0 18px;
  height:100%;
  border-left:1px solid rgba(0,0,0,0.1);
  display:flex;
  align-items:center;
  gap:6px;
  cursor:pointer;
  transition:color .18s ease, background .18s ease;
}
.calendar-btn:hover,
.calendar-btn:focus-visible{
  color:var(--accent);
  background:rgba(212,175,55,0.1);
  outline:none;
}
.date-field{
  flex:1;
  min-width:200px;
}
.booking-form textarea{margin-bottom:10px;resize:vertical;min-height:120px}
.form-section-title + label[for="date"]{margin-top:0}
#notes{margin-bottom:10px}
.booking-submit{
  display:block;
  width:100%;
  max-width:360px;
  margin:34px auto 0;
  padding:15px 20px;
  border-radius:999px;
  border:2px solid var(--accent);
  background:#050505;
  color:var(--accent);
  font-size:1.05rem;
  font-weight:700;
  cursor:pointer;
  transition:transform .18s ease, background .18s ease, color .18s ease, box-shadow .18s ease;
  box-shadow:0 18px 30px rgba(0,0,0,0.35);
}
.booking-submit:hover{
  background:#000000;
  color:#fff;
  transform:translateY(-2px);
}
.toast{
  position:fixed;
  left:50%;
  bottom:40px;
  transform:translate(-50%,20px);
  background:#040404;
  color:#fefefe;
  padding:16px 26px;
  border-radius:16px;
  font-weight:600;
  opacity:0;
  pointer-events:none;
  transition:opacity .3s ease, transform .3s ease;
  box-shadow:0 12px 36px rgba(0,0,0,0.55);
  z-index:200;
  border-left:5px solid var(--accent);
  font-size:1.05rem;
}
.toast.visible{
  opacity:1;
  transform:translate(-50%,0);
}
.toast.error{
  background:#ffdad6;
  color:#2b0d0d;
  box-shadow:0 10px 30px rgba(0,0,0,0.65);
}
.booking-success{display:none;margin-top:36px;text-align:center}
.booking-success.visible{display:block;animation:fadeInUp .35s ease}
.booking-success .success-card{
  max-width:560px;
  margin:0 auto;
  padding:36px 30px 42px;
  border-radius:18px;
  background:var(--surface);
  border:2px solid var(--accent);
  box-shadow:0 18px 40px rgba(0,0,0,0.6), 0 0 0 6px rgba(212,175,55,0.08);
}
.booking-success .success-icon{
  width:90px;
  height:90px;
  margin:0 auto 18px;
  border-radius:50%;
  border:3px solid var(--accent);
  display:flex;
  align-items:center;
  justify-content:center;
  color:var(--accent);
  font-size:42px;
  background:linear-gradient(145deg, rgba(0,0,0,0.9), rgba(20,20,20,0.9));
  box-shadow:0 12px 30px rgba(0,0,0,0.7);
}
.booking-success .success-icon .check-mark{
  display:inline-block;
  transform:translateY(-2px);
}
.booking-success h2{margin:0 0 10px;color:var(--text)}
.booking-success p{margin:4px 0;color:var(--muted)}
.booking-success .success-btn{
  margin-top:20px;
  background:#050505;
  color:var(--accent);
  border:2px solid var(--accent);
  border-radius:12px;
  padding:12px 20px;
  font-weight:700;
  cursor:pointer;
  box-shadow:0 12px 28px rgba(0,0,0,0.45);
  transition:transform .16s ease, box-shadow .16s ease, background .16s ease, color .16s ease;
}
.booking-success .success-btn:hover{
  background:#0f0f0f;
  color:#fff;
  transform:translateY(-2px);
  box-shadow:0 16px 34px rgba(0,0,0,0.55);
}
@keyframes fadeInUp{
  from{opacity:0;transform:translateY(20px)}
  to{opacity:1;transform:translateY(0)}
}

/* Auth */
.auth-page{display:flex;align-items:center;justify-content:center;padding:80px 20px}
.auth-card{width:100%;max-width:420px;background:var(--surface);color:var(--text);padding:28px;border-radius:12px;box-shadow:var(--shadow);text-align:left;border:1px solid var(--border)}
.auth-form{display:flex;flex-direction:column;gap:16px;margin-top:20px}
.auth-form label{font-weight:600;color:var(--text)}
.auth-form input{
  width:100%;
  padding:14px 18px;
  border-radius:999px;
  border:1px solid var(--accent);
  background:#050505;
  color:var(--text);
  font-size:1rem;
}
.auth-form button{
  margin-top:6px;
  padding:15px 20px;
  border-radius:999px;
  border:1px solid var(--accent);
  background:var(--accent);
  color:#0f0f0f;
  font-size:1.05rem;
  font-weight:700;
  cursor:pointer;
  transition:transform .18s ease, background .18s ease;
  box-shadow:var(--shadow);
}
.auth-form button:hover:not(:disabled){
  background:var(--accent-dark);
  transform:translateY(-2px);
}
.auth-form button:disabled{
  opacity:.6;
  cursor:not-allowed;
}
.auth-card .muted{margin-top:18px;text-align:center}

/* Footer */
.site-footer{padding:28px 0;border-top:1px solid var(--border);margin-top:48px;text-align:center;color:var(--muted)}

/* Utility */
.row{display:flex;gap:12px}
.muted{color:var(--muted);font-size:.9rem}

/* Responsive */
@media (max-width:1000px){
  .services-preview .grid{grid-template-columns:repeat(2,1fr)}
  .about-grid{grid-template-columns:1fr}
  .contact-grid{grid-template-columns:1fr}
}

/* Hide the gray nav "Sign In" link on desktop */
@media (min-width:1025px){
  .main-nav ul li:last-child {
    display: none;
  }
}
@media (max-width:1024px){
  .nav-toggle{display:block}
  .main-nav{display:none;position:absolute;top:var(--header-h);left:0;right:0;background:rgba(0,0,0,0.98);padding:12px;border-top:1px solid var(--border)}
  .main-nav ul{flex-direction:column;gap:8px}
  .header-cta{display:none}
}
@media (max-width:720px){
  .hero-content{margin-top:-90px;padding:30px}
  .home-page .hero{
    padding-bottom:52px;
  }
  .home-page .hero-content{
    margin:-70px auto 0;
    padding:32px 24px;
  }
  .home-page section.services-preview,
  .home-page section.testimonials{
    padding:46px 0;
  }
}

/* === Services Page Premium Card Styling === */

.service-list {
  margin: 0 0 0.75rem;
  padding-left: 1.1rem;
  display: grid;
  gap: 0.25rem;
  font-size: 0.95rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}

.service.card {
  position: relative;
  border-radius: 18px;
  padding: 18px 18px 16px;
  background:
    radial-gradient(circle at top left, rgba(255, 214, 130, 0.12), transparent 60%),
    rgba(10, 10, 10, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 26px rgba(0,0,0,0.35);
  backdrop-filter: blur(8px);
  transition:
    transform 0.18s ease-out,
    box-shadow 0.18s ease-out,
    border-color 0.18s ease-out,
    background 0.18s ease-out;
}

.service.card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(
    135deg,
    rgba(255, 210, 120, 0.55),
    rgba(255, 255, 255, 0)
  );
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease-out;
}

.service.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.55);
  border-color: rgba(255, 210, 120, 0.75);
}

.service.card:hover::before {
  opacity: 0.35;
}

.service.card h3,
.service.card h4 {
  margin-top: 0;
  margin-bottom: 0.25rem;
  font-size: 1.05rem;
}

.service.card p {
  margin: 0.15rem 0 0.5rem;
  line-height: 1.4;
}

.price-line {
  margin-top: 0.4rem;
  font-size: 0.95rem;
  font-weight: 500;
}

.section-divider {
  margin: 1.75rem 0 1.25rem;
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.promo-note {
  margin-top: 1.25rem;
  padding: 0.65rem 0.9rem;
  border-radius: 999px;
  display: inline-block;
  background: rgba(255, 210, 120, 0.12);
  border: 1px solid rgba(255, 210, 120, 0.7);
  font-size: 0.95rem;
  font-family: inherit;
  font-weight: 400;
  line-height: 1.4;
}

/* Service cards + modal */
.bubble-grid {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
}

.service-bubble {
  position: relative;
  --bubble-bg: linear-gradient(135deg, rgba(255, 210, 120, 0.14), rgba(255, 210, 120, 0) 38%), rgba(12, 12, 12, 0.94);
  min-height: 320px;
  border-radius: 18px;
  overflow: hidden;
  background: #0c0c0c;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 12px 32px rgba(0,0,0,0.5);
  cursor: pointer;
  display: flex;
  align-items: stretch;
  justify-content: center;
  text-align: left;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease, background 0.22s ease;
}

.service-bubble::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    linear-gradient(140deg, rgba(0, 0, 0, 0.32), rgba(0, 0, 0, 0.7)),
    var(--bubble-bg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: filter 0.26s ease, transform 0.26s ease, opacity 0.26s ease;
  z-index: 0;
}

.service-bubble:hover::before,
.service-bubble:focus-within::before {
  filter: brightness(0.55) blur(1.4px);
  transform: scale(1.03);
}

.service-bubble:hover,
.service-bubble:focus-visible {
  transform: translateY(-6px);
  box-shadow: 0 18px 44px rgba(0,0,0,0.6);
  border-color: rgba(255, 210, 120, 0.6);
  background:
    linear-gradient(135deg, rgba(255, 210, 120, 0.18), rgba(255, 210, 120, 0) 42%),
    rgba(14, 14, 14, 0.96);
}

.service-bubble:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.bubble-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 26px 24px 22px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bubble-summary {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 10px;
  transition: opacity 0.24s ease, transform 0.24s ease;
  z-index: 1;
  width: 100%;
  max-width: 340px;
  margin: 0 auto;
  text-align: left;
}

.bubble-title {
  margin: 0;
  font-size: 1.2rem;
}

.bubble-price {
  margin: 0;
  font-weight: 700;
  color: var(--accent);
}

.bubble-hover {
  position: absolute;
  inset: 0;
  padding: 20px 22px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 12px;
  border-radius: 16px;
  background: linear-gradient(160deg, rgba(0,0,0,0.9), rgba(14,14,14,0.82));
  opacity: 0;
  transform: translateY(16px) scale(0.98);
  transition: opacity 0.24s ease, transform 0.24s ease;
  pointer-events: auto;
  z-index: 2;
}

.bubble-hover .bubble-detail {
  max-height: 100%;
  overflow-y: auto;
  padding-right: 4px;
}

.bubble-hover .service-desc {
  margin: 0 0 6px;
  color: #f7f7f7;
  font-weight: 600;
}

.bubble-hover .hover-preview {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.bubble-hover .service-list {
  gap: 4px;
}

.bubble-hover .price-line {
  margin-top: 8px;
}

.bubble-hover .bubble-detail[hidden] {
  display: none !important;
}

.bubble-cta {
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid rgba(255, 210, 120, 0.35);
  border-radius: 999px;
  padding: 6px 10px;
  background: rgba(255, 210, 120, 0.08);
  box-shadow: 0 10px 26px rgba(0,0,0,0.35);
}

.service-bubble:hover .bubble-hover,
.service-bubble:focus-within .bubble-hover {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.service-bubble:hover .bubble-summary,
.service-bubble:focus-within .bubble-summary {
  opacity: 0;
  transform: translateY(-10px);
}

.service-bg-basic-shine { --bubble-bg: url('../picture/basic_shine.png'); }
.service-bg-full-interior { --bubble-bg: url('../picture/full_interior_detail.png'); }
.service-bg-full-exterior { --bubble-bg: url('../picture/full_exterior_detail.png'); }
.service-bg-complete-detail { --bubble-bg: url('../picture/complete_detail_package.png'); }
.service-bg-desert-ceramic { --bubble-bg: url('../picture/desert_premium_ceramic.png'); }

.service-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.72);
  backdrop-filter: blur(6px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 18px;
  z-index: 240;
}

.service-modal.open {
  display: flex;
}

.service-modal__dialog {
  width: min(660px, 94vw);
  max-height: 90vh;
  background: #0c0c0c;
  border-radius: 18px;
  border: 1px solid rgba(255, 210, 120, 0.55);
  box-shadow: 0 24px 60px rgba(0,0,0,0.7), 0 0 0 8px rgba(212, 175, 55, 0.08);
  overflow: hidden;
  position: relative;
  transform: translateY(14px) scale(0.97);
  opacity: 0;
  transition: transform 0.22s ease, opacity 0.22s ease;
}

.service-modal.open .service-modal__dialog {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.modal-close {
  position: absolute;
  top: 10px;
  right: 12px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.04);
  color: #ffffff;
  font-size: 1.4rem;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}

.modal-close:hover,
.modal-close:focus-visible {
  background: rgba(255, 255, 255, 0.12);
  transform: scale(1.03);
  border-color: rgba(255, 255, 255, 0.4);
  outline: none;
}

.modal-header {
  padding: 18px 22px 12px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.modal-header h2 {
  margin: 0 0 6px;
}

.modal-price {
  margin: 0;
  color: var(--accent);
  font-weight: 700;
  font-size: 1.05rem;
}

.modal-body {
  padding: 16px 24px 22px;
  overflow: auto;
  max-height: calc(90vh - 120px);
}

.modal-body .service-desc {
  margin-top: 0;
}

.modal-body .service-list {
  gap: 6px;
}

body.modal-open {
  overflow: hidden;
}

.sticky-cta-bar {
  position: fixed;
  top: var(--header-h);
  left: 0;
  right: 0;
  z-index: 115;
  width: 100%;
  background: var(--accent);
  box-shadow: 0 8px 24px rgba(0,0,0,0.38);
  margin-bottom: 0;
}

.sticky-cta {
  display: block;
  width: 100%;
  padding: 16px 20px;
  text-align: center;
  border-radius: 0;
  background: var(--accent);
  color: #0a0a0a;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-decoration: none;
  border: 2px solid var(--accent);
  box-shadow: 0 10px 26px rgba(0,0,0,0.35);
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.sticky-cta:hover,
.sticky-cta:focus-visible {
  background: var(--accent-dark);
  box-shadow: 0 12px 32px rgba(0,0,0,0.45);
  transform: translateY(-2px);
  outline: none;
}

.modal-open .sticky-cta {
  opacity: 0;
  pointer-events: none;
  transform: translateY(4px);
}

.has-sticky-cta .main-content {
  margin-top: 18px;
}

@media (max-width: 640px) {
  .bubble-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .service-bubble {
    min-height: 260px;
    border-radius: 16px;
  }
  .bubble-inner {
    padding: 22px 20px 18px;
  }
  .bubble-hover {
    border-radius: 14px;
    transform: translateY(12px) scale(0.99);
  }
}
