/* ================================================= */
/* ================= BASE THEME ==================== */
/* ================================================= */
:root{
  --ink:#0B0B10;
  --surface:#12121A;
  --gold:#D4AF37;
  --honey:#F7D774;
  --muted:#B6B6C0;
  --border: rgba(212,175,55,0.22);
  --glow: rgba(212,175,55,0.25);
}

*{box-sizing:border-box}
html,body{margin:0;padding:0}

body{
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:#fff;
  background:
    radial-gradient(1200px 600px at 20% 10%, rgba(247,215,116,0.22), transparent 55%),
    radial-gradient(900px 500px at 80% 30%, rgba(212,175,55,0.18), transparent 60%),
    linear-gradient(180deg, var(--ink) 0%, var(--ink) 55%, #08080D 100%);
}

a{color:inherit;text-decoration:none}
.container{max-width:1120px;margin:0 auto;padding:0 16px}

/* ================================================= */
/* ================= HEADER ======================== */
/* ================================================= */
.header{
  position:sticky; top:0; z-index:50;
  border-bottom:1px solid rgba(255,255,255,0.06);
  background: rgba(11,11,16,0.65);
  backdrop-filter: blur(16px);
}

.header-inner{
  display:flex; align-items:center; justify-content:space-between;
  padding:16px 0;
}

.brand{display:flex;align-items:center;gap:12px}

.logo{
  width:40px;height:40px;border-radius:16px;
  background: linear-gradient(135deg,var(--gold),var(--honey));
  box-shadow: 0 0 0 1px var(--glow), 0 10px 40px rgba(0,0,0,0.55);
}

.brand-title{
  font-family: "Playfair Display", serif;
  font-weight:800;
  line-height:1.1;
  margin:0;
  font-size:36px; 
}

.brand-sub{margin:2px 0 0 0; font-size:12px; color:var(--muted)}

.nav{display:flex;align-items:center;gap:18px}
.nav a{
  font-size:14px; color: rgba(255,255,255,0.82);
}
.nav a:hover{color:var(--honey)}

.nav .cta{
  padding:10px 14px;
  border-radius:14px;
  background: linear-gradient(90deg,var(--gold),var(--honey));
  color: var(--ink);
  font-weight:700;
  box-shadow: 0 0 0 1px var(--glow), 0 10px 40px rgba(0,0,0,0.55);
}

/* ================================================= */
/* ================= HERO ========================== */
/* ================================================= */
.hero{padding:44px 0 18px 0;}

.hero-grid{
  display:grid; gap:26px;
  grid-template-columns: 1.1fr 0.9fr;
  align-items:center;
}

.badge{
  display:inline-flex;align-items:center;gap:10px;
  padding:10px 14px;border-radius:999px;
  background: rgba(255,255,255,0.08);
  border:1px solid var(--border);
  color: rgba(255,255,255,0.86);
  font-size:14px;
}
.badge-dot{width:8px;height:8px;border-radius:99px;background:var(--honey)}

.h1{
  font-family:"Playfair Display", serif;
  font-size: clamp(36px, 4.2vw, 56px);
  line-height:1.05;
  margin:14px 0 0 0;
}
.h1 .gold{
  background: linear-gradient(90deg,var(--honey),var(--gold));
  -webkit-background-clip:text;background-clip:text;color:transparent;
}

.lead{margin:14px 0 0 0; color: rgba(255,255,255,0.74); line-height:1.7}

/* ================================================= */
/* ================= BUTTONS ======================= */
/* ================================================= */
.btn-row{display:flex;gap:12px;flex-wrap:wrap;margin-top:18px}

.btn{
  padding:12px 16px;
  border-radius:18px;
  border:1px solid var(--border);
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.9);
  font-weight:600;
  cursor:pointer;
}
.btn:hover{background: rgba(255,255,255,0.12)}

.btn.primary{
  background: linear-gradient(90deg,var(--gold),var(--honey));
  color: var(--ink);
  border:none;
  box-shadow: 0 0 0 1px var(--glow), 0 10px 40px rgba(0,0,0,0.55);
}

/* ================================================= */
/* ================= GRID & CARDS ================== */
/* ================================================= */
.grid-3{display:grid;grid-template-columns:repeat(3,1fr);gap:12px;margin-top:20px}

.card{
  border-radius:22px;
  background: linear-gradient(180deg, rgba(18,18,26,0.85), rgba(18,18,26,0.65));
  border:1px solid var(--border);
  backdrop-filter: blur(10px);
  padding:18px;
  box-shadow: 0 12px 50px rgba(0,0,0,0.5);
}

/* ================================================= */
/* ================= SECTION & GALLERY ============= */
/* ================================================= */
.section{padding:34px 0}
.section-title{
  display:flex;align-items:flex-end;justify-content:space-between;gap:16px;flex-wrap:wrap;
}
.section-title h2{
  font-family:"Playfair Display", serif;
  font-size:32px; margin:0;
}
.section-title p{margin:8px 0 0 0;color: rgba(255,255,255,0.7)}
.link{color:var(--honey);font-size:14px}
.link:hover{text-decoration:underline}

.gallery{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:12px;
  margin-top:16px;
}

.ph{
  aspect-ratio: 4/5;
  border-radius:22px;
  background: rgba(255,255,255,0.06);
  border:1px solid var(--border);
  overflow:hidden;
}
.ph img{width:100%;height:100%;object-fit:cover;display:block}

/* ================================================= */
/* ================= FORM ELEMENTS ================= */
/* ================================================= */
.form{
  display:grid; gap:12px; margin-top:16px;
  grid-template-columns: 1fr 1fr;
}
.input, .textarea{
  width:100%;
  padding:12px 14px;
  border-radius:18px;
  border:1px solid var(--border);
  background: rgba(11,11,16,0.6);
  color:#fff;
  outline:none;
}
.textarea{grid-column: 1 / -1; min-height:120px; resize:vertical}
.form .submit{grid-column: 1 / -1}

/* ================================================= */
/* ================= 3D REVIEWS ==================== */
/* ================================================= */
.reviews-wrap{
  perspective: 1100px;
  margin-top: 16px;
}
.reviews-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.review-card{
  position: relative;
  border-radius: 22px;
  padding: 18px;
  background: linear-gradient(180deg, rgba(18,18,26,0.88), rgba(18,18,26,0.62));
  border: 1px solid rgba(212,175,55,0.22);
  transform-style: preserve-3d;
  box-shadow: 0 12px 50px rgba(0,0,0,0.5);
  transition: transform 180ms ease, box-shadow 180ms ease;
  overflow: hidden;
  will-change: transform;
}

.review-card::before{
  content:"";
  position:absolute;
  inset:-2px;
  background: radial-gradient(700px 260px at 10% 10%, rgba(247,215,116,0.18), transparent 55%),
              radial-gradient(520px 220px at 90% 30%, rgba(212,175,55,0.16), transparent 60%);
  pointer-events:none;
}

.review-shine{
  position:absolute;
  inset:-60%;
  background: linear-gradient(90deg, transparent 0%, rgba(247,215,116,0.22) 45%, rgba(212,175,55,0.18) 55%, transparent 100%);
  transform: translateX(-30%) rotate(18deg);
  pointer-events:none;
  opacity:0;
  transition: opacity 180ms ease;
}
.review-card:hover .review-shine{ opacity: 1; }

.review-head{
  display:flex; align-items:center; justify-content:space-between; gap:10px;
  transform: translateZ(22px);
  position:relative;
}

.avatar{
  width:40px; height:40px; border-radius:14px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(212,175,55,0.22);
  display:flex; align-items:center; justify-content:center;
  font-weight:700; color: rgba(255,255,255,0.85);
  transform: translateZ(26px);
}

.review-name{font-size:14px;color: rgba(255,255,255,0.9);margin:0;}
.review-meta{font-size:12px;color: rgba(182,182,192,0.9);margin:2px 0 0 0;}

.stars{
  font-size:12px;
  color: var(--honey);
  transform: translateZ(26px);
  white-space:nowrap;
}

.review-text{
  margin-top: 12px;
  color: rgba(255,255,255,0.76);
  line-height: 1.65;
  font-size: 14px;
  transform: translateZ(18px);
  position:relative;
}

.review-tag{
  margin-top: 12px;
  display:inline-flex;
  gap:8px;
  align-items:center;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(212,175,55,0.18);
  color: rgba(255,255,255,0.78);
  font-size: 12px;
  transform: translateZ(16px);
}

@keyframes floaty {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-6px); }
  100% { transform: translateY(0px); }
}
.review-card[data-float="1"]{ animation: floaty 2.6s ease-in-out infinite; }
.review-card[data-float="2"]{ animation: floaty 4.2s ease-in-out infinite; }
.review-card[data-float="3"]{ animation: floaty 2.6s ease-in-out infinite; }

/* ================================================= */
/* ================= FOOTER ======================== */
/* ================================================= */
.footer{
  border-top:1px solid rgba(255,255,255,0.06);
  padding:20px 0;
  color: rgba(255,255,255,0.6);
  font-size:10px;
  margin-top:18px;
}
.small-note{font-size:12px;color: rgba(255,255,255,0.6); margin-top:10px}

/* ================================================= */
/* ================= MEDIA QUERIES ================= */
/* ================================================= */
@media (max-width: 900px){
  .nav{display:none}
  .hero-grid{grid-template-columns:1fr}
  .grid-3{grid-template-columns:1fr}
  .gallery{grid-template-columns:repeat(2,1fr)}
  .form{grid-template-columns:1fr}
  .reviews-grid{ grid-template-columns: 1fr; }
}

@media (max-width: 768px){
  .header-inner{ padding:10px 0; }
  .logo-img{ height:40px; }
  .brand-title{ font-size:17px; line-height:1.15; }
  .brand-sub{ font-size:11px; }
  
  .hero{ padding-top:24px; }
  .h1{ font-size:32px; }
  .lead{ font-size:14px; }
  
  .btn-row{ gap:8px; }
  .btn{ padding:10px 14px; font-size:14px; }
}

/* ================= HERO PHOTO LIGHTING BORDER ================= */
.hero-photo{
  position:relative;
  border-radius:24px;
  padding:4px;
  background: linear-gradient(135deg, rgba(247,215,116,0.9), rgba(212,175,55,0.6), rgba(247,215,116,0.9));
  box-shadow:
    0 0 0 1px rgba(247,215,116,0.25),
    0 0 35px rgba(247,215,116,0.25),
    0 18px 55px rgba(0,0,0,0.65);
}

.hero-photo::before{
  content:"";
  position:absolute;
  inset:-2px;
  border-radius:26px;
  background: radial-gradient(420px 180px at 20% 10%, rgba(247,215,116,0.35), transparent 60%);
  pointer-events:none;
}

.hero-photo img{
  display:block;
  width:100%;
  height:100%;
  border-radius:20px;
  object-fit:cover;
  background:#000;
}

/* ================= FOLLOW US (SOCIAL UI) ================= */
.social-grid{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap:12px;
}

@media (max-width: 900px){
  .social-grid{ grid-template-columns: 1fr 1fr; }
}
@media (max-width: 520px){
  .social-grid{ grid-template-columns: 1fr; }
}

.social-btn{
  display:flex;
  align-items:center;
  gap:12px;
  padding:14px 16px;
  border-radius:22px;
  background: linear-gradient(180deg, rgba(18,18,26,0.88), rgba(18,18,26,0.62));
  border:1px solid rgba(212,175,55,0.22);
  box-shadow: 0 12px 50px rgba(0,0,0,0.45);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.social-btn:hover{
  transform: translateY(-2px);
  box-shadow: 0 0 0 1px rgba(247,215,116,0.25),
              0 0 28px rgba(247,215,116,0.18),
              0 16px 60px rgba(0,0,0,0.6);
}

.social-ic{
  width:44px;
  height:44px;
  border-radius:16px;
  display:grid;
  place-items:center;
  background: linear-gradient(135deg, rgba(247,215,116,0.95), rgba(212,175,55,0.65));
  color:#0B0B10;
  box-shadow: 0 0 0 1px rgba(247,215,116,0.25);
}

.social-ic svg{
  width:22px;
  height:22px;
  display:block;
}

.social-text{display:flex; flex-direction:column; line-height:1.15}
.social-name{font-weight:800; color: rgba(255,255,255,0.92)}
.social-sub{font-size:12px; color: rgba(182,182,192,0.9); margin-top:4px}

/* ================= NEON LETTER TITLE ================= */
.neon-title{
  display:flex;
  flex-wrap:wrap;
}

.neon-title span{
  display:inline-block;
  color:#fff;
  text-shadow:
    0 0 4px rgba(247,215,116,0.25),
    0 0 8px rgba(247,215,116,0.25),
    0 0 14px rgba(212,175,55,0.35);
  animation: neonFlicker 3.5s ease-in-out infinite;
}

.neon-title span:nth-child(1){animation-delay:0s}
.neon-title span:nth-child(2){animation-delay:.1s}
.neon-title span:nth-child(3){animation-delay:.2s}
.neon-title span:nth-child(4){animation-delay:.3s}
.neon-title span:nth-child(5){animation-delay:.4s}
.neon-title span:nth-child(6){animation-delay:.5s}
.neon-title span:nth-child(7){animation-delay:.6s}
.neon-title span:nth-child(8){animation-delay:.7s}
.neon-title span:nth-child(9){animation-delay:.8s}
.neon-title span:nth-child(10){animation-delay:.9s}
.neon-title span:nth-child(11){animation-delay:1s}
.neon-title span:nth-child(12){animation-delay:1.1s}
.neon-title span:nth-child(13){animation-delay:1.2s}
.neon-title span:nth-child(14){animation-delay:1.3s}
.neon-title span:nth-child(15){animation-delay:1.4s}
.neon-title span:nth-child(16){animation-delay:1.5s}
.neon-title span:nth-child(17){animation-delay:1.6s}
.neon-title span:nth-child(18){animation-delay:1.7s}
.neon-title span:nth-child(19){animation-delay:1.8s}
.neon-title span:nth-child(20){animation-delay:1.9s}

@keyframes neonFlicker{
  0%,100%{
    opacity:1;
    text-shadow:
      0 0 4px rgba(247,215,116,0.25),
      0 0 8px rgba(247,215,116,0.25),
      0 0 14px rgba(212,175,55,0.35);
  }
  50%{
    opacity:0.85;
    text-shadow:
      0 0 2px rgba(247,215,116,0.15),
      0 0 6px rgba(212,175,55,0.25);
  }
}

/* ================= FIX: LOGO NEON VISIBILITY ================= */

/* force neon title visibility */
.header .brand-title{
  font-size:32px;              /* desktop clear */
  letter-spacing:0.8px;
}

/* neon glow stronger ONLY for header title */
.header .neon-title span{
  color:#fff;
  text-shadow:
    0 0 4px rgba(247,215,116,0.55),
    0 0 8px rgba(247,215,116,0.45),
    0 0 12px rgba(212,175,55,0.35);
}

/* mobile size fix */
@media (max-width:768px){
  .header .brand-title{
    font-size:20px;            /* mobile readable */
  }

  .header .neon-title span{
    text-shadow:
      0 0 2px rgba(247,215,116,0.45),
      0 0 5px rgba(212,175,55,0.35);
  }
}

/* ================= PRO CTA SECTION ================= */
.pro-cta{ padding-top: 10px; }

.cta-card{
  display:flex;
  gap:18px;
  align-items:center;
  justify-content:space-between;
  flex-wrap:wrap;
  padding:20px;
  border-radius:22px;
  background: linear-gradient(180deg, rgba(18,18,26,0.92), rgba(18,18,26,0.62));
  border:1px solid rgba(212,175,55,0.24);
  box-shadow: 0 0 0 1px rgba(247,215,116,0.10),
              0 20px 70px rgba(0,0,0,0.55);
  position:relative;
  overflow:hidden;
}

.cta-card::before{
  content:"";
  position:absolute;
  inset:-2px;
  background:
    radial-gradient(520px 200px at 15% 10%, rgba(247,215,116,0.18), transparent 60%),
    radial-gradient(520px 240px at 85% 40%, rgba(212,175,55,0.16), transparent 60%);
  pointer-events:none;
}

.cta-left{ min-width: 260px; flex: 1 1 420px; position:relative; }
.cta-right{ min-width: 260px; flex: 1 1 260px; display:flex; flex-direction:column; gap:10px; position:relative; }

.cta-title{
  margin:0;
  font-family:"Playfair Display", serif;
  font-size:28px;
  line-height:1.1;
  color: rgba(255,255,255,0.94);
}

.cta-sub{
  margin:10px 0 0 0;
  color: rgba(255,255,255,0.72);
  line-height:1.6;
}

.cta-trust{
  margin-top:14px;
  display:flex;
  gap:8px;
  flex-wrap:wrap;
}

.pill{
  display:inline-flex;
  padding:8px 10px;
  border-radius:999px;
  border:1px solid rgba(212,175,55,0.18);
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.78);
  font-size:12px;
}

.cta-mini{
  margin:4px 0 0 0;
  font-size:12px;
  color: rgba(182,182,192,0.95);
}

@media (max-width: 768px){
  .cta-title{ font-size:22px; }
}

/* ================= BRIDAL JOURNEY ================= */
.journey-grid{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap:12px;
}

.journey-card{
  position:relative;
  padding:18px;
  border-radius:22px;
  background: linear-gradient(180deg, rgba(18,18,26,0.88), rgba(18,18,26,0.62));
  border:1px solid rgba(212,175,55,0.22);
  box-shadow: 0 12px 50px rgba(0,0,0,0.45);
  overflow:hidden;
}

.journey-card::before{
  content:"";
  position:absolute;
  inset:-2px;
  background: radial-gradient(480px 200px at 20% 10%, rgba(247,215,116,0.14), transparent 60%);
  pointer-events:none;
}

.step-no{
  width:52px;
  height:52px;
  border-radius:18px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:800;
  letter-spacing:1px;
  background: linear-gradient(135deg, rgba(247,215,116,0.95), rgba(212,175,55,0.65));
  color:#0B0B10;
  box-shadow: 0 0 0 1px rgba(247,215,116,0.18);
  margin-bottom:12px;
}

.journey-card h3{
  margin:0;
  color: rgba(255,255,255,0.92);
}

.journey-card p{
  margin:10px 0 0 0;
  color: rgba(255,255,255,0.72);
  line-height:1.6;
}

@media (max-width: 900px){
  .journey-grid{ grid-template-columns: 1fr 1fr; }
}

@media (max-width: 520px){
  .journey-grid{ grid-template-columns: 1fr; }
}

/* ================= PACKAGES COMPARISON TABLE ================= */
.package-table{
  border-radius:22px;
  overflow:hidden;
  border:1px solid rgba(212,175,55,0.22);
  background: linear-gradient(180deg, rgba(18,18,26,0.88), rgba(18,18,26,0.62));
  box-shadow: 0 12px 50px rgba(0,0,0,0.45);
}

.pt-row{
  display:grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  border-top:1px solid rgba(255,255,255,0.06);
}

.pt-row:first-child{border-top:none}

.pt-cell{
  padding:14px 14px;
  display:flex;
  align-items:center;
  justify-content:center;
  color: rgba(255,255,255,0.78);
  font-weight:600;
  text-align:center;
}

.pt-cell.feature{
  justify-content:flex-start;
  color: rgba(255,255,255,0.9);
  font-weight:700;
}

.pt-head .pt-cell{
  background: rgba(255,255,255,0.04);
  color: rgba(255,255,255,0.92);
  font-weight:800;
}

.pt-cell.highlight{
  background: radial-gradient(520px 200px at 50% 0%, rgba(247,215,116,0.14), transparent 60%);
  border-left:1px solid rgba(212,175,55,0.18);
  border-right:1px solid rgba(212,175,55,0.18);
}

.pt-head .pt-cell.highlight{
  background: linear-gradient(135deg, rgba(247,215,116,0.20), rgba(212,175,55,0.10));
}

@media (max-width: 900px){
  .pt-row{
    grid-template-columns: 1.4fr 0.8fr 0.8fr 0.8fr;
  }
}

@media (max-width: 600px){
  /* mobile: convert table to stacked cards */
  .package-table{border-radius:22px; overflow:hidden}
  .pt-row{
    grid-template-columns: 1fr 1fr;
  }
  .pt-head{
    display:none;
  }
  .pt-cell{
    justify-content:flex-start;
  }
  .pt-cell:not(.feature){
    justify-content:flex-end;
  }
}

/* ================= PROFESSIONAL FOOTER ================= */
.pro-footer{
  margin-top: 20px;
  padding: 26px 0 18px 0;
}

.footer-grid{
  display:grid;
  grid-template-columns: 1.4fr 0.9fr 0.9fr 0.9fr;
  gap: 18px;
}

.footer-brand{
  display:flex;
  align-items:center;
  gap: 12px;
}

.footer-title{
  font-weight: 900;
  color: rgba(255,255,255,0.92);
}

.footer-sub{
  font-size: 12px;
  color: rgba(182,182,192,0.92);
  margin-top: 3px;
}

.footer-head{
  font-weight: 900;
  color: rgba(255,255,255,0.9);
  margin-bottom: 10px;
}

.footer-links{
  display:flex;
  flex-direction:column;
  gap: 8px;
}

.footer-links a{
  color: rgba(255,255,255,0.72);
  font-size: 13px;
}

.footer-links a:hover{
  color: var(--honey);
  text-decoration: underline;
}

.footer-note{
  margin-top: 12px;
  font-size: 12px;
  color: rgba(255,255,255,0.62);
  line-height: 1.6;
}

.footer-bottom{
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,0.06);
  display:flex;
  justify-content:space-between;
  gap: 10px;
  flex-wrap:wrap;
  color: rgba(182,182,192,0.95);
  font-size: 12px;
}

.footer-dot{ opacity: 0.6; }

@media (max-width: 900px){
  .footer-grid{
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 520px){
  .footer-grid{
    grid-template-columns: 1fr;
  }
}

/* ================= MICRO TRUST BAR ================= */
.trust-bar{
  border-top:1px solid rgba(255,255,255,0.06);
  border-bottom:1px solid rgba(255,255,255,0.06);
  background: rgba(11,11,16,0.55);
  backdrop-filter: blur(10px);
}

.trust-inner{
  display:flex;
  gap:18px;
  justify-content:center;
  flex-wrap:wrap;
  padding:12px 0;
  font-size:12px;
  color: rgba(255,255,255,0.8);
}

/* ================================================= */
/* =============== PATCH: LOGO IMG ================= */
/* ================================================= */
.logo-img{
  width:40px;
  height:40px;
  border-radius:16px;
  object-fit:cover;
  display:block;
  box-shadow: 0 0 0 1px var(--glow), 0 10px 40px rgba(0,0,0,0.55);
}
.logo-fallback{
  width:40px;height:40px;border-radius:16px;
  background: linear-gradient(135deg,var(--gold),var(--honey));
  box-shadow: 0 0 0 1px var(--glow), 0 10px 40px rgba(0,0,0,0.55);
}

/* ================================================= */
/* ============ PATCH: MOBILE NAV MENU ============= */
/* ================================================= */
.menu-btn{
  display:none;
  width:44px;
  height:44px;
  border-radius:16px;
  border:1px solid var(--border);
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.92);
  cursor:pointer;
  align-items:center;
  justify-content:center;
  gap:6px;
  padding:0;
}
.menu-btn:hover{ background: rgba(255,255,255,0.12); }

.menu-icon{
  width:18px;
  height:2px;
  background: rgba(255,255,255,0.9);
  display:block;
  border-radius:10px;
  position:relative;
}
.menu-icon::before,
.menu-icon::after{
  content:"";
  position:absolute;
  left:0;
  width:18px;
  height:2px;
  background: rgba(255,255,255,0.9);
  border-radius:10px;
}
.menu-icon::before{ top:-6px; }
.menu-icon::after{ top:6px; }

/* overlay */
.mobile-nav-overlay{
  position:fixed;
  inset:0;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(4px);
  opacity:0;
  pointer-events:none;
  transition: opacity 180ms ease;
  z-index:70;
}
.mobile-nav-overlay.open{
  opacity:1;
  pointer-events:auto;
}

/* slide panel */
.mobile-nav{
  position:fixed;
  top:0;
  right:0;
  height:100vh;
  width:min(340px, 88vw);
  background: rgba(11,11,16,0.92);
  border-left: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(18px);
  transform: translateX(110%);
  transition: transform 220ms ease;
  z-index:80;
  padding:16px;
}
.mobile-nav.open{
  transform: translateX(0%);
}
.mobile-nav .mobile-top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding:6px 2px 14px 2px;
  border-bottom:1px solid rgba(255,255,255,0.08);
  margin-bottom:12px;
}
.mobile-nav a{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:14px 14px;
  border-radius:16px;
  border:1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.06);
  margin:10px 0;
  color: rgba(255,255,255,0.9);
  font-weight:600;
}
.mobile-nav a:hover{
  background: rgba(255,255,255,0.10);
}
.mobile-nav .cta{
  background: linear-gradient(90deg,var(--gold),var(--honey));
  color: var(--ink);
  border:none;
  box-shadow: 0 0 0 1px var(--glow), 0 10px 40px rgba(0,0,0,0.55);
}

/* show hamburger in mobile, hide desktop nav */
@media (max-width: 900px){
  .nav{ display:none; } /* this was already in your file */
  .menu-btn{ display:inline-flex; }
}

/* ===== MICRO HOVER POLISH ===== */
.btn,
.social-btn,
.card,
.journey-card,
.review-card{
  transition: transform .25s ease, box-shadow .25s ease;
}

.btn:hover,
.social-btn:hover{
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0,0,0,.35);
}

.card:hover,
.journey-card:hover,
.review-card:hover{
  transform: translateY(-3px);
}

/* ===== HERO FADE IN ===== */
.hero{
  animation: heroFade .9s ease-out both;
}

@keyframes heroFade{
  from{ opacity:0; transform: translateY(12px); }
  to{ opacity:1; transform:none; }
}

/* MOBILE STICKY BOOK */
.mobile-book{
  display:none;
}

@media (max-width:768px){
  .mobile-book{
    display:flex;
    position:fixed;
    left:50%;
    transform:translateX(-50%);
    bottom:12px;
    z-index:998;
    padding:14px 26px;
    border-radius:999px;
    background:linear-gradient(135deg,var(--gold),var(--honey));
    color:#0B0B10;
    font-weight:800;
    box-shadow:0 14px 40px rgba(0,0,0,.55);
    text-decoration:none;
  }
}

.google-badge{
  display:flex;
  gap:10px;
  align-items:center;
  font-size:14px;
  color:rgba(255,255,255,.85);
}

.g-star{
  background:linear-gradient(135deg,var(--gold),var(--honey));
  color:#000;
  padding:6px 10px;
  border-radius:999px;
  font-weight:800;
}

.google-badge a{
  color:var(--honey);
  font-weight:600;
}

.google-badge{
  display:flex;
  gap:10px;
  align-items:center;
  font-size:14px;
  color:rgba(255,255,255,.85);
}

.g-star{
  background:linear-gradient(135deg,var(--gold),var(--honey));
  color:#000;
  padding:6px 10px;
  border-radius:999px;
  font-weight:800;
}

.google-badge a{
  color:var(--honey);
  font-weight:600;
}

.lightbox{
  position:fixed;
  top:0;left:0;right:0;bottom:0;
  background:rgba(0,0,0,0.85);
  display:none;
  align-items:center;
  justify-content:center;
  z-index:9999;
}
.lightbox.show{display:flex;}
.lb-img{
  max-width:90%;
  max-height:90%;
  border-radius:16px;
}
.lb-close{
  position:absolute;
  top:20px;
  right:25px;
  font-size:32px;
  color:#fff;
  cursor:pointer;
}

.gallery-grid{
  display:grid;
  grid-template-columns: repeat(auto-fill,minmax(220px,1fr));
  gap:14px;
}

.gallery-grid img{
  width:100%;
  border-radius:18px;
  cursor:pointer;
}

/* LIGHTBOX */
.lightbox{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,0.85);
  display:none;
  align-items:center;
  justify-content:center;
  z-index:1000;
}
.lightbox.show{display:flex;}
.lb-img{
  max-width:90%;
  max-height:85%;
  border-radius:18px;
}
.lb-close{
  position:absolute;
  top:20px;
  right:26px;
  font-size:36px;
  color:#fff;
  cursor:pointer;
}

/* FIX: NAV LINKS VISIBILITY */
.nav a{
  color: rgba(255,255,255,0.9);
}

.nav a:hover{
  color: var(--honey);
}

/* active link safe */
.nav a.active{
  color: var(--honey);
}

/* FIX: FLOATING WHATSAPP VISIBILITY */
.float-whatsapp{
  color:#0B0B10 !important;
  background: linear-gradient(135deg, #25D366, #1EBE5D) !important;
  opacity:1 !important;
}

.float-whatsapp span{
  color:#0B0B10 !important;
}

/* FIX: MOBILE NAV SHOW */
.mobile-nav{
  position:fixed;
  top:0;
  right:-100%;
  width:85%;
  max-width:320px;
  height:100%;
  background: rgba(11,11,16,0.95);
  backdrop-filter: blur(18px);
  z-index:999;
  transition:right .3s ease;
}

.mobile-nav.open{
  right:0;
}

.mobile-nav a{
  color:#fff;
  padding:14px 18px;
  display:block;
}

/* FIX: FLOATING WHATSAPP BUTTON */
.float-whatsapp{
  background:#25D366 !important;
  color:#0B0B10 !important;
  opacity:1 !important;
}

.float-whatsapp:hover{
  background:#1EBE5D !important;
}

.float-whatsapp span{
  color:#0B0B10 !important;
}

/* ================= FIX PATCH: HEADER NAV (GALLERY VISIBLE) ================= */
@media (max-width: 1180px){
  .brand-title{ font-size: 30px; }
  .nav{ gap: 14px; }
  .nav a{ font-size: 13px; }
}

@media (max-width: 1040px){
  .brand-title{ font-size: 26px; }
  .brand-sub{ display:none; } /* space save, pro look */
  .nav{ gap: 12px; }
}

/* prevent nav from going out of screen */
.header-inner{ gap: 14px; }
.nav{ flex-shrink: 0; }

/* ================= FIX PATCH: FLOATING WHATSAPP (ALWAYS BUTTON LOOK) ================= */
.float-whatsapp{
  position: fixed !important;
  right: 18px !important;
  bottom: 18px !important;
  z-index: 9999 !important;

  padding: 12px 16px !important;
  border-radius: 999px !important;

  background: linear-gradient(135deg, #25D366, #1EBE5D) !important;
  color: #0B0B10 !important;
  font-weight: 800 !important;
  font-size: 14px !important;

  box-shadow: 0 0 0 1px rgba(255,255,255,0.15),
              0 14px 40px rgba(0,0,0,0.55) !important;

  opacity: 1 !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  text-decoration: none !important;
}

.float-whatsapp:hover{
  transform: translateY(-2px) !important;
}

.float-whatsapp span{
  color:#0B0B10 !important;
}

/* ================= QUICK GALLERY (HOME) ================= */
.qg-grid{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.qg-img{
  width:100%;
  height: 320px;
  object-fit: cover;
  border-radius: 22px;
  border: 1px solid rgba(212,175,55,0.22);
  background: rgba(255,255,255,0.04);
  box-shadow: 0 18px 60px rgba(0,0,0,0.45);
  transition: transform .25s ease, box-shadow .25s ease;
}

.qg-img:hover{
  transform: translateY(-3px);
  box-shadow: 0 24px 80px rgba(0,0,0,0.55);
}

@media (max-width: 1100px){
  .qg-grid{ grid-template-columns: 1fr 1fr; }
  .qg-img{ height: 320px; }
}

@media (max-width: 520px){
  .qg-grid{ grid-template-columns: 1fr; }
  .qg-img{ height: 340px; }
}
