*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --lav:        #7c5cbf;
  --lav-light:  #ede8f8;
  --lav-mid:    #9b78d4;
  --lav-dark:   #4a3478;
  --lav-deep:   #2e1f5e;
  --gold:       #c9a84c;
  --gold-light: #f5e9c8;
  --cream:      #fdf8f2;
  --white:      #ffffff;
  --text:       #2a1f3d;
  --muted:      #7a6e8a;
  --border:     #e2d9f3;
  --success:    #2e7d52;
  --danger:     #c0392b;
  --success-bg: #e8f5e9;
  --danger-bg:  #fce4ec;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Jost', sans-serif;
  background: var(--cream);
  color: var(--text);
  min-height: 100vh;
  font-size: 16px;
  line-height: 1.6;
}

a { color: var(--lav); text-decoration: none; }
a:hover { text-decoration: underline; }

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--lav-mid); border-radius: 3px; }

/* NAV */
nav {
  background: var(--lav-deep);
  padding: 0 2.5rem;
  display: flex;
  align-items: center;
  
  position: sticky;
  top: 0;
  z-index: 500;
  box-shadow: 0 2px 20px rgba(46,31,94,0.4);
  height: 64px;
}
.logo { display: flex; align-items: center; gap: 0.8rem; text-decoration: none; }
.logo-icon {
  
  background: linear-gradient(135deg, var(--gold), #e8c56a);
  border-radius: 50%;
  display: block;
  font-size: 20px; flex-shrink: 0;
  margin-left: 0;

}
 
  

.logo-name { font-family: 'Playfair Display', serif; color: var(--black); font-size: 50px; font-weight: 700; line-height: 0.8; }
.logo-tagline { font-size: 0.62rem; color: rgba(255,255,255,0.55); letter-spacing: 0.14em; text-transform: uppercase; }
nav ul { list-style: none; display: flex; align-items: center; gap: 1.8rem; }
nav ul li a { color: rgba(255,255,255,0.75); text-decoration: none; font-size: 0.87rem; transition: color 0.2s; }
nav ul li a:hover { color: var(--gold); }
.nav-cta {
  background: var(--gold); color: var(--lav-deep);
  padding: 0.45rem 1.2rem; border-radius: 25px;
  font-weight: 600; font-size: 0.85rem; border: none;
  font-family: 'Jost', sans-serif; cursor: pointer; transition: opacity 0.2s;
}
.nav-cta:hover { opacity: 0.88; }

/* HERO */
.hero {
  position: relative; background: var(--lav-deep);
  padding: 5rem 2rem 4rem; text-align: center; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(124,92,191,0.4) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(201,168,76,0.15) 0%, transparent 50%);
}
.hero-dots {
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 32px 32px;
}
.hero-content { position: relative; max-width: 700px; margin: 0 auto; }
.hero-badge {
  display: inline-block;
  background:ghostwhite; padding: 0.3rem 1rem; border-radius: 25px;
  font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase;
  margin-bottom: 1.2rem; font-weight: 500;
}
.hero h1 { font-family: 'Playfair Display', serif; font-size: clamp(2.2rem,5vw,3.5rem); color: var(--white); line-height: 1.18; margin-bottom: 1rem; }
.hero h1 em { color: var(--gold); font-style: italic; }
.hero-desc { color: rgba(255,255,255,0.7); font-size: 1.05rem; font-weight: 300; margin-bottom: 2rem; max-width: 500px; margin-left: auto; margin-right: auto; }
.hero-pills { display: flex; justify-content: center; flex-wrap: wrap; gap: 0.7rem; margin-bottom: 2rem; }
.pill { background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2); color: rgba(255,255,255,0.85); padding: 0.4rem 1rem; border-radius: 25px; font-size: 0.8rem; display: flex; align-items: center; gap: 0.4rem; backdrop-filter: blur(6px); }
.gold-pill { background: rgba(201,168,76,0.2); border-color: var(--gold); color: var(--gold); }
.hero-btns { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; }

/* BUTTONS */
.btn { padding: 0.75rem 1.8rem; border: none; border-radius: 30px; font-family: 'Jost', sans-serif; font-size: 0.92rem; font-weight: 500; cursor: pointer; transition: all 0.22s; text-decoration: none; display: inline-flex; align-items: center; gap: 0.4rem; }
.btn-primary { background: var(--lav); color: var(--white); }
.btn-primary:hover { background: var(--lav-dark); transform: translateY(-1px); }
.btn-gold { background: var(--gold); color: var(--lav-deep); }
.btn-gold:hover { opacity: 0.88; transform: translateY(-1px); }
.btn-outline { background: transparent; border: 1.5px solid rgba(255,255,255,0.4); color: var(--white); }
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.08); }
.btn-outline-lav { background: transparent; border: 1.5px solid var(--lav); color: var(--lav); }
.btn-outline-lav:hover { background: var(--lav-light); }
.btn-danger { background: var(--danger); color: var(--white); }
.btn-danger:hover { opacity: 0.88; }
.btn-sm { padding: 0.45rem 1rem; font-size: 0.82rem; }
.btn-full { width: 100%; justify-content: center; }

/* INFO BAR */
.info-bar { background: var(--white); border-bottom: 1px solid var(--border); display: flex; justify-content: center; align-items: center; gap: 2.5rem; padding: 0.9rem 2rem; flex-wrap: wrap; }
.info-item { display: flex; align-items: center; gap: 0.5rem; font-size: 0.85rem; color: var(--muted); }
.info-item strong { color: var(--text); font-weight: 500; }
.info-item a { color: var(--lav); font-weight: 500; text-decoration: none; }
.open-dot { width: 8px; height: 8px; border-radius: 50%; background: #2ecc71; flex-shrink: 0; animation: blink 2s infinite; display: inline-block; }
@keyframes blink { 0%,100%{opacity:1}50%{opacity:0.3} }

/* LAYOUT */
.container { max-width: 1000px; margin: 0 auto; padding: 3rem 1.5rem; }
.section { margin-bottom: 3.5rem; }
.section-title { font-family: 'Playfair Display', serif; font-size: 1.8rem; color: var(--lav-dark); margin-bottom: 0.4rem; }
.section-subtitle { color: var(--muted); font-size: 0.9rem; margin-bottom: 1.8rem; font-weight: 300; }
.divider { height: 1px; background: linear-gradient(to right, var(--lav-light), transparent); margin-bottom: 2rem; }

/* NOTICES */
.notice { border-radius: 12px; padding: 0.9rem 1.1rem; font-size: 0.87rem; display: flex; align-items: center; gap: 0.6rem; margin-bottom: 1rem; }
.notice-success { background: var(--success-bg); color: var(--success); border: 1px solid #c8e6c9; }
.notice-info { background: var(--lav-light); color: var(--lav-dark); border: 1px solid #d4c8f0; }
.notice-info a { color: var(--lav-dark); font-weight: 500; }

/* SERVICES */


.service-card{
  border: 2px solid #2e1f5e;
  border-radius: 12px;
  overflow: hidden;
  background: var(--cream);
  box-shadow: 0 2px 8px rgba(0,0,0,0,1);
  display: flex;
  flex-direction: column;
}

.service-card img{
  width: 200px;
  
  height: 200px;
  object-fit: cover;
}

.service-card .card desc{
  padding: 16px;
}
.service-card .card desc{
  font-size:1.1rem;
  font-weight: bold;
  margin-bottom: 8px;
  color: #3b0764;
}

.service-card p{
  font-size: 0.9rem;
  color: #555;
  line-height: 1.5;
}
.services-grid { 
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding:  40px 60px;
}
.service-card { background: var(--white); border: 1.5px solid var(--border); border-radius: 16px; padding: 1.4rem 1rem; text-align: center; cursor: pointer; transition: all 0.22s; position: relative; }
.service-card:hover { border-color: var(--lav); transform: translateY(-3px); box-shadow: 0 8px 24px rgba(124,92,191,0.15); }
.service-card.selected { border-color: var(--lav); background: var(--lav-light); box-shadow: 0 4px 16px rgba(124,92,191,0.2); }
.svc-icon { font-size: 2.2rem; margin-bottom: 0.5rem; }
.svc-name { font-weight: 500; font-size: 0.92rem; color: var(--text); margin-bottom: 0.2rem; }
.svc-price { font-size: 0.83rem; color: var(--muted); }
.svc-disc { font-size: 0.75rem; color: var(--success); margin-top: 0.15rem; font-weight: 500; }
.svc-save { font-size: 0.75rem; color: var(--muted); margin-top: 0.15rem; }
.selected-check { position: absolute; top: -8px; right: -8px; width: 22px; height: 22px; background: var(--lav); border-radius: 50%; color: var(--white); font-size: 12px; display: flex; align-items: center; justify-content: center; }

/* BOOKING */
.booking-box { background: var(--white); border: 1px solid var(--border); border-radius: 18px; padding: 2rem; box-shadow: 0 4px 20px rgba(74,52,120,0.07); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.35rem; }
.form-group label { font-size: 0.8rem; color: var(--muted); font-weight: 500; text-transform: uppercase; letter-spacing: 0.06em; }
.form-group input,.form-group select,.form-group textarea { padding: 0.65rem 0.95rem; border: 1.5px solid #ddd5ee; border-radius: 10px; font-family: 'Jost', sans-serif; font-size: 0.92rem; outline: none; transition: border-color 0.2s, box-shadow 0.2s; background: var(--cream); color: var(--text); width: 100%; }
.form-group input:focus,.form-group select:focus,.form-group textarea:focus { border-color: var(--lav); box-shadow: 0 0 0 3px rgba(124,92,191,0.1); background: var(--white); }
.price-summary { background: var(--lav-light); border: 1px solid #d4c8f0; border-radius: 12px; padding: 1rem 1.2rem; margin-top: 1rem; font-size: 0.88rem; }
.ps-row { display: flex; justify-content: space-between; padding: 0.2rem 0; }
.ps-discount { color: var(--success); font-size: 0.82rem; }
.ps-total { border-top: 1px solid #d4c8f0; margin-top: 0.5rem; padding-top: 0.5rem; font-weight: 600; color: var(--lav-dark); }
.form-actions { margin-top: 1.2rem; display: flex; gap: 1rem; flex-wrap: wrap; }

/* ADMIN */
.admin-header { background: linear-gradient(135deg, var(--lav-deep), var(--lav-dark)); color: var(--white); padding: 1.2rem 1.5rem; border-radius: 14px 14px 0 0; display: flex; align-items: center; justify-content: space-between; }
.admin-header h3 { font-family: 'Playfair Display', serif; font-size: 1.1rem; }
.admin-role { font-size: 0.8rem; opacity: 0.7; }
.admin-body { background: var(--white); border: 1px solid var(--border); border-top: none; border-radius: 0 0 14px 14px; padding: 1.5rem; }
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(130px,1fr)); gap: 1rem; margin-bottom: 2rem; }
.stat-card { background: var(--lav-light); border-radius: 12px; padding: 1rem; text-align: center; }
.stat-num { font-size: 1.8rem; font-weight: 600; color: var(--lav-dark); line-height: 1; }
.stat-label { font-size: 0.75rem; color: var(--muted); margin-top: 0.3rem; }
.table-heading { font-size: 0.9rem; color: var(--muted); margin-bottom: 0.8rem; margin-top: 1rem; font-weight: 500; }
.table-wrap { overflow-x: auto; margin-bottom: 1.5rem; }
table { width: 100%; border-collapse: collapse; font-size: 0.85rem; }
th { text-align: left; padding: 0.6rem 0.9rem; color: var(--muted); font-weight: 500; border-bottom: 1.5px solid var(--border); white-space: nowrap; }
td { padding: 0.65rem 0.9rem; border-bottom: 1px solid #f0eaf9; color: var(--text); }
tr:last-child td { border-bottom: none; }
tr:hover td { background: #faf7fe; }
.empty-row { text-align: center; padding: 2rem !important; color: var(--muted); }
.admin-actions { margin-top: 1rem; display: flex; gap: 0.8rem; flex-wrap: wrap; }
.badge { display: inline-block; padding: 0.2rem 0.65rem; border-radius: 12px; font-size: 0.72rem; font-weight: 500; }
.badge-member { background: var(--success-bg); color: var(--success); }
.badge-guest  { background: #fce4ec; color: #c62828; }

/* MODAL */
.modal-overlay { display: none; position: fixed; inset: 0; background: rgba(30,20,60,0.6); z-index: 600; align-items: center; justify-content: center; padding: 1rem; }
.modal-overlay.open { display: flex; }
.modal { background: var(--white); border-radius: 20px; padding: 2rem; width: min(460px,100%); max-height: 90vh; overflow-y: auto; position: relative; animation: fadeUp 0.25s ease; }
@keyframes fadeUp { from{opacity:0;transform:translateY(16px)} to{opacity:1;transform:translateY(0)} }
.modal-close { position: absolute; top: 1rem; right: 1.2rem; background: none; border: none; font-size: 1.5rem; cursor: pointer; color: var(--muted); line-height: 1; }
.modal-close:hover { color: var(--text); }
.modal h2 { font-family: 'Playfair Display', serif; color: var(--lav-dark); font-size: 1.5rem; margin-bottom: 0.3rem; }
.modal-sub { font-size: 0.83rem; color: var(--muted); margin-bottom: 1.5rem; }
.admin-hint { font-size: 0.75rem; color: var(--muted); margin-top: 0.8rem; text-align: center; }
.tabs { display: flex; background: var(--lav-light); border-radius: 10px; padding: 4px; margin-bottom: 1.5rem; gap: 4px; }
.tab-btn { flex: 1; padding: 0.5rem; border: none; border-radius: 8px; background: transparent; font-family: 'Jost', sans-serif; font-size: 0.88rem; cursor: pointer; color: var(--muted); transition: all 0.2s; }
.tab-btn.active { background: var(--white); color: var(--lav-dark); font-weight: 500; box-shadow: 0 1px 4px rgba(0,0,0,0.1); }

/* ACCOUNT */
.account-hero { background: linear-gradient(135deg, var(--lav-dark), var(--lav)); border-radius: 14px; padding: 1.4rem; color: var(--white); margin-bottom: 1.3rem; display: flex; align-items: center; gap: 1rem; }
.avatar { width: 50px; height: 50px; border-radius: 50%; background: rgba(255,255,255,0.2); display: flex; align-items: center; justify-content: center; font-family: 'Playfair Display', serif; font-size: 1.3rem; font-weight: 600; flex-shrink: 0; }
.acc-name  { font-family: 'Playfair Display', serif; font-size: 1.1rem; }
.acc-email { font-size: 0.8rem; opacity: 0.7; margin-top: 0.1rem; }
.acc-disc  { font-size: 0.78rem; background: rgba(255,255,255,0.15); padding: 0.2rem 0.6rem; border-radius: 10px; margin-top: 0.3rem; display: inline-block; }
.my-bookings-empty { font-size: 0.87rem; color: var(--muted); margin-bottom: 1.3rem; }

/* TOAST */
.toast { position: fixed; bottom: 1.5rem; right: 1.5rem; background: var(--lav-deep); color: var(--white); padding: 0.85rem 1.4rem; border-radius: 14px; font-size: 0.87rem; max-width: 300px; transform: translateY(100px); opacity: 0; transition: all 0.3s cubic-bezier(0.34,1.56,0.64,1); z-index: 1000; box-shadow: 0 6px 24px rgba(0,0,0,0.25); }
.toast.show      { transform: translateY(0); opacity: 1; }
.toast.t-success { background: #1b5e20; }
.toast.t-error   { background: #b71c1c; }

/* CONTACT */
.contact-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px,1fr)); gap: 1rem; }
.contact-card { background: var(--white); border: 1px solid var(--border); border-radius: 16px; padding: 1.5rem 1.2rem; text-align: center; }
.cc-icon  { font-size: 2rem; margin-bottom: 0.5rem; }
.cc-label { font-weight: 500; margin-bottom: 0.3rem; font-size: 0.95rem; }
.cc-val   { color: var(--muted); font-size: 0.88rem; line-height: 1.6; }
.cc-val a { color: var(--lav); }

/* FOOTER */
footer { background: var(--lav-deep); color: rgba(255,255,255,0.65); text-align: center; padding: 2.5rem 1.5rem; font-size: 0.85rem; }
.f-name { font-family: 'Playfair Display', serif; color: var(--gold); font-size: 1.3rem; margin-bottom: 0.5rem; }
.f-links { display: flex; justify-content: center; gap: 1.5rem; margin: 0.8rem 0; flex-wrap: wrap; }
footer a { color: var(--gold); }
.f-copy { margin-top: 1rem; font-size: 0.75rem; opacity: 0.5; }

/* WHATSAPP */
.wa-float { position: fixed; bottom: 1.5rem; left: 1.5rem; width: 52px; height: 52px; background: #25d366; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 26px; box-shadow: 0 4px 16px rgba(37,211,102,0.4); cursor: pointer; z-index: 400; transition: transform 0.2s; text-decoration: none; }
.wa-float:hover { transform: scale(1.1); }

/* RESPONSIVE */
@media (max-width: 640px) {
  nav { padding: 0 1rem; }
  nav ul { gap: 0.8rem; }
  .hero { padding: 3.5rem 1.2rem 2.5rem; }
  .form-row { grid-template-columns: 1fr; }
  .container { padding: 2rem 1rem; }
  .booking-box { padding: 1.3rem; }
  .info-bar { gap: 1rem; }
}
/* ============================
   SERVICE CARDS — Image style
   ============================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  padding: 0;
  margin-bottom: 2rem;
}
.service-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.22s;
  position: relative;
  display: flex;
  flex-direction: column;
  text-align: left;
  padding: 0;
}
.service-card:hover { border-color: var(--lav); transform: translateY(-4px); box-shadow: 0 10px 28px rgba(124,92,191,0.18); }
.service-card.selected { border-color: var(--lav); box-shadow: 0 4px 18px rgba(124,92,191,0.22); }
.svc-img-wrap { width: 100%; height: 190px; overflow: hidden; background: var(--lav-light); }
.svc-img-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.3s; }
.service-card:hover .svc-img-wrap img { transform: scale(1.05); }
.svc-body { padding: 1rem 1.1rem 1.2rem; display: flex; flex-direction: column; gap: 0.3rem; flex: 1; }
.svc-name { font-weight: 600; font-size: 1rem; color: var(--lav-dark); }
.svc-desc-text { font-size: 0.8rem; color: var(--muted); line-height: 1.45; }
.svc-price { font-size: 0.95rem; font-weight: 600; color: var(--text); margin-top: 0.3rem; }
.svc-disc  { font-size: 0.78rem; color: var(--success); font-weight: 500; }
.svc-save  { font-size: 0.78rem; color: var(--muted); }
.svc-book-btn {
  margin-top: 0.7rem;
  background: var(--lav);
  color: var(--white);
  border: none;
  border-radius: 20px;
  padding: 0.45rem 1.1rem;
  font-family: 'Jost', sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s;
  align-self: flex-start;
}
.svc-book-btn:hover { background: var(--lav-dark); }
.selected-check { position: absolute; top: 10px; right: 10px; width: 26px; height: 26px; background: var(--lav); border-radius: 50%; color: var(--white); font-size: 13px; display: flex; align-items: center; justify-content: center; z-index: 2; box-shadow: 0 2px 6px rgba(0,0,0,0.2); }

@media (max-width: 768px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .services-grid { grid-template-columns: 1fr; }
}

/* ============================
   ADMIN DASHBOARD — Enhanced
   ============================ */
.admin-panel { border-radius: 16px; overflow: hidden; box-shadow: 0 4px 24px rgba(46,31,94,0.1); }
.admin-header { background: linear-gradient(135deg, var(--lav-deep), var(--lav-dark)); color: var(--white); padding: 1.4rem 1.8rem; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; }
.admin-header h3 { font-family: 'Playfair Display', serif; font-size: 1.15rem; margin-bottom: 0.2rem; }
.admin-role { font-size: 0.78rem; opacity: 0.65; }
.admin-header-actions { display: flex; gap: 0.6rem; flex-wrap: wrap; }
.admin-body { background: var(--white); border: 1px solid var(--border); border-top: none; border-radius: 0 0 16px 16px; padding: 1.8rem; }

.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(140px,1fr)); gap: 1rem; margin-bottom: 1.5rem; }
.stat-card { border-radius: 14px; padding: 1.1rem 1rem; text-align: center; position: relative; overflow: hidden; }
.stat-card::before { content: ''; position: absolute; inset: 0; opacity: 0.08; }
.stat-purple { background: var(--lav-light); }
.stat-gold   { background: var(--gold-light); }
.stat-green  { background: #e8f5e9; }
.stat-blue   { background: #e3f2fd; }
.stat-pink   { background: #fce4ec; }
.stat-icon   { font-size: 1.4rem; margin-bottom: 0.3rem; }
.stat-num    { font-size: 1.6rem; font-weight: 700; color: var(--lav-dark); line-height: 1; }
.stat-label  { font-size: 0.72rem; color: var(--muted); margin-top: 0.3rem; text-transform: uppercase; letter-spacing: 0.05em; }

.admin-highlight-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px,1fr)); gap: 1rem; margin-bottom: 1.8rem; }
.highlight-card { background: var(--cream); border: 1px solid var(--border); border-radius: 12px; padding: 0.9rem 1.1rem; display: flex; flex-direction: column; gap: 0.3rem; }
.hl-label { font-size: 0.75rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.06em; font-weight: 500; }
.hl-value { font-size: 0.92rem; font-weight: 600; color: var(--lav-dark); }

.admin-filter-bar { display: flex; gap: 0.8rem; margin-bottom: 1rem; flex-wrap: wrap; }
.admin-search { flex: 1; min-width: 200px; padding: 0.6rem 1rem; border: 1.5px solid var(--border); border-radius: 10px; font-family: 'Jost', sans-serif; font-size: 0.88rem; outline: none; background: var(--cream); color: var(--text); transition: border-color 0.2s; }
.admin-search:focus { border-color: var(--lav); background: var(--white); }
.admin-filter-select { padding: 0.6rem 0.8rem; border: 1.5px solid var(--border); border-radius: 10px; font-family: 'Jost', sans-serif; font-size: 0.85rem; background: var(--cream); color: var(--text); outline: none; cursor: pointer; }
.admin-filter-select:focus { border-color: var(--lav); }

.svc-badge { background: var(--lav-light); color: var(--lav-dark); padding: 0.2rem 0.6rem; border-radius: 10px; font-size: 0.78rem; font-weight: 500; white-space: nowrap; }

.table-heading { font-size: 0.95rem; font-weight: 600; color: var(--text); margin: 1.5rem 0 0.8rem; display: flex; align-items: center; gap: 0.5rem; }

/* ============================
   MOBILE RESPONSIVE — Full Fix
   ============================ */

/* Fix oversized logo name */
.logo-name { font-size: clamp(1rem, 4vw, 1.4rem) !important; line-height: 1.2 !important; }

/* Prevent horizontal overflow on ALL screens */
*, *::before, *::after { box-sizing: border-box; }
html, body { overflow-x: hidden; width: 100%; }

/* Nav mobile */
@media (max-width: 768px) {
  nav {
    padding: 0.6rem 1rem;
    flex-wrap: wrap;
    gap: 0.5rem;
    position: relative;
  }
  nav ul {
    gap: 0.6rem;
    flex-wrap: wrap;
    justify-content: flex-end;
  }
  nav ul li a { font-size: 0.78rem; }
  .logo-icon img {
    width: 44px !important;
    height: 44px !important;
  }
  .logo-name { font-size: 1rem !important; }
  .logo-tagline { display: none; }
  .nav-cta { padding: 0.4rem 0.9rem; font-size: 0.78rem; }
}

/* Hero mobile */
@media (max-width: 768px) {
  .hero {
    padding: 4rem 1rem 2.5rem;
    text-align: center;
  }
  .hero h1 { font-size: clamp(1.6rem, 6vw, 2.4rem); }
  .hero-desc { font-size: 0.9rem; }
  .hero-pills { gap: 0.5rem; }
  .pill { font-size: 0.72rem; padding: 0.35rem 0.7rem; }
  .hero-btns { flex-direction: column; align-items: center; gap: 0.7rem; }
  .btn { width: 100%; max-width: 280px; text-align: center; }
}

/* Info bar mobile */
@media (max-width: 768px) {
  .info-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
    padding: 1rem;
    font-size: 0.82rem;
  }
}

/* Booking form mobile */
@media (max-width: 768px) {
  .form-row { grid-template-columns: 1fr; }
  .booking-box { padding: 1.2rem; }
  .form-actions { flex-direction: column; gap: 0.7rem; }
  .form-actions .btn { width: 100%; }
}

/* Contact grid mobile */
@media (max-width: 768px) {
  .contact-grid { grid-template-columns: 1fr 1fr; gap: 0.8rem; }
}
@media (max-width: 480px) {
  .contact-grid { grid-template-columns: 1fr; }
}

/* Admin dashboard mobile */
@media (max-width: 768px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .admin-highlight-row { grid-template-columns: 1fr; }
  .admin-filter-bar { flex-direction: column; }
  .admin-search { min-width: unset; width: 100%; }
  .table-wrap { font-size: 0.78rem; }
  .admin-header { flex-direction: column; align-items: flex-start; }
}

/* Price summary mobile */
@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .container { padding: 1.5rem 0.8rem; }
  .section-title { font-size: 1.4rem; }
}

/* ============================
   PASSWORD EYE TOGGLE
   ============================ */
.pw-wrap {
  position: relative;
  display: flex;
  align-items: center;
}
.pw-wrap input {
  width: 100%;
  padding-right: 2.8rem !important;
}
.pw-eye {
  position: absolute;
  right: 0.7rem;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  opacity: 0.5;
  transition: opacity 0.2s;
  padding: 0;
  line-height: 1;
}
.pw-eye:hover { opacity: 1; }
.pw-eye.active { opacity: 1; }

/* ============================
   BOOKING STATUS — Complete
   ============================ */
.btn-complete {
  background: var(--cream);
  border: 1.5px solid var(--border);
  border-radius: 20px;
  padding: 0.3rem 0.7rem;
  font-size: 0.75rem;
  cursor: pointer;
  font-family: 'Jost', sans-serif;
  white-space: nowrap;
  transition: all 0.2s;
  color: var(--muted);
}
.btn-complete:hover { border-color: var(--success); color: var(--success); }
.btn-completed {
  background: #e8f5e9;
  border-color: var(--success);
  color: var(--success);
  font-weight: 500;
}
.row-completed td {
  opacity: 0.6;
  text-decoration: line-through;
  text-decoration-color: var(--muted);
}
.row-completed .btn-completed {
  text-decoration: none;
  opacity: 1;
}

/* ============================
   CONTACT — 2 Column + Map
   ============================ */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 2rem;
  align-items: start;
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.contact-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 14px;
  padding: 1rem 1.2rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.contact-card:hover {
  border-color: var(--lav);
  box-shadow: 0 4px 14px rgba(124,92,191,0.1);
}
.contact-card .cc-icon {
  font-size: 1.4rem;
  min-width: 2rem;
  text-align: center;
  margin-top: 0.1rem;
}
.cc-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--muted);
  font-weight: 600;
  margin-bottom: 0.2rem;
}
.cc-val {
  font-size: 0.9rem;
  color: var(--text);
  line-height: 1.5;
}
.contact-map {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(46,31,94,0.12);
  border: 1.5px solid var(--border);
}
.map-wrap {
  width: 100%;
  height: 420px;
}
.map-wrap iframe {
  width: 100%;
  height: 100%;
  display: block;
}
.map-footer {
  background: var(--lav-deep);
  color: var(--white);
  padding: 0.8rem 1.2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
}
.map-directions {
  color: var(--gold);
  font-weight: 600;
  text-decoration: none;
  font-size: 0.82rem;
  transition: opacity 0.2s;
}
.map-directions:hover { opacity: 0.8; }

@media (max-width: 768px) {
  .contact-layout {
    grid-template-columns: 1fr;
  }
  .map-wrap { height: 280px; }
}
