:root{
  --bg:#000000;
  --panel:#0b0b0b;
  --text:#F5F5F5;
  --muted:rgba(245,245,245,.70);
  --muted2:rgba(245,245,245,.55);
  --line:rgba(245,245,245,.12);
  --cyan:#00B7C2;
  --shadow: 0 24px 60px rgba(0,0,0,.55);
  --radius: 18px;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  background: radial-gradient(1200px 700px at 10% 0%, rgba(0,183,194,.12), transparent 55%),
              radial-gradient(900px 600px at 100% 15%, rgba(0,183,194,.08), transparent 50%),
              var(--bg);
  color:var(--text);
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Apple Color Emoji","Segoe UI Emoji";
  letter-spacing:.2px;
}

a{color:inherit; text-decoration:none}
.wrap{width:min(1120px, 92%); margin:0 auto}

.site-header{
  position:sticky; top:0;
  background: rgba(0,0,0,.72);
  border-bottom:1px solid var(--line);
  backdrop-filter: blur(12px);
  z-index:10;
}

.nav{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:18px 0;
  gap:18px;
}

.brand{display:flex; flex-direction:column; gap:4px}
.brand-name{
  font-family: ui-serif, Georgia, "Times New Roman", Times, serif;
  font-size:20px;
  letter-spacing:2px;
}
.brand-sub{font-size:12px; color:var(--muted2); letter-spacing:1px; text-transform:uppercase}

.menu{display:flex; gap:18px; align-items:center}
.menu a{color:var(--muted); transition:color .2s ease}
.menu a:hover{color:var(--text)}
.menu a.is-active{color:var(--text)}
.menu a.is-active::after{
  content:"";
  display:block;
  height:2px;
  background: rgba(0,183,194,.7);
  margin-top:6px;
  border-radius:2px;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border:1px solid rgba(0,183,194,.55);
  background: rgba(0,183,194,.12);
  color: var(--text);
  padding:12px 16px;
  border-radius:999px;
  box-shadow: 0 10px 30px rgba(0,183,194,.10);
  transition: transform .15s ease, background .2s ease, border-color .2s ease;
}
.btn:hover{transform: translateY(-1px); background: rgba(0,183,194,.18); border-color: rgba(0,183,194,.85)}
.btn.secondary{
  border:1px solid var(--line);
  background: rgba(245,245,245,.06);
  box-shadow:none;
}
.btn.secondary:hover{background: rgba(245,245,245,.09)}
.btn-sm{padding:10px 14px; font-size:14px}

.site-main{padding:44px 0 70px}

.hero{padding:54px 0 20px}
.kicker{color:var(--muted2); text-transform:uppercase; letter-spacing:3px; font-size:12px}
.h1{
  font-family: ui-serif, Georgia, "Times New Roman", Times, serif;
  font-size: clamp(44px, 5.2vw, 76px);
  letter-spacing: 6px;
  margin:14px 0 10px;
}
.subheadline{font-size: clamp(18px, 2vw, 22px); color: rgba(245,245,245,.85); margin:0 0 10px}
.tagline{color:var(--muted); max-width: 60ch; line-height:1.7}
.hero-actions{display:flex; gap:12px; flex-wrap:wrap; margin-top:24px}

.section{margin-top:52px; padding-top:24px; border-top:1px solid var(--line)}
.section-title{
  font-family: ui-serif, Georgia, "Times New Roman", Times, serif;
  font-size: 26px;
  letter-spacing:1px;
  margin:0 0 12px;
}
.section-desc{color:var(--muted); line-height:1.8; max-width:70ch}

.grid{
  display:grid;
  grid-template-columns: repeat(12, 1fr);
  gap:16px;
  margin-top:18px;
}

.card{
  grid-column: span 4;
  border:1px solid var(--line);
  background: linear-gradient(180deg, rgba(245,245,245,.06), rgba(245,245,245,.03));
  border-radius: var(--radius);
  padding:18px;
  box-shadow: var(--shadow);
}
.card h3{margin:0 0 10px; font-size:16px; letter-spacing:.6px}
.card p{margin:0; color:var(--muted); line-height:1.7}

.badge{
  display:inline-block;
  padding:7px 10px;
  border-radius:999px;
  border:1px solid rgba(0,183,194,.35);
  background: rgba(0,183,194,.10);
  color: rgba(245,245,245,.90);
  font-size:12px;
  letter-spacing:1px;
  text-transform:uppercase;
}

.accent{color:var(--cyan)}
.muted{color:var(--muted)}

.split{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap:18px;
  align-items:start;
}

.panel{
  border:1px solid var(--line);
  background: rgba(245,245,245,.04);
  border-radius: var(--radius);
  padding:20px;
}

.form{
  display:grid;
  gap:12px;
  margin-top:14px;
}
.input, select, textarea{
  width:100%;
  padding:12px 12px;
  border-radius:14px;
  border:1px solid rgba(245,245,245,.14);
  background: rgba(0,0,0,.35);
  color: var(--text);
  outline:none;
}
.input:focus, select:focus, textarea:focus{
  border-color: rgba(0,183,194,.65);
}
label{color: rgba(245,245,245,.82); font-size:14px}
.small{font-size:12px; color: var(--muted)}
.alert{
  border:1px solid rgba(245,245,245,.14);
  border-radius:16px;
  padding:12px 14px;
  margin-top:14px;
}
.alert.ok{border-color: rgba(0,183,194,.45); background: rgba(0,183,194,.10)}
.alert.bad{border-color: rgba(255,255,255,.18); background: rgba(255,255,255,.06)}

.gallery{
  display:grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap:12px;
  margin-top:18px;
}

.g-item{
  position:relative;
  overflow:hidden;
  border-radius:16px;
  border:1px solid var(--line);
  background: rgba(245,245,245,.04);
  transition: transform .18s ease, border-color .18s ease;
}

.g-item:hover{
  transform: translateY(-2px);
  border-color: rgba(0,183,194,.45);
}

/* ✅ Consistent size everywhere */
.g-item img{
  width:100%;
  aspect-ratio: 4 / 5;     /* change to 4/5 if you want portrait */
  object-fit:cover;
  display:block;
  opacity:.92;
}

/* Keep your overlay caption */
.g-cap{
  position:absolute;
  left:10px; bottom:10px; right:10px;
  font-size:12px;
  padding:10px 12px;
  border-radius:14px;
  border:1px solid rgba(245,245,245,.14);
  background: rgba(0,0,0,.55);
  backdrop-filter: blur(10px);
  color: rgba(245,245,245,.88);
}

/* Responsive columns */
@media (max-width: 900px){
  .gallery{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 560px){
  .gallery{ grid-template-columns: 1fr; }
}

.site-footer{
  border-top:1px solid var(--line);
  padding:34px 0;
  background: rgba(0,0,0,.80);
}
.footer-grid{display:grid; grid-template-columns: repeat(3, 1fr); gap:18px}
.footer-title{
  font-family: ui-serif, Georgia, "Times New Roman", Times, serif;
  letter-spacing:1px;
  margin-bottom:10px;
}
.footer-link{color:rgba(245,245,245,.78)}
.footer-link:hover{color:var(--text)}
.footer-quote{margin-top:12px; color: rgba(245,245,245,.78)}
.tiny{font-size:12px}

@media (max-width: 900px){
  .card{grid-column: span 6}
  .split{grid-template-columns: 1fr}
  .g-item{grid-column: span 6}
  .footer-grid{grid-template-columns: 1fr}
}
@media (max-width: 560px){
  .menu{gap:12px}
  .card{grid-column: span 12}
  .g-item{grid-column: span 12}
}
.hero-bg{
  position:relative;
  border-radius: var(--radius);
  overflow:hidden;
  border:1px solid var(--line);
  box-shadow: var(--shadow);
  min-height: 420px;
  padding: 42px 24px;
  display:flex;
  align-items:flex-end;
  background:
    linear-gradient(110deg, rgba(0,0,0,.85) 18%, rgba(0,0,0,.35) 60%, rgba(0,0,0,.10) 100%),
    radial-gradient(900px 520px at 20% 10%, rgba(0,183,194,.18), transparent 55%),
    url('/assets/test.png') center/cover no-repeat;
}

.hero-bg-inner{
  width:min(980px, 94%);
  margin: 0 auto;
}

@media (max-width: 720px){
  .hero-bg{
    min-height: 520px;
    padding: 34px 18px;
    background:
      linear-gradient(180deg, rgba(0,0,0,.78) 0%, rgba(0,0,0,.45) 55%, rgba(0,0,0,.25) 100%),
      radial-gradient(900px 520px at 20% 10%, rgba(0,183,194,.18), transparent 55%),
      url('/assets/test.png') center/cover no-repeat;
  }
}
/* ===== REAL CALENDAR UI ===== */
.cal-wrap{
  display:grid;
  grid-template-columns: 1fr;
  gap:16px;
}

.calendar{
  border:1px solid var(--line);
  background: rgba(245,245,245,.03);
  border-radius: var(--radius);
  overflow:hidden;
}

.cal-top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:14px 16px;
  border-bottom:1px solid var(--line);
  background: rgba(0,0,0,.35);
}

.cal-title{
  font-family: ui-serif, Georgia, "Times New Roman", Times, serif;
  letter-spacing:1px;
  font-size:18px;
}

.cal-actions{display:flex; gap:10px; align-items:center}

.cal-btn{
  border:1px solid var(--line);
  background: rgba(245,245,245,.06);
  color: var(--text);
  padding:8px 12px;
  border-radius:999px;
  cursor:pointer;
  transition: border-color .15s ease, background .15s ease, transform .15s ease;
}
.cal-btn:hover{border-color: rgba(0,183,194,.45); background: rgba(0,183,194,.08); transform: translateY(-1px);}

.cal-dow{
  display:grid;
  grid-template-columns: repeat(7, 1fr);
  background: rgba(0,0,0,.25);
  border-bottom:1px solid var(--line);
}
.cal-dow div{
  padding:10px 0;
  text-align:center;
  font-size:11px;
  letter-spacing:2px;
  text-transform:uppercase;
  color: var(--muted2);
}

.cal-grid{
  display:grid;
  grid-template-columns: repeat(7, 1fr);
}

.cal-cell{
  min-height: 92px;
  padding:10px;
  border-right:1px solid var(--line);
  border-bottom:1px solid var(--line);
  position:relative;
  cursor:pointer;
  background: rgba(0,0,0,.18);
  transition: background .15s ease, transform .15s ease, border-color .15s ease;
}
.cal-cell:nth-child(7n){border-right:none;}
.cal-cell:hover{
  background: rgba(0,183,194,.06);
  border-color: rgba(0,183,194,.25);
  transform: translateY(-1px);
}

.cal-cell.is-empty{visibility:hidden; cursor:default;}

.cal-day{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
}
.cal-num{
  width:28px; height:28px;
  border-radius:999px;
  display:flex; align-items:center; justify-content:center;
  font-size:13px;
  color: rgba(245,245,245,.92);
  border:1px solid rgba(245,245,245,.10);
  background: rgba(245,245,245,.04);
}

.cal-cell.is-today .cal-num{
  border-color: rgba(0,183,194,.55);
  background: rgba(0,183,194,.10);
}

.cal-cell.is-selected{
  outline:2px solid rgba(0,183,194,.55);
  outline-offset:-2px;
  background: rgba(0,183,194,.08);
}

.cal-meta{
  margin-top:10px;
  color: var(--muted);
  font-size:12px;
  line-height:1.4;
}

.cal-dotrow{
  display:flex;
  gap:6px;
  align-items:center;
}

.dot{
  width:8px; height:8px;
  border-radius:999px;
  border:1px solid rgba(245,245,245,.14);
}
.dot.open{ background: rgba(0,183,194,.75); border-color: rgba(0,183,194,.45); }
.dot.few{ background: rgba(245,245,245,.70); border-color: rgba(245,245,245,.18); }
.dot.full{ background: rgba(245,245,245,.22); border-color: rgba(245,245,245,.12); }
.dot.closed{ background: rgba(255,255,255,.10); border-color: rgba(255,255,255,.10); }

.badge-mini{
  font-size:11px;
  padding:6px 9px;
  border-radius:999px;
  border:1px solid rgba(245,245,245,.14);
  background: rgba(0,0,0,.35);
  color: rgba(245,245,245,.78);
  letter-spacing:1px;
  text-transform:uppercase;
}

.badge-mini.open{ border-color: rgba(0,183,194,.35); background: rgba(0,183,194,.10); color: rgba(245,245,245,.90); }
.badge-mini.full{ opacity:.7; }
.badge-mini.closed{ opacity:.55; }

.cal-cell.is-disabled{
  opacity:.55;
  cursor:not-allowed;
}
.cal-cell.is-disabled:hover{transform:none; background: rgba(0,0,0,.18);}

@media (max-width: 900px){
  .cal-cell{min-height: 78px}
}
/* ===========================
   BOOKING: FINAL FIX (PASTE LAST)
   =========================== */

/* Layout */
.booking-layout{
  display:grid;
  grid-template-columns: 1.15fr .85fr;
  gap:18px;
  align-items:start;
}
.booking-left,.booking-right{min-width:0;}
@media (max-width: 900px){
  .booking-layout{grid-template-columns: 1fr;}
}

/* Calendar container */
.calendar{
  border:1px solid var(--line);
  background: rgba(245,245,245,.03);
  border-radius: var(--radius);
  overflow:hidden;
}

/* Calendar header */
.cal-top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding:14px 16px;
  border-bottom:1px solid var(--line);
  background: rgba(0,0,0,.35);
}
.cal-title{
  font-family: ui-serif, Georgia, "Times New Roman", Times, serif;
  letter-spacing:1px;
  font-size:18px;
}
.cal-actions{display:flex; gap:10px; align-items:center;}
.cal-btn{
  border:1px solid var(--line);
  background: rgba(245,245,245,.06);
  color: var(--text);
  padding:8px 12px;
  border-radius:999px;
  cursor:pointer;
  transition: border-color .15s ease, background .15s ease, transform .15s ease;
}
.cal-btn:hover{
  border-color: rgba(0,183,194,.45);
  background: rgba(0,183,194,.08);
  transform: translateY(-1px);
}

/* Weekday row (force grid always) */
.cal-dow{
  display:grid !important;
  grid-template-columns: repeat(7, minmax(0, 1fr)) !important;
  background: rgba(0,0,0,.25);
  border-bottom:1px solid var(--line);
}
.cal-dow > div{
  padding:10px 0;
  text-align:center;
  font-size:11px;
  letter-spacing:2px;
  text-transform:uppercase;
  color: var(--muted2);
}

/* Month grid (force grid always) */
.cal-grid{
  display:grid !important;
  grid-template-columns: repeat(7, minmax(0, 1fr)) !important;
}

/* Cells (works for button) */
.cal-cell{
  width:100%;
  border:0;
  outline:0;
  appearance:none;
  -webkit-appearance:none;

  background: rgba(0,0,0,.18);
  color: var(--text);
  text-align:left;

  min-height: 92px;
  padding:10px;

  border-right:1px solid var(--line);
  border-bottom:1px solid var(--line);

  cursor:pointer;
  transition: background .15s ease, transform .15s ease, border-color .15s ease;
}
.cal-cell:nth-child(7n){border-right:none;}
.cal-cell:hover{
  background: rgba(0,183,194,.06);
  border-color: rgba(0,183,194,.25);
  transform: translateY(-1px);
}

.cal-cell.is-empty{
  visibility:hidden;
  pointer-events:none;
  padding:0;
  min-height:0;
  border:0;
}

.cal-cell.is-disabled{
  opacity:.55;
  cursor:not-allowed;
}
.cal-cell.is-disabled:hover{
  transform:none;
  background: rgba(0,0,0,.18);
}

/* Day row inside cell */
.cal-day{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
}
.cal-num{
  width:28px; height:28px;
  border-radius:999px;
  display:flex; align-items:center; justify-content:center;
  font-size:13px;
  color: rgba(245,245,245,.92);
  border:1px solid rgba(245,245,245,.10);
  background: rgba(245,245,245,.04);
}
.cal-cell.is-today .cal-num{
  border-color: rgba(0,183,194,.55);
  background: rgba(0,183,194,.10);
}
.cal-cell.is-selected{
  outline:2px solid rgba(0,183,194,.55);
  outline-offset:-2px;
  background: rgba(0,183,194,.08);
}

/* Dots */
.dot{
  width:10px;
  height:10px;
  border-radius:999px;
  border:1px solid rgba(245,245,245,.14);
  background: rgba(245,245,245,.10);
}
.dot.open{ background: rgba(0,183,194,.82); border-color: rgba(0,183,194,.45); }
.dot.few{  background: rgba(245,245,245,.60); border-color: rgba(245,245,245,.20); }
.dot.full{ background: rgba(245,245,245,.22); border-color: rgba(245,245,245,.12); }
.dot.closed{background: rgba(255,255,255,.10); border-color: rgba(255,255,255,.10); }

/* Availability legend (dots) */
.cal-legend{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  align-items:center;
}
.legend-item{
  display:flex;
  gap:8px;
  align-items:center;
  color: var(--muted);
  font-size:13px;
}

/* Modal */
.modal{ position:fixed; inset:0; display:none; z-index:9999; }
.modal.open{ display:block; }
.modal-backdrop{
  position:absolute; inset:0;
  background: rgba(0,0,0,.65);
  backdrop-filter: blur(8px);
}
.modal-card{
  position:relative;
  width:min(560px, 92vw);
  max-height: 88vh;
  overflow:auto;
  margin: 8vh auto;
  border:1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(8,8,8,.92);
  box-shadow: var(--shadow);
}
.modal-head{
  display:flex;
  justify-content:space-between;
  gap:12px;
  padding:16px;
  border-bottom:1px solid var(--line);
  background: rgba(0,0,0,.35);
}
.modal-title{
  font-family: ui-serif, Georgia, "Times New Roman", Times, serif;
  font-size:22px;
  letter-spacing:1px;
}
.modal-sub{
  color: var(--muted);
  font-size:12px;
  letter-spacing:1px;
  text-transform:uppercase;
  margin-top:4px;
}
.modal-x{
  width:38px; height:38px;
  border-radius:999px;
  border:1px solid var(--line);
  background: rgba(245,245,245,.06);
  color: var(--text);
  cursor:pointer;
}
.modal-body{ padding:16px; }

/* Mobile sizes */
@media (max-width: 560px){
  .cal-title{font-size:16px}
  .cal-btn{padding:7px 10px; font-size:13px}
  .cal-cell{min-height:58px; padding:7px}
  .cal-num{width:22px;height:22px;font-size:12px}
  .dot{width:8px;height:8px}
  .modal-card{ margin: 6vh auto; }
}
/* =========================
   VIDEO BACKGROUND STACK
   ========================= */
.video-wrap{
  position: fixed;
  inset: 0;
  z-index: -10;
  overflow: hidden;
  pointer-events: none;
}

.video-bg{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Optional overlay for readability */
.video-wrap::after{
  content:"";
  position:absolute;
  inset:0;
  background: rgba(0,0,0,.55);
}

/* IMPORTANT: allow video to show behind CONTENT only */
body{ background: transparent !important; }

/* Make booking content transparent so video shows */
.site-main,
.hero,
.section{
  background: transparent !important;
}

/* Keep header/footer above and NOT "washed" */
.site-header{ position: sticky; top:0; z-index: 50; }
.site-footer{ position: relative; z-index: 50; }
.site-main{ position: relative; z-index: 1; }

/* ===== Responsive Services Grid ===== */
.service-grid{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap:16px;
}

/* Tablets */
@media (max-width: 980px){
  .gallery{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .service-grid{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

/* Phones */
@media (max-width: 560px){
  .gallery{ grid-template-columns: 1fr; }
  .service-grid{ grid-template-columns: 1fr; }
  .g-item img{ height:200px; }
}
/* Services section - title color */
#services .service-card h3,
#services .service-card .service-name,
#services .service-card .title {
  color: #00e5ff !important; /* cyan */
}

/* Optional: also make description slightly lighter */
#services .service-card p,
#services .service-card .desc,
#services .service-card .service-desc {
  color: rgba(255,255,255,0.78);
}
#services .service-card button,
#services .service-card .btn-select,
#services .service-card .select-btn {
  border-color: #00e5ff !important;
  color: #00e5ff !important;
}
#services .service-card button:hover,
#services .service-card .btn-select:hover,
#services .service-card .select-btn:hover {
  background: rgba(0,229,255,0.12) !important;
}
  /* Make service names cyan */
  #services .service-card .service-name{
    color: var(--accent) !important; /* uses your cyan accent */
    font-weight: 800;
    letter-spacing: .5px;
  }

  /* Nice selected state */
  #services .service-card.is-selected{
    outline: 2px solid var(--accent) !important;
    box-shadow: 0 0 0 1px rgba(0,0,0,.2) inset;
  }

  /* Details button */
  #services .service-card .details-btn{
    border: 1px solid var(--line);
    background: transparent;
    color: var(--accent);
    padding: 6px 10px;
    border-radius: 999px;
    font-size: 12px;
    letter-spacing: .6px;
    cursor: pointer;
  }
  #services .service-card .details-btn:hover{
    background: rgba(0,229,255,0.10);
  }

  /* Service Details modal */
  .svc-modal{ position: fixed; inset: 0; display:none; z-index: 9999; }
  .svc-modal.open{ display:block; }
  .svc-backdrop{ position:absolute; inset:0; background: rgba(0,0,0,.65); backdrop-filter: blur(4px); }
  .svc-card{
    position: relative;
    width: min(980px, calc(100% - 24px));
    margin: 28px auto;
    background: rgba(10,10,10,.88);
    border: 1px solid var(--line);
    border-radius: 18px;
    overflow: hidden;
  }
  .svc-head{
    display:flex; justify-content:space-between; align-items:center;
    padding: 14px 16px;
    border-bottom: 1px solid var(--line);
  }
  .svc-title{ font-weight: 800; letter-spacing: 1px; color: var(--accent); }
  .svc-x{
    border:1px solid var(--line);
    background: transparent;
    color:#fff;
    border-radius: 10px;
    padding: 6px 10px;
    cursor:pointer;
  }
  .svc-body{ padding: 16px; }
  .svc-img{
    width: 100%;
    max-height: 70vh;
    object-fit: contain;
    border-radius: 12px;
    border: 1px solid var(--line);
    background: rgba(255,255,255,.02);
  }
  .svc-meta{ margin-top: 12px; display:flex; gap:10px; flex-wrap:wrap; }
  .svc-actions{ margin-top: 14px; display:flex; gap:10px; }
  #services .service-card > div > span:first-child{
  color: var(--cyan) !important;
  font-weight: 800;
}
/* ===== Floating FAQ Chat (Shopify/Wix style) ===== */
.faq-fab{
  position: fixed;
  left: 18px;              /* change to right:18px; left:auto; for right side */
  bottom: 18px;
  z-index: 9998;
  width: 52px;
  height: 52px;
  border-radius: 999px;
  border: 1px solid rgba(0,183,194,.55);
  background: rgba(0,183,194,.14);
  color: #fff;
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  box-shadow: 0 16px 40px rgba(0,0,0,.55);
  transition: transform .15s ease, background .2s ease, border-color .2s ease;
}
.faq-fab:hover{
  transform: translateY(-1px);
  background: rgba(0,183,194,.20);
  border-color: rgba(0,183,194,.85);
}

.faq-widget{
  position: fixed;
  left: 18px;              /* match the button side */
  bottom: 80px;
  z-index: 9999;
  width: min(360px, calc(100vw - 36px));
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  background: rgba(10,10,10,.92);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow);
  transform: translateY(12px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .18s ease, transform .18s ease;
}
.faq-widget.open{
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.faq-head{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:10px;
  padding: 12px 14px;
  border-bottom: 1px solid var(--line);
  background: rgba(0,0,0,.35);
}
.faq-title{
  font-family: ui-serif, Georgia, "Times New Roman", Times, serif;
  letter-spacing: 1px;
  font-size: 16px;
}
.faq-sub{
  font-size: 12px;
  color: var(--muted);
  margin-top: 2px;
}
.faq-x{
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(245,245,245,.06);
  color: #fff;
  cursor:pointer;
}

.faq-body{
  padding: 12px 12px 0;
  max-height: 46vh;
  overflow: auto;
}

.faq-msg{
  display:flex;
  gap:10px;
  margin: 10px 0;
}
.faq-msg.bot{justify-content:flex-start;}
.faq-msg.user{justify-content:flex-end;}

.faq-bubble{
  max-width: 88%;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid rgba(245,245,245,.12);
  background: rgba(245,245,245,.06);
  color: rgba(245,245,245,.92);
  line-height: 1.55;
  font-size: 13px;
}
.faq-msg.user .faq-bubble{
  border-color: rgba(0,183,194,.35);
  background: rgba(0,183,194,.12);
}

.faq-time{
  font-size: 11px;
  color: var(--muted2);
  margin-top: 4px;
}

.faq-choices{
  display:flex;
  flex-wrap: wrap;
  gap:8px;
  padding: 12px;
  border-top: 1px solid var(--line);
  background: rgba(0,0,0,.25);
}
.faq-chip{
  border:1px solid rgba(0,183,194,.35);
  background: rgba(0,183,194,.10);
  color: rgba(245,245,245,.92);
  border-radius: 999px;
  padding: 8px 10px;
  cursor:pointer;
  font-size: 12px;
  letter-spacing: .4px;
}
.faq-chip:hover{
  background: rgba(0,183,194,.16);
}

/* Mobile: lift it above footer a bit */
@media (max-width: 560px){
  .faq-widget{ width: min(360px, calc(100vw - 24px)); left: 12px; }
  .faq-fab{ left: 12px; }
}
.testimonials-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:20px;
  margin-top:24px;
}

.testimonial-card{
  background:#0d0d0d;
  border:1px solid rgba(255,255,255,.08);
  border-radius:16px;
  padding:20px;
  transition:.2s;
}

.review-hidden{
  display:none;
}

.testimonial-toggle{
  text-align:center;
  margin-top:28px;
}

.testimonial-stars{
  font-size:14px;
  margin-bottom:10px;
}

.testimonial-text{
  font-style:italic;
  line-height:1.7;
}

.testimonial-name{
  margin-top:12px;
  opacity:.7;
  font-weight:600;
}

/* Tablet */
@media (max-width:1024px){
  .testimonials-grid{
    grid-template-columns:repeat(2,1fr);
  }
}

/* Mobile */
@media (max-width:640px){
  .testimonials-grid{
    grid-template-columns:1fr;
    gap:16px;
  }

  .testimonial-card{
    padding:16px;
  }
}