/* =========================
   DESIGN SYSTEM (Figma-like)
========================= */
:root{
  --bg: #FDF6EC;
  --bg2:#FFFFFF;
  --alt:#F7EFE2;

  --text:#121212;
  --muted:#5C5C5C;

  --primary:#1F4D3B;
  --primary2:#2C6A52;
  --accent:#F4A261;

  --shadow: 0 18px 50px rgba(0,0,0,0.12);
  --shadow2: 0 30px 80px rgba(0,0,0,0.18);
  --radius: 24px;
  --radius2: 32px;

  --container: 1100px;
}

/* Base */
*{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin:0;
  font-family: "Open Sans", system-ui, -apple-system, Segoe UI, Roboto, Arial;
  color: var(--text);
  background: var(--bg);
}
img{ max-width:100%; display:block; }
a{ color: inherit; text-decoration: none; }

.container{
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}

/* =========================
   TOP BAR
========================= */
.topbar{
  background: rgba(31,77,59,0.96);
  color: #fff;
  font-size: 13px;
}
.topbar-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: 10px 0;
  gap: 16px;
}
.topbar a{ opacity:0.95; }
.topbar a:hover{ opacity:1; }
.topbar-left, .topbar-right{
  display:flex; align-items:center; gap:10px;
}
.topbar .dot{ opacity:0.6; }

/* =========================
   HEADER
========================= */
.site-header{
  position: sticky;
  top:0;
  z-index: 50;
  background: rgba(253,246,236,0.6);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.nav-container{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: 14px 0;
  gap: 16px;
}
.brand{
  display:flex;
  align-items:center;
  gap: 12px;
}
.brand-mark{
  width:44px;height:44px;
  border-radius: 14px;
  display:grid; place-items:center;
  background: rgba(31,77,59,0.12);
}
.brand-title{
  font-family:"Montserrat", sans-serif;
  font-weight:800;
  letter-spacing:0.2px;
}
.brand-subtitle{
  font-size:12px; color: var(--muted);
}

.nav{
  display:flex;
  align-items:center;
  gap:16px;
}
.nav-links{
  list-style:none;
  display:flex;
  gap: 18px;
  align-items:center;
  margin:0;
  padding:0;
}
.nav-links a{
  font-family:"Montserrat", sans-serif;
  font-weight:700;
  font-size: 13px;
  padding: 10px 12px;
  border-radius: 12px;
  color: rgba(0,0,0,0.75);
  transition: 0.25s ease;
}
.nav-links a:hover{
  background: rgba(31,77,59,0.10);
  color: rgba(0,0,0,0.9);
}
.nav-cta{
  background: var(--primary);
  color:#fff !important;
  box-shadow: 0 10px 24px rgba(31,77,59,0.22);
}
.nav-cta:hover{
  background: var(--primary2);
}

.hamburger{
  display:none;
  width: 44px; height:44px;
  border-radius: 14px;
  border: 1px solid rgba(0,0,0,0.1);
  background: #fff;
  cursor:pointer;
}
.hamburger span{
  display:block;
  width: 18px; height:2px;
  background: #1B1B1B;
  margin: 4px auto;
  border-radius: 4px;
}

/* =========================
   HERO
========================= */
.hero{
  position:relative;
  padding: 56px 0 40px;
  overflow:hidden;
}
.hero-bg{
  position:absolute; inset:0;
  background: url("../src/lake.jpg") center/cover no-repeat;
  transform: scale(1.02);
  filter: saturate(1.05);
}
.hero-overlay{
  position:absolute; inset:0;
  background: linear-gradient(120deg,
    rgba(0,0,0,0.65),
    rgba(0,0,0,0.45),
    rgba(0,0,0,0.62)
  );
}
.hero-grid{
  position:relative;
  display:grid;
  grid-template-columns: 1.25fr 0.85fr;
  gap: 26px;
  align-items: start;
}
.hero-content{
  color:#fff;
  padding: 28px 0;
}
.pill{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding: 10px 14px;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 999px;
  backdrop-filter: blur(10px);
  margin-bottom: 14px;
  font-weight:600;
}
.hero h1{
  font-family:"Montserrat", sans-serif;
  font-weight: 800;
  letter-spacing: -0.6px;
  line-height: 1.05;
  font-size: clamp(36px, 4vw, 54px);
  margin: 0 0 12px;
}
.lead{
  margin: 0 0 22px;
  color: rgba(255,255,255,0.9);
  font-size: 16px;
  line-height: 1.7;
  max-width: 60ch;
}
.hero-actions{
  display:flex; gap: 12px; flex-wrap:wrap;
  margin-bottom: 18px;
}
.hero-metrics{
  display:flex; gap: 16px; flex-wrap:wrap;
}
.metric{
  min-width: 140px;
  padding: 14px 16px;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 18px;
  backdrop-filter: blur(10px);
}
.metric-number{
  font-family:"Montserrat", sans-serif;
  font-weight: 800;
  font-size: 22px;
}
.metric-label{
  font-size: 13px;
  opacity: 0.9;
}

.hero-card{
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(255,255,255,0.5);
  border-radius: var(--radius2);
  box-shadow: var(--shadow2);
  overflow:hidden;
}
.hero-card-header{
  padding: 18px 18px 10px;
  background: linear-gradient(180deg, rgba(31,77,59,0.12), rgba(255,255,255,0));
}
.hero-card-title{
  font-family:"Montserrat", sans-serif;
  font-weight: 800;
  font-size: 16px;
}
.hero-card-subtitle{
  color: var(--muted);
  font-size: 13px;
  margin-top: 2px;
}
.mini-form{
  padding: 16px 18px 18px;
  display:grid;
  gap: 12px;
}
.mini-form label{
  display:grid;
  gap: 6px;
  font-size: 12px;
  color: rgba(0,0,0,0.75);
  font-weight: 700;
  font-family:"Montserrat", sans-serif;
}
.mini-form input, .mini-form select{
  width:100%;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid rgba(0,0,0,0.12);
  background: #fff;
  font-family: inherit;
  outline: none;
}
.mini-form input:focus, .mini-form select:focus{
  border-color: rgba(244,162,97,0.9);
  box-shadow: 0 0 0 4px rgba(244,162,97,0.25);
}
.mini-form-note{
  margin: 4px 0 0;
  font-size: 12px;
  color: rgba(0,0,0,0.7);
  display:flex; align-items:center; gap:8px;
}

.scroll-indicator{
  position:absolute;
  left:50%;
  bottom: 12px;
  transform: translateX(-50%);
  width:44px;height:44px;
  border-radius: 999px;
  display:grid; place-items:center;
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.2);
  color:#fff;
  animation: bounce 1.8s infinite;
}
@keyframes bounce{
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-7px); }
}

/* =========================
   BUTTONS
========================= */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 800;
  font-family:"Montserrat", sans-serif;
  border: 1px solid transparent;
  cursor:pointer;
  transition: transform .15s ease, box-shadow .25s ease, background .25s ease;
  user-select:none;
}
.btn:hover{ transform: translateY(-2px); }
.btn:active{ transform: translateY(0); }

.btn-primary{
  background: var(--accent);
  color: #1a1a1a;
  box-shadow: 0 18px 40px rgba(244,162,97,0.35);
}
.btn-primary:hover{
  background: #f7b374;
}
.btn-secondary{
  background: rgba(255,255,255,0.14);
  border-color: rgba(255,255,255,0.22);
  color:#fff;
  backdrop-filter: blur(10px);
}
.section .btn-secondary{
  background: #fff;
  border-color: rgba(0,0,0,0.12);
  color: #111;
}
.btn-ghost{
  background: transparent;
  border-color: rgba(0,0,0,0.14);
  color: #111;
}
.btn-sm{ padding: 10px 14px; font-size: 12px; }
.btn-block{ width:100%; border-radius: 18px; padding: 12px 16px; }

/* =========================
   SECTIONS
========================= */
.section{
  padding: 70px 0;
}
.section-alt{
  background: var(--alt);
}
.section-head{
  text-align:center;
  margin-bottom: 26px;
}
.section-head h2{
  font-family:"Montserrat", sans-serif;
  font-weight: 800;
  margin: 0 0 8px;
  font-size: 30px;
}
.section-head p{
  margin:0;
  color: var(--muted);
  line-height: 1.7;
}

.section-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  align-items: stretch;
}
.media-card, .content-card{
  border-radius: var(--radius2);
  box-shadow: var(--shadow);
  background: #fff;
  overflow:hidden;
}
.media-card img{
  width:100%;
  height:100%;
  object-fit: cover;
  min-height: 360px;
}
.content-card{
  padding: 26px;
}
.content-card h2{
  font-family:"Montserrat", sans-serif;
  font-weight: 800;
  margin: 0 0 10px;
}
.content-card p{
  margin: 0 0 16px;
  color: var(--muted);
  line-height: 1.8;
}

.feature-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 14px;
}
.feature{
  display:flex;
  gap: 12px;
  padding: 14px;
  border-radius: 18px;
  background: rgba(31,77,59,0.06);
  border: 1px solid rgba(31,77,59,0.10);
}
.feature i{
  width: 40px; height:40px;
  border-radius: 14px;
  display:grid; place-items:center;
  background: rgba(31,77,59,0.14);
  color: var(--primary);
}
.feature h3{
  font-family:"Montserrat", sans-serif;
  margin: 0 0 4px;
  font-weight: 800;
  font-size: 14px;
}
.feature p{
  margin:0;
  font-size: 13px;
  color: rgba(0,0,0,0.65);
  line-height: 1.5;
}
.cta-row{ display:flex; gap: 12px; flex-wrap:wrap; margin-top: 14px; }

/* =========================
   CARDS / ACTIVITIES
========================= */
.cards-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.card{
  border-radius: var(--radius2);
  background:#fff;
  box-shadow: var(--shadow);
  overflow:hidden;
  transition: transform .25s ease, box-shadow .25s ease;
}
.card:hover{
  transform: translateY(-10px);
  box-shadow: var(--shadow2);
}
.card-media{
  position:relative;
  height: 220px;
  overflow:hidden;
}
.card-media img{
  width:100%;
  height:100%;
  object-fit: cover;
  transition: transform .35s ease;
}
.card:hover .card-media img{ transform: scale(1.08); }

.badge{
  position:absolute;
  top: 14px;
  right: 14px;
  background: rgba(0,0,0,0.75);
  color:#fff;
  padding: 8px 12px;
  border-radius: 999px;
  font-weight: 800;
  font-family:"Montserrat", sans-serif;
  font-size: 12px;
  border: 1px solid rgba(255,255,255,0.2);
  backdrop-filter: blur(8px);
}
.card-body{
  padding: 16px 16px 18px;
}
.card-body h3{
  font-family:"Montserrat", sans-serif;
  font-weight: 800;
  margin: 0 0 6px;
}
.card-body p{
  margin:0 0 12px;
  color: var(--muted);
  line-height: 1.7;
  font-size: 14px;
}
.card-actions{ display:flex; gap: 10px; }

/* =========================
   GALLERY (Fixed mobile + keeps desktop layout)
========================= */

.gallery-grid{
  display: grid;
  gap: 12px;
  width: 100%;
}

//* =========================
   3D CYLINDER GALLERY
========================= */
.cyl-wrap{
  width: 100%;
  display: grid;
  place-items: center;
  padding-top: 10px;
}

.cyl-stage{
  width: min(100%, 980px);
  height: clamp(320px, 52vw, 520px);
  perspective: 1100px;
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  background: rgba(255,255,255,.04);
}

.cyl-stage::before{
  content:"";
  position:absolute; inset:0;
  background: radial-gradient(60% 60% at 50% 40%, rgba(255,255,255,.08), transparent 60%);
  pointer-events:none;
}

.cyl{
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  transform-style: preserve-3d;
  will-change: transform;
  touch-action: pan-y; /* allow vertical scroll; we rotate only on horizontal drag */
}

/* Cards on the cylinder */
.cyl-card{
  position: absolute;
  top: 50%;
  left: 50%;
  width: clamp(180px, 28vw, 260px);
  height: clamp(220px, 34vw, 320px);
  transform-style: preserve-3d;
  border: 0;
  padding: 0;
  border-radius: 18px;
  overflow: hidden;
  cursor: grab;
  background: #0f1116;
  box-shadow: var(--shadow);
}

.cyl-card:active{ cursor: grabbing; }

.cyl-card img{
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transform: scale(1.02);
}

/* Mobile tune */
@media (max-width: 720px){
  .cyl-stage{
    height: 420px;
    perspective: 900px;
  }
  .cyl-card{
    width: 78vw;
    height: 58vw;     /* landscape-ish for phone */
    max-height: 320px;
  }
}

/* TABLET */
@media (min-width: 1000px) and (max-width: 999px){
  .gallery-grid{
    grid-template-columns: repeat(1, 1fr);
  }

  .gallery-item img{
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
  }

  .gallery-item{ grid-column: auto !important; }
}

/* DESKTOP: your 12-col mosaic layout */
@media (min-width: 1000px){
  .gallery-grid{
    grid-template-columns: repeat(12, 1fr);
  }

  .gallery-item{
    border: 0;
    padding: 0;
    border-radius: 18px;
    overflow: hidden;
    cursor: pointer;
    background: #fff;
    box-shadow: var(--shadow);
    position: relative;
  }

  .gallery-item img{
    width: 100%;          /* FIX: was 400% */
    height: 420px;
    object-fit: cover;
    transition: transform .35s ease;
    display: block;
  }

  .gallery-item:hover img{ transform: scale(1.08); }

  .gallery-item::after{
    content:"";
    position:absolute; inset:0;
    background: linear-gradient(180deg, transparent, rgba(0,0,0,0.25));
    opacity:0;
    transition: opacity .25s ease;
  }
  .gallery-item:hover::after{ opacity:1; }

  /* Desktop spans (fixed + valid) */
  .gallery-item:nth-child(1){ grid-column: span 6; }
  .gallery-item:nth-child(2){ grid-column: span 6; } /* FIX: you had span ; */
  .gallery-item:nth-child(3){ grid-column: span 5; }
  .gallery-item:nth-child(4){ grid-column: span 7; }
  .gallery-item:nth-child(5){ grid-column: span 5; }
  .gallery-item:nth-child(6){ grid-column: span 7; } /* balance nicer */
  .gallery-item:nth-child(7){ grid-column: span 7; }
  .gallery-item:nth-child(8){ grid-column: span 5; }
  .gallery-item:nth-child(9){ grid-column: span 6; }
  .gallery-item:nth-child(10){ grid-column: span 6; }
}

/* Extra: stop any accidental sideways scroll */
html, body{ overflow-x: hidden; }
img{ max-width: 800%; }
/* =========================
   RESTAURANT MOCK
========================= */
/* Menu mock preview (clickable) */
.media-card{
  min-height: 380px;
}

.menu-mock{
  height: 100%;
  min-height: 380px;
  border-radius: 32px;
  overflow: hidden;
  display:flex;
  flex-direction:column;
  background: linear-gradient(135deg, rgba(31,77,59,0.12), rgba(244,162,97,0.18));
  box-shadow: 0 30px 80px rgba(0,0,0,0.15);
  transition: transform .35s ease, box-shadow .35s ease;
  text-decoration: none;
  color: inherit;
}

.menu-mock:hover{
  transform: translateY(-10px);
  box-shadow: 0 40px 100px rgba(0,0,0,0.22);
}

.menu-mock-top{
  display:flex;
  gap: 8px;
  padding: 14px 16px;
  background: rgba(255,255,255,0.65);
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

.menu-dot{
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: rgba(0,0,0,0.20);
}

.menu-mock-body{
  padding: 22px;
  display:grid;
  gap: 14px;
  flex:1;
  position: relative;
}

.menu-line{
  height: 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.80);
  border: 1px solid rgba(0,0,0,0.06);
}

/* widths */
.w50{ width:50%; }
.w55{ width:55%; }
.w60{ width:60%; }
.w70{ width:70%; }
.w80{ width:80%; }
.w85{ width:85%; }
.w90{ width:90%; }

.menu-mock-foot{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding: 14px 18px;
  background: rgba(255,255,255,0.70);
  border-top: 1px solid rgba(0,0,0,0.08);
  font-weight: 800;
  font-family: "Montserrat", sans-serif;
  color: #2b2b2b;
}

/* CTA overlay inside mock */
.menu-cta{
  margin-top: 8px;
  display:inline-flex;
  align-items:center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.75);
  border: 1px solid rgba(0,0,0,0.08);
  font-weight: 900;
  font-family: "Montserrat", sans-serif;
  width: fit-content;
}

/* nice shimmer effect */
.menu-line{
  background: linear-gradient(90deg,
    rgba(255,255,255,0.55),
    rgba(255,255,255,0.95),
    rgba(255,255,255,0.55)
  );
  background-size: 200% 100%;
  animation: shimmer 2.2s infinite linear;
}

@keyframes shimmer{
  0%{ background-position: 200% 0; }
  100%{ background-position: -200% 0; }
}

/* =========================
   PRICING
========================= */
.pricing-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.pricing-card{
  position:relative;
  border-radius: var(--radius2);
  background:#fff;
  box-shadow: var(--shadow);
  padding: 20px;
  border: 1px solid rgba(0,0,0,0.06);
  transition: transform .25s ease, box-shadow .25s ease;
}
.pricing-card:hover{ transform: translateY(-10px); box-shadow: var(--shadow2); }
.pricing-top h3{
  font-family:"Montserrat", sans-serif;
  font-weight: 800;
  margin: 0 0 6px;
}
.pricing-top p{ margin:0; color: var(--muted); }
.pricing-list{
  list-style:none;
  padding: 0;
  margin: 14px 0 16px;
  display:grid;
  gap: 10px;
}
.pricing-list li{
  display:flex; gap: 10px; align-items:flex-start;
  color: rgba(0,0,0,0.75);
}
.pricing-list i{ color: var(--primary); margin-top: 3px; }
.featured{
  border: 2px solid rgba(244,162,97,0.65);
  box-shadow: 0 30px 80px rgba(244,162,97,0.18);
}
.featured-badge{
  position:absolute;
  top: 14px;
  right: 14px;
  background: var(--accent);
  padding: 8px 12px;
  border-radius: 999px;
  font-weight: 900;
  font-family:"Montserrat", sans-serif;
  font-size: 12px;
}

/* =========================
   TESTIMONIALS
========================= */
.testimonials-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.testimonial{
  border-radius: var(--radius2);
  background:#fff;
  box-shadow: var(--shadow);
  padding: 18px;
}
.stars i{ color: #F4A261; }
.testimonial p{
  color: var(--muted);
  line-height: 1.7;
}
.person{
  display:flex; align-items:center; gap: 10px;
  margin-top: 12px;
}
.avatar{
  width:40px;height:40px;border-radius: 16px;
  display:grid; place-items:center;
  background: rgba(31,77,59,0.12);
  font-weight: 900;
  font-family:"Montserrat", sans-serif;
  color: var(--primary);
}
.name{
  font-family:"Montserrat", sans-serif;
  font-weight: 900;
}
.meta{ font-size: 12px; color: rgba(0,0,0,0.6); }

/* =========================
   MAP + FAQ
========================= */
.map-card{
  border-radius: 22px;
  overflow:hidden;
  border: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0 14px 40px rgba(0,0,0,0.10);
}
.map-card iframe{
  width:100%;
  height: 320px;
  border:0;
}
.faq details{
  background: rgba(31,77,59,0.06);
  border: 1px solid rgba(31,77,59,0.12);
  border-radius: 18px;
  padding: 14px 14px;
  margin-bottom: 12px;
}
.faq summary{
  cursor:pointer;
  font-family:"Montserrat", sans-serif;
  font-weight: 900;
}
.faq p{
  margin: 10px 0 0;
  color: rgba(0,0,0,0.7);
}

/* =========================
   BOOKING
========================= */
.booking-wrap{
  display:grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 16px;
  align-items:start;
}
.booking-form{
  background:#fff;
  border-radius: var(--radius2);
  box-shadow: var(--shadow2);
  padding: 18px;
  border: 1px solid rgba(0,0,0,0.06);
  display:grid;
  gap: 12px;
}
.form-row{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.booking-form label{
  display:grid;
  gap: 6px;
  font-family:"Montserrat", sans-serif;
  font-weight: 900;
  font-size: 12px;
  color: rgba(0,0,0,0.75);
}
.booking-form input,
.booking-form select,
.booking-form textarea{
  width:100%;
  padding: 12px;
  border-radius: 14px;
  border: 1px solid rgba(0,0,0,0.12);
  outline:none;
  font-family: inherit;
}
.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus{
  border-color: rgba(244,162,97,0.9);
  box-shadow: 0 0 0 4px rgba(244,162,97,0.25);
}
.form-note{
  margin: 0;
  color: rgba(0,0,0,0.6);
  font-size: 12px;
  line-height: 1.6;
}
.booking-side .side-card{
  background:#fff;
  border-radius: var(--radius2);
  box-shadow: var(--shadow);
  padding: 18px;
  border: 1px solid rgba(0,0,0,0.06);
}
.side-card h3{
  font-family:"Montserrat", sans-serif;
  font-weight: 900;
  margin: 0 0 6px;
}
.side-card p{ margin: 0 0 12px; color: var(--muted); line-height: 1.7; }
.side-links{ display:grid; gap: 10px; }
.side-links a{
  display:flex; gap: 10px; align-items:center;
  padding: 10px 12px;
  border-radius: 16px;
  border: 1px solid rgba(0,0,0,0.08);
  transition: .2s ease;
}
.side-links a:hover{
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.12);
}

/* =========================
   MOBILE FLOATING ICONS
========================= */
.mobile-app-icons{ display:none; }
@media (max-width: 768px){
  .mobile-app-icons{
    display:flex;
    position:fixed;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    gap: 12px;
    z-index: 999;
    padding: 10px 12px;
    border-radius: 999px;
    background: rgba(255,255,255,0.86);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(0,0,0,0.12);
    box-shadow: 0 20px 60px rgba(0,0,0,0.18);
  }
  .app-icon{
    width: 48px;
    height: 48px;
    border-radius: 18px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size: 18px;
    color:#fff;
    box-shadow: 0 14px 30px rgba(0,0,0,0.15);
    transition: transform .15s ease;
  }
  .app-icon:hover{ transform: translateY(-3px); }
  .app-icon.whatsapp{ background:#25D366; }
  .app-icon.call{ background:#2A5DFF; }
  .app-icon.email{ background:#E76F51; }
  .app-icon.instagram{ background:#C13584; }
}

/* =========================
   LIGHTBOX + TOAST
========================= */
.lightbox{
  position:fixed;
  inset:0;
  background: rgba(0,0,0,0.75);
  display:none;
  align-items:center;
  justify-content:center;
  padding: 20px;
  z-index: 9999;
}
.lightbox.show{ display:flex; }
.lightbox img{
  max-width: 980px;
  width: 100%;
  border-radius: 22px;
  box-shadow: 0 30px 90px rgba(0,0,0,0.35);
}
.lightbox-close{
  position:absolute;
  top: 18px;
  right: 18px;
  width: 48px; height:48px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.14);
  color:#fff;
  cursor:pointer;
}

.toast{
  position: fixed;
  right: 16px;
  bottom: 16px;
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(17,17,17,0.92);
  color:#fff;
  box-shadow: 0 20px 50px rgba(0,0,0,0.25);
  z-index: 99999;
  opacity:0;
  transform: translateY(10px);
  pointer-events:none;
  transition: .25s ease;
  max-width: 320px;
  font-size: 13px;
  line-height: 1.6;
}
.toast.show{
  opacity:1;
  transform: translateY(0);
}

/* =========================
   REVEAL ANIMATION
========================= */
.reveal{
  opacity: 0;
  transform: translateY(18px);
  transition: 0.65s ease;
}
.reveal.show{
  opacity: 1;
  transform: translateY(0);
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 980px){
  .hero-grid{ grid-template-columns: 1fr; }
  .section-grid{ grid-template-columns: 1fr; }
  .cards-grid{ grid-template-columns: 1fr; }
  .pricing-grid{ grid-template-columns: 1fr; }
  .testimonials-grid{ grid-template-columns: 1fr; }
  .booking-wrap{ grid-template-columns: 1fr; }
  .media-card img{ min-height: 280px; }

  .topbar-inner{ flex-direction:column; align-items:flex-start; }
}

@media (max-width: 900px){
  .hamburger{ display:inline-block; }
  .nav-links{
    position:absolute;
    top: 64px;
    right: 20px;
    width: min(360px, calc(100vw - 40px));
    background: rgba(255,255,255,0.95);
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 22px;
    box-shadow: var(--shadow2);
    padding: 12px;
    display:none;
    flex-direction:column;
    align-items:stretch;
    gap: 8px;
  }
  .nav-links.show{ display:flex; }
  .nav-links a{ color: rgba(0,0,0,0.85); }
  .nav-cta{ text-align:center; }
}

@media (max-width: 600px){
  .form-row{ grid-template-columns: 1fr; }
  .feature-grid{ grid-template-columns: 1fr; }
  .gallery-grid{ grid-template-columns: repeat(2, 1fr); }
  .gallery-item:nth-child(1),
  .gallery-item:nth-child(2),
  .gallery-item:nth-child(3),
  .gallery-item:nth-child(4),
  .gallery-item:nth-child(5){ grid-column: span 1; }
  .gallery-item img{ height: 170px; }
}


.brand-mark{
  width:54px;
  height:54px;
  background:#ffffff;
  border-radius:14px;

  display:flex;
  align-items:center;
  justify-content:center;
}

.brand-mark img{
  width:44px;
  height:auto;
  object-fit:contain;
}


/* ===== ANTI-SHAKE / ANTI-LAYOUT-SHIFT PATCH ===== */

/* stop tiny horizontal overflow that causes left-right jitter */
html, body{
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

/* common cause: 100vw creates jitter because scrollbar width changes */
.container, .section, header, footer{
  max-width: 100%;
}

/* make images not push layout while loading */
img{
  display:block;
  max-width:100%;
  height:auto;
}

/* smooth, stable sizing model */
*, *::before, *::after{
  box-sizing: border-box;
}

/* if you used background-attachment: fixed anywhere, kill it on mobile (it causes jitter) */
@media (max-width: 900px){
  .hero, .section, body{
    background-attachment: scroll !important;
  }
}

/* stop any accidental animation that keeps re-triggering */
@media (prefers-reduced-motion: reduce){
  *{ animation: none !important; transition: none !important; }
}