/* ============================================================
   Kitchen World Designer — Premium Redesign CSS
   Mobile-First · Dark/Light Mode · Animations
   ============================================================ */

/* ---- Google Fonts already loaded via <link> ---- */

/* ---- CSS Custom Properties (Tokens) ---- */
:root {
  /* Fonts */
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Inter', system-ui, -apple-system, sans-serif;

  /* Gold Palette */
  --gold: #C8A96E;
  --gold-light: #E2C98E;
  --gold-dark: #A08040;
  --gold-glow: rgba(200, 169, 110, 0.25);

  /* Timing */
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);

  /* Spacing */
  --section-py: clamp(4rem, 8vw, 7rem);
  --container-max: 1280px;
  --container-px: clamp(1rem, 5vw, 2.5rem);
}

/* ---- Dark Theme (Default) ---- */
[data-theme="dark"] {
  --bg: #0C0C0E;
  --bg-alt: #111116;
  --bg-card: #18181F;
  --bg-card-hover: #1E1E28;
  --bg-glass: rgba(18, 18, 26, 0.85);
  --text: #F0EDE8;
  --text-muted: #8A8799;
  --text-light: #C5C2D0;
  --border: rgba(255,255,255,0.08);
  --border-strong: rgba(255,255,255,0.15);
  --header-bg: rgba(12, 12, 14, 0.92);
  --shadow: 0 4px 40px rgba(0,0,0,0.6);
  --shadow-card: 0 8px 32px rgba(0,0,0,0.4);
  --input-bg: rgba(255,255,255,0.05);
  --input-border: rgba(255,255,255,0.12);
  --overlay-hero: linear-gradient(to bottom, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0.7) 100%);
}

/* ---- Light Theme ---- */
[data-theme="light"] {
  --bg: #FAFAF8;
  --bg-alt: #F2F0EB;
  --bg-card: #FFFFFF;
  --bg-card-hover: #F7F5F0;
  --bg-glass: rgba(255,255,255,0.92);
  --text: #18160F;
  --text-muted: #706B5C;
  --text-light: #4A4535;
  --border: rgba(0,0,0,0.08);
  --border-strong: rgba(0,0,0,0.15);
  --header-bg: rgba(250, 250, 248, 0.95);
  --shadow: 0 4px 24px rgba(0,0,0,0.08);
  --shadow-card: 0 8px 32px rgba(0,0,0,0.1);
  --input-bg: rgba(0,0,0,0.03);
  --input-border: rgba(0,0,0,0.12);
  --overlay-hero: linear-gradient(to bottom, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0.65) 100%);
}

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
  transition: background-color 0.4s var(--ease), color 0.4s var(--ease);
  -webkit-font-smoothing: antialiased;
}

img, video {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul { list-style: none; }

/* ---- Page Loader ---- */
.page-loader {
  position: fixed;
  inset: 0;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.5s var(--ease), visibility 0.5s var(--ease);
}
.page-loader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.loader-inner {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}
.loader-logo-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  animation: loaderFadeScale 1.8s var(--ease) infinite alternate;
}
.loader-logo-img {
  width: 90px;
  height: 90px;
  object-fit: contain;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(200, 169, 110, 0.2);
}
.loader-logo-text {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--text);
}
.loader-logo-text span {
  color: var(--gold);
}
@keyframes loaderFadeScale {
  0% { transform: scale(0.96); opacity: 0.8; }
  100% { transform: scale(1.04); opacity: 1; }
}
.loader-bar {
  width: 200px;
  height: 3px;
  background: var(--border);
  border-radius: 100px;
  overflow: hidden;
  margin: 0 auto;
}
.loader-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 100px;
  animation: loaderFill 1.8s var(--ease) forwards;
}
@keyframes loaderFill {
  to { width: 100%; }
}

/* ---- Top Progress Bar ---- */
.top-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-light));
  z-index: 9998;
  transition: width 0.1s linear;
}

/* ---- Theme Toggle ---- */
.theme-toggle {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--border-strong);
  background: var(--bg-glass);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: var(--text);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s var(--ease);
  box-shadow: var(--shadow);
  flex-shrink: 0;
}
.theme-toggle:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: rotate(20deg);
}
[data-theme="dark"] .icon-sun { display: block; }
[data-theme="dark"] .icon-moon { display: none; }
[data-theme="light"] .icon-sun { display: none; }
[data-theme="light"] .icon-moon { display: block; }

/* ---- Mobile Bottom Action Bar ---- */
.mobile-action-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--bg-glass);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid var(--border);
  z-index: 800;
  padding: env(safe-area-inset-bottom, 0);
}
.mob-action-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  padding: 0.75rem 0.5rem;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.02em;
  transition: all 0.25s;
  text-decoration: none;
}
.mob-action-item svg { flex-shrink: 0; }
.mob-action-item:hover { color: var(--gold); }
.mob-wa { color: #25D366; }
.mob-wa:hover { color: #1FAD59; }
.mob-book { color: var(--gold); }

/* ---- Header ---- */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  background: var(--header-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: all 0.4s var(--ease);
}
.header.scrolled {
  box-shadow: var(--shadow);
}
.nav-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-px);
  height: 70px;
  display: flex;
  align-items: center;
  gap: 2rem;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
  text-decoration: none;
}
.logo img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  border-radius: 8px;
}
.logo-text {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: 0.02em;
  line-height: 1.1;
}
.logo-text span { color: var(--gold); }

/* Nav Links */
.nav-menu { margin-left: auto; }
.nav-menu ul {
  display: flex;
  gap: 0.25rem;
  align-items: center;
}
.nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
  padding: 0.5rem 0.75rem;
  border-radius: 8px;
  transition: all 0.25s;
  white-space: nowrap;
}
.nav-link:hover,
.nav-link.active-link {
  color: var(--text);
  background: var(--border);
}

/* Header Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
  margin-left: auto;
}
.btn-call-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.825rem;
  font-weight: 600;
  color: var(--gold);
  padding: 0.5rem 1rem;
  border-radius: 8px;
  border: 1px solid var(--gold);
  transition: all 0.25s;
  white-space: nowrap;
}
.btn-call-header:hover {
  background: var(--gold);
  color: #000;
}
.btn-cta-header {
  font-size: 0.825rem;
  font-weight: 700;
  color: #000;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  padding: 0.5rem 1.25rem;
  border-radius: 8px;
  white-space: nowrap;
  transition: all 0.25s;
  letter-spacing: 0.02em;
}
.btn-cta-header:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 20px var(--gold-glow);
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.4rem;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.35s var(--ease);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---- Mobile Nav Drawer ---- */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 990;
  opacity: 0;
  transition: opacity 0.35s;
}
.nav-overlay.open { opacity: 1; }
.mobile-nav {
  position: fixed;
  top: 0;
  right: -320px;
  width: min(320px, 85vw);
  height: 100dvh;
  background: var(--bg-card);
  z-index: 995;
  display: flex;
  flex-direction: column;
  transition: right 0.4s var(--ease);
  overflow-y: auto;
}
.mobile-nav.open { right: 0; }
.mobile-nav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--border);
}
.mobile-nav-close {
  background: none;
  border: none;
  color: var(--text);
  cursor: pointer;
  padding: 0.25rem;
}
.mobile-nav-links {
  padding: 1rem 0;
  flex: 1;
}
.mnav-link {
  display: block;
  padding: 0.9rem 1.5rem;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text);
  transition: all 0.25s;
  border-left: 3px solid transparent;
}
.mnav-link:hover {
  color: var(--gold);
  border-left-color: var(--gold);
  background: var(--gold-glow);
}
.mobile-nav-ctas {
  padding: 1.25rem 1.5rem;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.mnav-call, .mnav-wa {
  display: block;
  text-align: center;
  padding: 0.85rem;
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: all 0.25s;
}
.mnav-call {
  border: 1px solid var(--gold);
  color: var(--gold);
}
.mnav-call:hover {
  background: var(--gold);
  color: #000;
}
.mnav-wa {
  background: #25D366;
  color: #fff;
}
.mnav-wa:hover { background: #1FAD59; }

/* ---- Container ---- */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-px);
}

/* ---- Section Base ---- */
.section {
  padding: var(--section-py) 0;
}
.bg-alt { background: var(--bg-alt); }

/* ---- Section Header ---- */
.section-header {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--gold);
  background: var(--gold-glow);
  border: 1px solid rgba(200,169,110,0.3);
  padding: 0.35rem 1rem;
  border-radius: 100px;
  margin-bottom: 1rem;
}
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  color: var(--text);
  line-height: 1.2;
  margin-bottom: 1rem;
}
.section-title .gold { color: var(--gold); }
.section-desc {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 620px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ---- Buttons ---- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: #000;
  font-size: 0.925rem;
  font-weight: 700;
  padding: 0.875rem 2rem;
  border-radius: 12px;
  letter-spacing: 0.02em;
  transition: all 0.3s var(--ease);
  border: none;
  cursor: pointer;
  white-space: nowrap;
  text-decoration: none;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px var(--gold-glow);
}
.btn-primary:active { transform: translateY(0); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--text);
  font-size: 0.925rem;
  font-weight: 600;
  padding: 0.875rem 2rem;
  border-radius: 12px;
  border: 1px solid var(--border-strong);
  transition: all 0.3s var(--ease);
  cursor: pointer;
  white-space: nowrap;
  text-decoration: none;
}
.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}
.btn-wa {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #25D366;
  color: #fff;
  font-size: 0.925rem;
  font-weight: 700;
  padding: 0.875rem 2rem;
  border-radius: 12px;
  transition: all 0.3s;
  text-decoration: none;
}
.btn-wa:hover {
  background: #1FAD59;
  transform: translateY(-2px);
}

/* ---- Gold text util ---- */
.gold { color: var(--gold); }

/* ---- Reveal Animations ---- */
.reveal-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
}
.reveal-up.revealed {
  opacity: 1;
  transform: translateY(0);
}
.reveal-up.delay-1 { transition-delay: 0.15s; }
.reveal-up.delay-2 { transition-delay: 0.3s; }
.reveal-up.delay-3 { transition-delay: 0.45s; }

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-video,
.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: var(--overlay-hero);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
  padding: 7rem var(--container-px) 5rem;
  text-align: center;
  margin: 0 auto;
}
.hero-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-light);
  background: rgba(200,169,110,0.15);
  border: 1px solid rgba(200,169,110,0.4);
  padding: 0.4rem 1.2rem;
  border-radius: 100px;
  margin-bottom: 1.5rem;
}
.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}
.hero-accent {
  color: var(--gold-light);
  display: block;
  font-style: italic;
}
.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.82);
  margin-bottom: 2.5rem;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}
.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.hstat {
  text-align: center;
  color: #fff;
}
.hstat-num {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold-light);
}
.hstat span { font-size: 1.4rem; color: var(--gold-light); }
.hstat small {
  display: block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.6);
  margin-top: 0.15rem;
}
.hstat-div {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.25);
}
.hero-scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  z-index: 2;
}
.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.6), transparent);
  animation: scrollPulse 2s ease infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}
.hero-scroll-indicator span {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.5);
}

/* ============================================================
   TRUST STRIP
   ============================================================ */
.trust-strip {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 1.25rem 0;
  overflow: hidden;
}
.trust-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-px);
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.825rem;
  font-weight: 600;
  color: var(--text-muted);
  white-space: nowrap;
}
.trust-item svg { color: var(--gold); flex-shrink: 0; }

/* ============================================================
   SERVICES
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s var(--ease);
}
.service-card:hover {
  border-color: var(--gold);
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.3), 0 0 0 1px var(--gold);
}
.service-img {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
}
.service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.service-card:hover .service-img img {
  transform: scale(1.08);
}
.service-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.5), transparent);
  opacity: 0;
  transition: opacity 0.4s;
}
.service-card:hover .service-img-overlay { opacity: 1; }
.service-body {
  padding: 1.5rem;
}
.service-icon-wrap {
  width: 48px;
  height: 48px;
  background: var(--gold-glow);
  border: 1px solid rgba(200,169,110,0.3);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  margin-bottom: 1rem;
}
.service-body h3 {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.service-body p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1rem;
}
.service-cta {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.02em;
  transition: letter-spacing 0.25s;
}
.service-card:hover .service-cta { letter-spacing: 0.08em; }

/* ============================================================
   BEFORE / AFTER SLIDER
   ============================================================ */
.ba-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16/8;
  border-radius: 20px;
  overflow: hidden;
  user-select: none;
  touch-action: none;
  cursor: col-resize;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border);
}
.ba-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ba-before { z-index: 1; }
.ba-after-clip {
  position: absolute;
  inset: 0;
  z-index: 2;
  overflow: hidden;
  width: 50%;
  transition: none;
}
.ba-after { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; min-width: 200%; left: 0; }
.ba-slider {
  position: absolute;
  inset: 0;
  z-index: 5;
  opacity: 0;
  cursor: col-resize;
  width: 100%;
  height: 100%;
  margin: 0;
}
.ba-handle {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 100%;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.ba-handle::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: 100%;
  background: #fff;
  box-shadow: 0 0 12px rgba(0,0,0,0.5);
}
.ba-handle > * {
  position: relative;
  z-index: 5;
  background: #fff;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #222;
  box-shadow: 0 4px 16px rgba(0,0,0,0.35);
}
.ba-handle svg { width: 16px; height: 16px; }
.ba-label {
  position: absolute;
  top: 1.25rem;
  z-index: 3;
  background: rgba(0,0,0,0.6);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 0.35rem 0.9rem;
  border-radius: 100px;
}
.ba-label-left { left: 1.25rem; }
.ba-label-right { right: 1.25rem; }

/* ============================================================
   KITCHEN LAYOUTS
   ============================================================ */
.layouts-tabs {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 2rem;
}
.layout-tab {
  padding: 0.65rem 1.5rem;
  border-radius: 100px;
  border: 1px solid var(--border-strong);
  background: transparent;
  color: var(--text-muted);
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}
.layout-tab.active,
.layout-tab:hover {
  background: var(--gold);
  color: #000;
  border-color: var(--gold);
  box-shadow: 0 4px 16px var(--gold-glow);
}
.layout-panel { display: none; }
.layout-panel.active { display: block; }
.layout-panel-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.layout-panel-info h3 {
  font-family: var(--font-serif);
  font-size: 2rem;
  margin-bottom: 0.75rem;
  color: var(--text);
}
.layout-panel-info p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}
.layout-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.layout-features li {
  font-size: 0.9rem;
  color: var(--text-muted);
  padding-left: 1rem;
  border-left: 2px solid var(--gold);
  line-height: 1.5;
}
.layout-features strong { color: var(--text); }
.layout-panel-img {
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border);
}
.layout-panel-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.layout-panel-img:hover img { transform: scale(1.04); }

/* ============================================================
   COLOR VISUALIZER
   ============================================================ */
.visualizer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 3rem;
  align-items: start;
}
.viz-display {
  background: var(--bg-card);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
}
.viz-display svg {
  width: 100%;
  height: auto;
  display: block;
}
.viz-controls {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.viz-group h4 {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}
.viz-swatches {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}
.swatch {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.25s;
  position: relative;
}
.swatch::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid transparent;
  transition: border-color 0.25s;
}
.swatch.active::after,
.swatch:hover::after {
  border-color: var(--gold);
}
.viz-note {
  font-size: 0.78rem;
  color: var(--text-muted);
  border-top: 1px solid var(--border);
  padding-top: 1rem;
  line-height: 1.6;
}

/* Style Presets */
.viz-presets {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.viz-preset-btn {
  padding: 0.45rem 0.9rem;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: var(--bg-card);
  color: var(--text-light);
  font-size: 0.75rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s var(--ease);
}
.viz-preset-btn:hover {
  border-color: var(--gold);
  background: rgba(197, 168, 128, 0.05);
  transform: translateY(-1px);
}
.viz-preset-btn.active {
  background: var(--gold);
  color: #000;
  border-color: var(--gold);
  box-shadow: 0 4px 12px rgba(197, 168, 128, 0.2);
}

/* Active Finishes Summary */
.viz-summary-panel {
  background: var(--bg-alt);
  border-radius: 12px;
  padding: 1rem;
  border: 1px solid var(--border);
  margin-top: 0.5rem;
  box-shadow: inset 0 2px 4px rgba(0,0,0,0.05);
}
.viz-summary-panel h4 {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.viz-summary-item {
  font-size: 0.8rem;
  color: var(--text-light);
  margin-bottom: 0.35rem;
}
.viz-summary-item:last-child {
  margin-bottom: 0;
}
.viz-summary-item span {
  font-weight: 600;
  color: var(--gold);
  margin-left: 0.25rem;
}

/* ============================================================
   GALLERY / PORTFOLIO
   ============================================================ */
.gallery-filters {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 2.5rem;
}
.gfilter {
  padding: 0.55rem 1.25rem;
  border-radius: 100px;
  border: 1px solid var(--border-strong);
  background: transparent;
  color: var(--text-muted);
  font-size: 0.825rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}
.gfilter.active, .gfilter:hover {
  background: var(--gold);
  color: #000;
  border-color: var(--gold);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.gallery-item {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 1;
  cursor: pointer;
  border: 1px solid var(--border);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.15) 55%, transparent 100%);
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  opacity: 0;
  transition: opacity 0.4s;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay h4 {
  font-family: var(--font-serif);
  font-size: 1rem;
  color: #fff;
  margin-bottom: 0.25rem;
}
.gallery-overlay p {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.7);
}
.gallery-item.hidden {
  display: none;
}
.gallery-new-badge {
  display: inline-block;
  background: var(--gold);
  color: #000;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
  margin-bottom: 0.4rem;
  width: fit-content;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}
.lightbox.open { display: flex; }
.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
  font-size: 1.75rem;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s var(--ease);
  line-height: 1;
  box-shadow: 0 4px 16px rgba(0,0,0,0.35);
  z-index: 10;
}
.lightbox-close:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #000;
  transform: scale(1.05);
}
.lightbox-img-wrapper {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s var(--ease);
  z-index: 2;
  box-shadow: 0 4px 16px rgba(0,0,0,0.35);
}
.lightbox-nav:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #000;
  transform: translateY(-50%) scale(1.05);
}
.lightbox-prev { left: 1rem; }
.lightbox-next { right: 1rem; }
.lightbox-content {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  max-width: 1000px;
  width: 100%;
  align-items: center;
}
.lightbox-img-wrapper img {
  max-height: 75vh;
  width: 100%;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.5);
}
.lightbox-info {
  min-width: 240px;
  max-width: 320px;
  color: #fff;
}
.lightbox-info h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
  color: var(--gold-light);
}
.lightbox-info p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

/* ============================================================
   PROCESS STEPS
   ============================================================ */
.process-steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  gap: 0;
  align-items: start;
  margin-top: 1rem;
}
.process-step {
  text-align: center;
  padding: 1.5rem 1rem;
}
.process-connector {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 4rem;
  color: var(--gold);
  font-size: 1.5rem;
}
.process-connector::before {
  content: '→';
  font-size: 2rem;
  color: var(--gold);
  opacity: 0.4;
}
.process-num {
  font-family: var(--font-serif);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--border);
  line-height: 1;
  margin-bottom: 0.5rem;
  letter-spacing: -0.04em;
}
.process-icon {
  width: 64px;
  height: 64px;
  background: var(--gold-glow);
  border: 1px solid rgba(200,169,110,0.3);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  margin: 0 auto 1rem;
  transition: all 0.3s var(--ease);
}
.process-step:hover .process-icon {
  background: var(--gold);
  color: #000;
  transform: scale(1.1);
}
.process-step h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.process-step p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ============================================================
   ABOUT
   ============================================================ */
.about-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: center;
}
.about-img-frame {
  position: relative;
}
.about-img-frame img {
  width: 100%;
  border-radius: 24px;
  object-fit: cover;
  aspect-ratio: 3/4;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border);
}
.about-img-badge {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: #000;
  padding: 1.25rem 1.5rem;
  border-radius: 18px;
  text-align: center;
  box-shadow: 0 8px 24px var(--gold-glow);
}
.aib-num {
  display: block;
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1;
}
.aib-text {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.about-role {
  font-size: 0.85rem;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
  margin-top: -0.5rem;
}
.about-text-col p {
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  line-height: 1.75;
}
.about-quote {
  border-left: 3px solid var(--gold);
  padding: 0.75rem 1.25rem;
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--text-light);
  margin: 1.5rem 0;
  background: var(--gold-glow);
  border-radius: 0 10px 10px 0;
}
.about-badges {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 1.75rem;
}
.about-badge {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--gold);
  background: var(--gold-glow);
  border: 1px solid rgba(200,169,110,0.3);
  padding: 0.35rem 0.9rem;
  border-radius: 100px;
}
.about-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ============================================================
   SERVICE AREAS
   ============================================================ */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.area-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.5rem;
  text-align: center;
  transition: all 0.3s var(--ease);
}
.area-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: 0 12px 30px var(--gold-glow);
}
.area-card.featured {
  border-color: var(--gold);
  background: linear-gradient(135deg, var(--gold-glow), transparent);
  grid-column: span 2;
}
.area-icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}
.area-card h4 {
  font-weight: 700;
  margin-bottom: 0.35rem;
  font-size: 1rem;
}
.area-card p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ============================================================
   REVIEWS / TESTIMONIALS
   ============================================================ */
.google-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--bg-card);
  border: 1px solid var(--border-strong);
  border-radius: 14px;
  padding: 0.85rem 1.5rem;
  margin-top: 1rem;
  cursor: pointer;
  transition: all 0.3s;
}
.google-badge:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
}
.gb-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, #4285F4, #EA4335, #FBBC05, #34A853);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 1.1rem;
  color: #fff;
  flex-shrink: 0;
}
.gb-stars { font-size: 1rem; color: #FBBC05; font-weight: 700; }
.gb-stars span { color: var(--text); font-size: 0.9rem; }
.gb-count { font-size: 0.75rem; color: var(--text-muted); }
.reviews-carousel {
  position: relative;
  overflow: hidden;
  margin-top: 2rem;
}
.reviews-track {
  display: flex;
  transition: transform 0.5s var(--ease);
  will-change: transform;
}
.review-slide {
  min-width: 33.333%;
  padding: 0 0.75rem;
  flex-shrink: 0;
}
.review-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2rem;
  height: 100%;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.review-card::before {
  content: '“';
  position: absolute;
  top: 0.5rem;
  right: 1.5rem;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 6.5rem;
  font-weight: 700;
  color: rgba(197, 168, 128, 0.08);
  line-height: 1;
  pointer-events: none;
}
.review-card:hover {
  border-color: var(--gold);
  box-shadow: 0 12px 30px var(--gold-glow);
  transform: translateY(-2px);
}
.review-stars {
  color: #FBBC05;
  font-size: 1.1rem;
  margin-bottom: 1rem;
  letter-spacing: 2px;
  text-shadow: 0 0 6px rgba(251, 188, 5, 0.4);
}
.review-text {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-style: italic;
  position: relative;
  z-index: 1;
}
.review-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  position: relative;
  z-index: 1;
}
.review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.1rem;
  color: #000;
  flex-shrink: 0;
}
.review-author h5 {
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 0.2rem;
}
.review-author span {
  font-size: 0.75rem;
  color: var(--text-muted);
}
.review-owner-reply {
  margin-top: 1rem;
  padding: 0.75rem 1rem;
  background: rgba(197, 168, 128, 0.04);
  border-left: 3px solid var(--gold);
  border-radius: 0 8px 8px 0;
  font-size: 0.825rem;
  color: var(--text-light);
  line-height: 1.5;
  text-align: left;
  position: relative;
  z-index: 1;
}
.review-owner-reply strong {
  color: var(--gold);
  display: block;
  margin-bottom: 0.2rem;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Decorative Floating Emoji Stickers */
.sticker-emoji {
  display: inline-block;
  font-size: 1.35rem;
  animation: floatEmoji 3s ease-in-out infinite alternate;
  filter: drop-shadow(0 2px 5px rgba(0,0,0,0.15));
  margin: 0 0.2rem;
}
.sticker-emoji.cook { animation-delay: 0.4s; }
.sticker-emoji.home { animation-delay: 0.8s; }
.sticker-emoji.star { animation-delay: 1.2s; }
.sticker-emoji.heart { animation-delay: 1.6s; }

@keyframes floatEmoji {
  0% { transform: translateY(0) rotate(0deg); }
  100% { transform: translateY(-5px) rotate(10deg); }
}
.reviews-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}
.review-nav {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border-strong);
  background: var(--bg-card);
  color: var(--text);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s;
}
.review-nav:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.reviews-dots {
  display: flex;
  gap: 0.5rem;
  flex-shrink: 0;
  align-items: center;
}
.reviews-dots .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border-strong);
  cursor: pointer;
  transition: all 0.3s ease;
  flex-shrink: 0;
}
.reviews-dots .dot.active {
  width: 24px;
  border-radius: 4px;
  background: var(--gold);
  flex-shrink: 0;
}

/* Ratings Overview Dashboard */
.reviews-dashboard {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1.2fr;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}
.rd-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: all 0.3s;
}
.rd-card:hover {
  border-color: var(--gold-light);
  box-shadow: 0 8px 24px rgba(200, 169, 110, 0.05);
}
.rd-score-summary {
  align-items: center;
  text-align: center;
}
.rd-large-score {
  font-family: var(--font-serif);
  font-size: 4.5rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.rd-stars-wrap {
  margin: 0.5rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
}
.rd-stars-gold {
  color: #FBBC05;
  font-size: 1.4rem;
  letter-spacing: 2px;
  text-shadow: 0 0 8px rgba(251,188,5,0.3);
}
.rd-reviews-count {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
}
.rd-score-sub {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  line-height: 1.4;
}
.rd-score-summary .btn-primary {
  padding: 0.7rem 1.5rem;
  font-size: 0.85rem;
  border-radius: 10px;
  width: 100%;
  justify-content: center;
}

.rd-card-title {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  color: var(--text);
  border-bottom: 1px solid var(--border);
  padding-bottom: 0.5rem;
}

/* Rating bar rows */
.rd-bar-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.65rem;
  font-size: 0.825rem;
}
.rd-bar-row:last-child {
  margin-bottom: 0;
}
.rd-bar-label {
  min-width: 45px;
  color: var(--text-muted);
}
.rd-bar-track {
  flex: 1;
  height: 6px;
  background: var(--border);
  border-radius: 100px;
  overflow: hidden;
}
.rd-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold-light), var(--gold));
  border-radius: 100px;
  transition: width 1s var(--ease);
}
.rd-bar-count {
  min-width: 15px;
  text-align: right;
  font-weight: 600;
  color: var(--text);
}

/* Category metrics */
.rd-metric-item {
  margin-bottom: 0.85rem;
}
.rd-metric-item:last-child {
  margin-bottom: 0;
}
.rd-metric-header {
  display: flex;
  justify-content: space-between;
  font-size: 0.825rem;
  margin-bottom: 0.35rem;
  font-weight: 500;
}
.rd-metric-bar-track {
  height: 6px;
  background: var(--border);
  border-radius: 100px;
  overflow: hidden;
}
.rd-metric-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, #10B981, var(--gold));
  border-radius: 100px;
}

/* Reviews Filter Bar */
.reviews-filter-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 0.75rem 1.25rem;
  border-radius: 14px;
}
.filter-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.filter-chip {
  padding: 0.45rem 1rem;
  font-size: 0.8rem;
  font-weight: 600;
  border-radius: 100px;
  border: 1px solid var(--border-strong);
  background: transparent;
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.25s;
}
.filter-chip:hover,
.filter-chip.active {
  background: var(--gold);
  color: #000;
  border-color: var(--gold);
  box-shadow: 0 4px 12px var(--gold-glow);
}
.reviews-sort-wrap {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}
.reviews-sort-wrap label {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 600;
}
.reviews-sort-select {
  background: var(--bg-card);
  border: 1px solid var(--border-strong);
  color: var(--text);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.4rem 1.5rem 0.4rem 0.75rem;
  border-radius: 8px;
  cursor: pointer;
  outline: none;
  transition: border-color 0.25s;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23C8A96E' stroke-width='2' viewBox='0 0 24 24'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 8px center;
  min-width: 130px;
}
.reviews-sort-select:hover,
.reviews-sort-select:focus {
  border-color: var(--gold);
}

/* Card Redesign & Avatars */
.review-card {
  display: flex;
  flex-direction: column;
}
.review-text-wrap {
  flex-grow: 1;
}
.verified-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #10B981;
  color: #fff;
  font-size: 0.65rem;
  font-weight: bold;
  margin-left: 0.25rem;
  vertical-align: middle;
}

/* Avatar Gradients */
.avatar-p { background: linear-gradient(135deg, #FF6B6B, #FF8E53) !important; color: #fff !important; }
.avatar-s { background: linear-gradient(135deg, #4E65FF, #92EFFD) !important; color: #fff !important; }
.avatar-k { background: linear-gradient(135deg, #F5A623, #F8E71C) !important; color: #000 !important; }
.avatar-l { background: linear-gradient(135deg, #D0021B, #F5A623) !important; color: #fff !important; }
.avatar-d { background: linear-gradient(135deg, #4A90E2, #50E3C2) !important; color: #fff !important; }
.avatar-g { background: linear-gradient(135deg, #B8E986, #417505) !important; color: #fff !important; }
.avatar-m { background: linear-gradient(135deg, #BD10E0, #9013FE) !important; color: #fff !important; }
.avatar-a { background: linear-gradient(135deg, #FF0844, #FFB199) !important; color: #fff !important; }

/* Write a Review Modal styling */
.review-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s var(--ease);
}
.review-modal.open {
  opacity: 1;
  pointer-events: all;
}
.review-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.review-modal-content {
  position: relative;
  width: min(540px, 95vw);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 24px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5), 0 0 0 1px var(--gold-glow);
  z-index: 10;
  overflow: hidden;
  animation: modalPop 0.4s var(--ease);
}
@keyframes modalPop {
  from { transform: scale(0.9) translateY(20px); opacity: 0; }
  to { transform: scale(1) translateY(0); opacity: 1; }
}
.review-modal-close {
  position: absolute;
  top: 1rem;
  right: 1.25rem;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 2rem;
  cursor: pointer;
  line-height: 1;
  transition: color 0.25s;
  z-index: 2;
}
.review-modal-close:hover {
  color: var(--gold);
}
.rm-form-view,
.rm-success-view {
  padding: 2.25rem;
}
.rm-form-view h3,
.rm-success-view h3 {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
  color: var(--text);
}
.rm-subtitle {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  line-height: 1.4;
}

/* Star rating selector */
.rm-form-group {
  margin-bottom: 1.25rem;
}
.rm-form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}
.rm-star-rating {
  display: flex;
  gap: 0.5rem;
}
.star-btn {
  font-size: 2rem;
  color: var(--border-strong);
  cursor: pointer;
  transition: all 0.2s;
  user-select: none;
}
.star-btn.active,
.star-btn:hover {
  color: #FBBC05;
  text-shadow: 0 0 10px rgba(251, 188, 5, 0.4);
  transform: scale(1.1);
}
.rm-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.rm-form-view input[type="text"],
.rm-form-view select,
.rm-form-view textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-strong);
  color: var(--text);
  padding: 0.75rem 1rem;
  border-radius: 10px;
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.25s, background-color 0.25s;
}
.rm-form-view input[type="text"]:focus,
.rm-form-view select:focus,
.rm-form-view textarea:focus {
  border-color: var(--gold);
  background: rgba(255, 255, 255, 0.05);
}
.rm-submit-btn {
  width: 100%;
  justify-content: center;
  margin-top: 0.5rem;
}

/* Modal Success State */
.rm-success-view {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: fadeIn 0.4s var(--ease);
}
.rm-success-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--gold-glow);
  border: 1px solid var(--gold);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 1.25rem;
}
#rm-success-msg {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}
.rm-action-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.5rem;
  width: 100%;
}
.rm-action-card p {
  font-size: 0.85rem;
  margin-bottom: 1rem;
  line-height: 1.4;
}
.rm-copy-box {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}
.rm-copy-box textarea {
  width: 100%;
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid var(--border-strong);
  color: var(--text-muted);
  padding: 0.75rem;
  border-radius: 8px;
  font-size: 0.8rem;
  resize: none;
  height: 60px;
  outline: none;
  font-style: italic;
}
.rm-copy-box button {
  padding: 0.6rem 1.2rem;
  font-size: 0.8rem;
  justify-content: center;
}
.rm-link-row a {
  display: flex;
  width: 100%;
  justify-content: center;
  padding: 0.75rem;
}

/* Media Queries for reviews */
@media (max-width: 900px) {
  .reviews-dashboard {
    grid-template-columns: 1fr 1fr;
  }
  .rd-category-metrics {
    grid-column: span 2;
  }
}
@media (max-width: 640px) {
  .reviews-dashboard {
    grid-template-columns: 1fr;
  }
  .rd-category-metrics {
    grid-column: span 1;
  }
  .reviews-filter-bar {
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
  }
  .rm-form-row {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   FAQ
   ============================================================ */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color 0.3s;
}
.faq-item:hover { border-color: var(--border-strong); }
.faq-q {
  width: 100%;
  padding: 1.25rem 1.5rem;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-family: var(--font-sans);
  font-size: 0.975rem;
  font-weight: 600;
  color: var(--text);
  transition: all 0.25s;
}
.faq-q:hover { color: var(--gold); }
.faq-icon {
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform 0.35s var(--ease);
  line-height: 1;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease), padding 0.3s;
}
.faq-item.open .faq-a { max-height: 300px; }
.faq-a-inner {
  padding: 0 1.5rem 1.25rem;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.75;
}
.faq-a-inner a { color: var(--gold); text-decoration: underline; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.cinfo-card {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.25rem;
  transition: border-color 0.3s;
}
.cinfo-card:hover { border-color: var(--gold); }
.cinfo-icon {
  width: 44px;
  height: 44px;
  background: var(--gold-glow);
  border: 1px solid rgba(200,169,110,0.25);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}
.cinfo-card h4 {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 0.35rem;
}
.cinfo-card p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
}
.cinfo-card a { color: var(--gold); }
.cinfo-card a:hover { text-decoration: underline; }
.directions-list {
  margin-top: 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.directions-list p {
  font-size: 0.8rem;
  padding-left: 0.75rem;
  border-left: 2px solid var(--gold-glow);
}
.cinfo-social h4 {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}
.social-row {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 1rem;
  border-radius: 10px;
  border: 1px solid var(--border-strong);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
  transition: all 0.25s;
}
.social-link:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}
.social-link-wa { color: #25D366; border-color: rgba(37,211,102,0.3); }
.social-link-wa:hover { background: rgba(37,211,102,0.1); border-color: #25D366; }

/* Contact Form */
.contact-form-wrap {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 2.5rem;
}
.form-header { margin-bottom: 2rem; }
.form-header h3 {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
}
.form-header p {
  font-size: 0.9rem;
  color: var(--text-muted);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}
.fgroup {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1rem;
}
.fgroup label {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
}
.fgroup input,
.fgroup select,
.fgroup textarea {
  width: 100%;
  padding: 0.875rem 1.1rem;
  background: var(--input-bg);
  border: 1px solid var(--input-border);
  border-radius: 12px;
  color: var(--text);
  font-size: 0.9rem;
  font-family: var(--font-sans);
  transition: all 0.25s;
  -webkit-appearance: none;
}
.fgroup input::placeholder,
.fgroup textarea::placeholder {
  color: var(--text-muted);
  opacity: 0.7;
}
.fgroup input:focus,
.fgroup select:focus,
.fgroup textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px var(--gold-glow);
  background: var(--bg);
}
.fgroup input.invalid,
.fgroup select.invalid,
.fgroup textarea.invalid {
  border-color: #E53E3E;
  box-shadow: 0 0 0 3px rgba(229,62,62,0.15);
}
.ferror {
  font-size: 0.75rem;
  color: #E53E3E;
  display: none;
  padding-left: 0.2rem;
}
.fgroup .ferror.show { display: block; }
.fgroup select option { background: var(--bg-card); color: var(--text); }
.fgroup textarea { resize: vertical; min-height: 100px; }
.btn-submit {
  width: 100%;
  padding: 1rem;
  background: linear-gradient(135deg, #25D366, #1FAD59);
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  font-family: var(--font-sans);
  border: none;
  border-radius: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  transition: all 0.3s var(--ease);
  letter-spacing: 0.02em;
  margin-bottom: 0.75rem;
}
.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(37,211,102,0.3);
}
.form-privacy {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-align: center;
}

/* Map */
.map-section {
  margin-top: 3rem;
}
.map-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.map-header h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
}
.map-wrapper {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border);
  height: 400px;
  box-shadow: var(--shadow-card);
}
.map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  padding-top: 4rem;
  padding-bottom: 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.footer-social {
  display: flex;
  gap: 0.75rem;
}
.fsoc {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 1px solid var(--border-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: all 0.25s;
}
.fsoc:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}
.footer-col h4 {
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text);
  margin-bottom: 1.25rem;
}
.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.footer-col a {
  font-size: 0.875rem;
  color: var(--text-muted);
  transition: color 0.25s;
}
.footer-col a:hover { color: var(--gold); }
.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.footer-contact-list li {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  font-size: 0.825rem;
  color: var(--text-muted);
  line-height: 1.5;
}
.footer-contact-list svg {
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}
.footer-contact-list a { color: var(--text-muted); }
.footer-contact-list a:hover { color: var(--gold); }
.footer-seo-para {
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
  margin-bottom: 1.5rem;
}
.footer-seo-para p {
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 100%;
}
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 70px; /* space for mobile bar */
}
.footer-bottom p {
  font-size: 0.78rem;
  color: var(--text-muted);
}
.footer-legal {
  display: flex;
  gap: 1.5rem;
}
.footer-legal a {
  font-size: 0.78rem;
  color: var(--text-muted);
  transition: color 0.25s;
}
.footer-legal a:hover { color: var(--gold); }

/* ============================================================
   FLOATING WHATSAPP
   ============================================================ */
.wa-float {
  position: fixed;
  bottom: 5.5rem;
  right: 1.5rem;
  width: 58px;
  height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  z-index: 700;
  box-shadow: 0 6px 24px rgba(37,211,102,0.5);
  transition: all 0.3s var(--ease-bounce);
}
.wa-float:hover {
  transform: scale(1.12);
  box-shadow: 0 10px 32px rgba(37,211,102,0.6);
}
.wa-pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: rgba(37,211,102,0.4);
  animation: waPulse 2.5s ease infinite;
}
@keyframes waPulse {
  0% { transform: scale(1); opacity: 0.8; }
  70% { transform: scale(1.5); opacity: 0; }
  100% { transform: scale(1.5); opacity: 0; }
}

/* ============================================================
   SUCCESS MODAL
   ============================================================ */
.success-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.8);
  backdrop-filter: blur(8px);
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.success-modal.open { display: flex; }
.success-card {
  background: var(--bg-card);
  border: 1px solid var(--gold);
  border-radius: 24px;
  padding: 2.5rem;
  max-width: 420px;
  width: 100%;
  text-align: center;
  animation: popIn 0.5s var(--ease-bounce);
}
@keyframes popIn {
  from { transform: scale(0.7); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}
.success-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #000;
  font-weight: 900;
  margin: 0 auto 1.5rem;
}
.success-card h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}
.success-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 1.75rem;
  line-height: 1.7;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .areas-grid { grid-template-columns: repeat(3, 1fr); }
  .area-card.featured { grid-column: span 3; }
  .visualizer-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .process-connector { display: none; }
}

@media (max-width: 860px) {
  .nav-menu, .btn-call-header, .btn-cta-header { display: none; }
  .hamburger { display: flex; }
  .nav-container { gap: 1rem; }
  .layout-panel-grid { grid-template-columns: 1fr; gap: 2rem; }
  .layout-panel-img { order: -1; }
  .about-wrapper { grid-template-columns: 1fr; gap: 3rem; }
  .about-img-badge { bottom: -1rem; right: -0.5rem; }
  .contact-layout { grid-template-columns: 1fr; }
  .review-slide { min-width: 80%; }
  .lightbox {
    align-items: flex-start;
    overflow-y: auto;
    padding: 5.5rem 1rem 2rem 1rem;
  }
  .lightbox-close {
    top: 1.25rem;
    right: 1.25rem;
    position: fixed;
  }
  .lightbox-content {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .lightbox-img-wrapper img {
    max-height: 50vh;
  }
  .lightbox-info {
    max-width: 100%;
    text-align: center;
    background: var(--bg-card);
    border: 1px solid var(--border);
    padding: 1.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow-card);
  }
  .lightbox-info h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
  }
  .lightbox-info p {
    font-size: 0.85rem;
    margin-bottom: 1.25rem;
  }
  #lightbox-cta {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 640px) {
  .mobile-action-bar { display: flex; }
  .services-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .areas-grid { grid-template-columns: repeat(2, 1fr); }
  .ba-wrapper { aspect-ratio: 4/3; }
  .area-card.featured { grid-column: span 2; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .hero-actions { flex-direction: column; align-items: center; }
  .form-row { grid-template-columns: 1fr; }
  .about-ctas { flex-direction: column; }
  .social-row { flex-direction: column; }
  .process-steps { grid-template-columns: 1fr; }
  .review-slide { min-width: 100%; }
  .review-card { padding: 1.25rem !important; }
  .reviews-dots { display: none !important; }
  .wa-float { display: none !important; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .header-actions { gap: 0.5rem; }
  .map-header { flex-direction: column; }
}

@media (max-width: 420px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 0.75rem; }
  .hstat-num { font-size: 1.6rem; }
  .layouts-tabs { gap: 0.3rem; }
  .layout-tab { padding: 0.5rem 1rem; font-size: 0.8rem; }
}

/* ---- Print ---- */
@media print {
  .header, .mobile-action-bar, .wa-float, .theme-toggle, .page-loader { display: none !important; }
}
