/* ============================================
   LUNAVE PILATES - Modern Redesign
   Premium Pilates Studio Theme
   ============================================ */

/* --- Design Tokens --- */
:root {
  --bg: #faf9f7;
  --bg-warm: #f5f0eb;
  --bg-cream: #fdf8f3;
  --text: #1a1a1a;
  --text-muted: #6b6b6b;
  --text-light: #999;
  --accent: #c8956c;
  --accent-hover: #b07d58;
  --accent-light: rgba(200, 149, 108, 0.12);
  --dark: #1a1a1a;
  --dark-soft: #2d2d2d;
  --white: #ffffff;
  --border: rgba(0, 0, 0, 0.06);
  --border-dark: rgba(0, 0, 0, 0.10);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.10);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --font: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --footer-bg: #f6f2ec;
  --footer-text: #2b2b2b;
  --footer-link: #3b3b3b;
  --footer-hover: #b08d57;
}

/* --- Reset & Base --- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&display=swap');

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

body.lunave {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; transition: var(--transition); }
.link-accent { color: var(--accent); }
.link-accent:hover { color: var(--accent-hover); }
img { max-width: 100%; }

/* --- Utility Classes --- */
.section-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

.section-heading {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 2.2rem;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 12px;
}

.section-desc {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.6;
  max-width: 560px;
}

/* ============================================
   TOP UTILITY BAR
   ============================================ */
.top-utility {
  background: var(--dark);
  color: #fff;
  font-size: 12px;
  line-height: 1;
  padding: 8px 0;
}
.top-utility .top-icons .top-ic {
  color: rgba(255, 255, 255, 0.7);
  display: inline-flex;
  width: 28px; height: 28px;
  align-items: center; justify-content: center;
  border-radius: 6px;
  transition: var(--transition);
  font-size: 13px;
}
.top-utility .top-icons .top-ic:hover {
  color: var(--accent);
  background: rgba(255, 255, 255, 0.06);
}
.top-utility-text {
  letter-spacing: 1.5px;
  text-transform: uppercase;
  opacity: 0.8;
  font-weight: 500;
  font-size: 11px;
}
.top-close {
  background: transparent;
  border: 0;
  color: rgba(255, 255, 255, 0.5);
  width: 28px; height: 28px;
  display: inline-flex;
  align-items: center; justify-content: center;
  border-radius: 6px;
  cursor: pointer;
  transition: var(--transition);
}
.top-close:hover { color: #fff; }

/* ============================================
   MAIN NAVBAR
   ============================================ */
.lunave-nav {
  border-bottom: 1px solid var(--border);
  padding: 6px 0;
  background: var(--white) !important;
  backdrop-filter: blur(20px);
  position: sticky;
  top: 0;
  z-index: 1030;
}
.navbar .nav-link {
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--text);
  padding: 8px 14px !important;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.navbar .nav-link:hover {
  color: var(--accent);
  background: var(--accent-light);
}
.navbar .dropdown-menu {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  padding: 8px;
  margin-top: 8px;
}
.navbar .dropdown-item {
  border-radius: var(--radius-sm);
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 500;
  transition: var(--transition);
}
.navbar .dropdown-item:hover {
  background: var(--accent-light);
  color: var(--accent-hover);
}
.navbar-brand .brand-text { line-height: 1; }
.brand-main {
  font-weight: 800;
  letter-spacing: 1.5px;
  font-size: 16px;
}
.brand-sub {
  font-size: 9px;
  color: var(--text-muted);
  margin-left: 6px;
  letter-spacing: 3px;
  font-weight: 500;
}
.lunave-logo {
  width: 44px; height: 18px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--accent), var(--dark));
  display: inline-block;
}

/* Nav Action Buttons */
.btn-accent {
  background: var(--accent);
  border: 1px solid var(--accent);
  color: #fff;
  font-weight: 600;
  font-size: 12px;
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: var(--transition);
}
.btn-accent:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(200, 149, 108, 0.3);
}
.btn-icon {
  background: var(--white);
  border: 1px solid var(--border-dark);
  color: var(--text);
  width: 42px; height: 38px;
  display: inline-flex;
  align-items: center; justify-content: center;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.btn-icon:hover {
  background: var(--accent-light);
  border-color: var(--accent);
  color: var(--accent);
}

/* ============================================
   CATEGORY TICKER
   ============================================ */
.cat-ticker-wrap {
  border-bottom: 1px solid var(--border);
  background: var(--white);
}
.cat-ticker {
  overflow: hidden;
  white-space: nowrap;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 15px;
  padding: 16px 0;
  color: var(--text-muted);
}
.cat-track {
  display: inline-flex;
  gap: 16px;
  align-items: center;
  padding-right: 24px;
  animation: ticker 25s linear infinite;
}
.cat-ticker .dot { opacity: 0.25; color: var(--accent); }
@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============================================
   PROMO CARDS + LEAD FORM
   ============================================ */
.promo-card {
  background: var(--dark);
  border-radius: var(--radius-xl);
  height: 440px;
  overflow: hidden;
  position: relative;
  display: block;
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}
.promo-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.promo-img {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 700;
  opacity: 0.9;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: var(--transition);
}
.promo-card:hover .promo-img { transform: scale(1.03); }
.promo-badge {
  position: absolute;
  top: 20px; left: 20px;
  background: var(--accent);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
}

/* Lead Form Card */
.lead-card {
  background: var(--dark);
  border-radius: var(--radius-xl);
  height: 440px;
  padding: 32px 28px;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.lead-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.3rem;
  letter-spacing: 0.3px;
  line-height: 1.3;
}
.lead-sub { color: var(--accent); font-weight: 700; }
.lead-card .form-control {
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  padding: 11px 14px;
  font-size: 14px;
  transition: var(--transition);
}
.lead-card .form-control::placeholder { color: rgba(255, 255, 255, 0.4); }
.lead-card .form-control:focus {
  border-color: var(--accent);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 3px rgba(200, 149, 108, 0.15);
  color: #fff;
}
.lead-card .form-check-label { color: rgba(255, 255, 255, 0.6); font-size: 12px; }
.lead-card .form-check-input:checked { background-color: var(--accent); border-color: var(--accent); }

/* Slider Dots */
.slider-dot {
  width: 40px; height: 4px;
  background: rgba(0, 0, 0, 0.08);
  border: 0;
  border-radius: 999px;
  transition: var(--transition);
  cursor: pointer;
}
.slider-dot.active { background: var(--accent); width: 56px; }

/* ============================================
   IMAGE / VIDEO PANELS
   ============================================ */
.img-panel {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-warm);
  border: 1px solid var(--border);
  height: 380px;
  position: relative;
}
.img-panel .img-ph {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted); font-weight: 600;
}
.video-panel {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--white);
}
.video-caption {
  font-size: 13px;
  color: var(--text-muted);
  padding: 12px 16px;
  border-top: 1px solid var(--border);
  text-align: center;
  font-style: italic;
}

/* ============================================
   ICON GRID (Why Lunave)
   ============================================ */
.icon-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
@media (max-width: 992px) {
  .icon-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 576px) {
  .icon-grid { grid-template-columns: 1fr; }
}
.icon-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  background: var(--white);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  transition: var(--transition);
}
.icon-item:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}
.icon-item .ic {
  width: 40px; height: 40px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: var(--radius-sm);
  background: var(--accent-light);
  color: var(--accent);
  font-size: 16px;
  flex-shrink: 0;
}

/* ============================================
   SERVICES / MEMBERS SPECIAL SECTION
   ============================================ */
.members-special {
  position: relative;
  padding-bottom: 10px;
  background: var(--dark);
  overflow: hidden;
}
.members-special .overlay {
  position: absolute; inset: 0;
  background:
    radial-gradient(900px 300px at 60% 30%, rgba(200, 149, 108, 0.15), transparent 60%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.6));
}
.members-special .container-fluid {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}
.hs-wrap { position: relative; }
.hs {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 0 48px 24px 48px;
  justify-content: flex-start;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.15) transparent;
}
@media (min-width: 992px) {
  .hs { justify-content: center; }
}
.hs::-webkit-scrollbar { height: 6px; }
.hs::-webkit-scrollbar-thumb { background: rgba(255, 255, 255, 0.12); border-radius: 999px; }
.hs-card {
  min-width: 260px;
  max-width: 260px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #fff;
  transition: var(--transition);
  backdrop-filter: blur(8px);
}
.hs-card:hover {
  background: rgba(255, 255, 255, 0.10);
  border-color: var(--accent);
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}
.hs-thumb {
  height: 200px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, rgba(200, 149, 108, 0.08), rgba(0, 0, 0, 0.3));
  font-weight: 700;
  letter-spacing: 0.5px;
  font-size: 15px;
  text-align: center;
  padding: 0 16px;
  position: relative;
}
.hs-thumb::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 20%;
  right: 20%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0;
  transition: var(--transition);
}
.hs-card:hover .hs-thumb::after { opacity: 1; }
.hs-meta {
  padding: 16px 18px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  opacity: 0.7;
  line-height: 1.5;
}
.hs-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px; height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(10px);
  color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  z-index: 2;
  cursor: pointer;
  transition: var(--transition);
}
.hs-btn:hover { background: var(--accent); border-color: var(--accent); color: #fff; }
.hs-prev { left: 6px; }
.hs-next { right: 6px; }

.hs-btn-label {
  font-size: 18px;
  line-height: 1;
}

/* ============================================
   PACKAGES PREVIEW
   ============================================ */
.packages-preview .pkg-card {
  display: block;
  position: relative;
  height: 260px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  text-decoration: none;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  background: var(--dark);
  transition: var(--transition);
}
.packages-preview .pkg-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.packages-preview .pkg-img {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  filter: saturate(0.9);
  transition: var(--transition);
}
.packages-preview .pkg-card:hover .pkg-img { transform: scale(1.04); }
.packages-preview .pkg-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.05));
}
.packages-preview .pkg-body {
  position: absolute;
  left: 20px; right: 20px; bottom: 20px;
  color: #fff;
}
.packages-preview .pkg-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.2rem;
  margin-bottom: 4px;
}
.packages-preview .pkg-text {
  font-size: 13px;
  opacity: 0.85;
  line-height: 1.4;
}

/* Packages page cards */
.pkg-page-card {
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  background: var(--white);
  transition: var(--transition);
}
.pkg-page-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.pkg-page-img {
  height: 260px;
  background-size: cover;
  background-position: center;
  background-color: var(--bg-warm);
}
.pkg-page-body { padding: 18px 20px 22px; }

/* ============================================
   BIG HERO (inner pages)
   ============================================ */
.big-hero {
  position: relative;
  height: 480px;
  overflow: hidden;
  background: var(--dark);
}
.big-hero-bg {
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.25)),
    radial-gradient(900px 300px at 70% 40%, rgba(200, 149, 108, 0.12), transparent 60%);
  filter: saturate(1.05);
}
.big-hero-content {
  padding-top: 160px;
  padding-bottom: 40px;
}
.big-hero-kicker {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 2.4rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.big-hero-title {
  font-size: 1.1rem;
  font-weight: 400;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.6;
}

/* Stats bar */
.stats-bar {
  position: absolute;
  left: 50%; transform: translateX(-50%);
  bottom: 40px;
  display: flex;
  gap: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.stat {
  padding: 16px 24px;
  min-width: 130px;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}
.stat:last-child { border-right: 0; }
.stat .n { font-weight: 800; font-size: 15px; color: #fff; }
.stat .t { font-size: 11px; color: rgba(255, 255, 255, 0.6); margin-top: 2px; }

/* ============================================
   WHATSAPP FLOAT
   ============================================ */
.wa-float {
  position: fixed;
  left: 20px; bottom: 20px;
  width: 56px; height: 56px;
  border-radius: 999px;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center; justify-content: center;
  font-size: 26px;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
  z-index: 999;
  transition: var(--transition);
}
.wa-float:active { transform: scale(0.95); }
.wa-float:hover { color: #fff; transform: translateY(-3px); box-shadow: 0 12px 32px rgba(37, 211, 102, 0.4); }

/* ============================================
   FOOTER CTA BANNER
   ============================================ */
.footer-cta {
  position: relative;
  background:
    linear-gradient(135deg, rgba(26, 26, 26, 0.85), rgba(26, 26, 26, 0.6)),
    url('/assets/img/footer_bg.jpg');
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
.footer-cta-overlay {
  position: absolute; inset: 0;
  background: radial-gradient(800px 250px at 70% 40%, rgba(200, 149, 108, 0.18), transparent 60%);
}
.cta-mark {
  width: 140px; height: 80px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--accent), rgba(200, 149, 108, 0.2));
  filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.3));
  position: relative;
}
.cta-mark::before, .cta-mark::after {
  content: "";
  position: absolute;
  inset: 16px 20px;
  border-radius: 14px;
  border: 2px solid rgba(255, 255, 255, 0.2);
}
.cta-mark::after {
  inset: 28px 42px;
  border-color: rgba(255, 255, 255, 0.1);
}

/* ============================================
   FOOTER – PREMIUM DARK REDESIGN
   ============================================ */
.lunave-footer {
  background: #111111;
  color: rgba(255,255,255,0.85);
  padding-top: 0;
  padding-bottom: 0;
  border-top: 0;
}

/* Footer CTA Band */
.footer-cta-band {
  background: linear-gradient(135deg, var(--accent), #a07450);
  padding: 48px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.footer-cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(600px 200px at 30% 50%, rgba(255,255,255,0.1), transparent);
}
.footer-cta-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 2rem;
  color: #fff;
  margin-bottom: 8px;
  position: relative;
}
.footer-cta-subtitle {
  color: rgba(255,255,255,0.8);
  font-size: 1rem;
  margin-bottom: 24px;
  position: relative;
}
.footer-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: var(--text);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: 999px;
  text-decoration: none;
  transition: var(--transition);
  position: relative;
}
.footer-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.2);
  color: var(--accent);
}

.lunave-footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 64px;
  padding-bottom: 0;
}

.footer-brand {
  padding-right: 32px;
}

.footer-logo-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.footer-logo-wrap img {
  height: 36px;
  width: auto;
}

.footer-logo-text {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 1rem;
  color: #fff;
}

.footer-tagline {
  margin-top: 0;
  margin-bottom: 24px;
  color: rgba(255,255,255,0.5);
  font-size: 0.93rem;
  line-height: 1.7;
  max-width: 320px;
}

/* Social icons */
.footer-social {
  display: flex;
  gap: 10px;
  margin-bottom: 24px;
}
.footer-social-link {
  width: 40px; height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.12);
  display: inline-flex;
  align-items: center; justify-content: center;
  color: rgba(255,255,255,0.6);
  font-size: 16px;
  transition: var(--transition);
  text-decoration: none;
}
.footer-social-link:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
  transform: translateY(-2px);
}

/* App Store Badges */
.footer-app-badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.footer-app-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--radius-md);
  padding: 10px 16px;
  color: #fff;
  text-decoration: none;
  transition: var(--transition);
  min-width: 150px;
}
.footer-app-badge:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.2);
  color: #fff;
  transform: translateY(-2px);
}
.footer-app-badge-icon {
  font-size: 24px;
  line-height: 1;
}
.footer-app-badge-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.footer-app-badge-small {
  font-size: 9px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  opacity: 0.7;
}
.footer-app-badge-name {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.3px;
}

.footer-column {
  max-width: 320px;
}

.footer-heading {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}

.footer-nav {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  font-size: 0.93rem;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  padding-bottom: 2px;
  transition: var(--transition);
}

.footer-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 1px;
  width: 0;
  background: var(--accent);
  transition: width 0.25s ease;
}

.footer-link:hover {
  color: #fff;
}

.footer-link:hover::after {
  width: 100%;
}

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  font-size: 0.93rem;
  color: rgba(255,255,255,0.6);
}

.footer-contact-item {
  padding-left: 14px;
  border-left: 2px solid rgba(255,255,255,0.08);
  transition: var(--transition);
}
.footer-contact-item:hover {
  border-left-color: var(--accent);
}

.footer-contact-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent);
  margin-bottom: 4px;
}

.footer-contact-link {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  transition: var(--transition);
}

.footer-contact-link:hover {
  color: #fff;
}

.footer-contact-text {
  line-height: 1.6;
  color: rgba(255,255,255,0.6);
}

.footer-bottom {
  margin-top: 48px;
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom-text {
  margin: 0;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}
.footer-bottom-link {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.35);
  text-decoration: none;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: var(--transition);
}
.footer-bottom-link:hover {
  color: var(--accent);
}

@media (max-width: 768px) {
  .lunave-footer-inner {
    padding-top: 40px;
  }
  .footer-brand {
    padding-right: 0;
    margin-bottom: 10px;
  }
  .footer-cta-title { font-size: 1.5rem; }
  .footer-bottom-inner {
    justify-content: center;
    text-align: center;
    flex-direction: column;
  }
}

/* ============================================
   FAQ ACCORDION
   ============================================ */
.lunave-accordion .accordion-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-md) !important;
  overflow: hidden;
  margin-bottom: 10px;
  background: var(--white);
}
.lunave-accordion .accordion-button {
  font-weight: 600;
  letter-spacing: 0.2px;
  font-size: 14px;
  padding: 18px 20px;
  background: var(--white);
  transition: var(--transition);
}
.lunave-accordion .accordion-button:not(.collapsed) {
  background: var(--bg-cream);
  color: var(--text);
  box-shadow: none;
}
.lunave-accordion .accordion-button:focus {
  box-shadow: 0 0 0 3px rgba(200, 149, 108, 0.15);
}
.lunave-accordion .accordion-body {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.7;
  padding: 16px 20px;
}

/* ============================================
   FORMS
   ============================================ */
.lunave-form .form-control {
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  border: 1px solid var(--border-dark);
  font-size: 14px;
  transition: var(--transition);
  background: var(--white);
}
.lunave-form .form-control:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(200, 149, 108, 0.12);
}

/* ============================================
   BLOG
   ============================================ */
.blog-preview {
  max-width: 980px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.blog-row {
  display: flex;
  gap: 0;
  align-items: stretch;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  text-decoration: none;
  color: var(--text);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.blog-row:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.blog-row__img {
  flex: 0 0 280px;
  min-height: 180px;
  background: var(--bg-warm) center / cover no-repeat;
}
.blog-row__body {
  padding: 24px 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
}
.blog-row__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.15rem;
}
.blog-row__excerpt {
  color: var(--text-muted);
  line-height: 1.5;
  font-size: 14px;
}
.blog-row__more {
  margin-top: 6px;
  color: var(--accent);
  font-weight: 600;
  font-size: 13px;
}

@media (max-width: 768px) {
  .blog-row { flex-direction: column; }
  .blog-row__img { flex: 0 0 auto; width: 100%; min-height: 200px; }
}

.blog-card {
  display: block;
  text-decoration: none;
  color: var(--text);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  height: 100%;
  transition: var(--transition);
}
.blog-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.blog-card__img { height: 200px; background: var(--bg-warm) center / cover no-repeat; }
.blog-card__body { padding: 18px 20px; }
.blog-card__title {
  font-family: var(--font-display);
  font-weight: 600;
  margin-bottom: 8px;
}
.blog-card__excerpt { color: var(--text-muted); line-height: 1.5; font-size: 14px; }
.blog-card__more { margin-top: 12px; color: var(--accent); font-weight: 600; font-size: 13px; }

.blog-hero {
  height: 360px;
  border-radius: var(--radius-xl);
  background: var(--bg-warm) center / cover no-repeat;
}
.blog-content { line-height: 1.8; font-size: 1rem; color: var(--text); }

/* ============================================
   PAGE HERO / BANNER
   ============================================ */
.page-hero {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 280px;
  display: flex;
  align-items: flex-end;
}
.page-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.55));
}
.page-hero .container {
  position: relative;
  z-index: 2;
  padding-top: 80px;
  padding-bottom: 48px;
}
.page-hero-title {
  color: #fff;
  text-transform: uppercase;
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 1px;
  font-size: 2rem;
}
.page-hero-breadcrumb {
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 1px;
  font-weight: 500;
}
@media (max-width: 576px) {
  .page-hero { min-height: 200px; }
  .page-hero .container { padding-top: 64px; padding-bottom: 36px; }
  .page-hero-title { font-size: 1.5rem; }
}

/* ============================================
   PAGE HERO - PREMIUM GRADIENT (no photo)
   ============================================ */
.page-hero-premium {
  position: relative;
  overflow: hidden;
  min-height: 300px;
  display: flex;
  align-items: flex-end;
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2218 35%, #3d2e1e 55%, #1a1a1a 100%);
}

/* Subtle dot pattern overlay */
.page-hero-pattern {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0.04;
  background-image:
    radial-gradient(circle, rgba(200,149,108,1) 1px, transparent 1px);
  background-size: 28px 28px;
}

/* Warm accent glow blobs */
.page-hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}
.page-hero-glow--1 {
  width: 400px; height: 400px;
  background: rgba(200, 149, 108, 0.15);
  top: -120px; right: -60px;
}
.page-hero-glow--2 {
  width: 300px; height: 300px;
  background: rgba(200, 149, 108, 0.08);
  bottom: -80px; left: -40px;
}

/* Decorative rings */
.page-hero-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(200, 149, 108, 0.08);
  z-index: 1;
  pointer-events: none;
}
.page-hero-ring--1 {
  width: 500px; height: 500px;
  top: -200px; right: -100px;
}
.page-hero-ring--2 {
  width: 350px; height: 350px;
  bottom: -150px; left: -80px;
}

/* Content */
.page-hero-premium .container {
  position: relative;
  z-index: 3;
  padding-top: 80px;
  padding-bottom: 52px;
}
.page-hero-premium-breadcrumb {
  color: var(--accent);
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 2px;
  font-weight: 600;
  margin-bottom: 12px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.page-hero-premium-breadcrumb::before {
  content: "";
  display: inline-block;
  width: 24px; height: 2px;
  background: var(--accent);
  border-radius: 2px;
}
.page-hero-premium-title {
  color: #fff;
  text-transform: uppercase;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 2px;
  font-size: 2.4rem;
  line-height: 1.15;
  margin-bottom: 0;
}
.page-hero-premium-subtitle {
  color: rgba(255,255,255,0.5);
  font-size: 15px;
  margin-top: 12px;
  font-weight: 400;
  letter-spacing: 0.3px;
}
.page-hero-premium-line {
  width: 60px; height: 3px;
  background: var(--accent);
  border-radius: 999px;
  margin-top: 24px;
  opacity: 0.7;
}

@media (max-width: 576px) {
  .page-hero-premium { min-height: 220px; }
  .page-hero-premium .container { padding-top: 56px; padding-bottom: 36px; }
  .page-hero-premium-title { font-size: 1.6rem; letter-spacing: 1px; }
  .page-hero-premium-subtitle { font-size: 13px; }
  .page-hero-glow--1 { width: 250px; height: 250px; }
  .page-hero-glow--2 { width: 180px; height: 180px; }
  .page-hero-ring--1 { width: 300px; height: 300px; }
  .page-hero-ring--2 { width: 200px; height: 200px; }
}

/* ============================================
   reCAPTCHA
   ============================================ */
.recaptcha-wrap { transform: scale(0.95); transform-origin: center top; }
@media (max-width: 420px) {
  .recaptcha-wrap { transform: scale(0.88); }
}

/* ============================================
   TEAM SECTION
   ============================================ */
.team-section {
  padding: 80px 0;
  background: var(--bg-warm);
}
.team-section .section-title {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.3px;
  margin: 0;
  font-size: 2rem;
}
.team-section .section-subtitle {
  max-width: 560px;
  margin: 8px auto 0;
  color: var(--text-muted);
  font-size: 15px;
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 18px;
  max-width: 1000px;
  margin: 0 auto;
}
.team-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px;
  border-radius: var(--radius-xl);
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.team-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent);
}
.team-avatar {
  width: 80px; height: 80px;
  flex: 0 0 80px;
  border-radius: 999px;
  object-fit: cover;
  border: 3px solid var(--accent-light);
}
.team-avatar--placeholder {
  background: linear-gradient(135deg, var(--bg-warm), rgba(200, 149, 108, 0.15));
}
.team-name {
  font-weight: 700;
  line-height: 1.2;
  font-size: 16px;
}
.team-role {
  margin-top: 4px;
  color: var(--text-muted);
  font-size: 14px;
}
@media (max-width: 576px) {
  .team-section { padding: 60px 0; }
  .team-card { padding: 20px; }
  .team-avatar { width: 70px; height: 70px; flex-basis: 70px; }
}

/* ============================================
   TEAM SPOTLIGHT (Single Member Premium)
   ============================================ */
.team-spotlight {
  max-width: 900px;
  margin: 0 auto;
}
.team-spotlight-avatar-wrap {
  position: relative;
  display: inline-block;
}
.team-spotlight-avatar-wrap::before {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: var(--radius-xl);
  border: 2px solid var(--accent);
  opacity: 0.2;
}
.team-spotlight-avatar {
  width: 100%;
  max-width: 340px;
  height: 400px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}
.team-spotlight-avatar--placeholder {
  width: 100%;
  max-width: 340px;
  height: 400px;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, var(--bg-warm), rgba(200, 149, 108, 0.15));
}
.team-spotlight-role {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--accent);
  padding: 6px 16px;
  background: var(--accent-light);
  border-radius: 999px;
  margin-top: 4px;
}
.team-spotlight-stats {
  display: flex;
  gap: 24px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
}
.team-spotlight-stat {
  display: flex;
  align-items: center;
  gap: 10px;
}
.team-spotlight-stat-num {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: var(--white);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.team-spotlight-stat-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.3;
}
@media (max-width: 992px) {
  .team-spotlight-avatar {
    max-width: 260px;
    height: 320px;
  }
  .team-spotlight-stats {
    gap: 16px;
  }
}
@media (max-width: 576px) {
  .team-spotlight-avatar {
    max-width: 220px;
    height: 280px;
  }
  .team-spotlight-stats {
    flex-direction: column;
    gap: 12px;
  }
}

/* Team section centering */
#home-team .team-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
#home-team .team-card {
  width: 100%;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}
#home-team .team-avatar {
  width: 84px !important;
  height: 84px !important;
  border-radius: 999px !important;
  object-fit: cover !important;
}
#home-team .team-name, #home-team .team-role { text-align: left; }
@media (max-width: 576px) {
  #home-team .team-card { max-width: 92vw; }
}

/* ============================================
   REFERENCES SECTION
   ============================================ */
#home-references.refs-section { padding: 80px 0; }
#home-references .ref-card {
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
#home-references .ref-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
#home-references .ref-card .card-img-top {
  height: 130px !important;
  object-fit: contain !important;
  padding: 20px !important;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}
#home-references .ref-card .card-body {
  text-align: center;
  padding: 16px 18px 20px;
}

/* ============================================
   CUSTOM BUTTONS / OUTLINES
   ============================================ */
.btn-outline-dark {
  border-color: var(--border-dark);
  color: var(--text);
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.3px;
  padding: 10px 20px;
  transition: var(--transition);
}
.btn-outline-dark:hover {
  background: var(--dark);
  color: #fff;
  border-color: var(--dark);
  transform: translateY(-1px);
}

/* ============================================
   CONTENT HTML (CMS Pages)
   ============================================ */
.content-html {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text);
}
.content-html h1, .content-html h2, .content-html h3,
.content-html h4, .content-html h5, .content-html h6 {
  font-family: var(--font-display);
  font-weight: 600;
  margin-top: 1.5em;
  margin-bottom: 0.5em;
}
.content-html img {
  border-radius: var(--radius-md);
  max-width: 100%;
  height: auto;
}

/* ============================================
   SERVICES PAGE CARDS
   ============================================ */
.card.shadow-sm {
  border-radius: var(--radius-xl) !important;
  border: 1px solid var(--border) !important;
  box-shadow: var(--shadow-sm) !important;
  overflow: hidden;
  transition: var(--transition);
}
.card.shadow-sm:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md) !important;
}
.card.shadow-sm .card-img-top {
  height: 200px;
  object-fit: cover;
}

/* ============================================
   SMOOTH SCROLLING & ANIMATIONS
   ============================================ */
html { scroll-behavior: smooth; }

@media (prefers-reduced-motion: no-preference) {
  .promo-card,
  .pkg-card,
  .blog-row,
  .blog-card,
  .team-card,
  .icon-item,
  .hs-card {
    animation: fadeInUp 0.5s ease both;
  }
}

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

/* ============================================
   RESPONSIVE FINE-TUNING
   ============================================ */
@media (max-width: 768px) {
  .promo-card,
  .lead-card { height: 320px; }
  .lead-card { padding: 24px 20px; }
  .section-heading { font-size: 1.6rem; }
  .big-hero-kicker { font-size: 1.8rem; }
}

@media (max-width: 576px) {
  .promo-card,
  .lead-card { height: 280px; }
  .cat-ticker { font-size: 13px; }
}

/* ============================================
   NAVBAR SCROLL EFFECT
   ============================================ */
.lunave-nav.scrolled {
  box-shadow: var(--shadow-md);
  border-bottom-color: transparent;
}

/* ============================================
   NEW SECTIONS (Redesign v3)
   ============================================ */
/* ============================================
   HERO SECTION - Full Width Premium
   ============================================ */
.hero-fullwidth {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  background: var(--bg);
  overflow: hidden;
}
.hero-content-wrap {
  position: relative;
  z-index: 2;
}
.hero-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
  position: relative;
  padding-left: 40px;
}
.hero-eyebrow::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 28px;
  height: 1px;
  background: var(--accent);
}
.hero-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 3.5rem;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 20px;
  color: var(--text);
}
.hero-subtitle {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 460px;
  margin-bottom: 8px;
}
.hero-meta {
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
.hero-cta-group {
  display: flex;
  gap: 12px;
  margin-top: 32px;
  flex-wrap: wrap;
}
.hero-image-wrap {
  position: relative;
}
.hero-image-main {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.hero-image-main img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}
.hero-float-badge {
  position: absolute;
  bottom: -16px;
  left: -16px;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 18px 24px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 14px;
  z-index: 3;
  border: 1px solid var(--border);
}
.hero-float-icon {
  width: 48px; height: 48px;
  border-radius: var(--radius-md);
  background: var(--accent-light);
  display: flex;
  align-items: center; justify-content: center;
  color: var(--accent);
  font-size: 20px;
}
.hero-float-text {
  font-weight: 700;
  font-size: 15px;
  line-height: 1.3;
}
.hero-float-text span {
  display: block;
  font-weight: 500;
  font-size: 12px;
  color: var(--text-muted);
}
.hero-decoration {
  position: absolute;
  top: -60px;
  right: -40px;
  width: 200px;
  height: 200px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(200,149,108,0.08), transparent);
  z-index: 0;
}

@media (max-width: 992px) {
  .hero-fullwidth { min-height: auto; padding: 60px 0 40px; }
  .hero-title { font-size: 2.4rem; }
  .hero-float-badge { position: relative; bottom: auto; left: auto; margin-top: 16px; }
}
@media (max-width: 576px) {
  .hero-title { font-size: 2rem; }
}

.section-promo { padding: 32px 0; background: var(--white); }
.section-why { padding: 100px 0; background: var(--white); }
.section-module3 { padding: 80px 0; background: var(--white); }
.section-services-dark {
  position: relative;
  padding: 100px 0 60px;
  background: #111111;
  overflow: hidden;
}
.section-services-overlay {
  position: absolute; inset: 0;
  background:
    radial-gradient(1000px 400px at 50% 20%, rgba(200, 149, 108, 0.10), transparent 70%),
    radial-gradient(600px 200px at 80% 80%, rgba(200, 149, 108, 0.06), transparent 60%);
}
.section-packages { padding: 100px 0; background: var(--bg); }
.section-faq { padding: 100px 0; background: var(--white); }
.section-gallery { padding: 100px 0; background: var(--white); }
.section-extras { padding: 60px 0; background: var(--white); }
.section-refs { padding: 80px 0; background: var(--bg); }
.section-team { padding: 80px 0; background: var(--bg-warm); }
.section-blog { padding: 80px 0; }
.section-contact-bottom { padding: 96px 0; background: var(--bg-cream); }
.section-about-content { padding: 60px 0; background: var(--white); }
.section-services-page { padding: 60px 0; background: var(--white); }
.section-contact-page { padding: 60px 0; background: var(--white); }

/* Why Lunave image */
.why-image-wrap {
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--bg-warm);
  border: 1px solid var(--border);
}
.why-image-wrap img {
  width: 100%; height: auto;
  display: block;
  border-radius: var(--radius-xl);
}
.why-image-placeholder {
  height: 380px;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted); font-weight: 600;
}

/* Why features grid */
.why-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
@media (max-width: 768px) {
  .why-features { grid-template-columns: 1fr; }
}
.why-feature-item {
  position: relative;
  padding: 16px 20px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(0, 0, 0, 0.05);
  background: var(--white);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  transition: var(--transition);
  display: flex;
  align-items: center;
}
.why-feature-item:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
  background: var(--bg-cream);
}
.why-feature-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  bottom: 10px;
  width: 3px;
  border-radius: 999px;
  background: var(--accent);
  opacity: 0;
  transition: var(--transition);
}
.why-feature-item:hover::before {
  opacity: 1;
}
.why-feature-text {
  position: relative;
  z-index: 1;
}

/* Module3 media */
.module3-media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
}

/* Lead form */
.lead-card-header { margin-bottom: 16px; }
.lead-form { display: flex; flex-direction: column; gap: 10px; }

/* Service cards (modern) */
.service-card-modern {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  height: 100%;
}
.service-card-modern:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent);
}
.service-card-img { height: 200px; overflow: hidden; }
.service-card-img img { width: 100%; height: 100%; object-fit: cover; }
.service-card-body { padding: 24px; }
.service-card-icon {
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--radius-md);
  background: var(--accent-light);
  color: var(--accent);
  font-size: 20px;
  margin-bottom: 16px;
}
.service-card-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 8px;
}
.service-card-desc { color: var(--text-muted); font-size: 14px; line-height: 1.5; }
.service-card-detail { color: var(--text-muted); font-size: 13px; line-height: 1.6; margin-top: 8px; }

/* Contact page */
.contact-info-box {
  background: var(--dark);
  color: #fff;
  border-radius: var(--radius-xl);
  padding: 40px 32px;
  height: 100%;
}
.contact-info-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.5rem;
  margin-bottom: 8px;
}
.contact-info-desc { color: rgba(255,255,255,0.6); font-size: 14px; margin-bottom: 28px; line-height: 1.6; }
.contact-info-row {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 18px;
  color: rgba(255,255,255,0.85);
  font-size: 14px;
  padding-left: 12px;
  border-left: 1px solid rgba(255,255,255,0.18);
}
.contact-info-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(255,255,255,0.7);
}
.contact-info-value { color: rgba(255,255,255,0.9); }
.contact-info-row a { color: rgba(255,255,255,0.9); }
.contact-info-row a:hover { color: var(--accent); }
.contact-map {
  margin-top: 24px;
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 200px;
  border: 1px solid rgba(255,255,255,0.08);
}

.contact-form-box {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 40px 32px;
  height: 100%;
  box-shadow: var(--shadow-sm);
}
.contact-form-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.5rem;
  margin-bottom: 24px;
}
.contact-form-modern .form-control {
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  border: 1px solid var(--border-dark);
  font-size: 14px;
  transition: var(--transition);
  background: var(--bg);
}
.contact-form-modern .form-control:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(200, 149, 108, 0.12);
  background: var(--white);
}

/* Home bottom contact form (premium) */
.contact-bottom-shell {
  max-width: 800px;
  margin: 0 auto;
  background: #fbf7f1;
  border-radius: 24px;
  padding: 32px 28px 34px;
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.04);
}
.contact-bottom-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 2rem;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.contact-bottom-subtitle {
  color: var(--text-muted);
  font-size: 0.98rem;
  max-width: 520px;
  margin: 0 auto 24px;
}
.contact-bottom-form {
  margin-top: 4px;
}
.contact-bottom-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px 18px;
}
.contact-bottom-field--full {
  grid-column: 1 / -1;
}
.contact-bottom-label {
  display: block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #8a7a64;
  margin-bottom: 6px;
}
.contact-bottom-input {
  width: 100%;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  background: #fdf9f3;
  padding: 12px 16px;
  font-size: 0.95rem;
  transition: var(--transition);
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.03);
}
.contact-bottom-input::placeholder {
  color: #b1a89a;
}
.contact-bottom-input:focus {
  outline: none;
  border-color: var(--footer-hover);
  background: #ffffff;
  box-shadow:
    inset 0 1px 3px rgba(0, 0, 0, 0.03),
    0 0 0 1px rgba(176, 141, 87, 0.32);
}
.contact-bottom-textarea {
  resize: vertical;
  min-height: 120px;
}
.contact-bottom-consent {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-top: 10px;
  font-size: 0.8rem;
  color: var(--text-muted);
}
.contact-bottom-checkbox {
  width: 14px;
  height: 14px;
  margin-top: 3px;
}
.contact-bottom-consent-label a {
  text-decoration: underline;
  text-underline-offset: 2px;
}
.contact-bottom-submit {
  width: 100%;
  border: none;
  border-radius: 999px;
  padding: 13px 20px;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: var(--transition);
}
.contact-bottom-submit:hover {
  background: var(--accent-hover);
  box-shadow: 0 12px 30px rgba(176, 141, 87, 0.35);
  transform: translateY(-1px);
}

@media (max-width: 768px) {
  .section-contact-bottom { padding: 72px 0; }
  .contact-bottom-shell { padding: 26px 20px 28px; }
  .contact-bottom-grid { grid-template-columns: 1fr; }
}

/* About page */
.about-content-box {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 40px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  margin-bottom: 24px;
}
.about-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* Gallery items - Premium Masonry Style */
.gallery-grid-pro {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
@media (max-width: 992px) { .gallery-grid-pro { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 768px) { .gallery-grid-pro { grid-template-columns: repeat(2, 1fr); } }
.gallery-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
  border: 0;
}
.gallery-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.gallery-item:nth-child(1) { grid-row: span 2; }
.gallery-item img {
  width: 100%;
  height: 100%;
  min-height: 200px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.6));
  opacity: 0;
  transition: var(--transition);
  display: flex;
  align-items: flex-end;
  padding: 16px;
}
.gallery-item:hover .gallery-item-overlay { opacity: 1; }
.gallery-item-title {
  padding: 0;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  position: relative;
  z-index: 2;
}

/* Extras boxes */
.extras-box {
  padding: 28px;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  background: var(--white);
}
.extras-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.extras-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.extras-card img { width: 100%; height: 180px; object-fit: cover; display: block; }
.extras-card-body { padding: 14px 16px; font-weight: 600; }

/* Ref card new - Premium Partner Style */
.refs-marquee-wrap {
  overflow: hidden;
  position: relative;
  padding: 20px 0;
}
.refs-marquee-wrap::before,
.refs-marquee-wrap::after {
  content: "";
  position: absolute;
  top: 0; bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}
.refs-marquee-wrap::before { left: 0; background: linear-gradient(90deg, var(--bg), transparent); }
.refs-marquee-wrap::after { right: 0; background: linear-gradient(90deg, transparent, var(--bg)); }

.refs-marquee-track {
  display: flex;
  gap: 48px;
  align-items: center;
  animation: refsScroll 30s linear infinite;
  width: max-content;
}
@keyframes refsScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.ref-card-new {
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: var(--transition);
  min-width: 200px;
  flex-shrink: 0;
}
.ref-card-new:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent);
}
.ref-card-new img {
  height: 100px;
  width: 100%;
  object-fit: contain;
  padding: 24px 28px;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: var(--transition);
}
.ref-card-new:hover img {
  filter: grayscale(0%);
  opacity: 1;
}
.ref-card-title {
  padding: 12px 16px;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  border-top: 1px solid var(--border);
  color: var(--text-muted);
}

/* Blog grid */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.blog-card-img { height: 200px; background: var(--bg-warm) center / cover no-repeat; }
.blog-card-body { padding: 24px; }
.blog-card-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 8px;
}
.blog-card-excerpt { color: var(--text-muted); font-size: 14px; line-height: 1.5; }
.blog-card-more { margin-top: 12px; color: var(--accent); font-weight: 600; font-size: 13px; display: inline-block; }

/* Empty state */
.empty-state {
  text-align: center;
  padding: 60px 20px;
  color: var(--text-muted);
}
.empty-state i { font-size: 48px; display: block; margin-bottom: 16px; opacity: 0.3; }

/* Page hero subtitle */
.page-hero-subtitle {
  color: rgba(255,255,255,0.65);
  font-size: 15px;
  margin-top: 8px;
}

/* Scroll reveal animations */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Pkg card (section version) - Premium Upgrade */
.section-packages .pkg-card {
  display: block;
  position: relative;
  height: 320px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  text-decoration: none;
  border: 0;
  box-shadow: var(--shadow-md);
  background: var(--dark);
  transition: var(--transition);
}
.section-packages .pkg-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.2);
}
.section-packages .pkg-img {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.section-packages .pkg-card:hover .pkg-img { transform: scale(1.06); }
.section-packages .pkg-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.15) 50%, rgba(0,0,0,0.05) 100%);
}
.section-packages .pkg-body {
  position: absolute; left: 24px; right: 24px; bottom: 24px; color: #fff;
}
.section-packages .pkg-title {
  font-family: var(--font-display); font-weight: 600; font-size: 1.3rem; margin-bottom: 6px;
}
.section-packages .pkg-text {
  font-size: 13px; opacity: 0.8; line-height: 1.5;
}
.section-packages .pkg-badge {
  position: absolute;
  top: 20px; right: 20px;
  background: var(--accent);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
}
.section-packages .pkg-arrow {
  position: absolute;
  bottom: 24px; right: 24px;
  width: 40px; height: 40px;
  border-radius: 999px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center; justify-content: center;
  color: #fff;
  font-size: 16px;
  opacity: 0;
  transform: translateX(-10px);
  transition: var(--transition);
}
.section-packages .pkg-card:hover .pkg-arrow {
  opacity: 1;
  transform: translateX(0);
}

/* ============================================
   INNER PAGES - PREMIUM REDESIGN
   ============================================ */

/* --- About Page Premium --- */
.section-about-premium {
  padding: 80px 0;
  background: var(--white);
}
.about-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .about-intro-grid { grid-template-columns: 1fr; gap: 32px; }
}
.about-intro-visual {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--bg-warm);
}
.about-intro-visual img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.about-intro-visual-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  color: var(--accent);
  font-size: 64px;
}
.about-intro-content {}
.about-intro-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
  position: relative;
  padding-left: 28px;
}
.about-intro-tag::before {
  content: "";
  position: absolute;
  left: 0; top: 50%;
  width: 20px; height: 2px;
  background: var(--accent);
  transform: translateY(-50%);
}
.about-intro-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 2.4rem;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}
.about-intro-text {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 24px;
}
.about-intro-text p { margin-bottom: 16px; }
.about-stats-row {
  display: flex;
  gap: 32px;
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}
.about-stat {
  text-align: center;
}
.about-stat-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 2rem;
  color: var(--accent);
  line-height: 1;
}
.about-stat-label {
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
}
.about-content-premium {
  background: var(--bg-cream);
  border-radius: var(--radius-xl);
  padding: 48px;
  border: 1px solid var(--border);
  line-height: 1.8;
  font-size: 15px;
  color: var(--text);
}
.about-content-premium h1,
.about-content-premium h2,
.about-content-premium h3 {
  font-family: var(--font-display);
  font-weight: 600;
  margin-top: 24px;
  margin-bottom: 12px;
}
.about-content-premium p { margin-bottom: 16px; }
.about-actions-premium {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 40px;
  justify-content: center;
}
.about-actions-premium .btn { padding: 14px 36px; border-radius: 999px; font-weight: 600; letter-spacing: 0.5px; text-transform: uppercase; font-size: 13px; }

/* --- Services Page Premium --- */
.section-services-premium {
  padding: 80px 0;
  background: var(--bg);
}
.services-page-header {
  text-align: center;
  margin-bottom: 48px;
}
.services-page-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
@media (max-width: 992px) { .services-page-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 576px) { .services-page-grid { grid-template-columns: 1fr; } }
.svc-page-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.svc-page-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent);
}
.svc-page-card-img {
  height: 220px;
  overflow: hidden;
  position: relative;
}
.svc-page-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.svc-page-card:hover .svc-page-card-img img { transform: scale(1.06); }
.svc-page-card-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,0.3));
}
.svc-page-card-body {
  padding: 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.svc-page-card-icon {
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--radius-md);
  background: var(--accent-light);
  color: var(--accent);
  font-size: 22px;
  margin-bottom: 16px;
}
.svc-page-card-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.2rem;
  margin-bottom: 10px;
}
.svc-page-card-desc {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.6;
  flex: 1;
}
.svc-page-card-detail {
  color: var(--text-muted);
  font-size: 13px;
  line-height: 1.6;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--border);
}
.services-cta-band {
  margin-top: 56px;
  text-align: center;
  padding: 48px 32px;
  background: var(--dark);
  border-radius: var(--radius-xl);
  color: #fff;
}
.services-cta-band h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.6rem;
  margin-bottom: 8px;
}
.services-cta-band p {
  color: rgba(255,255,255,0.6);
  font-size: 14px;
  margin-bottom: 20px;
}

/* --- Packages Page Premium --- */
.section-packages-page {
  padding: 80px 0;
  background: var(--bg);
}
.packages-page-intro {
  text-align: center;
  margin-bottom: 48px;
}
.pkg-page-premium {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
@media (max-width: 992px) { .pkg-page-premium { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 576px) { .pkg-page-premium { grid-template-columns: 1fr; } }
.pkg-premium-card {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--dark);
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  min-height: 380px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.pkg-premium-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.2);
}
.pkg-premium-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.pkg-premium-card:hover .pkg-premium-img { transform: scale(1.06); }
.pkg-premium-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.2) 50%, rgba(0,0,0,0.05) 100%);
}
.pkg-premium-body {
  position: relative;
  z-index: 2;
  padding: 32px;
  color: #fff;
}
.pkg-premium-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.4rem;
  margin-bottom: 8px;
}
.pkg-premium-text {
  font-size: 13px;
  opacity: 0.8;
  line-height: 1.6;
  margin-bottom: 8px;
}
.pkg-premium-desc {
  font-size: 13px;
  opacity: 0.65;
  line-height: 1.6;
}
.pkg-premium-badge {
  position: absolute;
  top: 20px; right: 20px; z-index: 3;
  background: var(--accent);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
}

/* --- Ozel Ders Page Premium --- */
.section-ozelders-premium {
  padding: 80px 0;
  background: var(--bg);
}
.ozelders-header {
  text-align: center;
  margin-bottom: 56px;
}
.ozelders-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 900px;
  margin: 0 auto;
}
@media (max-width: 768px) { .ozelders-grid { grid-template-columns: 1fr; } }
.ozelders-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 40px 32px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.ozelders-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--accent);
  transform: scaleX(0);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: left;
}
.ozelders-card:hover::before { transform: scaleX(1); }
.ozelders-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent);
}
.ozelders-card-icon {
  width: 56px; height: 56px;
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--radius-md);
  background: var(--accent-light);
  color: var(--accent);
  font-size: 24px;
  margin-bottom: 20px;
}
.ozelders-card-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.3rem;
  margin-bottom: 12px;
}
.ozelders-card-desc {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 20px;
}
.ozelders-card-features {
  list-style: none;
  padding: 0;
  margin: 0;
}
.ozelders-card-features li {
  position: relative;
  padding: 8px 0 8px 24px;
  font-size: 14px;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
}
.ozelders-card-features li:last-child { border-bottom: 0; }
.ozelders-card-features li::before {
  content: "\F26A";
  font-family: "bootstrap-icons";
  position: absolute;
  left: 0; top: 8px;
  color: var(--accent);
  font-size: 14px;
}
.ozelders-cta-band {
  margin-top: 56px;
  padding: 48px 32px;
  background: var(--white);
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  text-align: center;
  box-shadow: var(--shadow-sm);
}
.ozelders-cta-band h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.5rem;
  margin-bottom: 8px;
}
.ozelders-cta-band p {
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 20px;
}

/* --- Contact Page Premium --- */
.section-contact-premium {
  padding: 80px 0;
  background: var(--bg);
}
.contact-premium-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 32px;
}
@media (max-width: 992px) { .contact-premium-grid { grid-template-columns: 1fr; } }
.contact-info-premium {
  background: var(--dark);
  color: #fff;
  border-radius: var(--radius-xl);
  padding: 48px 36px;
  display: flex;
  flex-direction: column;
}
.contact-info-premium-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.6rem;
  margin-bottom: 8px;
}
.contact-info-premium-desc {
  color: rgba(255,255,255,0.5);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 32px;
}
.contact-info-premium-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 24px;
}
.contact-info-premium-icon {
  width: 42px; height: 42px;
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--radius-sm);
  background: rgba(200, 149, 108, 0.15);
  color: var(--accent);
  font-size: 18px;
}
.contact-info-premium-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 4px;
}
.contact-info-premium-value {
  font-size: 15px;
  color: rgba(255,255,255,0.9);
}
.contact-info-premium-value a { color: rgba(255,255,255,0.9); }
.contact-info-premium-value a:hover { color: var(--accent); }
.contact-map-premium {
  margin-top: auto;
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 200px;
  border: 1px solid rgba(255,255,255,0.08);
}
.contact-form-premium {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 48px 36px;
  box-shadow: var(--shadow-sm);
}
.contact-form-premium-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.6rem;
  margin-bottom: 8px;
}
.contact-form-premium-desc {
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 28px;
}
.contact-form-premium .form-control {
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  border: 1px solid var(--border-dark);
  font-size: 14px;
  transition: var(--transition);
  background: var(--bg);
}
.contact-form-premium .form-control:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(200, 149, 108, 0.12);
  background: var(--white);
}

/* --- Blog Page Premium --- */
.section-blog-page {
  padding: 80px 0;
  background: var(--bg);
}
.blog-page-header {
  text-align: center;
  margin-bottom: 48px;
}
.blog-page-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
@media (max-width: 768px) { .blog-page-grid { grid-template-columns: 1fr; } }
.blog-page-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  text-decoration: none;
  color: inherit;
}
.blog-page-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent);
}
.blog-page-card-img {
  height: 240px;
  overflow: hidden;
  position: relative;
}
.blog-page-card-img img,
.blog-page-card-img-bg {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.blog-page-card-img-bg {
  background-size: cover;
  background-position: center;
}
.blog-page-card:hover .blog-page-card-img img,
.blog-page-card:hover .blog-page-card-img-bg { transform: scale(1.06); }
.blog-page-card-body {
  padding: 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.blog-page-card-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.2rem;
  margin-bottom: 10px;
  line-height: 1.3;
}
.blog-page-card-excerpt {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.6;
  flex: 1;
}
.blog-page-card-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--accent);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-top: 16px;
  transition: var(--transition);
}
.blog-page-card:hover .blog-page-card-more { gap: 10px; }

/* --- Blog Detail Premium --- */
.section-blog-detail {
  padding: 60px 0;
  background: var(--white);
}
.blog-detail-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--accent);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 28px;
  transition: var(--transition);
}
.blog-detail-back:hover { gap: 10px; color: var(--accent-hover); }
.blog-detail-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 2.2rem;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}
.blog-detail-excerpt {
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 32px;
}
.blog-detail-hero {
  border-radius: var(--radius-xl);
  overflow: hidden;
  height: 400px;
  background-size: cover;
  background-position: center;
  margin-bottom: 36px;
  border: 1px solid var(--border);
}
@media (max-width: 768px) { .blog-detail-hero { height: 240px; } }
.blog-detail-content {
  font-size: 16px;
  line-height: 1.9;
  color: var(--text);
}
.blog-detail-content p { margin-bottom: 18px; }

/* --- Gallery Page Premium --- */
.section-gallery-page {
  padding: 80px 0;
  background: var(--bg);
}
.gallery-page-header {
  text-align: center;
  margin-bottom: 48px;
}
.gallery-page-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
@media (max-width: 992px) { .gallery-page-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 768px) { .gallery-page-grid { grid-template-columns: repeat(2, 1fr); } }
.gallery-page-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.gallery-page-item:nth-child(1),
.gallery-page-item:nth-child(5) { grid-row: span 2; }
.gallery-page-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.gallery-page-item img {
  width: 100%; height: 100%;
  min-height: 200px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.gallery-page-item:hover img { transform: scale(1.05); }
.gallery-page-item-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.6));
  opacity: 0;
  transition: var(--transition);
  display: flex;
  align-items: flex-end;
  padding: 16px;
}
.gallery-page-item:hover .gallery-page-item-overlay { opacity: 1; }
.gallery-page-item-title {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
}

/* --- Team Page Premium --- */
.section-team-page {
  padding: 80px 0;
  background: var(--bg);
}
.team-page-header {
  text-align: center;
  margin-bottom: 48px;
}
.team-page-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
@media (max-width: 992px) { .team-page-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 576px) { .team-page-grid { grid-template-columns: 1fr; } }
.team-page-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  text-align: center;
}
.team-page-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent);
}
.team-page-card-photo {
  height: 280px;
  overflow: hidden;
  position: relative;
}
.team-page-card-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.team-page-card:hover .team-page-card-photo img { transform: scale(1.06); }
.team-page-card-photo-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  background: var(--bg-warm);
  color: var(--text-light);
  font-size: 56px;
}
.team-page-card-body {
  padding: 28px;
}
.team-page-card-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.2rem;
  margin-bottom: 4px;
}
.team-page-card-role {
  color: var(--accent);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.team-page-card-bio {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 16px;
}
.team-page-card-socials {
  display: flex;
  gap: 8px;
  justify-content: center;
}
.team-page-card-social {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 999px;
  background: var(--bg);
  color: var(--text-muted);
  font-size: 16px;
  transition: var(--transition);
  border: 1px solid var(--border);
}
.team-page-card-social:hover {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

/* Single team spotlight for inner page */
.team-page-spotlight {
  max-width: 800px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 48px;
  align-items: center;
}
@media (max-width: 768px) {
  .team-page-spotlight { grid-template-columns: 1fr; text-align: center; }
}
.team-page-spotlight-photo {
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 3/4;
  box-shadow: var(--shadow-md);
}
.team-page-spotlight-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.team-page-spotlight-info {}
.team-page-spotlight-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 2rem;
  margin-bottom: 8px;
}
.team-page-spotlight-role {
  display: inline-block;
  background: var(--accent-light);
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 999px;
  margin-bottom: 20px;
}
.team-page-spotlight-bio {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 24px;
}
.team-page-spotlight-socials {
  display: flex;
  gap: 10px;
}
@media (max-width: 768px) {
  .team-page-spotlight-socials { justify-content: center; }
}
