/* ANAHTAR TESLİM CAFE - ULTRA LUXURY CSS */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;0,900;1,400;1,700&family=Inter:wght@300;400;500;600;700&family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&display=swap');

:root {
  /* Gold palette - warmer, richer */
  --gold: #c9a455;
  --gold-light: #e8c96a;
  --gold-dark: #9a7230;
  --gold-pale: rgba(201, 164, 85, 0.12);
  /* Light premium backgrounds */
  --paper: #fbf7ef;
  --paper-2: #f6efe3;
  --surface: #ffffff;
  --surface-2: #fffaf2;
  /* Ink */
  --black: #14110d;
  /* Legacy dark tokens kept but repointed to light surfaces */
  --dark: var(--paper-2);
  --dark-2: var(--paper);
  --dark-3: var(--surface-2);
  --dark-4: var(--surface);
  /* Accent colors for vibrancy */
  --burgundy: #6b1f2a;
  --burgundy-light: #8b2d3a;
  --burgundy-glow: rgba(107, 31, 42, 0.3);
  --copper: #b87333;
  --copper-light: #d4924a;
  --cream: #f0ead8;
  --warm-white: #f5f0e8;
  /* Text & Basic Colors */
  --gray: #6f6457;
  --gray-light: #2f2a24;
  --white: #ffffff;
  --true-black: #000000;
  /* Borders */
  --border: rgba(20, 17, 13, 0.12);
  --border-bright: rgba(201, 164, 85, 0.55);
  --border-warm: rgba(20, 17, 13, 0.06);
  /* Glass */
  --glass: rgba(255, 255, 255, 0.65);
  --glass-hover: rgba(255, 255, 255, 0.8);
  --glass-warm: rgba(201, 164, 85, 0.06);
  /* Shadows */
  --shadow-gold: 0 0 60px rgba(201, 164, 85, 0.2);
  --shadow-deep: 0 30px 80px rgba(20, 17, 13, 0.12);
  --shadow-warm: 0 20px 60px rgba(20, 17, 13, 0.14);
  --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0
}

html {
  scroll-behavior: smooth
}

body {
  font-family: 'Inter', sans-serif;
  background: radial-gradient(ellipse at 20% 10%, rgba(201, 164, 85, 0.10) 0%, transparent 55%), radial-gradient(ellipse at 90% 60%, rgba(107, 31, 42, 0.08) 0%, transparent 55%), linear-gradient(180deg, var(--paper) 0%, var(--paper-2) 100%);
  color: var(--black);
  overflow-x: hidden;
  line-height: 1.7
}

::-webkit-scrollbar {
  width: 5px
}

::-webkit-scrollbar-track {
  background: var(--paper-2)
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--gold), var(--copper))
}

.container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 24px
}

.section {
  padding: 60px 0
}

.section-sm {
  padding: 60px 0
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Playfair Display', serif;
  line-height: 1.2
}

.text-gold {
  color: var(--gold)
}

.text-gray {
  color: var(--gray)
}

.text-gray-light {
  color: var(--gray-light)
}

.section-label {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px
}

.section-label::before {
  content: '';
  width: 30px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), var(--copper))
}

.gold-line {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--copper), transparent);
  margin: 20px 0
}

.gold-line-center {
  width: 80px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), var(--copper), transparent);
  margin: 20px auto
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 40%, var(--gold-light) 70%, var(--copper) 100%);
  background-size: 200% 100%;
  color: var(--black);
  box-shadow: 0 4px 20px rgba(201, 164, 85, 0.25)
}

.btn-primary:hover {
  background-position: 100% 0;
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(201, 164, 85, 0.4)
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1px solid var(--border-bright);
  backdrop-filter: blur(4px)
}

.btn-outline:hover {
  background: linear-gradient(135deg, var(--gold), var(--copper));
  color: var(--black);
  border-color: transparent;
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(201, 164, 85, 0.3)
}

/* NAVBAR */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: var(--transition);
  background: rgba(250, 247, 239, 0.97);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(201, 164, 85, 0.15);
  box-shadow: 0 2px 24px rgba(20, 17, 13, 0.07)
}

#navbar.scrolled {
  background: rgba(250, 247, 239, 0.98);
  box-shadow: 0 8px 32px rgba(20, 17, 13, 0.12)
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  gap: 0
}

/* ── LOGO ────────────────────────────────────────────── */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
  margin-right: 16px
}

.nav-logo-icon {
  width: 42px;
  height: 42px;
  border: 1px solid var(--gold);
  background: linear-gradient(135deg, rgba(201, 164, 85, 0.10), rgba(184, 115, 51, 0.06));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 17px;
  position: relative;
  flex-shrink: 0;
}

.nav-logo-icon::after {
  content: '';
  position: absolute;
  inset: 3px;
  border: 1px solid rgba(201, 164, 85, 0.25);
  pointer-events: none;
}

.nav-logo-text {
  display: flex;
  flex-direction: column;
  gap: 3px
}

.nav-logo-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--black);
  line-height: 1;
  letter-spacing: 0.2px;
  white-space: nowrap;
}

.nav-logo-text span {
  font-family: 'Inter', sans-serif;
  font-size: 8px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  white-space: nowrap;
}

/* ── NAV MENU ────────────────────────────────────── */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 0;
  list-style: none;
  flex: 1;
  justify-content: flex-start
}

.nav-menu>li>a,
.nav-menu>li>button.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 8px 11px;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: rgba(20, 17, 13, 0.70);
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.25s ease;
  position: relative;
  border: none;
  background: none;
  cursor: pointer;
}

.nav-menu>li>a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 11px;
  right: 11px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.25s ease;
}

.nav-menu>li>a:hover,
.nav-menu>li>a.active {
  color: var(--gold);
}

.nav-menu>li>a:hover::after,
.nav-menu>li>a.active::after {
  transform: scaleX(1);
}

.nav-item {
  position: relative
}

/* ── DROPDOWN ──────────────────────────────────── */
.nav-dropdown {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  min-width: 240px;
  background: rgba(255, 255, 255, 0.97);
  border: 1px solid var(--border);
  border-top: 2px solid var(--gold);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  opacity: 0;
  visibility: hidden;
  transition: all 0.25s ease;
  z-index: 500;
  box-shadow: 0 20px 50px rgba(20, 17, 13, 0.14);
  border-radius: 0 0 8px 8px;
}

.nav-item:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  letter-spacing: 1px;
  color: rgba(20, 17, 13, 0.75) !important;
  text-decoration: none;
  border-bottom: 1px solid var(--border);
  transition: all 0.2s ease;
  white-space: nowrap;
}

.nav-dropdown a:last-child {
  border-bottom: none
}

.nav-dropdown a::after {
  display: none !important
}

.nav-dropdown a:hover {
  color: var(--gold) !important;
  background: linear-gradient(90deg, rgba(201, 164, 85, 0.07), transparent);
  padding-left: 24px;
}

.nav-dropdown a i {
  color: var(--gold);
  width: 14px;
  font-size: 11px;
  flex-shrink: 0
}

/* ── Chevron & CTA ──────────────────────────────────────── */
.nav-chevron {
  font-size: 7px !important;
  opacity: 0.55;
  transition: transform 0.25s ease;
  flex-shrink: 0
}

.nav-item:hover .nav-chevron {
  transform: rotate(180deg)
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  margin-left: 12px
}

.nav-cta-btn {
  font-size: 10px !important;
  letter-spacing: 1.5px;
  padding: 11px 18px !important;
  white-space: nowrap;
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  padding: 12px;
  background: none;
  border: none;
  min-width: 48px;
  min-height: 48px;
  touch-action: manipulation
}

.hamburger span {
  width: 22px;
  height: 2px;
  background: var(--black);
  display: block;
  transition: var(--transition);
  border-radius: 1px
}

/* ── Navbar responsive breakpoint ──────────────────────── */
@media (max-width:1280px) {
  .nav-menu>li>a {
    padding: 8px 8px;
    font-size: 10.5px;
    letter-spacing: 0.9px
  }
}

@media (max-width:1100px) {
  .nav-menu>li>a {
    padding: 7px 6px;
    font-size: 10px;
    letter-spacing: 0.7px
  }

  .nav-logo-text h2 {
    font-size: 14px
  }

  .nav-logo-text span {
    letter-spacing: 2px
  }
}

@media (max-width:980px) {
  .nav-menu {
    display: none
  }

  .hamburger {
    display: flex
  }

  .nav-cta-btn {
    display: none
  }
}

/* Mobile menu — defined in header.php <style> block (mm-* classes) */

/* HERO */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 15% 60%, rgba(201, 164, 85, 0.16) 0%, transparent 55%), radial-gradient(ellipse at 85% 15%, rgba(107, 31, 42, 0.10) 0%, transparent 50%), radial-gradient(ellipse at 50% 90%, rgba(184, 115, 51, 0.10) 0%, transparent 50%), linear-gradient(160deg, var(--paper) 0%, var(--paper-2) 50%, var(--surface-2) 100%)
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(201, 164, 85, 0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(201, 164, 85, 0.05) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%)
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 620px
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px
}

.hero-eyebrow-line {
  width: 40px;
  height: 1px;
  background: var(--gold)
}

.hero-eyebrow span {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold)
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(48px, 7vw, 96px);
  font-weight: 700;
  line-height: 1.05;
  color: var(--black);
  margin-bottom: 28px;
  text-shadow: 0 14px 40px rgba(20, 17, 13, 0.10)
}

.hero-title em {
  font-style: italic;
  background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--copper));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text
}

.hero-subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(18px, 2.5vw, 26px);
  font-weight: 300;
  color: rgba(20, 17, 13, 0.75);
  margin-bottom: 48px;
  max-width: 600px;
  line-height: 1.6
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap
}

.hero-stats {
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 28px;
  z-index: 10;
}

.hero-stat-item {
  display: flex;
  flex-direction: column
}

.hero-stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 52px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1
}

.hero-stat-label {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray);
  margin-top: 6px
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
  animation: scrollBounce 2s infinite
}

.hero-scroll span {
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gray)
}

.hero-scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(180deg, var(--gold), transparent)
}

@keyframes scrollBounce {

  0%,
  100% {
    transform: translateX(-50%) translateY(0)
  }

  50% {
    transform: translateX(-50%) translateY(8px)
  }
}

/* HERO SLIDER */
.hero-slider {
  align-items: stretch;
  height: 100vh;
  min-height: 600px
}

.hero-swiper {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden
}

.hero-swiper .swiper-wrapper {
  height: 100%
}

.hero-slide {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  overflow: hidden
}

.hero-slide-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
  padding-top: 76px;
  padding-bottom: 100px;
  box-sizing: border-box;
}

.hero-slide-media {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-color: var(--paper-2);
  filter: saturate(1.02) contrast(1.02);
  transform: scale(1.06);
  transition: transform 1.6s ease;
}

.swiper-slide-active .hero-slide-media {
  transform: scale(1.0)
}

.hero-slide-shade {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 20% 20%, rgba(255, 255, 255, 0.55) 0%, rgba(255, 255, 255, 0.15) 45%, rgba(251, 247, 239, 0.72) 100%), linear-gradient(180deg, rgba(251, 247, 239, 0.10) 0%, rgba(251, 247, 239, 0.65) 60%, rgba(255, 255, 255, 0.92) 100%)
}

.hero-swiper-ui {
  position: absolute;
  left: 50%;
  bottom: 40px;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: min(980px, calc(100% - 48px))
}

.hero-swiper-progress {
  flex: 1;
  height: 2px;
  background: rgba(20, 17, 13, 0.14);
  position: relative;
  overflow: hidden
}

.hero-swiper-bar {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--gold), var(--copper));
  transform-origin: left;
  transform: scaleX(0)
}

.hero-swiper-nav {
  display: flex;
  gap: 10px
}

.hero-swiper-btn {
  width: 40px;
  height: 40px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(10px);
  color: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition)
}

.hero-swiper-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px)
}

@media (max-width: 980px) {
  .hero-slide-inner {
    padding-top: 96px;
    padding-bottom: 80px
  }

  .hero-stats {
    position: relative;
    right: auto;
    top: auto;
    transform: none;
    flex-direction: row;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 32px
  }

  .hero-stat-number {
    font-size: 36px
  }

  .hero-swiper-ui {
    bottom: 20px
  }
}

/* SERVICE CARDS */
.service-card {
  position: relative;
  padding: 48px 40px;
  border: 1px solid var(--border);
  background: linear-gradient(145deg, var(--surface), var(--surface-2));
  transition: var(--transition);
  overflow: hidden
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 0;
  background: linear-gradient(180deg, var(--gold-light), var(--gold), var(--copper));
  transition: height 0.5s ease
}

.service-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 20%, rgba(201, 164, 85, 0.06) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s
}

.service-card:hover::before {
  height: 100%
}

.service-card:hover::after {
  opacity: 1
}

.service-card:hover {
  background: linear-gradient(145deg, rgba(201, 164, 85, 0.10), var(--surface));
  border-color: var(--border-bright);
  transform: translateY(-6px);
  box-shadow: 0 18px 55px rgba(20, 17, 13, 0.12), 0 0 40px rgba(201, 164, 85, 0.10)
}

.service-card-number {
  font-family: 'Playfair Display', serif;
  font-size: 64px;
  font-weight: 700;
  color: rgba(201, 169, 98, 0.08);
  line-height: 1;
  position: absolute;
  top: 20px;
  right: 30px;
  transition: color 0.4s
}

.service-card:hover .service-card-number {
  color: rgba(201, 169, 98, 0.15)
}

.service-card-icon {
  width: 56px;
  height: 56px;
  border: 1px solid var(--border-bright);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 22px;
  margin-bottom: 28px;
  transition: var(--transition);
  background: rgba(201, 164, 85, 0.05)
}

.service-card:hover .service-card-icon {
  background: linear-gradient(135deg, var(--gold), var(--copper));
  color: var(--black);
  border-color: transparent;
  box-shadow: 0 8px 24px rgba(201, 164, 85, 0.3)
}

.service-card h3 {
  font-size: 22px;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 16px
}

.service-card p {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 28px
}

.service-card-link {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.3s
}

.service-card:hover .service-card-link {
  gap: 16px
}

/* PROJECT CARDS */
.project-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4/3;
  background: var(--paper-2)
}

.project-card-placeholder,
.project-card-img {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s ease;
  font-size: 48px;
  color: var(--gold);
  background-repeat: no-repeat;
}

.project-card:hover .project-card-placeholder,
.project-card:hover .project-card-img {
  transform: scale(1.1)
}

.project-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 20%, rgba(20, 17, 13, 0.45) 60%, rgba(20, 17, 13, 0.82) 100%);
  opacity: 0;
  transition: opacity 0.4s;
  display: flex;
  align-items: flex-end;
  padding: 32px
}

.project-card:hover .project-card-overlay {
  opacity: 1
}

.project-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid transparent;
  transition: border-color 0.4s
}

.project-card:hover::after {
  border-color: var(--border-bright)
}

.project-card-info h3 {
  font-size: 22px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 8px
}

.project-card-info p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 16px
}

.project-card-tag {
  display: inline-block;
  padding: 4px 12px;
  border: 1px solid var(--gold);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold)
}

/* TESTIMONIALS */
.testimonial-card {
  padding: 48px;
  border: 1px solid var(--border);
  background: linear-gradient(145deg, var(--surface), var(--surface-2));
  position: relative;
  transition: var(--transition)
}

.testimonial-card:hover {
  border-color: var(--border-bright);
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(20, 17, 13, 0.12)
}

.testimonial-card::before {
  content: '"';
  font-family: 'Playfair Display', serif;
  font-size: 140px;
  background: linear-gradient(135deg, rgba(201, 164, 85, 0.15), rgba(184, 115, 51, 0.08));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: absolute;
  top: -20px;
  left: 24px;
  line-height: 1
}

.testimonial-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 24px
}

.testimonial-stars i {
  color: var(--gold);
  font-size: 14px
}

.testimonial-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 300;
  color: rgba(20, 17, 13, 0.78);
  line-height: 1.7;
  margin-bottom: 32px;
  font-style: italic
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px
}

.testimonial-avatar {
  width: 52px;
  height: 52px;
  border: 1px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 20px;
  flex-shrink: 0
}

.testimonial-name {
  font-size: 15px;
  font-weight: 600;
  color: var(--black)
}

.testimonial-role {
  font-size: 12px;
  color: var(--gold);
  margin-top: 2px
}

/* STATS */
.stat-item {
  text-align: center;
  padding: 48px 20px;
  position: relative;
  transition: var(--transition)
}

.stat-item:hover {
  background: var(--glass-warm)
}

.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 64px;
  font-weight: 700;
  background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--copper));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  display: block
}

.stat-label {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gray);
  margin-top: 12px;
  display: block
}

/* PAGE HERO */
.page-hero {
  padding: 140px 0 60px;
  position: relative;
  overflow: hidden
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 20% 60%, rgba(201, 164, 85, 0.14) 0%, transparent 55%), radial-gradient(ellipse at 80% 20%, rgba(107, 31, 42, 0.08) 0%, transparent 50%), linear-gradient(160deg, var(--paper) 0%, var(--paper-2) 60%, var(--surface-2) 100%)
}

.page-hero-grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(201, 164, 85, 0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(201, 164, 85, 0.04) 1px, transparent 1px);
  background-size: 60px 60px
}

.page-hero h1 {
  font-size: clamp(40px, 6vw, 80px);
  font-weight: 700;
  color: var(--black);
  margin-bottom: 20px;
  position: relative;
  z-index: 1
}

.page-hero p {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(18px, 2vw, 24px);
  color: rgba(20, 17, 13, 0.76);
  max-width: 600px;
  position: relative;
  z-index: 1
}

/* BREADCRUMB */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 32px;
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  position: relative;
  z-index: 1
}

.breadcrumb a {
  color: var(--gray);
  text-decoration: none;
  transition: color 0.3s
}

.breadcrumb a:hover {
  color: var(--gold)
}

.breadcrumb span {
  color: var(--gold)
}

.breadcrumb i {
  color: var(--gold);
  font-size: 10px;
  opacity: 0.8;
}

/* DETAIL CONTENT */
.detail-content h2 {
  font-size: 32px;
  color: var(--black);
  margin: 48px 0 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border)
}

.detail-content h2:first-child {
  margin-top: 0
}

.detail-content h3 {
  font-size: 22px;
  background: linear-gradient(135deg, var(--gold-light), var(--copper));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 32px 0 12px
}

.detail-content p {
  color: rgba(20, 17, 13, 0.78);
  line-height: 1.95;
  margin-bottom: 20px;
  font-size: 15px
}

.detail-content ul {
  list-style: none;
  margin-bottom: 24px
}

.detail-content ul li {
  padding: 12px 0;
  border-bottom: 1px solid var(--border-warm);
  color: var(--gray-light);
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 15px
}

.detail-content ul li::before {
  content: '◆';
  background: linear-gradient(135deg, var(--gold), var(--copper));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 9px;
  margin-top: 5px;
  flex-shrink: 0
}

/* FEATURE BOX */
.feature-box {
  padding: 32px;
  border: 1px solid var(--border);
  background: linear-gradient(145deg, var(--surface), var(--surface-2));
  transition: var(--transition);
  position: relative;
  overflow: hidden
}

.feature-box::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), var(--copper), transparent);
  transform: scaleX(0);
  transition: transform 0.4s
}

.feature-box:hover::before {
  transform: scaleX(1)
}

.feature-box:hover {
  border-color: var(--border-bright);
  background: linear-gradient(145deg, rgba(201, 164, 85, 0.10), var(--surface));
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(20, 17, 13, 0.12)
}

.feature-box-icon {
  width: 52px;
  height: 52px;
  border: 1px solid var(--border-bright);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 20px;
  margin-bottom: 20px;
  background: rgba(201, 164, 85, 0.06);
  transition: var(--transition)
}

.feature-box:hover .feature-box-icon {
  background: linear-gradient(135deg, var(--gold), var(--copper));
  color: var(--black);
  border-color: transparent
}

.feature-box h4 {
  font-size: 18px;
  color: var(--black);
  margin-bottom: 10px
}

.feature-box p {
  font-size: 14px;
  color: rgba(20, 17, 13, 0.65);
  line-height: 1.7
}

/* PROCESS */
.process-step {
  display: flex;
  gap: 32px;
  padding: 40px 0;
  border-bottom: 1px solid var(--border);
  transition: var(--transition)
}

.process-step:last-child {
  border-bottom: none
}

.process-step:hover {
  padding-left: 12px
}

.process-step-num {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  flex-shrink: 0;
  width: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.process-step-content h3 {
  font-size: 22px;
  color: var(--black);
  margin-bottom: 12px
}

.process-step-content p {
  font-size: 14px;
  color: rgba(20, 17, 13, 0.70);
  line-height: 1.8
}

/* FORM */
.form-group {
  margin-bottom: 24px
}

.form-label {
  display: block;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 10px
}

.form-control {
  width: 100%;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid var(--border);
  color: var(--black);
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  transition: border-color 0.3s;
  outline: none
}

.form-control:focus {
  border-color: var(--gold)
}

.form-control::placeholder {
  color: var(--gray)
}

select.form-control option {
  background: var(--surface)
}

/* FOOTER */
.footer {
  background: linear-gradient(180deg, var(--paper-2) 0%, var(--paper) 100%);
  border-top: 1px solid var(--border);
  padding: 80px 0 0
}

.footer-desc {
  font-size: 14px;
  color: rgba(20, 17, 13, 0.65);
  line-height: 1.8;
  max-width: 280px;
  margin-bottom: 32px
}

.footer-socials {
  display: flex;
  gap: 12px
}

.footer-social {
  width: 40px;
  height: 40px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray);
  text-decoration: none;
  font-size: 14px;
  transition: var(--transition)
}

.footer-social:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201, 164, 85, 0.08);
  transform: translateY(-2px)
}

.footer-heading {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px
}

.footer-links {
  list-style: none
}

.footer-links li {
  margin-bottom: 12px
}

.footer-links a {
  font-size: 14px;
  color: rgba(20, 17, 13, 0.66);
  text-decoration: none;
  transition: color 0.3s;
  display: flex;
  align-items: center;
  gap: 8px
}

.footer-links a:hover {
  color: var(--gold)
}

.footer-links a::before {
  content: '→';
  color: var(--gold);
  font-size: 12px;
  opacity: 0;
  transition: opacity 0.3s
}

.footer-links a:hover::before {
  opacity: 1
}

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

.footer-contact-item i {
  color: var(--gold);
  margin-top: 3px;
  width: 16px
}

.footer-contact-item span {
  font-size: 14px;
  color: rgba(20, 17, 13, 0.66);
  line-height: 1.6
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 24px 0;
  margin-top: 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px
}

.footer-bottom p {
  font-size: 12px;
  color: var(--gray)
}

.footer-bottom-links {
  display: flex;
  gap: 24px
}

.footer-bottom-links a {
  font-size: 12px;
  color: var(--gray);
  text-decoration: none;
  transition: color 0.3s
}

.footer-bottom-links a:hover {
  color: var(--gold)
}

/* FOOTER — styles defined in footer.php <style> block */

/* WHATSAPP */
.whatsapp-btn {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 56px;
  height: 56px;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 24px;
  text-decoration: none;
  z-index: 999;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
  transition: var(--transition);
  animation: waPulse 3s infinite
}

.whatsapp-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.5)
}

@keyframes waPulse {

  0%,
  100% {
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4)
  }

  50% {
    box-shadow: 0 8px 40px rgba(37, 211, 102, 0.6)
  }
}

/* Mobile menu v2 — defined in header.php <style> block (mm-* classes) */

/* GRID HELPERS */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px
}

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

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

.grid-auto {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px
}

/* DIVIDER */
.divider {
  width: 100%;
  height: 1px;
  background: var(--border);
  margin: 60px 0
}

.divider-gold {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 60px 0
}

/* BADGE */
.badge {
  display: inline-block;
  padding: 4px 14px;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: 1px solid var(--gold);
  color: var(--gold)
}

.badge-filled {
  background: var(--gold);
  color: var(--black)
}

/* ALERT */
.alert {
  padding: 16px 20px;
  border-left: 3px solid;
  margin-bottom: 24px;
  font-size: 14px
}

.alert-success {
  border-color: #4ade80;
  background: rgba(74, 222, 128, 0.05);
  color: #4ade80
}

.alert-error {
  border-color: #f87171;
  background: rgba(248, 113, 113, 0.05);
  color: #f87171
}

/* RESPONSIVE */
@media(max-width:1024px) {
  .grid-4 {
    grid-template-columns: repeat(2, 1fr)
  }

  .hero-stats {
    display: none
  }
}

@media(max-width:768px) {
  .section {
    padding: 80px 0
  }

  .section-sm {
    padding: 60px 0
  }

  .nav-menu,
  .nav-cta .btn-primary {
    display: none
  }

  .hamburger {
    display: flex
  }

  .grid-2,
  .grid-3 {
    grid-template-columns: 1fr
  }

  .grid-4 {
    grid-template-columns: repeat(2, 1fr)
  }

  .page-hero {
    padding: 140px 0 80px
  }

  .process-step {
    flex-direction: column;
    gap: 16px
  }

  .testimonial-card {
    padding: 32px 24px
  }

  .service-card {
    padding: 32px 24px
  }
}

@media(max-width:480px) {
  .grid-4 {
    grid-template-columns: 1fr
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center
  }
}