/*
Theme Name: The Hub Coworking v3
Theme URI: https://thehubkothrud.com
Author: The Hub – A Coworking Space
Description: Fresh white + lime WordPress theme. Dark hero with background image, clean white body sections.
Version: 3.0.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 8.0
License: Private
Text Domain: thehub
*/

/* =================================================================
   DESIGN TOKENS
   Hero: dark photo + lime overlay
   Body: clean white, light grey sections, lime + dark ink accents
================================================================= */
:root {
  /* Core palette */
  --lime:       #C2F03A;
  --lime-dark:  #A8D020;
  --lime-hover: #B0DA30;
  --ink:        #111312;
  --ink-2:      #1C1E1A;
  --white:      #FFFFFF;
  --off-white:  #F7F8F5;
  --grey-50:    #F4F5F2;
  --grey-100:   #ECEEED;
  --grey-200:   #D8DAD6;
  --grey-400:   #9A9D97;
  --grey-600:   #5A5E58;
  --grey-800:   #2C2F2A;

  /* Hero-only dark vars */
  --hero-bg:    #0D0F0B;
  --hero-text:  #F2F5EC;
  --hero-muted: rgba(242,245,236,0.65);
  --hero-border:rgba(194,240,58,0.20);

  /* Shadows */
  --shadow-sm:  0 1px 4px rgba(0,0,0,0.07);
  --shadow-md:  0 4px 20px rgba(0,0,0,0.09);
  --shadow-lg:  0 12px 48px rgba(0,0,0,0.12);
  --shadow-lime:0 8px 32px rgba(194,240,58,0.30);

  /* Radii */
  --r-sm:  10px;
  --r-md:  16px;
  --r-lg:  24px;
  --r-xl:  32px;
  --r-pill:100px;

  /* Fonts */
  --font-h: 'Bricolage Grotesque', sans-serif;
  --font-b: 'DM Sans', sans-serif;
}

/* =================================================================
   RESET & BASE
================================================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-b);
  background: var(--white);
  color: var(--grey-800);
  overflow-x: hidden;
  line-height: 1.65;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
h1,h2,h3,h4 { font-family: var(--font-h); line-height: 1.12; letter-spacing: -0.02em; }
h1 { font-size: clamp(2.6rem, 5.5vw, 5rem); font-weight: 800; }
h2 { font-size: clamp(2rem, 3.5vw, 3.2rem); font-weight: 700; }
h3 { font-size: clamp(1.1rem, 1.8vw, 1.35rem); font-weight: 600; }
p  { font-size: 1.05rem; color: var(--grey-600); line-height: 1.72; }

/* =================================================================
   LAYOUT
================================================================= */
.container { max-width: 1200px; margin: 0 auto; padding: 0 28px; }
.section    { padding: 96px 0; background: var(--white); }
.section-grey { padding: 96px 0; background: var(--grey-50); }

.label {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-h);
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--lime-dark);
  background: rgba(194,240,58,0.12);
  border: 1px solid rgba(194,240,58,0.3);
  padding: 5px 14px;
  border-radius: var(--r-pill);
  margin-bottom: 18px;
}
.section-head { margin-bottom: 60px; }
.section-head h2 { color: var(--ink); margin-bottom: 14px; }
.section-head p  { max-width: 520px; }
.section-head.center { text-align: center; }
.section-head.center p { margin: 0 auto; }

/* =================================================================
   BUTTONS
================================================================= */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-h);
  font-size: 0.92rem; font-weight: 700;
  padding: 14px 28px;
  border-radius: var(--r-pill);
  border: none; cursor: pointer;
  transition: all 0.22s cubic-bezier(0.16,1,0.3,1);
  white-space: nowrap;
}
.btn-lime {
  background: var(--lime); color: var(--ink);
  box-shadow: var(--shadow-lime);
}
.btn-lime:hover { background: var(--lime-hover); transform: translateY(-2px); box-shadow: 0 12px 36px rgba(194,240,58,0.4); }

.btn-ink {
  background: var(--ink); color: var(--white);
}
.btn-ink:hover { background: var(--ink-2); transform: translateY(-2px); color: var(--white); }

.btn-outline-ink {
  background: transparent; color: var(--ink);
  border: 1.5px solid var(--grey-200);
}
.btn-outline-ink:hover { border-color: var(--ink); transform: translateY(-2px); }

.btn-outline-white {
  background: transparent; color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.4);
}
.btn-outline-white:hover { border-color: var(--white); background: rgba(255,255,255,0.08); transform: translateY(-2px); color: var(--white); }

.btn-wa { background: #25D366; color: white; }
.btn-wa:hover { background: #1ebe5a; transform: translateY(-2px); color: white; }

.btn-lg { padding: 17px 36px; font-size: 1rem; }
.btn-sm { padding: 10px 20px; font-size: 0.84rem; }
.btn-arrow {
  width: 20px; height: 20px; border-radius: 50%;
  background: rgba(0,0,0,0.12);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 0.75rem; flex-shrink: 0;
}

/* =================================================================
   NAVBAR — transparent on hero, white when scrolled
================================================================= */
#navbar {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000; padding: 20px 0;
  transition: all 0.3s ease;
}
#navbar.scrolled {
  background: rgba(255,255,255,0.97);
  box-shadow: 0 1px 0 var(--grey-100), var(--shadow-sm);
  padding: 13px 0;
  backdrop-filter: blur(16px);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; }

.logo { display: flex; align-items: center; gap: 11px; }
.logo-mark {
  width: 40px; height: 40px;
  background: var(--lime); border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-h); font-weight: 800; font-size: 1rem;
  color: var(--ink);
}
.logo-name    { font-family: var(--font-h); font-weight: 800; font-size: 1.15rem; color: var(--white); transition: color 0.3s; }
.logo-tag     { font-size: 0.63rem; color: rgba(255,255,255,0.6); letter-spacing: 0.04em; transition: color 0.3s; }
#navbar.scrolled .logo-name { color: var(--ink); }
#navbar.scrolled .logo-tag  { color: var(--grey-400); }

.nav-links { display: flex; align-items: center; gap: 2px; }
.nav-links a {
  padding: 7px 14px; font-size: 0.88rem; font-weight: 500;
  border-radius: 8px; color: rgba(255,255,255,0.80);
  transition: all 0.18s;
}
.nav-links a:hover { color: var(--white); background: rgba(255,255,255,0.1); }
#navbar.scrolled .nav-links a       { color: var(--grey-600); }
#navbar.scrolled .nav-links a:hover { color: var(--ink); background: var(--grey-50); }

.nav-cta { display: flex; align-items: center; gap: 10px; }
.nav-wa {
  display: flex; align-items: center; gap: 7px;
  font-family: var(--font-h); font-size: 0.84rem; font-weight: 700;
  color: rgba(255,255,255,0.85); padding: 8px 14px;
  border-radius: var(--r-pill);
  border: 1px solid rgba(255,255,255,0.2);
  transition: all 0.2s;
}
.nav-wa:hover { background: rgba(255,255,255,0.1); color: white; }
#navbar.scrolled .nav-wa       { color: var(--grey-700); border-color: var(--grey-200); }
#navbar.scrolled .nav-wa:hover { background: var(--grey-50); color: var(--ink); }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 6px; background: none; border: none; }
.hamburger span { width: 22px; height: 1.5px; background: white; border-radius: 2px; display: block; transition: all 0.3s; }
#navbar.scrolled .hamburger span { background: var(--ink); }

.mobile-menu {
  display: none; position: fixed; inset: 0;
  background: var(--white); z-index: 999;
  padding: 28px; flex-direction: column; gap: 2px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  color: var(--ink); font-size: 1.3rem;
  font-family: var(--font-h); font-weight: 600;
  padding: 16px 0; border-bottom: 1px solid var(--grey-100);
}
.mobile-menu a:hover { color: var(--lime-dark); }
.mobile-close { align-self: flex-end; background: none; border: none; font-size: 1.8rem; cursor: pointer; color: var(--ink); opacity: 0.6; margin-bottom: 12px; }

/* =================================================================
   HERO — dark photo + layered overlays + lime glow
================================================================= */
#hero {
  min-height: 100vh;
  display: flex; align-items: center;
  position: relative; overflow: hidden;
  background: var(--hero-bg);
  padding-top: 90px;
}

.hero-photo {
  position: absolute; inset: 0;
  background:
    url('https://images.unsplash.com/photo-1497366754035-f200968a6e72?w=1800&auto=format&fit=crop&q=80')
    center center / cover no-repeat;
  transform: scale(1.05);
  transition: transform 10s ease;
}
#hero:hover .hero-photo { transform: scale(1.0); }

/* Dark base + lime-tinted directional gradient overlay */
.hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(
      110deg,
      rgba(11,13,9,0.92) 0%,
      rgba(14,18,10,0.82) 45%,
      rgba(25,45,8,0.60) 75%,
      rgba(70,120,15,0.28) 100%
    );
}

/* Lime glow bloom — bottom right */
.hero-lime-bloom {
  position: absolute; bottom: -150px; right: -100px;
  width: 700px; height: 700px; border-radius: 50%;
  background: radial-gradient(circle, rgba(194,240,58,0.20) 0%, rgba(194,240,58,0.06) 45%, transparent 70%);
  pointer-events: none;
}
/* Warm amber bloom — top left */
.hero-warm-bloom {
  position: absolute; top: -80px; left: -80px;
  width: 450px; height: 450px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,190,40,0.08) 0%, transparent 65%);
  pointer-events: none;
}
/* Fine grid */
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(194,240,58,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(194,240,58,0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
}
/* Left lime stripe */
.hero-stripe {
  position: absolute; left: 0; top: 18%; bottom: 18%;
  width: 3px;
  background: linear-gradient(to bottom, transparent, var(--lime), transparent);
  border-radius: 3px;
}

.hero-inner {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 56px; align-items: center; width: 100%;
}

/* ---- Hero Left ---- */
.hero-pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(194,240,58,0.14);
  border: 1px solid rgba(194,240,58,0.32);
  color: var(--lime); font-size: 0.79rem; font-weight: 600;
  padding: 7px 16px; border-radius: var(--r-pill);
  margin-bottom: 28px; font-family: var(--font-h);
  backdrop-filter: blur(8px);
}
.hero-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--lime); animation: pulse 2s infinite;
}
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.4;transform:scale(1.4)} }

#hero h1 { color: #FFFFFF; margin-bottom: 22px; text-shadow: 0 2px 30px rgba(0,0,0,0.35); }
#hero h1 em {
  font-style: normal; color: var(--lime);
  position: relative; display: inline-block;
}
#hero h1 em::after {
  content: ''; position: absolute;
  bottom: 2px; left: 0; right: 0; height: 3px;
  background: var(--lime); border-radius: 2px; opacity: 0.45;
}
.hero-sub {
  font-size: 1.12rem; color: rgba(242,245,236,0.75) !important;
  max-width: 470px; margin-bottom: 42px; line-height: 1.78;
  text-shadow: 0 1px 10px rgba(0,0,0,0.25);
}
.hero-btns { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 56px; }

.hero-proof {
  display: flex; align-items: center; gap: 18px;
  padding-top: 32px;
  border-top: 1px solid rgba(194,240,58,0.18);
}
.avatar-stack { display: flex; }
.av {
  width: 34px; height: 34px; border-radius: 50%;
  border: 2px solid rgba(194,240,58,0.45);
  background: rgba(194,240,58,0.12);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.7rem; font-family: var(--font-h); font-weight: 700; color: var(--lime);
  margin-left: -9px; backdrop-filter: blur(8px);
}
.av:first-child { margin-left: 0; }
.proof-text strong { color: #FFFFFF; font-size: 0.88rem; font-weight: 600; }
.proof-text span { display: block; font-size: 0.76rem; color: rgba(242,245,236,0.60); margin-top: 1px; }

/* ---- Hero Right — glass card ---- */
.hero-glass {
  background: rgba(11,13,9,0.62);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  border: 1px solid rgba(194,240,58,0.18);
  border-radius: var(--r-lg);
  padding: 28px;
  box-shadow: 0 8px 48px rgba(0,0,0,0.45), inset 0 1px 0 rgba(194,240,58,0.08);
}
.glass-header {
  display: flex; align-items: center; gap: 9px;
  font-family: var(--font-h); font-weight: 700; font-size: 0.92rem;
  color: var(--hero-text); margin-bottom: 18px;
}
.gh-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--lime); animation: pulse 2s infinite; }
.g-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 11px 0; border-bottom: 1px solid rgba(194,240,58,0.07);
  font-size: 0.87rem;
}
.g-row:last-of-type { border-bottom: none; }
.g-lbl { color: rgba(242,245,236,0.50); }
.g-val { color: var(--hero-text); font-weight: 600; }
.g-badge {
  background: rgba(194,240,58,0.14); border: 1px solid rgba(194,240,58,0.25);
  color: var(--lime); font-size: 0.71rem; font-weight: 700;
  font-family: var(--font-h); padding: 3px 12px; border-radius: var(--r-pill);
}
.glass-stats {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; margin-top: 16px;
}
.gs {
  background: rgba(194,240,58,0.07); border: 1px solid rgba(194,240,58,0.12);
  border-radius: var(--r-md); padding: 14px 10px; text-align: center;
  transition: border-color 0.2s;
}
.gs:hover { border-color: rgba(194,240,58,0.30); }
.gs-num { font-family: var(--font-h); font-size: 1.55rem; font-weight: 800; color: #FFF; line-height: 1; margin-bottom: 3px; }
.gs-num span { color: var(--lime); }
.gs-lbl { font-size: 0.7rem; color: rgba(242,245,236,0.50); }
.live-bar {
  margin-top: 10px;
  background: rgba(194,240,58,0.07); border: 1px solid rgba(194,240,58,0.12);
  border-radius: var(--r-md); padding: 12px 16px;
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
}
.live-lbl { font-size: 0.72rem; color: rgba(242,245,236,0.45); font-family: var(--font-h); font-weight: 600; text-transform: uppercase; letter-spacing: 0.09em; }
.live-dots { display: flex; gap: 10px; }
.ld { display: flex; align-items: center; gap: 5px; font-size: 0.74rem; color: rgba(242,245,236,0.65); }
.dot { width: 7px; height: 7px; border-radius: 50%; }
.dot-g { background: #22C55E; box-shadow: 0 0 5px rgba(34,197,94,0.6); }

/* =================================================================
   TRUST BAR
================================================================= */
.trust-bar { background: var(--ink); padding: 18px 0; }
.trust-inner { display: flex; align-items: center; justify-content: center; gap: 36px; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 9px; font-size: 0.84rem; font-weight: 500; color: rgba(255,255,255,0.55); white-space: nowrap; }
.trust-item strong { color: rgba(255,255,255,0.90); }
.trust-divider { width: 1px; height: 18px; background: rgba(255,255,255,0.12); }

/* =================================================================
   ABOUT — white section
================================================================= */
.about-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-imgs { position: relative; padding-bottom: 48px; }
.about-img-main { border-radius: var(--r-lg); overflow: hidden; aspect-ratio: 4/3; }
.about-img-main img { width:100%; height:100%; object-fit: cover; }
.about-img-2 {
  position: absolute; bottom: 0; right: -20px;
  width: 52%; border-radius: var(--r-md);
  overflow: hidden; aspect-ratio: 4/3;
  border: 4px solid var(--white); box-shadow: var(--shadow-lg);
}
.about-img-2 img { width:100%; height:100%; object-fit: cover; }
.about-badge {
  position: absolute; top: 24px; left: -18px;
  background: var(--lime); color: var(--ink);
  border-radius: var(--r-md); padding: 16px 20px;
  text-align: center; font-family: var(--font-h);
  box-shadow: var(--shadow-lime);
}
.about-badge .n { font-size: 2rem; font-weight: 800; line-height: 1; }
.about-badge .l { font-size: 0.7rem; font-weight: 600; opacity: 0.75; margin-top: 3px; }
.about-text h2 { color: var(--ink); margin-bottom: 18px; }
.about-text p  { margin-bottom: 16px; }
.about-pills { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 28px; }
.about-pill {
  display: flex; align-items: center; gap: 11px;
  padding: 14px 16px; background: var(--grey-50);
  border: 1px solid var(--grey-100); border-radius: var(--r-md);
  transition: all 0.2s;
}
.about-pill:hover { border-color: rgba(194,240,58,0.5); background: rgba(194,240,58,0.06); }
.pill-icon { width: 32px; height: 32px; min-width: 32px; background: rgba(194,240,58,0.15); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 0.9rem; }
.pill-strong { font-size: 0.84rem; font-family: var(--font-h); color: var(--ink); display: block; font-weight: 600; }
.pill-desc   { font-size: 0.74rem; color: var(--grey-400); }

/* =================================================================
   SERVICES — grey section
================================================================= */
.svc-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px,1fr)); gap: 18px; }
.svc-card {
  background: var(--white); border: 1px solid var(--grey-100);
  border-radius: var(--r-lg); padding: 32px 26px;
  transition: all 0.28s ease; position: relative; overflow: hidden;
}
.svc-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--lime); transform: scaleX(0);
  transition: transform 0.28s ease; transform-origin: left;
}
.svc-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: var(--grey-200); }
.svc-card:hover::before { transform: scaleX(1); }
.svc-icon {
  width: 52px; height: 52px; background: rgba(194,240,58,0.12);
  border-radius: 14px; display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; margin-bottom: 18px; transition: background 0.25s;
}
.svc-card:hover .svc-icon { background: var(--lime); }
.svc-card h3 { color: var(--ink); margin-bottom: 9px; }
.svc-price {
  display: inline-block; margin-top: 16px;
  font-family: var(--font-h); font-size: 0.83rem; font-weight: 700;
  color: var(--lime-dark);
}

/* =================================================================
   PRICING — white section
================================================================= */
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px,1fr)); gap: 18px; }
.p-card {
  background: var(--white); border: 1.5px solid var(--grey-100);
  border-radius: var(--r-lg); padding: 34px 28px;
  transition: all 0.28s; position: relative; overflow: hidden;
}
.p-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--grey-200); }
.p-card.hot {
  background: var(--ink); border-color: var(--ink);
}
.p-card.hot:hover { box-shadow: 0 12px 48px rgba(17,19,18,0.3); }
.pop-badge {
  position: absolute; top: 18px; right: 18px;
  background: var(--lime); color: var(--ink);
  font-family: var(--font-h); font-size: 0.68rem; font-weight: 800;
  letter-spacing: 0.09em; text-transform: uppercase;
  padding: 4px 12px; border-radius: var(--r-pill);
}
.p-icon { font-size: 1.7rem; margin-bottom: 13px; }
.p-card h3 { color: var(--ink); margin-bottom: 5px; font-size: 1.15rem; }
.p-card.hot h3 { color: var(--white); }
.p-sub { font-size: 0.81rem; color: var(--grey-400); margin-bottom: 22px; }
.p-card.hot .p-sub { color: rgba(255,255,255,0.50); }
.p-num { font-family: var(--font-h); font-size: 2.4rem; font-weight: 800; color: var(--ink); line-height: 1; }
.p-card.hot .p-num { color: var(--white); }
.p-unit { font-size: 0.82rem; color: var(--grey-400); }
.p-card.hot .p-unit { color: rgba(255,255,255,0.45); }
.p-or { font-size: 0.74rem; color: var(--grey-200); margin: 8px 0; }
.p-card.hot .p-or { color: rgba(255,255,255,0.2); }
.p-month { font-family: var(--font-h); font-size: 1.15rem; font-weight: 700; color: var(--ink); margin-bottom: 24px; }
.p-card.hot .p-month { color: var(--white); }
.p-feats { margin-bottom: 26px; }
.pf {
  display: flex; align-items: center; gap: 9px;
  padding: 8px 0; font-size: 0.85rem; color: var(--grey-600);
  border-bottom: 1px solid var(--grey-100);
}
.p-card.hot .pf { color: rgba(255,255,255,0.65); border-bottom-color: rgba(255,255,255,0.07); }
.pf:last-child { border-bottom: none; }
.pf-chk { color: var(--lime-dark); font-size: 0.9rem; }
.p-card.hot .pf-chk { color: var(--lime); }
.p-btn { width: 100%; justify-content: center; }

/* =================================================================
   WHY CHOOSE — grey section
================================================================= */
.why-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(172px,1fr)); gap: 14px; }
.why-card {
  text-align: center; padding: 28px 18px;
  background: var(--white); border: 1px solid var(--grey-100);
  border-radius: var(--r-lg); transition: all 0.25s;
}
.why-card:hover { border-color: rgba(194,240,58,0.5); box-shadow: var(--shadow-md); transform: translateY(-3px); background: rgba(194,240,58,0.04); }
.why-icon { font-size: 2rem; margin-bottom: 12px; display: block; }
.why-card h4 { font-family: var(--font-h); font-size: 0.88rem; font-weight: 600; color: var(--ink); }
.why-card p  { font-size: 0.76rem; margin-top: 3px; }

/* =================================================================
   GALLERY — white section
================================================================= */
.gallery-wrap {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  grid-template-rows: 280px 200px;
  gap: 14px;
}
.g-item { border-radius: var(--r-lg); overflow: hidden; position: relative; cursor: pointer; }
.g-item:first-child { grid-column: span 2; grid-row: span 2; }
.g-item img { width:100%; height:100%; object-fit: cover; transition: transform 0.5s ease; }
.g-item:hover img { transform: scale(1.06); }
.g-ov {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(17,19,18,0.72) 0%, transparent 55%);
  opacity: 0; transition: opacity 0.28s;
  display: flex; align-items: flex-end; padding: 18px;
}
.g-item:hover .g-ov { opacity: 1; }
.g-lbl { color: var(--lime); font-family: var(--font-h); font-weight: 700; font-size: 0.88rem; }

/* =================================================================
   TESTIMONIALS — grey section
================================================================= */
.testi-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px,1fr)); gap: 18px; }
.t-card {
  background: var(--white); border: 1px solid var(--grey-100);
  border-radius: var(--r-lg); padding: 30px 26px;
  position: relative; transition: all 0.26s;
}
.t-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.t-quote {
  position: absolute; top: 18px; right: 22px;
  font-family: var(--font-h); font-size: 4rem;
  color: var(--lime); opacity: 0.18; line-height: 1;
}
.t-stars { color: #F59E0B; font-size: 0.92rem; margin-bottom: 12px; letter-spacing: 2px; }
.t-card p { font-size: 0.91rem; line-height: 1.72; margin-bottom: 22px; color: var(--grey-600); }
.t-author { display: flex; align-items: center; gap: 12px; }
.t-av {
  width: 42px; height: 42px; border-radius: 50%; flex-shrink: 0;
  background: rgba(194,240,58,0.12); border: 1.5px solid rgba(194,240,58,0.35);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-h); font-weight: 700; font-size: 0.88rem;
  color: var(--lime-dark);
}
.t-name  { font-family: var(--font-h); font-weight: 700; font-size: 0.9rem; color: var(--ink); }
.t-title { font-size: 0.75rem; color: var(--grey-400); margin-top: 1px; }

/* =================================================================
   BOOKING FORM — white section
================================================================= */
.booking-wrap { display: grid; grid-template-columns: 1fr 1.45fr; gap: 64px; align-items: start; }
.bk-info h2 { color: var(--ink); margin-bottom: 16px; }
.bk-info > p { margin-bottom: 28px; }
.bk-row { display: flex; align-items: center; gap: 13px; padding: 16px 0; border-bottom: 1px solid var(--grey-100); }
.bk-ico {
  width: 42px; height: 42px; min-width: 42px;
  background: rgba(194,240,58,0.12); border: 1px solid rgba(194,240,58,0.25);
  border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1rem;
}
.bk-lbl { font-size: 0.72rem; color: var(--grey-400); margin-bottom: 2px; font-family: var(--font-h); font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; }
.bk-val { font-weight: 600; font-size: 0.9rem; color: var(--ink); }
.bk-val a { color: var(--lime-dark); }
.bk-form {
  background: var(--white); border: 1.5px solid var(--grey-100);
  border-radius: var(--r-xl); padding: 42px;
  box-shadow: var(--shadow-lg);
}
.form-ttl { font-family: var(--font-h); font-size: 1.2rem; font-weight: 700; color: var(--ink); margin-bottom: 26px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.fg { display: flex; flex-direction: column; gap: 5px; }
.fg.full { grid-column: span 2; }
.fg label { font-size: 0.76rem; font-weight: 700; color: var(--grey-800); font-family: var(--font-h); text-transform: uppercase; letter-spacing: 0.07em; }
.fg input, .fg select, .fg textarea {
  padding: 13px 15px;
  background: var(--grey-50); border: 1.5px solid var(--grey-100);
  border-radius: var(--r-sm); font-family: var(--font-b);
  font-size: 0.92rem; color: var(--ink); outline: none;
  transition: all 0.2s; width: 100%;
  -webkit-appearance: none; appearance: none;
}
.fg input:focus, .fg select:focus, .fg textarea:focus {
  border-color: rgba(194,240,58,0.6); background: var(--white);
  box-shadow: 0 0 0 3px rgba(194,240,58,0.10);
}
.fg select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%235A5E58' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; background-color: var(--grey-50); padding-right: 36px; }
.fg textarea { resize: vertical; min-height: 86px; }
.f-submit { width: 100%; justify-content: center; margin-top: 4px; font-size: 1rem; padding: 16px; }
.f-note { text-align: center; font-size: 0.75rem; color: var(--grey-400); margin-top: 11px; }

/* =================================================================
   CONTACT — grey section
================================================================= */
.contact-wrap { display: grid; grid-template-columns: 1fr 1.6fr; gap: 64px; align-items: start; }
.ct-info h2 { color: var(--ink); margin-bottom: 18px; }
.ct-row { display: flex; gap: 14px; align-items: flex-start; padding: 18px 0; border-bottom: 1px solid var(--grey-100); }
.ct-ico {
  width: 42px; height: 42px; min-width: 42px;
  background: rgba(194,240,58,0.12); border: 1px solid rgba(194,240,58,0.25);
  border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1rem;
}
.ct-lbl { font-size: 0.72rem; color: var(--grey-400); margin-bottom: 2px; }
.ct-val { font-weight: 600; font-size: 0.9rem; color: var(--ink); }
.ct-val a { color: var(--lime-dark); }
.ct-btns { display: flex; flex-direction: column; gap: 10px; margin-top: 26px; }
.map-box { border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--grey-100); box-shadow: var(--shadow-md); min-height: 420px; }
.map-box iframe { width:100%; min-height: 420px; border: none; display: block; }

/* =================================================================
   FOOTER — ink dark
================================================================= */
footer { background: var(--ink); color: white; padding: 72px 0 32px; }
.footer-wrap { display: grid; grid-template-columns: 1.8fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 52px; }
.f-brand p { color: rgba(255,255,255,0.50); font-size: 0.88rem; margin: 14px 0 22px; max-width: 260px; }
.f-socials { display: flex; gap: 9px; }
.f-soc {
  width: 37px; height: 37px; border-radius: 9px;
  background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.10);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.88rem; transition: all 0.2s; cursor: pointer; text-decoration: none;
}
.f-soc:hover { background: rgba(194,240,58,0.15); border-color: rgba(194,240,58,0.30); }
.f-col h4 {
  font-family: var(--font-h); font-size: 0.74rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(255,255,255,0.35); margin-bottom: 18px;
}
.f-col a { display: block; color: rgba(255,255,255,0.60); font-size: 0.88rem; padding: 5px 0; transition: color 0.18s; }
.f-col a:hover { color: var(--lime); }
.f-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 28px; border-top: 1px solid rgba(255,255,255,0.07);
  font-size: 0.79rem; color: rgba(255,255,255,0.30); flex-wrap: wrap; gap: 10px;
}
.f-bottom a { color: rgba(255,255,255,0.40); }
.f-bottom a:hover { color: var(--lime); }

/* =================================================================
   FLOATING BUTTONS
================================================================= */
.floats { position: fixed; bottom: 28px; right: 22px; z-index: 900; display: flex; flex-direction: column; gap: 10px; align-items: flex-end; }
.fl {
  display: flex; align-items: center; gap: 8px; padding: 12px 20px;
  border-radius: var(--r-pill); font-family: var(--font-h);
  font-size: 0.85rem; font-weight: 700; cursor: pointer;
  text-decoration: none; color: white;
  box-shadow: 0 6px 24px rgba(0,0,0,0.28); transition: all 0.22s;
}
.fl-wa   { background: #25D366; }
.fl-wa:hover   { transform: scale(1.05); background: #1ebe5a; color: white; }
.fl-call { background: var(--lime); color: var(--ink); }
.fl-call:hover { transform: scale(1.05); color: var(--ink); }

/* =================================================================
   TOAST
================================================================= */
.toast {
  position: fixed; bottom: 100px; right: 22px; z-index: 1100;
  background: var(--lime); color: var(--ink);
  padding: 14px 22px; border-radius: var(--r-md);
  font-family: var(--font-h); font-weight: 700; font-size: 0.88rem;
  box-shadow: var(--shadow-lime);
  transform: translateY(16px); opacity: 0; transition: all 0.3s ease; pointer-events: none;
}
.toast.show { transform: translateY(0); opacity: 1; }

/* =================================================================
   REVEAL ANIMATION
================================================================= */
.reveal { opacity: 0; transition: all 0.62s cubic-bezier(0.16,1,0.3,1); }
.reveal.up    { transform: translateY(30px); }
.reveal.left  { transform: translateX(-30px); }
.reveal.right { transform: translateX(30px); }
.reveal.visible { opacity: 1 !important; transform: none !important; }

/* =================================================================
   RESPONSIVE
================================================================= */
@media (max-width: 1024px) {
  .hero-inner   { grid-template-columns: 1fr; }
  .hero-glass, .glass-stats, .live-bar { display: none; }
  .about-wrap   { grid-template-columns: 1fr; gap: 56px; }
  .about-img-2  { display: none; }
  .booking-wrap { grid-template-columns: 1fr; }
  .contact-wrap { grid-template-columns: 1fr; }
  .footer-wrap  { grid-template-columns: 1fr 1fr; gap: 32px; }
  .gallery-wrap { grid-template-rows: auto; }
  .g-item:first-child { grid-column: span 2; aspect-ratio: 16/8; }
}
@media (max-width: 768px) {
  .section, .section-grey { padding: 72px 0; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .hero-btns .btn { font-size: 0.84rem; padding: 12px 20px; }
  .hero-proof { flex-wrap: wrap; gap: 12px; }
  .form-grid { grid-template-columns: 1fr; }
  .fg.full { grid-column: span 1; }
  .bk-form { padding: 26px 18px; }
  .gallery-wrap { grid-template-columns: 1fr; }
  .g-item:first-child { grid-column: span 1; }
  .footer-wrap { grid-template-columns: 1fr; gap: 24px; }
  .f-bottom { flex-direction: column; align-items: flex-start; }
  .floats { bottom: 16px; right: 14px; }
  .fl { padding: 11px 16px; font-size: 0.8rem; }
  .about-pills { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .why-grid     { grid-template-columns: repeat(2,1fr); }
  .svc-grid     { grid-template-columns: 1fr; }
  .testi-grid   { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
}