/* ============================================================
   STOREGADGET NAIL SPA — Design System
   Minimalist Modern · Warm Rose Gold · Premium Feel
   ============================================================ */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Calistoga&family=Inter:wght@400;500;600;700&family=JetBrains+Mono:wght@400;500&display=swap');

/* ============================================================
   CSS CUSTOM PROPERTIES (Design Tokens)
   ============================================================ */
:root {
  /* --- Color Palette --- */
  --background:       #FDF8F5;   /* warm cream canvas */
  --foreground:       #1A0F0F;   /* deep warm black */
  --muted:            #F5EDE8;   /* blush muted */
  --muted-foreground: #7A6760;   /* warm gray */
  --card:             #FFFFFF;
  --card-hover:       #FFF9F7;
  --border:           #EDD5C8;

  /* --- Accent (Rose Gold → Coral) --- */
  --accent:           #C8516A;   /* deep rose */
  --accent-secondary: #E8837A;   /* coral */
  --accent-light:     #F9E8E8;   /* very light rose */
  --accent-foreground:#FFFFFF;

  /* --- Gold accent --- */
  --gold:             #C9933F;
  --gold-light:       #F5E4C0;

  /* --- Gradient --- */
  --gradient-primary: linear-gradient(135deg, #C8516A 0%, #E8837A 100%);
  --gradient-gold:    linear-gradient(135deg, #C9933F 0%, #E8C06A 100%);
  --gradient-hero:    linear-gradient(135deg, #FDF0F0 0%, #FDF8F5 60%, #F5EDE8 100%);

  /* --- Typography --- */
  --font-display: 'Calistoga', Georgia, serif;
  --font-body:    'Inter', system-ui, sans-serif;
  --font-mono:    'JetBrains Mono', monospace;

  /* --- Shadows --- */
  --shadow-sm:     0 1px 4px rgba(200, 81, 106, 0.06);
  --shadow-md:     0 4px 16px rgba(26, 15, 15, 0.08);
  --shadow-lg:     0 12px 32px rgba(26, 15, 15, 0.10);
  --shadow-xl:     0 24px 48px rgba(26, 15, 15, 0.12);
  --shadow-accent: 0 4px 20px rgba(200, 81, 106, 0.30);
  --shadow-accent-lg: 0 8px 32px rgba(200, 81, 106, 0.40);

  /* --- Border Radius --- */
  --radius-sm:  8px;
  --radius-md:  12px;
  --radius-lg:  20px;
  --radius-xl:  32px;
  --radius-full: 9999px;

  /* --- Transitions --- */
  --transition-fast:   all 0.15s ease-out;
  --transition-base:   all 0.25s ease-out;
  --transition-slow:   all 0.40s ease-out;

  /* --- Layout --- */
  --container-max: 1200px;
  --nav-height: 96px;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
  font-family: var(--font-body);
  background: var(--background);
  color: var(--foreground);
  line-height: 1.65;
  min-height: 100vh;
  overflow-x: hidden;
}

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

a { color: inherit; text-decoration: none; transition: var(--transition-fast); }

ul, ol { list-style: none; }

button, input, select, textarea {
  font-family: var(--font-body);
  font-size: inherit;
  border: none;
  outline: none;
  background: none;
}

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  line-height: 1.1;
  color: var(--foreground);
  font-weight: 400;
}

h1 { font-size: clamp(2.4rem, 6vw, 4.2rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.9rem, 4vw, 3rem);   letter-spacing: -0.01em; }
h3 { font-size: clamp(1.4rem, 3vw, 1.9rem); }
h4 { font-size: 1.25rem; font-family: var(--font-body); font-weight: 600; }

p { color: var(--muted-foreground); line-height: 1.75; }

.text-gradient {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.text-gold-gradient {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ============================================================
   LAYOUT UTILITIES
   ============================================================ */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

.section-padding { padding: 80px 0; }
.section-padding-lg { padding: 112px 0; }

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }

/* ============================================================
   SECTION LABEL (Badge System)
   ============================================================ */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--accent-light);
  border: 1px solid rgba(200, 81, 106, 0.25);
  border-radius: var(--radius-full);
  padding: 6px 18px;
  margin-bottom: 20px;
}

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

.section-label span:last-child {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
}

@keyframes pulse-dot {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%       { transform: scale(1.4); opacity: 0.65; }
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition-base);
  border: 2px solid transparent;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0);
  transition: background 0.25s ease;
  pointer-events: none;
}

.btn:hover::after { background: rgba(255,255,255,0.12); }
.btn:active { transform: scale(0.97); }

/* Primary */
.btn-primary {
  background: var(--gradient-primary);
  color: var(--accent-foreground);
  box-shadow: var(--shadow-accent);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-accent-lg);
  color: #fff;
}

/* Secondary */
.btn-secondary {
  background: transparent;
  color: var(--accent);
  border-color: var(--accent);
}

.btn-secondary:hover {
  background: var(--accent-light);
  transform: translateY(-2px);
}

/* Ghost */
.btn-ghost {
  background: rgba(255,255,255,0.9);
  color: var(--foreground);
  border-color: var(--border);
  backdrop-filter: blur(8px);
}

.btn-ghost:hover {
  background: #fff;
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.btn-lg { padding: 18px 36px; font-size: 1.05rem; border-radius: var(--radius-lg); }
.btn-sm { padding: 10px 20px; font-size: 0.85rem; }

.btn svg { transition: transform 0.2s ease; }
.btn:hover svg { transform: translateX(3px); }

/* ============================================================
   NAVIGATION
   ============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: linear-gradient(120deg, rgba(200, 81, 106, 0.44) 0%, rgba(232, 131, 122, 0.40) 52%, rgba(201, 147, 63, 0.30) 100%);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.20);
  transition: var(--transition-slow);
}

.site-header.scrolled {
  background: linear-gradient(120deg, rgba(200, 81, 106, 0.62) 0%, rgba(232, 131, 122, 0.56) 52%, rgba(201, 147, 63, 0.42) 100%);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.26);
  box-shadow: 0 8px 28px rgba(26, 15, 15, 0.12);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-height);
  gap: 40px;
}

.site-header .nav-inner,
.site-header .nav-inner .nav-logo,
.site-header .nav-inner .nav-menu li,
.site-header .nav-inner .nav-menu a,
.site-header .nav-inner #navBookBtn,
.site-header .nav-inner #navBookBtn svg {
  color: #fff;
  text-shadow: 0 1px 8px rgba(26, 15, 15, 0.22);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.nav-logo .logo-icon {
  width: 50px; height: 50px;
  background: var(--gradient-primary);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  box-shadow: var(--shadow-accent);
}

.nav-logo .logo-text {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: #fff;
  line-height: 1.1;
  font-weight: 700;
}

.nav-logo .logo-tagline {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.84);
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
  display: block;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  justify-content: center;
}

.nav-menu a {
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  transition: var(--transition-fast);
  white-space: nowrap;
  letter-spacing: 0.01em;
}

.nav-menu a:hover,
.nav-menu a.active {
  color: #fff;
  background: rgba(255, 255, 255, 0.16);
}

.nav-actions { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }

.nav-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--foreground);
  padding: 10px 18px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--border);
  background: rgba(255,255,255,0.7);
  transition: var(--transition-fast);
}

.nav-phone:hover { border-color: var(--accent); color: var(--accent); background: var(--accent-light); }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  border-radius: var(--radius-sm);
  transition: var(--transition-fast);
}

.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: var(--transition-base);
}

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

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--gradient-hero);
  position: relative;
  overflow: hidden;
  padding-top: var(--nav-height);
}

.hero::before {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(200,81,106,0.12) 0%, transparent 70%);
  top: -100px; right: -100px;
  border-radius: 50%;
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(201,147,63,0.08) 0%, transparent 70%);
  bottom: -80px; left: 10%;
  border-radius: 50%;
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: center;
  padding: 80px 0;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold-light);
  border: 1px solid rgba(201,147,63,0.3);
  border-radius: var(--radius-full);
  padding: 6px 16px 6px 10px;
  margin-bottom: 24px;
}

.hero-badge .star { font-size: 1rem; }

.hero-badge span:last-child {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}

.hero-headline {
  margin-bottom: 24px;
  line-height: 1.08;
}

.hero-headline .line-accent {
  display: block;
  position: relative;
}

.hero-headline .line-accent::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  height: 6px; width: 100%;
  border-radius: 3px;
  background: linear-gradient(to right, rgba(200,81,106,0.2), rgba(232,131,122,0.08));
}

.hero-desc {
  font-size: 1.1rem;
  color: var(--muted-foreground);
  max-width: 480px;
  margin-bottom: 36px;
  line-height: 1.75;
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 52px;
}

.hero-stats {
  display: flex;
  gap: 36px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}

.hero-stat-num {
  font-family: var(--font-display);
  font-size: 1.9rem;
  color: var(--foreground);
  line-height: 1;
}

.hero-stat-label {
  font-size: 0.8rem;
  color: var(--muted-foreground);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* Hero Visual */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image-main {
  width: 100%;
  max-width: 460px;
  aspect-ratio: 4/5;
  border-radius: 40px 40px 120px 40px;
  object-fit: cover;
  box-shadow: var(--shadow-xl), 0 0 0 6px rgba(200,81,106,0.08);
  animation: float-hero 5s ease-in-out infinite;
}

@keyframes float-hero {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-12px); }
}

.hero-card-floating {
  position: absolute;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 14px 20px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 12px;
  white-space: nowrap;
  animation: float-card 4s ease-in-out infinite;
}

.hero-card-floating.card-rating { bottom: 80px; left: -40px; animation-delay: 0.5s; }
.hero-card-floating.card-booking { top: 60px; right: -40px; animation-delay: 1s; }

@keyframes float-card {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-8px); }
}

.hero-card-floating .card-icon {
  width: 40px; height: 40px;
  background: var(--gradient-primary);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.hero-card-floating .card-title {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--foreground);
}

.hero-card-floating .card-sub {
  font-size: 0.7rem;
  color: var(--muted-foreground);
  margin-top: 1px;
}

/* ============================================================
   SERVICES SECTION
   ============================================================ */
.services-section { background: #fff; }

.section-header { text-align: center; margin-bottom: 60px; }
.section-header h2 { margin-bottom: 16px; }
.section-header p { max-width: 560px; margin: 0 auto; font-size: 1.05rem; }

.service-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: var(--transition-base);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient-primary);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-accent);
  border-color: var(--accent);
}

.service-card:hover::before { opacity: 0.04; }

.service-card-inner { position: relative; z-index: 1; }

.service-icon {
  width: 60px; height: 60px;
  background: var(--accent-light);
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 20px;
  transition: var(--transition-base);
}

.service-card:hover .service-icon {
  background: var(--gradient-primary);
  transform: scale(1.08) rotate(-4deg);
}

.service-name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--foreground);
  margin-bottom: 8px;
}

.service-desc { font-size: 0.88rem; line-height: 1.65; margin-bottom: 20px; }

.service-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 16px;
}

.price-from { font-size: 0.75rem; color: var(--muted-foreground); }

.price-value {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--accent);
}

.price-unit { font-size: 0.75rem; color: var(--muted-foreground); }

.service-features { display: flex; flex-direction: column; gap: 6px; }

.service-feature {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--muted-foreground);
}

.service-feature::before {
  content: '✓';
  width: 18px; height: 18px;
  background: var(--accent-light);
  color: var(--accent);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  flex-shrink: 0;
}

/* Featured service card */
.service-card.featured {
  background: linear-gradient(135deg, #fff 0%, #FFF5F6 100%);
  border: 2px solid var(--accent);
  box-shadow: var(--shadow-accent);
}

.service-badge {
  position: absolute;
  top: 20px; right: 20px;
  background: var(--gradient-primary);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* ============================================================
   GALLERY SECTION
   ============================================================ */
.gallery-section { background: var(--muted); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 240px);
  gap: 16px;
}

.gallery-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(200,81,106,0.5) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item:hover::after { opacity: 1; }

.gallery-overlay {
  position: absolute;
  bottom: 16px; left: 16px;
  z-index: 2;
  opacity: 0;
  transform: translateY(8px);
  transition: var(--transition-base);
  color: #fff;
  font-weight: 600;
  font-size: 0.88rem;
  pointer-events: none;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
  transform: translateY(0);
}

/* Span variants */
.gallery-item.span-col-2 { grid-column: span 2; }
.gallery-item.span-row-2 { grid-row: span 2; }

/* ============================================================
   BOOKING SECTION
   ============================================================ */
.booking-section {
  background: var(--foreground);
  position: relative;
  overflow: hidden;
}

.booking-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}

.booking-section::after {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(200,81,106,0.15) 0%, transparent 70%);
  bottom: -120px; right: -80px;
  border-radius: 50%;
  pointer-events: none;
}

.booking-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.booking-content h2 { color: #fff; margin-bottom: 16px; }
.booking-content p { color: rgba(255,255,255,0.6); margin-bottom: 32px; }

.booking-features { display: flex; flex-direction: column; gap: 16px; }

.booking-feature {
  display: flex;
  align-items: center;
  gap: 14px;
  color: rgba(255,255,255,0.8);
  font-size: 0.9rem;
}

.booking-feature-icon {
  width: 36px; height: 36px;
  background: rgba(200,81,106,0.25);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

/* Booking Form */
.booking-form {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-xl);
  padding: 40px;
  backdrop-filter: blur(10px);
}

.booking-form h3 {
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin-bottom: 28px;
}

.form-group { margin-bottom: 18px; }

.form-label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  margin-bottom: 8px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-md);
  padding: 13px 16px;
  color: #fff;
  font-size: 0.92rem;
  transition: var(--transition-fast);
}

.form-input::placeholder { color: rgba(255,255,255,0.3); }

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(200,81,106,0.2);
  background: rgba(255,255,255,0.12);
}

.form-select { cursor: pointer; }
.form-select option { background: #1A0F0F; color: #fff; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

.booking-slot-picker { margin-bottom: 18px; }

.booking-slot-hint {
  margin: 0 0 10px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
}

.booking-slot-board {
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.04);
  border-radius: 14px;
  overflow: auto;
  padding: 8px;
  max-height: 360px;
}

.booking-slot-board--light {
  border-color: var(--border);
  background: #fff;
}

.booking-slot-table {
  width: 100%;
  min-width: 680px;
  border-collapse: separate;
  border-spacing: 6px;
}

.booking-slot-table th {
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255,255,255,0.72);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 4px 2px;
  text-align: center;
  white-space: nowrap;
}

.booking-slot-board--light .booking-slot-table th {
  color: #4b5563;
}

.booking-slot-time {
  font-size: 0.74rem;
  font-weight: 700;
  color: rgba(255,255,255,0.74);
  text-align: center;
  min-width: 56px;
}

.booking-slot-board--light .booking-slot-time {
  color: #374151;
}

.booking-slot-btn {
  width: 100%;
  border: 1px solid transparent;
  border-radius: 9px;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 8px 4px;
  min-height: 38px;
  transition: var(--transition-fast);
}

.booking-slot-btn.is-available {
  background: rgba(16,185,129,0.15);
  color: #9ff3d0;
  border-color: rgba(16,185,129,0.35);
  cursor: pointer;
}

.booking-slot-board--light .booking-slot-btn.is-available {
  background: #ecfdf5;
  color: #065f46;
  border-color: #a7f3d0;
}

.booking-slot-btn.is-available:hover,
.booking-slot-btn.is-available:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.12);
}

.booking-slot-btn.is-mine {
  background: rgba(59,130,246,0.2);
  color: #dbeafe;
  border-color: rgba(147,197,253,0.7);
  box-shadow: 0 0 0 2px rgba(147,197,253,0.3) inset;
  cursor: pointer;
}

.booking-slot-board--light .booking-slot-btn.is-mine {
  background: #dbeafe;
  color: #1d4ed8;
  border-color: #93c5fd;
}

.booking-slot-btn.is-booked,
.booking-slot-btn.is-locked {
  background: rgba(239,68,68,0.17);
  color: #fecaca;
  border-color: rgba(248,113,113,0.45);
  cursor: not-allowed;
  opacity: 0.95;
}

.booking-slot-board--light .booking-slot-btn.is-booked,
.booking-slot-board--light .booking-slot-btn.is-locked {
  background: #fef2f2;
  color: #b91c1c;
  border-color: #fecaca;
}

.booking-slot-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.7);
}

.booking-slot-board--light + .booking-slot-legend,
.booking-slot-board.booking-slot-board--light .booking-slot-legend {
  color: #4b5563;
}

.booking-slot-legend span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.booking-slot-legend i {
  width: 10px;
  height: 10px;
  border-radius: 99px;
  display: inline-block;
}

.booking-slot-legend .available i { background: #10b981; }
.booking-slot-legend .mine i { background: #3b82f6; }
.booking-slot-legend .busy i { background: #ef4444; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-section { background: #fff; }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

.testimonial-card {
  background: var(--background);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: var(--transition-base);
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 20px; right: 24px;
  font-family: var(--font-display);
  font-size: 5rem;
  color: var(--accent);
  opacity: 0.12;
  line-height: 1;
  pointer-events: none;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(200,81,106,0.2);
}

.testimonial-card.featured {
  background: linear-gradient(135deg, #FFF9F7 0%, #FFF3F4 100%);
  border-color: var(--accent);
  box-shadow: var(--shadow-accent);
  transform: translateY(-12px);
}

.testimonial-card.featured:hover { transform: translateY(-16px); }

.testimonial-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 16px;
  font-size: 1rem;
}

.testimonial-text {
  font-size: 0.92rem;
  line-height: 1.75;
  color: var(--foreground);
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.author-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--border);
}

.author-avatar-placeholder {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--gradient-primary);
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}

.author-name {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--foreground);
}

.author-location {
  font-size: 0.78rem;
  color: var(--muted-foreground);
  margin-top: 2px;
}

.verified-badge {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.72rem;
  color: var(--accent);
  font-weight: 600;
}

/* ============================================================
   ABOUT / TEAM
   ============================================================ */
.about-section {
  background: var(--muted);
}

.about-inner {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 80px;
  align-items: center;
}

.about-image-stack { position: relative; }

.about-image-main {
  width: 100%;
  border-radius: 40px 40px 120px 40px;
  object-fit: cover;
  aspect-ratio: 4/5;
  box-shadow: var(--shadow-xl);
}

.about-image-accent {
  position: absolute;
  width: 45%;
  aspect-ratio: 1;
  border-radius: var(--radius-lg);
  object-fit: cover;
  bottom: -32px; right: -32px;
  border: 4px solid #fff;
  box-shadow: var(--shadow-lg);
}

.about-exp-badge {
  position: absolute;
  top: 40px; left: -24px;
  background: var(--gradient-primary);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 16px 20px;
  text-align: center;
  box-shadow: var(--shadow-accent-lg);
}

.about-exp-badge .exp-num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  display: block;
  line-height: 1;
}

.about-exp-badge .exp-label {
  font-size: 0.72rem;
  opacity: 0.85;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.about-content h2 { margin-bottom: 20px; }
.about-content > p { font-size: 1rem; margin-bottom: 32px; }

.about-values { display: flex; flex-direction: column; gap: 16px; margin-bottom: 36px; }

.about-value {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px;
  background: #fff;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  transition: var(--transition-fast);
}

.about-value:hover { border-color: var(--accent); box-shadow: var(--shadow-sm); }

.about-value-icon {
  font-size: 1.3rem;
  width: 42px; height: 42px;
  background: var(--accent-light);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

.about-value h4 { font-size: 0.92rem; margin-bottom: 4px; }
.about-value p  { font-size: 0.83rem; margin: 0; }

/* Team Grid */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 60px;
}

.team-card {
  text-align: center;
  transition: var(--transition-base);
}

.team-card:hover { transform: translateY(-6px); }

.team-photo {
  width: 100%;
  aspect-ratio: 3/4;
  border-radius: var(--radius-lg);
  object-fit: cover;
  margin-bottom: 16px;
  transition: box-shadow 0.3s ease;
}

.team-card:hover .team-photo { box-shadow: var(--shadow-accent); }

.team-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--foreground);
  margin-bottom: 4px;
}

.team-role {
  font-size: 0.8rem;
  color: var(--accent);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.team-exp {
  font-size: 0.78rem;
  color: var(--muted-foreground);
  margin-top: 6px;
}

/* ============================================================
   PROMOTIONS
   ============================================================ */
.promotions-section { background: #fff; }

.promotions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.promo-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--card);
  border: 1px solid var(--border);
  transition: var(--transition-base);
  position: relative;
}

.promo-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

.promo-card.featured-promo {
  border: 2px solid var(--accent);
  box-shadow: var(--shadow-accent);
}

.promo-badge-top {
  position: absolute;
  top: 16px; left: 16px;
  background: var(--gradient-primary);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  z-index: 2;
}

.promo-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.promo-body { padding: 24px; }

.promo-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--foreground);
  margin-bottom: 8px;
}

.promo-desc { font-size: 0.85rem; margin-bottom: 16px; }

.promo-price {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.promo-old-price {
  font-size: 0.9rem;
  color: var(--muted-foreground);
  text-decoration: line-through;
}

.promo-new-price {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--accent);
}

.promo-discount {
  background: var(--accent-light);
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: var(--radius-full);
}

.promo-valid {
  font-size: 0.75rem;
  color: var(--muted-foreground);
  display: flex;
  align-items: center;
  gap: 5px;
}

/* ============================================================
   CONTACT SECTION
   ============================================================ */
.contact-section { background: var(--muted); }

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
}

.contact-info h2 { margin-bottom: 16px; }
.contact-info > p { margin-bottom: 36px; }

.contact-items { display: flex; flex-direction: column; gap: 24px; }

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-item-icon {
  width: 48px; height: 48px;
  background: var(--gradient-primary);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
  box-shadow: var(--shadow-accent);
}

.contact-item h4 {
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted-foreground);
  margin-bottom: 4px;
}

.contact-item p, .contact-item a {
  font-size: 0.95rem;
  color: var(--foreground);
  font-weight: 500;
  margin: 0;
}

.contact-item a:hover { color: var(--accent); }

.contact-socials {
  display: flex;
  gap: 12px;
  margin-top: 36px;
}

.social-btn {
  width: 44px; height: 44px;
  border-radius: var(--radius-md);
  background: var(--card);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  transition: var(--transition-fast);
  cursor: pointer;
}

.social-btn:hover { background: var(--accent-light); border-color: var(--accent); }

.contact-map-wrap {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  height: 400px;
  border: 1px solid var(--border);
}

.contact-map-wrap iframe { width: 100%; height: 100%; display: block; }

/* ============================================================
   BLOG / NEWS
   ============================================================ */
.blog-section { background: #fff; }

.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }

.blog-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--card);
  border: 1px solid var(--border);
  transition: var(--transition-base);
}

.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

.blog-thumbnail {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-card:hover .blog-thumbnail { transform: scale(1.05); }

.blog-thumbnail-wrap { overflow: hidden; }

.blog-body { padding: 24px; }

.blog-category {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 10px;
}

.blog-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--foreground);
  margin-bottom: 10px;
  line-height: 1.3;
  transition: color 0.2s ease;
}

.blog-card:hover .blog-title { color: var(--accent); }

.blog-excerpt { font-size: 0.84rem; line-height: 1.65; margin-bottom: 16px; }

.blog-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  font-size: 0.78rem;
  color: var(--muted-foreground);
}

.blog-read-more {
  color: var(--accent);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.82rem;
}

.blog-read-more:hover { gap: 8px; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--foreground);
  color: rgba(255,255,255,0.65);
  padding: 72px 0 0;
  position: relative;
  overflow: hidden;
}

.site-footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  position: relative;
  z-index: 1;
}

.footer-brand .logo-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.footer-brand .logo-icon {
  width: 40px; height: 40px;
  background: var(--gradient-primary);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
}

.footer-brand .logo-name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: #fff;
}

.footer-brand p { font-size: 0.88rem; margin-bottom: 24px; line-height: 1.7; }

.footer-social { display: flex; gap: 10px; }

.footer-social a {
  width: 38px; height: 38px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  transition: var(--transition-fast);
}

.footer-social a:hover { background: var(--accent); border-color: var(--accent); }

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
}

.footer-links { display: flex; flex-direction: column; gap: 10px; }

.footer-links a {
  font-size: 0.87rem;
  transition: var(--transition-fast);
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-links a:hover { color: var(--accent); padding-left: 4px; }

.footer-hours { display: flex; flex-direction: column; gap: 8px; }
.footer-hour { display: flex; justify-content: space-between; font-size: 0.84rem; }
.footer-hour .day { color: rgba(255,255,255,0.4); }

.footer-bottom {
  margin-top: 56px;
  padding: 24px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 1;
}

.footer-copy { font-size: 0.82rem; }
.footer-copy a { color: var(--accent); }

.footer-legal {
  display: flex;
  gap: 20px;
  font-size: 0.82rem;
}

.footer-legal a:hover { color: var(--accent); }

/* ============================================================
   ANIMATIONS & TRANSITIONS
   ============================================================ */
@keyframes fade-in-up {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fade-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.animate-fade-up {
  animation: fade-in-up 0.7s cubic-bezier(0.16,1,0.3,1) both;
}

.animate-fade-up-delay-1 { animation-delay: 0.1s; }
.animate-fade-up-delay-2 { animation-delay: 0.2s; }
.animate-fade-up-delay-3 { animation-delay: 0.3s; }
.animate-fade-up-delay-4 { animation-delay: 0.4s; }

[data-animate] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.16,1,0.3,1),
              transform 0.7s cubic-bezier(0.16,1,0.3,1);
}

[data-animate].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger delays for animated children */
[data-animate-delay="1"] { transition-delay: 0.1s; }
[data-animate-delay="2"] { transition-delay: 0.2s; }
[data-animate-delay="3"] { transition-delay: 0.3s; }
[data-animate-delay="4"] { transition-delay: 0.4s; }
[data-animate-delay="5"] { transition-delay: 0.5s; }
[data-animate-delay="6"] { transition-delay: 0.6s; }

/* ============================================================
   STICKY CTA BAR (Mobile)
   ============================================================ */
.sticky-cta {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(16px);
  border-top: 1px solid var(--border);
  padding: 12px 20px;
  z-index: 999;
  gap: 12px;
}

/* ============================================================
   FLOATING CHAT BUTTONS
   ============================================================ */
.chat-fab {
  position: fixed;
  right: 18px;
  bottom: 96px;
  z-index: 1001;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.chat-fab-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(26,15,15,0.22);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.chat-fab-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 28px rgba(26,15,15,0.28);
}

.chat-fab-btn span {
  font-weight: 800;
  letter-spacing: 0.02em;
  font-size: 0.8rem;
  font-family: var(--font-body);
}

.chat-fab-messenger {
  background: linear-gradient(135deg, #1f8cff 0%, #0866ff 100%);
}

.chat-fab-zalo {
  background: linear-gradient(135deg, #00a0ff 0%, #0059ff 100%);
}

/* ============================================================
   LIGHTBOX
   ============================================================ */
.lightbox-overlay {
  position: fixed;
  inset: 0;
  background: rgba(26,15,15,0.95);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.lightbox-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.lightbox-img {
  max-width: 90vw;
  max-height: 90vh;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
}

.lightbox-close {
  position: absolute;
  top: 24px; right: 24px;
  width: 44px; height: 44px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-size: 1.4rem;
  cursor: pointer;
  transition: var(--transition-fast);
}

.lightbox-close:hover { background: var(--accent); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .hero-inner        { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual       { display: none; }
  .hero-headline     { font-size: clamp(2.2rem, 7vw, 3.5rem); }
  .about-inner       { grid-template-columns: 1fr; }
  .about-image-stack { max-width: 480px; margin: 0 auto; }
  .booking-inner     { grid-template-columns: 1fr; gap: 48px; }
  .footer-inner      { grid-template-columns: 1fr 1fr; gap: 40px; }
  .gallery-grid      { grid-template-columns: repeat(2, 1fr); grid-template-rows: unset; }
  .gallery-item.span-col-2 { grid-column: span 1; }
  .gallery-item.span-row-2 { grid-row: span 1; }
  .gallery-item      { height: 200px; }
  .team-grid         { grid-template-columns: repeat(2, 1fr); }
  .contact-inner     { grid-template-columns: 1fr; }
  .contact-map-wrap  { height: 300px; }
}

@media (max-width: 768px) {
  :root { --nav-height: 66px; }
  .section-padding    { padding: 60px 0; }
  .section-padding-lg { padding: 80px 0; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .testimonials-grid  { grid-template-columns: 1fr; }
  .testimonial-card.featured { transform: none; }
  .promotions-grid    { grid-template-columns: 1fr; }
  .blog-grid          { grid-template-columns: 1fr; }
  .footer-inner       { grid-template-columns: 1fr; }
  .footer-bottom      { flex-direction: column; gap: 12px; text-align: center; }
  .nav-menu           { display: none; }
  .nav-menu.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: var(--nav-height);
    left: 0; right: 0;
    background: rgba(26, 15, 15, 0.96);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
    padding: 16px 24px 24px;
    gap: 4px;
    box-shadow: var(--shadow-lg);
  }
  .nav-menu.open a { padding: 12px 16px; border-radius: var(--radius-sm); width: 100%; }
  .nav-toggle         { display: flex; }
  .nav-phone          { display: none; }
  .sticky-cta         { display: flex; }
  .hero               { min-height: auto; padding: 60px 0 40px; padding-top: calc(var(--nav-height) + 24px); }
  .hero-stats         { gap: 20px; flex-wrap: wrap; }
  .hero-cta           { flex-direction: column; }
  .hero-cta .btn      { width: 100%; justify-content: center; }
  .form-row           { grid-template-columns: 1fr; }
  .booking-form       { padding: 24px; }
  .about-exp-badge    { left: 0; }
  .about-image-accent { display: none; }
  .chat-fab {
    right: 14px;
    bottom: 86px;
    gap: 8px;
  }
  .chat-fab-btn {
    width: 48px;
    height: 48px;
  }
}

/* ============================================================
   SCROLL PROGRESS BAR
   ============================================================ */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  background: var(--gradient-primary);
  z-index: 9999;
  width: 0%;
  transition: width 0.1s linear;
}

/* ============================================================
   PAGE TEMPLATES EXTRAS
   ============================================================ */
.page-hero {
  padding: calc(var(--nav-height) + 60px) 0 72px;
  background: var(--gradient-hero);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(200,81,106,0.1) 0%, transparent 60%);
}

.page-hero .container { position: relative; z-index: 1; }
.page-hero h1  { margin-bottom: 16px; }
.page-hero > .container > p  { font-size: 1.1rem; max-width: 520px; margin: 0 auto; }

/* Breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.83rem;
  color: var(--muted-foreground);
  justify-content: center;
  margin-bottom: 24px;
}

.breadcrumb a:hover { color: var(--accent); }
.breadcrumb .sep { opacity: 0.4; }

/* ============================================================
   WOOCOMMERCE COMPATIBILITY
   ============================================================ */
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button {
  background: var(--gradient-primary) !important;
  color: #fff !important;
  border-radius: var(--radius-md) !important;
  padding: 12px 24px !important;
  font-family: var(--font-body) !important;
  font-weight: 600 !important;
  transition: var(--transition-base) !important;
  border: none !important;
  box-shadow: var(--shadow-accent) !important;
}

/* ============================================================
   RANKMATH / SEO MARKUP HELPERS
   ============================================================ */
.schema-hidden { display: none; }

/* ============================================================
   SERVICES LAYOUT (DỊCH VỤ)
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-sm);
  border-color: rgba(200, 81, 106, 0.2);
}

.service-card.featured {
  border: 2px solid var(--accent);
  box-shadow: 0 4px 20px rgba(200, 81, 106, 0.1);
}

.service-badge {
  position: absolute;
  top: -12px;
  right: 20px;
  background: var(--gradient-primary);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  text-transform: uppercase;
}

.service-card-inner {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.service-thumb-wrap {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 16px;
  background: var(--muted);
  border: 1px solid rgba(200, 81, 106, 0.12);
}

.service-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

.service-card:hover .service-thumb {
  transform: scale(1.05);
}

.service-icon {
  font-size: 2rem;
  margin-bottom: 16px;
  color: var(--accent);
  font-family: var(--font-display);
}

.service-name {
  font-size: 1.25rem;
  font-weight: 700;
  font-family: var(--font-display);
  margin-bottom: 8px;
  color: var(--foreground);
}

.service-desc {
  font-size: 0.9rem;
  color: var(--muted-foreground);
  line-height: 1.5;
  margin-bottom: 16px;
  flex-grow: 1;
}

.service-price {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--foreground);
  margin-top: auto;
  display: flex;
  align-items: baseline;
  gap: 4px;
  border-top: 1px dashed var(--border);
  padding-top: 16px;
}

.service-price .price-from {
  font-size: 0.8rem;
  color: var(--muted-foreground);
  font-weight: 500;
}

.service-price .price-value {
  color: var(--accent);
}

.service-price .price-unit {
  font-size: 0.9rem;
}

/* Responsive Grid 4 Columns */
@media (max-width: 1200px) {
  .services-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 992px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 576px) {
  .services-grid { grid-template-columns: 1fr; }
}
