/* ============================================
   EduNova Studio — White + Gold Luxury Theme
   Font: Cormorant Garamond + DM Sans
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;0,700;1,400;1,600&family=DM+Sans:wght@300;400;500;600&display=swap');

:root {
  /* Gold palette */
  --gold-900: #3d2700;
  --gold-800: #6b4300;
  --gold-700: #92580a;
  --gold-600: #b8860b;
  --gold-500: #d4a017;
  --gold-400: #e8b923;
  --gold-300: #f5d060;
  --gold-200: #fae8a0;
  --gold-100: #fef3c7;
  --gold-50:  #fffdf0;

  /* Neutrals */
  --cream:    #fffdf7;
  --cream-2:  #fef9ea;
  --cream-3:  #fdf3cc;
  --white:    #ffffff;
  --ink-900:  #1a1208;
  --ink-800:  #2e200e;
  --ink-700:  #4a3418;
  --ink-600:  #6b5030;
  --ink-400:  #9c8560;
  --ink-300:  #c4ab85;
  --ink-200:  #e8dfc0;
  --ink-100:  #f5f0e8;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;

  --shadow-gold-sm: 0 2px 8px rgba(184,134,11,0.12);
  --shadow-gold-md: 0 6px 24px rgba(184,134,11,0.18);
  --shadow-gold-lg: 0 16px 48px rgba(184,134,11,0.22);
  --shadow-gold-xl: 0 28px 70px rgba(184,134,11,0.28);

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;

  --nav-w: 290px;
  --header-h: 72px;
  --t: 0.3s cubic-bezier(0.4,0,0.2,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--ink-900);
  line-height: 1.65;
  overflow-x: hidden;
}

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--ink-100); }
::-webkit-scrollbar-thumb { background: var(--gold-400); border-radius: 10px; }

/* ── SIDEBAR ── */
.sidebar-overlay {
  position: fixed; inset: 0;
  background: rgba(26,18,8,0.5);
  backdrop-filter: blur(3px);
  z-index: 900; opacity: 0; visibility: hidden;
  transition: var(--t);
}
.sidebar-overlay.open { opacity: 1; visibility: visible; }

.sidebar {
  position: fixed; top: 0; left: 0; bottom: 0;
  width: var(--nav-w);
  background: var(--ink-900);
  z-index: 1000;
  display: flex; flex-direction: column;
  transform: translateX(-100%);
  transition: transform 0.38s cubic-bezier(0.4,0,0.2,1);
  box-shadow: var(--shadow-gold-xl);
}
.sidebar.open { transform: translateX(0); }

.sidebar-header {
  padding: 28px 22px 18px;
  border-bottom: 1px solid rgba(232,185,35,0.15);
  display: flex; align-items: center; justify-content: space-between;
}
.sidebar-brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.sidebar-logo {
  width: 42px; height: 42px; border-radius: 10px;
  background: linear-gradient(135deg, var(--gold-600), var(--gold-400));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 700;
  color: var(--ink-900); font-size: 14px; letter-spacing: 0.5px;
}
.sidebar-brand-name { display: block; font-family: var(--font-display); font-size: 16px; font-weight: 700; color: var(--cream); letter-spacing: 0.3px; }
.sidebar-brand-sub  { display: block; font-size: 10px; color: var(--gold-400); letter-spacing: 0.8px; text-transform: uppercase; margin-top: 1px; }

.sidebar-close {
  background: none; border: none; cursor: pointer;
  color: var(--ink-300); font-size: 20px;
  width: 32px; height: 32px; border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  transition: all var(--t);
}
.sidebar-close:hover { background: rgba(255,255,255,0.07); color: var(--cream); }

.sidebar-nav { flex: 1; padding: 18px 0; overflow-y: auto; }
.nav-section-label {
  padding: 14px 22px 6px;
  font-size: 10px; font-weight: 600; letter-spacing: 1.8px;
  text-transform: uppercase; color: var(--gold-500);
}
.sidebar-nav a {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 22px; color: rgba(255,253,247,0.68);
  text-decoration: none; font-size: 13.5px; font-weight: 500;
  transition: all var(--t); position: relative;
}
.sidebar-nav a .nav-icon { font-size: 15px; width: 20px; text-align: center; flex-shrink: 0; }
.sidebar-nav a:hover { color: var(--cream); background: rgba(232,185,35,0.08); }
.sidebar-nav a.active { color: var(--gold-300); background: rgba(232,185,35,0.12); }
.sidebar-nav a.active::before {
  content: ''; position: absolute; left: 0; top: 8px; bottom: 8px;
  width: 2px; background: var(--gold-400); border-radius: 2px;
}

.sidebar-footer {
  padding: 18px 22px;
  border-top: 1px solid rgba(232,185,35,0.12);
}
.sidebar-cta {
  display: block; text-align: center;
  background: linear-gradient(135deg, var(--gold-600), var(--gold-400));
  color: var(--ink-900); text-decoration: none;
  padding: 12px 20px; border-radius: var(--radius-sm);
  font-size: 13px; font-weight: 700; letter-spacing: 0.3px;
  transition: var(--t);
}
.sidebar-cta:hover { box-shadow: 0 6px 20px rgba(212,160,23,0.45); transform: translateY(-1px); }

/* ── HEADER ── */
.site-header {
  position: fixed; top: 0; left: 0; right: 0;
  height: var(--header-h);
  background: rgba(255,253,247,0.96);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--ink-200);
  z-index: 800;
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 28px; height: 100%;
}
.burger-btn {
  background: none; border: none; cursor: pointer;
  width: 42px; height: 42px; border-radius: 10px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 5px;
  transition: background var(--t);
}
.burger-btn:hover { background: var(--gold-100); }
.burger-btn span {
  display: block; width: 22px; height: 1.5px;
  background: var(--ink-700); border-radius: 2px;
  transition: var(--t);
}

.header-brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.header-logo {
  width: 38px; height: 38px; border-radius: 9px;
  background: linear-gradient(135deg, var(--gold-700), var(--gold-400));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 700; font-size: 13px;
  color: var(--ink-900);
}
.header-brand-name { font-family: var(--font-display); font-size: 18px; font-weight: 700; color: var(--ink-900); letter-spacing: 0.2px; }
.header-brand-sub  { font-size: 10px; color: var(--ink-400); display: block; letter-spacing: 0.8px; text-transform: uppercase; }

.header-actions { display: flex; align-items: center; gap: 10px; }
.header-wa {
  display: flex; align-items: center; gap: 7px;
  background: #25d366; color: white; text-decoration: none;
  padding: 9px 18px; border-radius: var(--radius-sm);
  font-size: 13px; font-weight: 600; transition: var(--t);
}
.header-wa:hover { transform: translateY(-1px); box-shadow: 0 4px 16px rgba(37,211,102,0.38); }

/* ── LAYOUT ── */
.page-wrapper { padding-top: var(--header-h); }
.container { max-width: 1160px; margin: 0 auto; padding: 0 28px; }
section { padding: 90px 0; }

/* ── DECORATIVE DIVIDER ── */
.gold-divider {
  width: 60px; height: 2px;
  background: linear-gradient(90deg, var(--gold-600), var(--gold-300));
  border-radius: 2px; margin: 16px 0 22px;
}

.section-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--gold-100); color: var(--gold-700);
  font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 1.8px;
  padding: 5px 14px; border-radius: 100px; margin-bottom: 14px;
  border: 1px solid var(--gold-200);
}
.section-tag::before { content: ''; width: 5px; height: 5px; background: var(--gold-500); border-radius: 50%; }

h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.2; }
h1 { font-size: clamp(2.6rem, 5vw, 3.8rem); color: var(--ink-900); }
h2 { font-size: clamp(2rem, 3.5vw, 2.9rem); color: var(--ink-900); }
h3 { font-size: 1.4rem; }

.section-intro { max-width: 580px; color: var(--ink-600); font-size: 1rem; line-height: 1.78; margin-top: 10px; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 28px; border-radius: var(--radius-sm);
  font-family: var(--font-body); font-size: 13.5px; font-weight: 600;
  text-decoration: none; cursor: pointer; border: none;
  transition: all var(--t); white-space: nowrap; letter-spacing: 0.2px;
}
.btn-primary {
  background: linear-gradient(135deg, var(--gold-700), var(--gold-500));
  color: var(--ink-900); box-shadow: var(--shadow-gold-md);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: var(--shadow-gold-lg); }
.btn-outline {
  background: transparent; color: var(--gold-700);
  border: 1.5px solid var(--gold-400);
}
.btn-outline:hover { background: var(--gold-100); border-color: var(--gold-600); transform: translateY(-2px); }
.btn-dark {
  background: var(--ink-900); color: var(--gold-300);
  border: 1px solid rgba(232,185,35,0.2);
}
.btn-dark:hover { background: var(--ink-800); transform: translateY(-2px); box-shadow: var(--shadow-gold-md); }

/* ── HERO ── */
.hero {
  min-height: calc(100vh - var(--header-h));
  display: flex; align-items: center;
  position: relative; overflow: hidden; padding: 60px 0;
  background: linear-gradient(160deg, var(--cream) 0%, var(--cream-2) 50%, var(--cream-3) 100%);
}
/* Decorative pattern overlay */
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 80% 20%, rgba(212,160,23,0.08) 0%, transparent 50%),
    radial-gradient(circle at 10% 80%, rgba(184,134,11,0.06) 0%, transparent 40%);
  pointer-events: none;
}
/* Gold corner accent */
.hero::after {
  content: '';
  position: absolute; top: 0; right: 0;
  width: 420px; height: 420px;
  background: radial-gradient(circle at top right, rgba(232,185,35,0.12), transparent 70%);
  pointer-events: none;
}

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

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--gold-100); color: var(--gold-700);
  font-size: 11px; font-weight: 600; letter-spacing: 1.8px; text-transform: uppercase;
  padding: 6px 14px; border-radius: 100px; margin-bottom: 22px;
  border: 1px solid var(--gold-200);
}
.eyebrow-dot { width: 6px; height: 6px; background: var(--gold-500); border-radius: 50%; animation: pulse-gold 2s infinite; }
@keyframes pulse-gold { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.4;transform:scale(0.7)} }

.hero h1 { margin-bottom: 18px; font-weight: 700; }
.hero h1 em { font-style: italic; color: var(--gold-600); }
.hero-lead { font-size: 1.05rem; color: var(--ink-600); line-height: 1.85; margin-bottom: 36px; max-width: 490px; }

.btn-row { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 48px; }

.hero-stats { display: flex; gap: 0; border: 1px solid var(--ink-200); border-radius: var(--radius-md); overflow: hidden; }
.hero-stat {
  flex: 1; text-align: center; padding: 18px 12px;
  border-right: 1px solid var(--ink-200);
}
.hero-stat:last-child { border-right: none; }
.hero-stat strong { display: block; font-family: var(--font-display); font-size: 1.9rem; font-weight: 700; color: var(--gold-600); line-height: 1; margin-bottom: 4px; }
.hero-stat span { font-size: 11px; color: var(--ink-400); text-transform: uppercase; letter-spacing: 0.8px; }

/* Hero card */
.hero-visual { position: relative; }
.hero-card {
  background: var(--white); border-radius: var(--radius-lg);
  border: 1px solid var(--ink-200);
  box-shadow: var(--shadow-gold-xl); overflow: hidden;
}
.hero-card-top {
  background: linear-gradient(135deg, var(--ink-900) 0%, var(--ink-800) 100%);
  padding: 28px; position: relative; overflow: hidden;
}
.hero-card-top::before {
  content: ''; position: absolute; top: -40px; right: -40px;
  width: 160px; height: 160px; border-radius: 50%;
  background: rgba(232,185,35,0.12);
}
.hct-label { font-size: 10px; color: var(--gold-400); letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 8px; }
.hct-title { font-family: var(--font-display); font-size: 1.3rem; color: var(--cream); margin-bottom: 4px; }
.hct-sub { font-size: 12px; color: rgba(255,253,247,0.5); }
.hct-badge { position: absolute; top: 20px; right: 20px; background: rgba(37,211,102,0.15); border: 1px solid rgba(37,211,102,0.3); color: #4ade80; font-size: 11px; font-weight: 600; padding: 4px 10px; border-radius: 100px; }

.services-mini { display: grid; grid-template-columns: 1fr 1fr; gap: 0; }
.sm-item {
  display: flex; align-items: center; gap: 10px;
  padding: 14px 18px; border-right: 1px solid var(--ink-200);
  border-bottom: 1px solid var(--ink-200);
  transition: background var(--t);
}
.sm-item:nth-child(even) { border-right: none; }
.sm-item:nth-child(3), .sm-item:nth-child(4) { border-bottom: none; }
.sm-item:hover { background: var(--gold-50); }
.sm-icon { font-size: 18px; }
.sm-label { font-size: 12px; font-weight: 600; color: var(--ink-800); }
.sm-price { font-size: 11px; color: var(--gold-600); font-weight: 600; }

.float-badge {
  position: absolute; background: var(--white);
  border-radius: var(--radius-md); padding: 12px 16px;
  box-shadow: var(--shadow-gold-lg); display: flex;
  align-items: center; gap: 10px;
  border: 1px solid var(--ink-200); white-space: nowrap;
}
.fb-top { top: -18px; right: -16px; }
.fb-bottom { bottom: -18px; left: -16px; }
.fb-icon { font-size: 20px; }
.fb-text { font-size: 12px; font-weight: 700; color: var(--ink-800); }
.fb-sub  { font-size: 10px; color: var(--ink-400); margin-top: 1px; }

/* ── ABOUT ── */
.about { background: var(--ink-900); color: var(--cream); position: relative; overflow: hidden; }
.about::before {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23d4a017' fill-opacity='0.03'%3E%3Cpath d='M40 0L80 40L40 80L0 40z'/%3E%3C/g%3E%3C/svg%3E");
}
.about::after {
  content: ''; position: absolute;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(212,160,23,0.08), transparent 70%);
  top: -200px; right: -150px; pointer-events: none;
}
.about-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; position: relative; z-index: 1; }
.about .section-tag { background: rgba(232,185,35,0.12); color: var(--gold-400); border-color: rgba(232,185,35,0.2); }
.about .gold-divider { background: linear-gradient(90deg, var(--gold-500), var(--gold-300)); }
.about h2 { color: var(--cream); }
.about p { color: rgba(255,253,247,0.72); font-size: 1rem; line-height: 1.85; margin-top: 14px; }

.about-vals { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 28px; }
.val-item {
  background: rgba(232,185,35,0.06); border: 1px solid rgba(232,185,35,0.12);
  border-radius: var(--radius-md); padding: 20px;
  transition: background var(--t);
}
.val-item:hover { background: rgba(232,185,35,0.1); }
.val-icon { font-size: 22px; margin-bottom: 8px; }
.val-title { font-family: var(--font-display); font-size: 15px; font-weight: 700; color: var(--gold-300); margin-bottom: 4px; }
.val-desc  { font-size: 12px; color: rgba(255,253,247,0.5); line-height: 1.55; }

.about-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.astat {
  background: rgba(232,185,35,0.06); border: 1px solid rgba(232,185,35,0.1);
  border-radius: var(--radius-md); padding: 28px 22px; text-align: center;
  transition: all var(--t);
}
.astat:hover { background: rgba(232,185,35,0.1); transform: translateY(-3px); }
.astat strong { display: block; font-family: var(--font-display); font-size: 2.6rem; font-weight: 700; color: var(--gold-400); line-height: 1; margin-bottom: 6px; }
.astat span { font-size: 11px; color: rgba(255,253,247,0.45); letter-spacing: 0.8px; text-transform: uppercase; }

/* ── SERVICES ── */
.services { background: var(--cream-2); }
.services-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 22px; margin-top: 48px; }

.service-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 30px; border: 1px solid var(--ink-200);
  text-decoration: none; color: inherit; display: block;
  transition: all var(--t); position: relative; overflow: hidden;
}
.service-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--gold-600), var(--gold-300));
  transform: scaleX(0); transform-origin: left; transition: transform var(--t);
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-gold-xl); border-color: var(--ink-200); }
.service-card:hover::after { transform: scaleX(1); }

.sc-icon-wrap {
  width: 54px; height: 54px; border-radius: 14px;
  background: var(--gold-100); display: flex;
  align-items: center; justify-content: center;
  font-size: 24px; margin-bottom: 18px;
  border: 1px solid var(--gold-200);
  transition: all var(--t);
}
.service-card:hover .sc-icon-wrap { background: var(--gold-200); transform: scale(1.05); }
.sc-title { font-family: var(--font-display); font-size: 1.25rem; margin-bottom: 9px; color: var(--ink-900); }
.sc-desc  { font-size: 13.5px; color: var(--ink-600); line-height: 1.7; margin-bottom: 18px; }
.sc-price {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--gold-50); color: var(--gold-700);
  font-size: 12.5px; font-weight: 700; padding: 5px 13px;
  border-radius: 100px; border: 1px solid var(--gold-200); margin-bottom: 18px;
  font-family: var(--font-display);
}
.sc-arrow { display: flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 600; color: var(--gold-600); transition: gap var(--t); }
.service-card:hover .sc-arrow { gap: 10px; }

/* ── REVIEWS SECTION ── */
.reviews-section { background: var(--white); padding: 90px 0; }
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 20px; margin-top: 48px; }

.review-card {
  background: var(--cream); border-radius: var(--radius-lg);
  padding: 28px; border: 1px solid var(--ink-200);
  position: relative; overflow: hidden;
  transition: all var(--t);
}
.review-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--gold-600), var(--gold-300));
}
.review-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-gold-md); }

.review-header { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 14px; gap: 12px; }
.review-author-info { display: flex; align-items: center; gap: 12px; }
.review-avatar {
  width: 46px; height: 46px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, var(--gold-600), var(--gold-300));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 18px; font-weight: 700;
  color: var(--ink-900);
}
.review-name { font-family: var(--font-display); font-size: 1rem; font-weight: 700; color: var(--ink-900); }
.review-meta { font-size: 11px; color: var(--ink-400); margin-top: 2px; }
.review-stars { color: var(--gold-500); font-size: 14px; letter-spacing: 1px; flex-shrink: 0; }
.review-service-tag {
  display: inline-block; background: var(--gold-100); color: var(--gold-700);
  font-size: 10px; font-weight: 600; padding: 3px 10px; border-radius: 100px;
  border: 1px solid var(--gold-200); margin-bottom: 12px; letter-spacing: 0.5px;
}
.review-text {
  font-size: 14px; color: var(--ink-700); line-height: 1.78;
  font-style: italic; position: relative; padding-left: 16px;
}
.review-text::before {
  content: '"'; position: absolute; left: 0; top: -4px;
  font-family: var(--font-display); font-size: 28px;
  color: var(--gold-300); line-height: 1;
}
.review-date { font-size: 11px; color: var(--ink-400); margin-top: 14px; }

/* Review loading / empty states */
.reviews-loading { text-align: center; padding: 48px; color: var(--ink-400); }
.reviews-loading .spinner {
  width: 32px; height: 32px; border-radius: 50%;
  border: 2px solid var(--gold-200); border-top-color: var(--gold-500);
  animation: spin 0.8s linear infinite; margin: 0 auto 12px;
}
@keyframes spin { to { transform: rotate(360deg); } }
.reviews-empty { text-align: center; padding: 48px; color: var(--ink-400); }
.reviews-empty .empty-icon { font-size: 40px; margin-bottom: 12px; }

/* Add Review Form */
.add-review-wrap {
  margin-top: 56px; padding: 40px; border-radius: var(--radius-lg);
  background: linear-gradient(160deg, var(--gold-50), var(--cream-2));
  border: 1px solid var(--ink-200);
}
.add-review-wrap h3 { font-family: var(--font-display); font-size: 1.6rem; margin-bottom: 6px; }
.add-review-wrap p  { font-size: 14px; color: var(--ink-600); margin-bottom: 28px; }

.star-picker { display: flex; gap: 6px; margin-bottom: 6px; }
.star-picker span {
  font-size: 28px; cursor: pointer; color: var(--ink-200);
  transition: color var(--t), transform var(--t);
  line-height: 1;
}
.star-picker span.active,
.star-picker span:hover { color: var(--gold-400); transform: scale(1.1); }
.star-label { font-size: 12px; color: var(--ink-400); margin-bottom: 18px; }

.review-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--ink-600); margin-bottom: 7px; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 11px 15px;
  background: var(--white); border: 1.5px solid var(--ink-200);
  border-radius: var(--radius-sm); font-family: var(--font-body);
  font-size: 14px; color: var(--ink-800); outline: none;
  transition: border-color var(--t), box-shadow var(--t);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold-500);
  box-shadow: 0 0 0 3px rgba(212,160,23,0.12);
}
.form-group textarea { resize: vertical; min-height: 110px; }
.form-full { grid-column: 1 / -1; }

.review-submit-note { font-size: 12px; color: var(--ink-400); margin-top: 10px; }
.review-success {
  display: none; text-align: center; padding: 28px;
  background: #f0fdf4; border-radius: var(--radius-md);
  border: 1px solid #bbf7d0; color: #15803d;
}
.review-success .check-icon { font-size: 36px; margin-bottom: 8px; }
.review-success p { font-size: 14px; font-weight: 600; }

/* ── WHY CHOOSE ── */
.why { background: var(--cream-2); }
.why-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 20px; margin-top: 48px; }
.why-item {
  background: var(--white); border-radius: var(--radius-md);
  padding: 28px 24px; border: 1px solid var(--ink-200);
  transition: all var(--t);
}
.why-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-gold-md); border-color: var(--gold-300); }
.why-num { font-family: var(--font-display); font-size: 3rem; font-weight: 700; color: var(--gold-100); line-height: 1; margin-bottom: 10px; }
.why-title { font-family: var(--font-display); font-size: 1.1rem; margin-bottom: 8px; color: var(--ink-900); }
.why-desc { font-size: 13px; color: var(--ink-600); line-height: 1.65; }

/* ── CONTACT ── */
.contact-section { background: var(--white); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 60px; align-items: start; margin-top: 48px; }
.contact-info h3 { font-family: var(--font-display); font-size: 1.6rem; margin-bottom: 14px; }
.contact-info p { color: var(--ink-600); font-size: 14px; line-height: 1.8; margin-bottom: 30px; }

.contact-methods { display: flex; flex-direction: column; gap: 12px; }
.cm-item {
  display: flex; align-items: center; gap: 14px;
  padding: 15px 18px; border-radius: var(--radius-md);
  border: 1px solid var(--ink-200); text-decoration: none;
  color: var(--ink-700); transition: all var(--t);
}
.cm-item:hover { border-color: var(--gold-400); background: var(--gold-50); transform: translateX(4px); }
.cm-icon { width: 40px; height: 40px; border-radius: 10px; background: var(--gold-100); display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; border: 1px solid var(--gold-200); }
.cm-label { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.8px; color: var(--ink-400); }
.cm-value { font-size: 14px; font-weight: 600; color: var(--ink-800); }

.contact-form-wrap {
  background: var(--cream-2); border-radius: var(--radius-lg);
  padding: 36px; border: 1px solid var(--ink-200);
}
.contact-form-wrap h3 { font-family: var(--font-display); font-size: 1.4rem; margin-bottom: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

/* ── SERVICE HERO ── */
.service-hero {
  background: linear-gradient(160deg, var(--ink-900) 0%, var(--ink-800) 100%);
  padding: 80px 0 70px; color: var(--cream); position: relative; overflow: hidden;
}
.service-hero::before {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23d4a017' fill-opacity='0.04'%3E%3Cpath d='M40 0L80 40L40 80L0 40z'/%3E%3C/g%3E%3C/svg%3E");
}
.service-hero::after {
  content: ''; position: absolute; top: -100px; right: -100px;
  width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(212,160,23,0.1), transparent 70%);
}
.service-hero .breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 12px; color: rgba(255,253,247,0.45); margin-bottom: 22px; position: relative; z-index: 1; }
.service-hero .breadcrumb a { color: var(--gold-400); text-decoration: none; transition: color var(--t); }
.service-hero .breadcrumb a:hover { color: var(--gold-300); }
.service-hero h1 { font-size: clamp(2rem,4vw,3rem); color: var(--cream); margin-bottom: 14px; position: relative; z-index: 1; }
.service-hero .hero-desc { font-size: 1rem; color: rgba(255,253,247,0.7); max-width: 580px; line-height: 1.85; margin-bottom: 30px; position: relative; z-index: 1; }
.service-hero-meta { display: flex; gap: 16px; flex-wrap: wrap; position: relative; z-index: 1; }
.sh-meta-item { background: rgba(232,185,35,0.1); border: 1px solid rgba(232,185,35,0.2); border-radius: var(--radius-sm); padding: 10px 18px; }
.sh-meta-label { font-size: 10px; color: rgba(255,253,247,0.4); text-transform: uppercase; letter-spacing: 1px; }
.sh-meta-val { font-size: 15px; font-weight: 700; color: var(--gold-300); margin-top: 2px; font-family: var(--font-display); }

/* ── SERVICE DETAIL ── */
.service-body { padding: 80px 0; }
.service-layout { display: grid; grid-template-columns: 1fr 340px; gap: 48px; align-items: start; }

.what-included { margin-bottom: 48px; }
.what-included h2 { font-size: 1.8rem; margin-bottom: 22px; }
.included-list { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.inc-item {
  display: flex; align-items: flex-start; gap: 11px;
  padding: 15px; background: var(--gold-50);
  border-radius: var(--radius-sm); border: 1px solid var(--gold-100);
}
.inc-check { color: var(--gold-600); font-size: 15px; flex-shrink: 0; margin-top: 1px; }
.inc-text { font-size: 13.5px; color: var(--ink-700); line-height: 1.55; }

.process-steps { margin-bottom: 48px; }
.process-steps h2 { font-size: 1.8rem; margin-bottom: 28px; }
.steps-list { display: flex; flex-direction: column; gap: 0; }
.step-item { display: flex; gap: 18px; }
.step-num {
  width: 38px; height: 38px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, var(--gold-600), var(--gold-400));
  color: var(--ink-900); font-weight: 700; font-size: 14px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); margin-top: 2px;
}
.step-body { padding-bottom: 28px; border-left: 1.5px solid var(--ink-200); padding-left: 22px; margin-left: -28px; padding-top: 2px; flex: 1; }
.step-item:last-child .step-body { border-left-color: transparent; }
.step-content { margin-left: 10px; }
.step-content h4 { font-family: var(--font-display); font-size: 1.05rem; margin-bottom: 5px; color: var(--ink-900); }
.step-content p  { font-size: 13.5px; color: var(--ink-600); line-height: 1.65; }

.service-faq { margin-bottom: 48px; }
.service-faq h2 { font-size: 1.8rem; margin-bottom: 20px; }
.faq-item { border: 1px solid var(--ink-200); border-radius: var(--radius-md); margin-bottom: 10px; overflow: hidden; }
.faq-q {
  display: flex; align-items: center; justify-content: space-between;
  padding: 17px 20px; cursor: pointer; font-weight: 600; font-size: 14px;
  background: var(--white); transition: background var(--t); color: var(--ink-800);
}
.faq-q:hover { background: var(--gold-50); }
.faq-chevron { color: var(--gold-500); font-size: 18px; transition: transform var(--t); }
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-a { padding: 0 20px 17px; font-size: 13.5px; color: var(--ink-600); line-height: 1.75; display: none; }
.faq-item.open .faq-a { display: block; }

/* Order sidebar */
.order-sidebar { position: sticky; top: calc(var(--header-h) + 24px); }
.order-card {
  background: var(--white); border-radius: var(--radius-lg);
  border: 1px solid var(--ink-200); padding: 26px;
  box-shadow: var(--shadow-gold-lg);
}
.order-card h3 { font-family: var(--font-display); font-size: 1.25rem; margin-bottom: 4px; }
.order-price { font-family: var(--font-display); font-size: 2rem; font-weight: 700; color: var(--gold-700); }
.order-price-note { font-size: 12px; color: var(--ink-400); margin-bottom: 20px; }
.order-features { list-style: none; margin-bottom: 22px; }
.order-features li {
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; padding: 7px 0;
  border-bottom: 1px solid var(--ink-100); color: var(--ink-700);
}
.order-features li span { color: var(--gold-500); font-size: 14px; }
.order-card .btn { width: 100%; justify-content: center; margin-bottom: 10px; }
.order-form { margin-top: 18px; border-top: 1px solid var(--ink-100); padding-top: 18px; }
.order-form h4 { font-family: var(--font-display); font-size: 1rem; margin-bottom: 14px; }

/* Mini reviews on service pages */
.service-reviews { margin-bottom: 48px; }
.service-reviews h2 { font-size: 1.8rem; margin-bottom: 22px; }

/* ── FOOTER ── */
.site-footer { background: var(--ink-900); color: rgba(255,253,247,0.55); padding: 60px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; margin-bottom: 44px; }
.footer-brand-name { font-family: var(--font-display); font-size: 1.4rem; color: var(--cream); margin-bottom: 10px; }
.footer-brand-desc { font-size: 13px; line-height: 1.7; max-width: 280px; }
.footer-social { display: flex; gap: 10px; margin-top: 18px; }
.footer-soc-btn {
  width: 36px; height: 36px; border-radius: 9px;
  background: rgba(232,185,35,0.08); border: 1px solid rgba(232,185,35,0.15);
  display: flex; align-items: center; justify-content: center;
  text-decoration: none; font-size: 15px; transition: all var(--t);
}
.footer-soc-btn:hover { background: var(--gold-600); border-color: var(--gold-600); transform: translateY(-2px); }
.footer-col h4 { font-family: var(--font-display); font-size: 14px; font-weight: 700; color: var(--cream); margin-bottom: 14px; }
.footer-col a { display: block; font-size: 13px; color: rgba(255,253,247,0.5); text-decoration: none; margin-bottom: 9px; transition: color var(--t); }
.footer-col a:hover { color: var(--gold-300); }
.footer-bottom { border-top: 1px solid rgba(232,185,35,0.1); padding-top: 22px; display: flex; align-items: center; justify-content: space-between; font-size: 12px; }

/* ── WHATSAPP FLOAT ── */
.wa-float {
  position: fixed; bottom: 26px; right: 26px;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25d366; color: white;
  display: flex; align-items: center; justify-content: center;
  text-decoration: none; font-size: 26px;
  box-shadow: 0 6px 24px rgba(37,211,102,0.45);
  z-index: 700; animation: wa-pop 0.5s 0.8s backwards;
  transition: transform var(--t), box-shadow var(--t);
}
.wa-float:hover { transform: scale(1.1); box-shadow: 0 10px 32px rgba(37,211,102,0.55); }
@keyframes wa-pop { from{transform:scale(0);opacity:0} to{transform:scale(1);opacity:1} }
.wa-float::before {
  content: ''; position: absolute; inset: -5px;
  border-radius: 50%; border: 2px solid rgba(37,211,102,0.3);
  animation: wa-ring 2s 1.5s infinite;
}
@keyframes wa-ring { 0%{transform:scale(1);opacity:0.8} 100%{transform:scale(1.5);opacity:0} }

/* ── REVEAL ── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── CTA BAND ── */
.cta-band {
  background: linear-gradient(135deg, var(--ink-900) 0%, var(--ink-800) 100%);
  padding: 80px 0; text-align: center; position: relative; overflow: hidden;
}
.cta-band::before {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23d4a017' fill-opacity='0.04'%3E%3Cpath d='M40 0L80 40L40 80L0 40z'/%3E%3C/g%3E%3C/svg%3E");
}
.cta-band h2 { color: var(--cream); font-size: clamp(1.8rem,3.5vw,2.6rem); margin-bottom: 14px; position: relative; z-index: 1; }
.cta-band p { color: rgba(255,253,247,0.65); font-size: 1rem; margin-bottom: 36px; max-width: 500px; margin-left: auto; margin-right: auto; position: relative; z-index: 1; }
.cta-band .btn-row { justify-content: center; position: relative; z-index: 1; }

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .about-inner { grid-template-columns: 1fr; gap: 40px; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .service-layout { grid-template-columns: 1fr; }
  .order-sidebar { position: static; }
  .included-list { grid-template-columns: 1fr; }
  .review-form-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  section { padding: 60px 0; }
  .footer-grid { grid-template-columns: 1fr; }
  .about-vals { grid-template-columns: 1fr; }
  .about-stats { grid-template-columns: 1fr 1fr; }
  .hero-stats { flex-direction: column; border: none; }
  .hero-stat { border: 1px solid var(--ink-200); border-radius: var(--radius-sm); margin-bottom: 8px; }
  .header-brand-sub { display: none; }
  .reviews-grid { grid-template-columns: 1fr; }
}

/* ── Lazy load image fade-in ── */
img[data-src] { opacity: 0; transition: opacity 0.4s ease; }
img[data-src].loaded { opacity: 1; }
img[loading="lazy"] { opacity: 0; transition: opacity 0.4s ease; }
img[loading="lazy"].loaded { opacity: 1; }
