/* ═══════════════════════════════════════════════════════════
   V UDAY — PREMIUM PORTFOLIO
   Clean White + Lemon Green — Redesigned
   ═══════════════════════════════════════════════════════════ */

/* ─── TOKENS ─── */
:root {
  --white: #ffffff;
  --off-white: #f6f6f4;
  --light: #eeeeea;
  --dark: #0e0e0e;
  --dark-card: #181818;
  --dark-border: #2a2a2a;
  --text: #111111;
  --text-2: #555555;
  --text-3: #888888;
  --text-inv: #f5f5f5;
  --text-inv-2: #aaaaaa;
  --accent: #c8e600;
  --accent-hover: #b5cf00;
  --accent-dark: #9ab300;
  --accent-muted: #e8f5a0;
  --accent-tint: #f5f8e2;
  --border: #e5e5e0;
  --border-hover: #d0d0c8;
  --font: 'Plus Jakarta Sans', system-ui, -apple-system, 'Segoe UI', Helvetica, Arial, sans-serif;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out: cubic-bezier(0.0, 0, 0.2, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ─── RESET ─── */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -webkit-tap-highlight-color: transparent;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  max-width: 100%;
  width: 100%;
  -webkit-text-size-adjust: 100%;
  -webkit-overflow-scrolling: touch;
}

body {
  font-family: var(--font);
  font-size: 16px;
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
  max-width: 100%;
  width: 100%;
  position: relative;
  -webkit-overflow-scrolling: touch;
}

a { color: inherit; text-decoration: none; }
img {
  max-width: 100%;
  display: block;
  -webkit-user-drag: none;
  -khtml-user-drag: none;
  -moz-user-drag: none;
  -o-user-drag: none;
  user-drag: none;
  pointer-events: none;
}
button, input, select, textarea, form, .form-input, .booking-form, [contenteditable="true"] {
  border: none;
  background: none;
  font: inherit;
  color: inherit;
  cursor: pointer;
  -webkit-user-select: text;
  -moz-user-select: text;
  -ms-user-select: text;
  user-select: text;
}
ul { list-style: none; }

::selection {
  background: rgba(200, 230, 0, 0.3);
}

/* ─── LAYOUT ─── */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 48px);
}

.section {
  padding: clamp(80px, 10vw, 140px) 0;
  position: relative;
}

.section--white { background: transparent; }
.section--light { background: transparent; }
.section--dark  { background: var(--dark); }
.section--accent { background: var(--accent); }

/* ─── SECTION HEADERS ─── */
.section-eyebrow {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-dark);
  margin-bottom: 16px;
  text-align: center;
}

.section-eyebrow--dark {
  color: var(--accent);
}

.section-heading {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.1;
  text-align: center;
  margin-bottom: 20px;
  color: var(--text);
}

.section-heading--light {
  color: var(--text-inv);
}

.section-sub {
  text-align: center;
  color: var(--text-2);
  font-size: 17px;
  max-width: 440px;
  margin: 0 auto 48px;
}

.text-accent { color: var(--accent-dark); }

/* ═══════════════════════════════════════════════════════════
   NAVBAR
   ═══════════════════════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0; left: 0; width: 100%;
  z-index: 1000;
  padding: 16px 0;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.02);
  transition: all 0.3s var(--ease);
}

.navbar.scrolled {
  padding: 10px 0;
  background: rgba(255, 255, 255, 0.85);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.nav-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 48px);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.04em;
  position: relative;
  z-index: 1000001;
}

.logo-dot { color: var(--accent-dark); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-2);
  transition: color 0.25s var(--ease);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 2px;
  background: var(--accent-dark);
  border-radius: 1px;
  transition: width 0.3s var(--ease);
}

.nav-link:hover,
.nav-link.active { color: var(--text); }
.nav-link:hover::after,
.nav-link.active::after { width: 100%; }

.nav-cta {
  padding: 9px 22px;
  border-radius: 100px;
  background: var(--dark);
  color: var(--text-inv) !important;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.01em;
  transition: all 0.3s var(--ease);
}

.nav-cta::after { display: none; }
.nav-cta:hover {
  background: var(--accent-dark);
  color: var(--dark) !important;
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  z-index: 1000000;
}

.hamburger-line {
  width: 22px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s var(--ease);
  transform-origin: center;
}

.nav-toggle.active .hamburger-line:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active .hamburger-line:nth-child(2) { opacity: 0; }
.nav-toggle.active .hamburger-line:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ═══════════════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 140px 0 100px;
  background: var(--white);
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-glow {
  position: absolute;
  width: 700px; height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200, 230, 0, 0.12) 0%, transparent 65%);
  top: 50%; left: 50%;
  transform: translate(-50%, -55%);
  animation: heroGlow 10s ease-in-out infinite alternate;
}

.hero-grain {
  position: absolute;
  inset: 0;
  opacity: 0.3;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  background-size: 200px;
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 780px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px;
  border-radius: 100px;
  background: var(--accent-tint);
  font-size: 12px;
  font-weight: 700;
  color: var(--accent-dark);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 36px;
}

.badge-dot {
  width: 7px; height: 7px;
  background: var(--accent-dark);
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}

.hero-title {
  font-size: clamp(42px, 6.5vw, 80px);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -0.045em;
  margin-bottom: 20px;
  color: var(--text);
}

.hero-title-accent {
  color: var(--accent-dark);
}

.hero-subtitle {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-3);
  margin-top: 12px;
  margin-bottom: 28px;
}

.hero-subtitle strong {
  color: var(--text-2);
  font-weight: 700;
}

.heart-icon-inline {
  display: inline-block;
  width: 14px;
  height: 14px;
  vertical-align: middle;
  margin: 0 8px;
  position: relative;
  top: -2px;
}

.hero-description {
  font-size: 16px;
  color: var(--text-3);
  max-width: 540px;
  margin: 0 auto 36px;
  line-height: 1.75;
}

/* Hero Badges Row */
.hero-badges {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 44px;
}

.h-badge {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-2);
}

.h-badge strong {
  color: var(--text);
  font-weight: 800;
}

.h-badge-sep {
  width: 4px; height: 4px;
  background: var(--border);
  border-radius: 50%;
  flex-shrink: 0;
}

/* Hero Actions */
.hero-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ═══════════════════════════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.005em;
  transition: all 0.3s var(--ease);
  cursor: pointer;
  white-space: nowrap;
}

.btn svg {
  transition: transform 0.3s var(--ease);
  flex-shrink: 0;
}

.btn:hover svg { transform: translateX(3px); }

.btn-primary {
  background: var(--accent);
  color: var(--dark);
}

.btn-primary:hover {
  background: var(--accent-hover);
  box-shadow: 0 6px 24px rgba(200, 230, 0, 0.3);
  transform: translateY(-2px);
}

.btn-dark {
  background: var(--dark);
  color: var(--text-inv);
}

.btn-dark:hover {
  background: #222;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.18);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--border);
}

.btn-ghost:hover {
  border-color: var(--text);
  background: var(--off-white);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 16px 36px;
  font-size: 15px;
}

.btn-full { width: 100%; }

/* Scroll Cue */
.scroll-cue {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
}

.scroll-cue-line {
  width: 1px; height: 44px;
  background: linear-gradient(to bottom, var(--accent-dark), transparent);
  animation: scrollPulse 2.2s ease-in-out infinite;
}

/* ═══════════════════════════════════════════════════════════
   ABOUT
   ═══════════════════════════════════════════════════════════ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.about-heading {
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.2;
  margin-bottom: 24px;
  color: var(--text);
}

.about-body {
  font-size: 16px;
  color: var(--text-2);
  line-height: 1.8;
  margin-bottom: 16px;
}

.about-cards {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.about-card {
  padding: 24px 28px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid var(--border);
  display: flex;
  align-items: flex-start;
  gap: 18px;
  transition: all 0.35s var(--ease);
}

.about-card:hover {
  border-color: var(--accent-dark);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.05);
  transform: translateY(-3px);
}

.about-card-icon {
  flex-shrink: 0;
  width: 44px; height: 44px;
  border-radius: 10px;
  background: var(--accent-tint);
  color: var(--accent-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.35s var(--ease);
}

.about-card:hover .about-card-icon {
  background: var(--accent);
  color: var(--dark);
}

.about-card h3 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 3px;
}

.about-card p {
  font-size: 14px;
  color: var(--text-3);
  line-height: 1.5;
}

/* ═══════════════════════════════════════════════════════════
   SERVICES
   ═══════════════════════════════════════════════════════════ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 8px;
}

.service-card {
  padding: 40px 32px;
  border-radius: 20px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(24px) saturate(130%);
  -webkit-backdrop-filter: blur(24px) saturate(130%);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.03),
              inset 0 1px 0 rgba(255, 255, 255, 0.5);
  position: relative;
  transition: all 0.4s var(--ease);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}

.service-card::after {
  content: '→';
  position: absolute;
  bottom: 24px;
  right: 28px;
  font-size: 18px;
  font-weight: 700;
  color: var(--accent-dark);
  opacity: 0;
  transform: translateX(-8px);
  transition: all 0.35s var(--ease);
}

.service-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.06),
              inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.service-card:hover::before { transform: scaleX(1); }
.service-card:hover::after {
  opacity: 1;
  transform: translateX(0);
}

.service-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 28px;
  width: 100%;
}

.service-num {
  font-size: 11px;
  font-weight: 700;
  font-family: monospace;
  color: var(--text-2);
  letter-spacing: 0.1em;
  background: rgba(0, 0, 0, 0.04);
  padding: 4px 10px;
  border-radius: 20px;
  display: inline-block;
  line-height: 1;
}

.service-icon-wrap {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--accent-tint);
  color: var(--accent-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.35s var(--ease);
}

.service-card:hover .service-icon-wrap {
  background: var(--accent);
  color: var(--dark);
  transform: scale(1.08);
}

.service-card h3 {
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--dark);
  letter-spacing: -0.015em;
}

.service-card p {
  font-size: 14.5px;
  color: var(--text-2);
  line-height: 1.65;
  font-weight: 450;
  margin: 0;
  padding-right: 12px; /* Give room for hover arrow */
}

/* ═══════════════════════════════════════════════════════════
   WHY CHOOSE ME — DARK
   ═══════════════════════════════════════════════════════════ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 8px;
}

.feature-card {
  padding: 36px 30px;
  border-radius: 16px;
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  text-align: center;
  transition: all 0.4s var(--ease);
}

.feature-card:hover {
  border-color: var(--accent);
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(200, 230, 0, 0.08);
}

.feature-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: rgba(200, 230, 0, 0.08);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: all 0.35s var(--ease);
}

.feature-card:hover .feature-icon {
  background: var(--accent);
  color: var(--dark);
  transform: scale(1.1);
}

.feature-card h3 {
  color: var(--text-inv);
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 8px;
}

.feature-card p {
  font-size: 14px;
  color: var(--text-inv-2);
  line-height: 1.6;
}

/* ═══════════════════════════════════════════════════════════
   STATS — ACCENT BG
   ═══════════════════════════════════════════════════════════ */
.section--accent {
  padding: clamp(50px, 7vw, 80px) 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.stat-item { position: relative; }

.stat-item::after {
  content: '';
  position: absolute;
  right: 0; top: 50%;
  transform: translateY(-50%);
  width: 1px; height: 48px;
  background: rgba(0, 0, 0, 0.1);
}

.stat-item:last-child::after { display: none; }

.stat-value,
.stat-value-text {
  font-size: clamp(36px, 5vw, 52px);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--dark);
  display: inline;
  line-height: 1;
}

.stat-suffix {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 800;
  color: var(--dark);
  letter-spacing: -0.03em;
}

.stat-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: rgba(0, 0, 0, 0.5);
  margin-top: 6px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ═══════════════════════════════════════════════════════════
   CTA
   ═══════════════════════════════════════════════════════════ */
.cta-section { text-align: center; }

.cta-wrapper {
  max-width: 640px;
  margin: 0 auto;
}

.cta-heading {
  font-size: clamp(30px, 4vw, 44px);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.15;
  margin-bottom: 20px;
}

.cta-body {
  font-size: 17px;
  color: var(--text-2);
  margin-bottom: 36px;
  line-height: 1.7;
}

/* ═══════════════════════════════════════════════════════════
   BOOKING
   ═══════════════════════════════════════════════════════════ */
.booking-card {
  max-width: 920px;
  margin: 0 auto;
  padding: 44px;
  border-radius: 20px;
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.05);
}

/* ─── BOOKING GRID LAYOUT ─── */
.booking-grid-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 32px;
  align-items: start;
}

.booking-selector-panel {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.selector-section {
  display: flex;
  flex-direction: column;
}

.booking-details-panel {
  display: flex;
  flex-direction: column;
  gap: 16px;
  border-left: 1px solid var(--border);
  padding-left: 32px;
}

/* ─── CUSTOM CALENDAR ─── */
.calendar-container {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px;
  margin-top: 8px;
  transition: all 0.3s var(--ease);
}

.calendar-container:focus-within {
  border-color: var(--accent-dark);
  box-shadow: 0 0 0 3px rgba(200, 230, 0, 0.15);
}

.calendar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  padding: 0 4px;
}

.calendar-month-year {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
}

.calendar-nav-btn {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--text);
  transition: all 0.25s var(--ease);
}

.calendar-nav-btn:hover {
  background: var(--accent-tint);
  border-color: var(--accent-dark);
  color: var(--accent-dark);
  transform: scale(1.05);
}

.calendar-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  text-align: center;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 8px;
}

.calendar-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 6px;
}

.calendar-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 600;
  border-radius: 8px;
  background: transparent;
  color: var(--text);
  transition: all 0.2s var(--ease);
  border: none;
  cursor: pointer;
}

.calendar-day:hover:not(.disabled):not(.selected) {
  background: var(--light);
  color: var(--text);
}

.calendar-day.today {
  border: 1.5px solid var(--accent-dark);
}

.calendar-day.selected {
  background: var(--accent-dark);
  color: var(--dark) !important;
  font-weight: 700;
}

.calendar-day.disabled {
  color: var(--text-3);
  opacity: 0.25;
  pointer-events: none;
  cursor: not-allowed;
}

.calendar-day.empty {
  pointer-events: none;
}

.time-header-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
  flex-wrap: wrap;
  gap: 8px;
}

/* ─── CUSTOM DROPDOWN SELECT ─── */
.custom-select-container {
  position: relative;
  display: inline-block;
  min-width: 170px;
  z-index: 100;
}

.custom-select-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 6px 12px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  transition: all 0.3s var(--ease);
}

.custom-select-trigger:hover,
.custom-select-container.open .custom-select-trigger {
  border-color: var(--accent-dark);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

.custom-select-text {
  flex-grow: 1;
  text-align: left;
  margin-right: 6px;
  font-family: var(--font);
}

.chevron-icon {
  transition: transform 0.3s var(--ease);
  opacity: 0.7;
}

.custom-select-container.open .chevron-icon {
  transform: rotate(180deg);
}

.custom-select-options {
  position: absolute;
  z-index: 1000;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(30px) saturate(210%);
  -webkit-backdrop-filter: blur(30px) saturate(210%);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 12px;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.08), 
              inset 0 1px 0 rgba(255, 255, 255, 0.6);
  padding: 6px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  opacity: 0;
  transform: translateY(-8px) scale(0.97);
  pointer-events: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  transform-origin: top center;
  max-height: 140px;
  overflow-y: auto;
}

.custom-select-options::-webkit-scrollbar {
  width: 4px;
}

.custom-select-options::-webkit-scrollbar-track {
  background: transparent;
}

.custom-select-options::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.15);
  border-radius: 10px;
}

.custom-select-options::-webkit-scrollbar-thumb:hover {
  background: rgba(0, 0, 0, 0.3);
}

.custom-select-container.open .custom-select-options {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.custom-option {
  padding: 8px 12px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-2);
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s var(--ease);
  text-align: left;
  font-family: var(--font);
}

.custom-option:hover {
  background: rgba(200, 230, 0, 0.18);
  color: var(--accent-dark);
}

.custom-option.selected {
  background: var(--accent-dark);
  color: var(--dark) !important;
  font-weight: 700;
}


/* ─── TIME SLOTS ─── */
.time-slots-container {
  margin-top: 8px;
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px;
  min-height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s var(--ease);
}

.time-slots-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
  gap: 8px;
  width: 100%;
}

.time-slots-placeholder {
  font-size: 13px;
  color: var(--text-3);
  text-align: center;
  width: 100%;
  font-weight: 500;
}

.time-slot-btn {
  padding: 10px 14px;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: var(--white);
  font-size: 13px;
  font-weight: 600;
  color: var(--text-2);
  text-align: center;
  transition: all 0.25s var(--ease);
  cursor: pointer;
}

.time-slot-btn:hover:not(.disabled):not(.selected) {
  background: var(--accent-tint);
  border-color: var(--accent-dark);
  color: var(--accent-dark);
}

.time-slot-btn.selected {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  color: var(--dark) !important;
}

.time-slot-btn.disabled {
  opacity: 0.25;
  cursor: not-allowed;
  pointer-events: none;
}

/* ─── SELECTION SUMMARY ─── */
.selection-summary {
  margin-top: 8px;
  margin-bottom: 8px;
}

.summary-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-radius: 10px;
  background: var(--accent-tint);
  border: 1.5px solid var(--accent-muted);
}

.summary-card-icon {
  color: var(--accent-dark);
  display: flex;
  align-items: center;
  justify-content: center;
}

.summary-card-details {
  display: flex;
  flex-direction: column;
}

.summary-title {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--accent-dark);
}

.summary-text {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.4;
}

.font-bold {
  font-weight: 700;
}

.text-accent {
  color: var(--accent-dark);
}

.booking-note {
  max-width: 680px;
  margin: 32px auto 0;
  font-size: 13px;
  line-height: 1.6;
  color: var(--text-2);
  background: rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(15px) saturate(180%);
  -webkit-backdrop-filter: blur(15px) saturate(180%);
  border: 1px solid var(--border);
  padding: 12px 24px;
  border-radius: 100px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}

/* Mobile grid split overrides */
@media (max-width: 768px) {
  .booking-grid-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .booking-details-panel {
    border-left: none;
    padding-left: 0;
    border-top: 1px solid var(--border);
    padding-top: 24px;
  }
  .booking-note {
    border-radius: 16px;
    padding: 16px;
    text-align: left;
    align-items: flex-start;
    margin-top: 24px;
  }
}

.booking-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form-label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.form-input {
  width: 100%;
  padding: 14px 16px;
  background: var(--off-white);
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-size: 15px;
  color: var(--text);
  outline: none;
  transition: all 0.3s var(--ease);
}

.form-input::placeholder { color: var(--text-3); }

.form-input:focus {
  border-color: var(--accent-dark);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(200, 230, 0, 0.15);
}

.booking-form .btn { margin-top: 8px; }

/* Success */
.form-success {
  display: none;
  text-align: center;
  padding: 32px 0;
  animation: fadeUp 0.5s var(--ease-out);
}

.form-success.show { display: block; }

.success-check {
  color: var(--accent-dark);
  margin-bottom: 18px;
  animation: scalePop 0.5s var(--ease-spring) 0.15s both;
}

.form-success h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 8px;
}

.form-success p {
  font-size: 15px;
  color: var(--text-2);
}

/* ═══════════════════════════════════════════════════════════
   CONTACT
   ═══════════════════════════════════════════════════════════ */
.contact-container {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contact-email-link {
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
  position: relative;
  transition: color 0.3s var(--ease);
  margin-bottom: 28px;
  word-break: break-all;
}

.contact-email-link::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 100%; height: 3px;
  background: var(--accent);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s var(--ease);
}

.contact-email-link:hover {
  color: var(--accent-dark);
}

.contact-email-link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* ═══════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════ */
.footer {
  padding: 40px 0;
  border-top: 1px solid var(--border);
  text-align: center;
}

.footer-text {
  font-size: 13px;
  color: var(--text-3);
  font-weight: 500;
  letter-spacing: 0.02em;
}

/* ═══════════════════════════════════════════════════════════
   ANIMATIONS
   ═══════════════════════════════════════════════════════════ */
@keyframes heroGlow {
  0%   { transform: translate(-50%, -55%) scale(1); opacity: 0.8; }
  100% { transform: translate(-50%, -50%) scale(1.15); opacity: 1; }
}

@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(154, 179, 0, 0.5); }
  50% { box-shadow: 0 0 0 6px rgba(154, 179, 0, 0); }
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.3); }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes scalePop {
  from { opacity: 0; transform: scale(0.6); }
  to   { opacity: 1; transform: scale(1); }
}

/* ─── SCROLL REVEAL (Premium 3D Transition) ─── */
[data-reveal] {
  opacity: 0;
  transform: perspective(1200px) rotateX(10deg) translateY(40px) scale(0.95);
  filter: blur(2px);
  transition: opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.85s cubic-bezier(0.16, 1, 0.3, 1),
              filter 0.85s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform, opacity, filter;
}

[data-reveal].revealed {
  opacity: 1;
  transform: perspective(1200px) rotateX(0deg) translateY(0) scale(1);
  filter: blur(0);
}

/* ─── MAGNETIC ─── */
.magnetic {
  transition: transform 0.25s var(--ease),
              box-shadow 0.3s var(--ease),
              background 0.3s var(--ease);
}

/* ─── CUSTOM CURSOR (Organic Mercury) ─── */
@media (hover: hover) and (pointer: fine) {
  body {
    cursor: none;
  }
  a, button, input, textarea, select, [role="button"], .service-card, .feature-card, .about-card {
    cursor: none !important;
  }
}

.custom-cursor-fluid {
  width: 16px;
  height: 16px;
  background-color: rgba(200, 230, 0, 0.55);
  border: 1px solid var(--accent-dark);
  border-radius: 50%;
  position: fixed;
  top: -8px;
  left: -8px;
  pointer-events: none;
  z-index: 999999;
  transform: translate3d(0, 0, 0);
  will-change: transform;
  transition: width 0.22s var(--ease), height 0.22s var(--ease), background-color 0.22s var(--ease), border-color 0.22s var(--ease);
}

.custom-cursor-fluid.hovered {
  width: 42px;
  height: 42px;
  background-color: rgba(200, 230, 0, 0.12);
  border: 1.5px solid var(--accent-dark);
}

/* ─── CYBER SCRAMBLE TEXT STYLES ─── */
.scramble-char {
  color: var(--accent-dark);
  font-family: monospace;
  font-weight: 800;
  text-shadow: 0 0 4px rgba(181, 204, 24, 0.5);
  opacity: 0.9;
}

/* ─── INTERACTIVE CARD SPOTLIGHT & METALLIC SHINE ─── */
.service-card, .feature-card, .about-card {
  position: relative;
  transition: transform 0.15s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s var(--ease) !important;
  transform-style: preserve-3d;
  will-change: transform;
  overflow: hidden;
}

/* Metallic Sweeper Sheen */
.service-card::before, .feature-card::before, .about-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -150%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.45) 40%,
    rgba(200, 230, 0, 0.3) 60%,
    transparent 100%
  );
  transform: skewX(-20deg);
  z-index: 1;
  pointer-events: none;
}

.service-card:hover::before, .feature-card:hover::before, .about-card:hover::before {
  left: 150%;
  transition: left 0.95s var(--ease);
}

/* Spotlight Glow Overlay */
.service-card::after, .feature-card::after, .about-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(320px circle at var(--mx, -999px) var(--my, -999px), rgba(200, 230, 0, 0.08), transparent 75%);
  z-index: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease);
  border-radius: inherit;
}

/* Push elements above filters */
.service-card > *, .feature-card > *, .about-card > * {
  position: relative;
  z-index: 2;
}


/* ─── CANVAS LAYOUT ─── */
#hero-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}


/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════ */

/* ─── TABLET (1024px) ─── */
@media (max-width: 1024px) {
  /* Disable custom cursor on mobile/tablet viewports to prevent sticky bugs */
  .custom-cursor-fluid {
    display: none !important;
  }

  /* Hide canvas animation on tablet/mobile to prevent frame rate drops */
  #hero-canvas {
    display: none !important;
  }

  /* Reset 3D Tilt and Spotlight glows on mobile/touch interfaces */
  .service-card, .feature-card, .about-card {
    transform: none !important;
    transition: box-shadow 0.3s ease, border-color 0.3s ease !important;
  }

  .service-card::after, .feature-card::after, .about-card::after,
  .service-card::before, .feature-card::before, .about-card::before {
    display: none !important;
  }

  .services-grid,
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 24px;
  }

  .stat-item::after { display: none; }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-content {
    max-width: 600px;
  }
}

/* ─── MOBILE (768px) ─── */
@media (max-width: 768px) {
  /* Disable scroll reveal on mobile to avoid visibility lags on swipe */
  [data-reveal] {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  /* Tighten section padding */
  .section {
    padding: clamp(56px, 8vw, 80px) 0;
  }

  .section--accent {
    padding: 44px 0;
  }

  /* NAV */
  .nav-toggle { display: flex; }

  .navbar {
    padding: 14px 0;
  }

  .navbar.scrolled {
    padding: 10px 0;
  }

  .nav-logo {
    font-size: 20px;
  }

  .nav-links {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw !important;
    height: 100vh !important;
    display: flex !important;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 28px;
    background: rgba(255, 255, 255, 0.92) !important;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s var(--ease);
    z-index: 999999 !important;
    overflow-y: auto;
    padding: 100px 24px 60px;
    -webkit-overflow-scrolling: touch;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  }

  .nav-links.open {
    opacity: 1 !important;
    pointer-events: auto !important;
  }

  .nav-link {
    font-size: 18px;
    font-weight: 600;
    color: var(--text);
  }

  .nav-link::after { display: none; }

  .nav-cta {
    font-size: 15px !important;
    padding: 12px 28px;
    margin-top: 8px;
  }

  /* HERO */
  .hero {
    padding: 90px 0 32px;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .scroll-cue { display: none; }

  .hero-badge {
    font-size: 9.5px;
    padding: 5px 12px;
    margin-bottom: 14px;
  }

  .hero-title {
    font-size: clamp(48px, 12.5vw, 62px);
    margin-bottom: 10px;
    line-height: 1.02;
    letter-spacing: -0.045em;
  }

  .hero-subtitle {
    font-size: 10px;
    letter-spacing: 0.08em;
    opacity: 0.55;
    margin-top: 6px;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    white-space: nowrap;
  }

  .hero-description {
    font-size: 13.5px;
    margin-bottom: 20px;
    line-height: 1.55;
    max-width: 92%;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
    gap: 10px;
    width: 100%;
  }

  .hero-actions .btn {
    width: 100%;
    max-width: 320px;
  }

  .hero-glow {
    width: 400px;
    height: 400px;
  }

  /* ABOUT */
  .section-eyebrow {
    font-size: 12px;
    margin-bottom: 12px;
  }

  .section-heading {
    font-size: clamp(26px, 6vw, 36px);
    margin-bottom: 14px;
  }

  .section-sub {
    font-size: 15px;
    margin-bottom: 32px;
  }

  .about-heading {
    font-size: clamp(22px, 5.5vw, 30px);
    margin-bottom: 18px;
  }

  .about-body {
    font-size: 15px;
    line-height: 1.75;
    margin-bottom: 12px;
  }

  .about-card {
    padding: 18px 20px;
    gap: 14px;
  }

  .about-card-icon {
    width: 40px;
    height: 40px;
  }

  .about-card h3 { font-size: 14px; }
  .about-card p { font-size: 13px; }

  /* SERVICES */
  .services-grid,
  .features-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .service-card {
    padding: 28px 24px;
  }

  .service-num { margin-bottom: 14px; }

  .service-icon-wrap {
    width: 42px;
    height: 42px;
    margin-bottom: 16px;
  }

  .service-card h3 { font-size: 16px; }
  .service-card p { font-size: 13px; }

  /* FEATURES (dark section) */
  .feature-card {
    padding: 28px 24px;
  }

  .feature-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 16px;
  }

  .feature-card h3 { font-size: 16px; }
  .feature-card p { font-size: 13px; }

  /* STATS */
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 16px;
  }

  .stat-value,
  .stat-value-text {
    font-size: clamp(28px, 7vw, 40px);
  }

  .stat-suffix {
    font-size: clamp(20px, 4vw, 28px);
  }

  .stat-label {
    font-size: 11px;
    letter-spacing: 0.04em;
  }

  /* CTA */
  .cta-heading {
    font-size: clamp(24px, 6vw, 34px);
  }

  .cta-body {
    font-size: 15px;
    margin-bottom: 28px;
  }

  /* BOOKING */
  .booking-card {
    padding: 28px 24px;
    border-radius: 16px;
  }

  .booking-form {
    gap: 20px;
  }

  .form-input {
    padding: 12px 14px;
    font-size: 14px;
  }

  .form-label {
    font-size: 11px;
    margin-bottom: 6px;
  }

  /* CONTACT */
  .contact-email-link {
    font-size: clamp(18px, 5vw, 26px);
    margin-bottom: 20px;
  }

  /* BUTTONS */
  .btn {
    padding: 12px 24px;
    font-size: 13px;
  }

  .btn-lg {
    padding: 14px 28px;
    font-size: 14px;
  }

  /* FOOTER */
  .footer {
    padding: 28px 0;
  }

  .footer-text {
    font-size: 12px;
  }
}

/* ─── SMALL MOBILE (480px) ─── */
@media (max-width: 480px) {
  .container {
    padding: 0 20px;
  }

  .section {
    padding: 48px 0;
  }

  .section--accent {
    padding: 36px 0;
  }

  .hero-actions .btn {
    max-width: 100%;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px 12px;
  }

  .stat-value,
  .stat-value-text {
    font-size: 28px;
  }

  .stat-suffix {
    font-size: 20px;
  }

  .about-heading {
    font-size: clamp(24px, 5.8vw, 30px);
    line-height: 1.25;
  }

  .section-heading {
    font-size: clamp(28px, 6.8vw, 36px);
    line-height: 1.15;
  }

  .cta-heading {
    font-size: clamp(24px, 5.8vw, 30px);
  }

  .contact-email-link {
    font-size: 17px;
  }

  .booking-card {
    padding: 24px 20px;
  }

  .about-card {
    flex-direction: column;
    gap: 10px;
    padding: 16px 18px;
  }

  .feature-card,
  .service-card {
    padding: 24px 20px;
  }
}

/* ─── TINY SCREENS (360px) ─── */
@media (max-width: 360px) {
  .hero-title {
    font-size: 26px;
  }

  .container {
    padding: 0 16px;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .nav-logo {
    font-size: 18px;
  }
}

/* ─── REDUCED MOTION ─── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
  [data-reveal] { opacity: 1; transform: none; }
}

/* ─── ULTRA-NARROW SCREENS (320px or less) ─── */
@media (max-width: 320px) {
  .container {
    padding: 0 12px !important;
  }
  .hero-title {
    font-size: 22px !important;
  }
  .hero-subtitle {
    font-size: 14px !important;
  }
  .hero-description {
    font-size: 12px !important;
    line-height: 1.6 !important;
  }
  .booking-card {
    padding: 16px 12px !important;
  }
  .form-input {
    padding: 10px 12px !important;
    font-size: 13px !important;
  }
  .btn-lg {
    padding: 12px 24px !important;
    font-size: 13px !important;
  }
  .contact-email-link {
    font-size: 15px !important;
  }
}


/* ═══════════════════════════════════════════════════════════
   REDESIGNED POP CTA & CONTACT SECTIONS (Lime + White Gradient)
   ═══════════════════════════════════════════════════════════ */

.cta-section-pop {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--white) 0%, var(--accent-tint) 50%, var(--white) 100%);
  padding: clamp(80px, 10vw, 140px) 0;
  border-top: 1px solid var(--border);
}

.cta-glow-container-pop {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.cta-glow-blob-pop {
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(200, 230, 0, 0.4) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  filter: blur(50px);
  animation: heroGlow 8s ease-in-out infinite alternate;
}

.cta-glass-card-pop {
  position: relative;
  z-index: 2;
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(20px) saturate(190%);
  -webkit-backdrop-filter: blur(20px) saturate(190%);
  border: 1px solid rgba(200, 230, 0, 0.4);
  border-radius: 24px;
  padding: clamp(48px, 6vw, 72px) clamp(24px, 5vw, 60px);
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.04), 0 4px 12px rgba(200, 230, 0, 0.05);
  transition: all 0.4s var(--ease);
}

.cta-glass-card-pop:hover {
  border-color: var(--accent-dark);
  box-shadow: 0 24px 60px rgba(200, 230, 0, 0.12), 0 8px 24px rgba(0, 0, 0, 0.03);
  transform: translateY(-3px);
}

.cta-glass-card-pop .cta-heading {
  color: var(--text);
  font-size: clamp(28px, 4.5vw, 44px);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -0.04em;
}

.text-accent-pop {
  color: var(--accent-dark);
  background: linear-gradient(120deg, var(--accent-dark) 0%, #7e9400 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.cta-glass-card-pop .cta-body {
  color: var(--text-2);
  font-size: clamp(15px, 2vw, 17px);
  line-height: 1.7;
  max-width: 580px;
  margin: 0 auto 36px;
}

.contact-section-pop {
  background: linear-gradient(to bottom, var(--white) 0%, var(--off-white) 100%);
  position: relative;
  overflow: hidden;
  padding: clamp(80px, 10vw, 140px) 0;
  border-top: 1px solid var(--border);
  text-align: center;
}

.contact-glow-blob-pop {
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(200, 230, 0, 0.35) 0%, transparent 70%);
  bottom: -10%;
  right: -10%;
  pointer-events: none;
  z-index: 1;
}

.contact-glass-card-pop {
  position: relative;
  z-index: 2;
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(15px) saturate(180%);
  -webkit-backdrop-filter: blur(15px) saturate(180%);
  border: 1px solid rgba(200, 230, 0, 0.35);
  border-radius: 20px;
  padding: 48px 32px;
  max-width: 500px;
  width: 100%;
  margin: 0 auto;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.03), 0 4px 12px rgba(200, 230, 0, 0.04);
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: border-color 0.4s var(--ease), box-shadow 0.4s var(--ease), transform 0.4s var(--ease);
}

.contact-glass-card-pop:hover {
  border-color: var(--accent-dark);
  box-shadow: 0 20px 50px rgba(200, 230, 0, 0.1), 0 6px 18px rgba(0, 0, 0, 0.02);
  transform: translateY(-3px);
}

.contact-icon-wrap-pop {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--accent-tint);
  color: var(--accent-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: all 0.35s var(--ease);
}

.contact-glass-card-pop:hover .contact-icon-wrap-pop {
  background: var(--accent);
  color: var(--dark);
  transform: scale(1.08);
}

.contact-email-link-pop {
  font-size: clamp(18px, 4.5vw, 28px);
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--text);
  margin-bottom: 8px;
  position: relative;
  transition: color 0.3s var(--ease);
  word-break: break-all;
}

.contact-email-link-pop::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 100%;
  height: 2.5px;
  background: var(--accent-dark);
  border-radius: 1px;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s var(--ease);
}

.contact-email-link-pop:hover {
  color: var(--accent-dark);
}

.contact-email-link-pop:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.contact-hint-pop {
  font-size: 13px;
  color: var(--text-3);
  margin-bottom: 32px;
}

/* Mobile responsive fixes for glass cards */
@media (max-width: 768px) {
  .cta-glass-card-pop {
    padding: 36px 20px;
    border-radius: 18px;
  }
  .contact-glass-card-pop {
    padding: 36px 20px;
    border-radius: 16px;
  }
}

/* ─── SCROLL PROGRESS INDICATOR ─── */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, var(--accent) 0%, var(--accent-hover) 100%);
  z-index: 999999;
  box-shadow: 0 0 8px rgba(200, 230, 0, 0.45);
  transition: width 0.08s ease-out;
}

/* ─── GLOWING GLASSMORPHIC BACKGROUND SHAPES ─── */
.bg-shapes-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

/* Ensure sections sit above background shapes */
section, header, footer {
  position: relative;
  z-index: 2;
}

.bg-shape {
  position: absolute;
  opacity: 0.85;
  will-change: transform;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.glow-element {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 300%;
  height: 300%;
  border-radius: 50%;
  filter: blur(160px);
  -webkit-filter: blur(160px);
  z-index: -1;
  pointer-events: none;
}

.glow-lime { background: radial-gradient(circle, rgba(200, 230, 0, 0.18) 0%, transparent 70%); }
.glow-indigo { background: radial-gradient(circle, rgba(99, 102, 241, 0.18) 0%, transparent 70%); }
.glow-cyan { background: radial-gradient(circle, rgba(6, 182, 212, 0.15) 0%, transparent 70%); }
.glow-orange { background: radial-gradient(circle, rgba(245, 158, 11, 0.15) 0%, transparent 70%); }

.glass-element {
  width: 100%;
  height: 100%;
  backdrop-filter: blur(20px) saturate(110%);
  -webkit-backdrop-filter: blur(20px) saturate(110%);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.03),
              inset 0 1px 0 rgba(255, 255, 255, 0.35);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.glass-element.circle {
  border-radius: 50%;
}

.glass-element.square {
  border-radius: 16px;
}

/* Shape 1: Neon Lime - Top Left / Hero boundary */
.bg-shape-1 {
  width: min(150px, 30vw);
  height: min(150px, 30vw);
  top: 10%;
  left: -10%;
}

/* Shape 2: Royal Indigo - Services boundary */
.bg-shape-2 {
  width: min(180px, 40vw);
  height: min(180px, 40vw);
  top: 100%;
  right: -5%;
}

/* Shape 3: Electric Cyan - Why Choose Me */
.bg-shape-3 {
  width: min(150px, 30vw);
  height: min(150px, 30vw);
  top: 100%;
  left: 5%;
}

/* Shape 4: Solar Orange/Gold - CTA & Contact */
.bg-shape-4 {
  width: min(200px, 45vw);
  height: min(200px, 45vw);
  top: 100%;
  right: 10%;
}

