/* ============================================
   Dr. Yasar Verdiyev - Homepage Styles
   Rengler: #B8960C (qizil) | #1a1a1a (tund) | #fff (ag)
   ============================================ */

/* ---- Variables & Reset ---- */
:root {
  --gold:         #B8960C;
  --gold-hover:   #d4ad1c;
  --gold-light:   rgba(184,150,12,.12);
  --dark:         #1a1a1a;
  --dark-mid:     #2d2d2d;
  --gray:         #666;
  --gray-light:   #f8f8f8;
  --white:        #ffffff;
  --font-h:       'Playfair Display', serif;
  --font-b:       'Inter', sans-serif;
  --shadow:       0 4px 24px rgba(0,0,0,.08);
  --radius:       12px;
  --transition:   .25s ease;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-b);
  color: var(--dark);
  line-height: 1.65;
  background: var(--white);
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a   { color: inherit; text-decoration: none; }

/* ---- Utility ---- */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-tag {
  display: inline-block;
  color: var(--gold);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.section-title {
  font-family: var(--font-h);
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.2;
  color: var(--dark);
  margin-bottom: 16px;
}

.section-lead {
  color: var(--gray);
  max-width: 560px;
  font-size: 16px;
  line-height: 1.7;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  font-family: var(--font-b);
  text-decoration: none;
  line-height: 1;
}

.btn-gold {
  background: var(--gold);
  color: var(--white);
}

.btn-gold:hover {
  background: var(--gold-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(184,150,12,.35);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,.35);
}

.btn-outline-white:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* Fade-in animation */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .65s ease, transform .65s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===========================
   NAVBAR
   =========================== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(20,20,20,.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(184,150,12,.18);
  height: 68px;
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.navbar-brand { display: flex; flex-direction: column; line-height: 1; }
.brand-name   { color: var(--white); font-family: var(--font-h); font-size: 17px; font-weight: 600; }
.brand-title  { color: var(--gold); font-size: 10px; letter-spacing: 1.5px; text-transform: uppercase; margin-top: 3px; }

.navbar-links {
  display: flex;
  list-style: none;
  gap: 32px;
}

.navbar-links a {
  color: rgba(255,255,255,.75);
  font-size: 14px;
  font-weight: 500;
  transition: color var(--transition);
}

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

.btn-nav {
  background: var(--gold);
  color: var(--white);
  padding: 10px 22px;
  border-radius: 5px;
  font-size: 13px;
  font-weight: 600;
  transition: background var(--transition);
}

.btn-nav:hover { background: var(--gold-hover); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all .3s;
}

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

.mobile-menu {
  display: none;
  position: fixed;
  top: 68px; left: 0; right: 0;
  background: var(--dark);
  padding: 16px 24px 24px;
  border-bottom: 1px solid rgba(184,150,12,.2);
  z-index: 999;
}

.mobile-menu.open { display: block; }

.mobile-menu ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 16px;
}

.mobile-menu a {
  display: block;
  padding: 10px 0;
  color: rgba(255,255,255,.8);
  font-size: 15px;
  border-bottom: 1px solid rgba(255,255,255,.05);
}

.mobile-menu .btn-nav { display: inline-block; width: auto; }

/* ===========================
   HERO
   =========================== */
.hero {
  min-height: 100vh;
  background:
    linear-gradient(140deg, #0a0a0a 0%, #1a1a1a 45%, #1e1608 100%);
  display: flex;
  align-items: center;
  padding: 142px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -100px; right: -150px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(184,150,12,.1) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -100px; left: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(184,150,12,.05) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 680px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
}

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

.hero-eyebrow::before, .hero-eyebrow::after {
  content: '';
  width: 32px; height: 1px;
  background: var(--gold);
}

.hero-title {
  font-family: var(--font-h);
  font-size: clamp(38px, 5.5vw, 68px);
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 22px;
  font-style: italic;
}

.hero-title em {
  color: var(--gold);
  font-style: normal;
}

.hero-desc {
  color: rgba(255,255,255,.65);
  font-size: 17px;
  line-height: 1.75;
  margin-bottom: 38px;
  max-width: 520px;
}

.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: 36px; left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.35);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
}

.hero-scroll-line {
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, rgba(184,150,12,.7), transparent);
  animation: scrollPulse 2s infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: .3; transform: scaleY(1); }
  50%       { opacity: 1;  transform: scaleY(1.1); }
}

/* ===========================
   ABOUT
   =========================== */
.about {
  padding: 100px 0;
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 70px;
  align-items: center;
}

.about-photo-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.about-photo {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: linear-gradient(145deg, #2a2a2a, #1a1a1a);
  border: 3px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(184,150,12,.3);
  font-size: 90px;
  flex-shrink: 0;
  box-shadow: 0 8px 40px rgba(184,150,12,.15);
}

.about-photo-caption {
  font-size: 13px;
  color: var(--gray);
  text-align: center;
}

.about-text .section-title { margin-bottom: 20px; }

.about-desc {
  color: var(--gray);
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 30px;
}

.about-desc p + p { margin-top: 12px; }

.about-stats {
  display: flex;
  gap: 36px;
  padding-top: 30px;
  border-top: 1px solid #eee;
}

.stat-item { text-align: center; }

.stat-num {
  font-family: var(--font-h);
  font-size: 38px;
  color: var(--gold);
  font-weight: 700;
  line-height: 1;
}

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

/* ===========================
   SERVICES
   =========================== */
.services {
  padding: 100px 0;
  background: var(--gray-light);
}

.services-head {
  text-align: center;
  margin-bottom: 56px;
}

.services-head .section-lead {
  margin: 0 auto;
  text-align: center;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 24px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow);
  border-bottom: 3px solid transparent;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  border-bottom-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,.12);
}

.service-icon {
  width: 52px; height: 52px;
  background: var(--gold-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 18px;
}

.service-card h3 {
  font-family: var(--font-h);
  font-size: 19px;
  margin-bottom: 10px;
  color: var(--dark);
}

.service-card p {
  color: var(--gray);
  font-size: 14px;
  line-height: 1.65;
  flex: 1;
}

.service-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid #f0f0f0;
}

.service-price {
  font-weight: 700;
  color: var(--gold);
  font-size: 15px;
}

.service-link {
  color: var(--gold);
  font-size: 13px;
  font-weight: 500;
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition);
}

.service-link:hover { border-bottom-color: var(--gold); }

/* ===========================
   WHY US
   =========================== */
.why-us {
  padding: 100px 0;
  background: var(--dark);
}

.why-us-head {
  text-align: center;
  margin-bottom: 56px;
}

.why-us-head .section-title { color: var(--white); }
.why-us-head .section-lead  { color: rgba(255,255,255,.5); margin: 0 auto; text-align: center; }

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
}

.why-card {
  text-align: center;
  padding: 36px 24px;
  border: 1px solid rgba(255,255,255,.06);
  border-radius: var(--radius);
  transition: all var(--transition);
  background: rgba(255,255,255,.02);
}

.why-card:hover {
  border-color: rgba(184,150,12,.4);
  background: rgba(184,150,12,.04);
  transform: translateY(-3px);
}

.why-icon {
  font-size: 38px;
  margin-bottom: 16px;
  display: block;
}

.why-card h3 {
  color: var(--white);
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
}

.why-card p {
  color: rgba(255,255,255,.45);
  font-size: 13px;
  line-height: 1.65;
}

/* ===========================
   APPOINTMENT FORM
   =========================== */
.appointment {
  padding: 100px 0;
  background: var(--white);
}

.appointment-wrap {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 70px;
  align-items: start;
}

.appt-info h2   { margin-bottom: 16px; }
.appt-info .section-lead { margin-bottom: 30px; }

.appt-contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  color: var(--gray);
  font-size: 14px;
}

.appt-contact-icon {
  width: 36px; height: 36px;
  background: var(--gold-light);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

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

.appt-form .form-group { margin-bottom: 16px; }

.appt-form label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: #444;
  margin-bottom: 6px;
}

.appt-form input,
.appt-form select,
.appt-form textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid #e0e0e0;
  border-radius: 7px;
  font-size: 14px;
  font-family: var(--font-b);
  color: var(--dark);
  transition: border-color var(--transition), box-shadow var(--transition);
  background: var(--white);
}

.appt-form input:focus,
.appt-form select:focus,
.appt-form textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(184,150,12,.1);
}

.appt-form textarea { resize: vertical; min-height: 110px; }

.btn-submit {
  width: 100%;
  padding: 14px;
  background: var(--gold);
  color: var(--white);
  border: none;
  border-radius: 7px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  margin-top: 6px;
  transition: background var(--transition), box-shadow var(--transition);
  font-family: var(--font-b);
}

.btn-submit:hover {
  background: var(--gold-hover);
  box-shadow: 0 6px 20px rgba(184,150,12,.35);
}

.alert-success {
  background: #f0fdf4;
  color: #166534;
  border: 1px solid #bbf7d0;
  padding: 14px 18px;
  border-radius: 8px;
  margin-bottom: 22px;
  font-size: 14px;
}

.alert-error-form {
  background: #fef2f2;
  color: #dc2626;
  border: 1px solid #fca5a5;
  padding: 14px 18px;
  border-radius: 8px;
  margin-bottom: 22px;
  font-size: 14px;
}

/* ===========================
   FOOTER
   =========================== */
.footer {
  background: #111;
  padding: 70px 0 30px;
  color: rgba(255,255,255,.5);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand .brand-name  { font-size: 19px; margin-bottom: 6px; }
.footer-brand .brand-title { font-size: 11px; }

.footer-tagline {
  margin-top: 16px;
  font-size: 13px;
  line-height: 1.7;
  max-width: 280px;
}

.footer h4 {
  color: var(--white);
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-links ul { list-style: none; }

.footer-links li { margin-bottom: 9px; }

.footer-links a {
  color: rgba(255,255,255,.45);
  font-size: 13px;
  transition: color var(--transition);
}

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

.footer-contact li {
  font-size: 13px;
  line-height: 1.7;
  margin-bottom: 8px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.footer-contact li span:first-child { color: var(--gold); flex-shrink: 0; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.06);
  padding-top: 24px;
  text-align: center;
  font-size: 12px;
}

.footer-bottom a {
  color: var(--gold);
  transition: opacity var(--transition);
}

/* Social icons - footer */
.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  color: #ccc;
  transition: background var(--transition), color var(--transition), transform var(--transition);
}

.footer-social a:hover {
  background: var(--gold);
  color: #fff;
  transform: translateY(-3px);
}

/* Social links - contact/appointment section */
.appt-social {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.12);
}

.appt-social a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,.75);
  text-decoration: none;
  font-size: 14px;
  transition: color var(--transition);
}

.appt-social a:hover {
  color: var(--gold);
}

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-photo-wrap { flex-direction: row; gap: 30px; }
  .appointment-wrap { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  .navbar-links, .btn-nav { display: none; }
  .hamburger { display: flex; }

  .hero-title { font-size: clamp(30px, 8vw, 48px); }
  .hero-desc  { font-size: 15px; }

  .about-photo { width: 220px; height: 220px; font-size: 65px; }
  .about-photo-wrap { flex-direction: column; }
  .about-stats { flex-wrap: wrap; justify-content: center; gap: 24px; }

  .appt-form .form-row { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
}

/* ===========================
   SERVICES BAR (ikinci şerit)
   =========================== */
.services-bar {
  position: fixed;
  top: 68px;
  left: 0; right: 0;
  z-index: 999;
  background: rgba(10,10,10,.98);
  border-bottom: 1px solid rgba(184,150,12,.25);
  height: 42px;
}

.services-bar .container {
  display: flex;
  align-items: stretch;
  height: 42px;
  overflow-x: auto;
  scrollbar-width: none;
}

.services-bar .container::-webkit-scrollbar { display: none; }

.services-bar a {
  color: rgba(255,255,255,.5);
  font-size: 12px;
  font-weight: 500;
  padding: 0 18px;
  display: flex;
  align-items: center;
  white-space: nowrap;
  border-right: 1px solid rgba(255,255,255,.05);
  border-bottom: 2px solid transparent;
  transition: all var(--transition);
  letter-spacing: .2px;
  flex-shrink: 0;
}

.services-bar a:first-child { border-left: 1px solid rgba(255,255,255,.05); }

.services-bar a:hover {
  color: var(--gold);
  background: rgba(184,150,12,.06);
  border-bottom-color: rgba(184,150,12,.4);
}

.services-bar a.sb-active {
  color: var(--gold);
  background: rgba(184,150,12,.07);
  border-bottom-color: var(--gold);
}

@media (max-width: 768px) {
  .services-bar { display: none; }
}

/* ===========================
   NAVBAR DROPDOWN
   =========================== */
.navbar-links li.has-dropdown { position: relative; }

.navbar-links .dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%);
  background: #1c1c1c;
  border: 1px solid rgba(184,150,12,.25);
  border-radius: 10px;
  padding: 8px 0;
  min-width: 230px;
  list-style: none;
  z-index: 2000;
  box-shadow: 0 12px 40px rgba(0,0,0,.5);
}

.navbar-links .dropdown::before {
  content: '';
  position: absolute;
  top: -6px; left: 50%;
  transform: translateX(-50%);
  width: 12px; height: 12px;
  background: #1c1c1c;
  border-left: 1px solid rgba(184,150,12,.25);
  border-top: 1px solid rgba(184,150,12,.25);
  transform: translateX(-50%) rotate(45deg);
}

.navbar-links li.has-dropdown:hover .dropdown { display: block; }

.navbar-links .dropdown a {
  display: block;
  padding: 9px 18px;
  font-size: 13px;
  color: rgba(255,255,255,.65);
  transition: all var(--transition);
  border-left: 2px solid transparent;
  white-space: nowrap;
}

.navbar-links .dropdown a:hover,
.navbar-links .dropdown a.active-drop {
  color: var(--gold);
  background: rgba(184,150,12,.06);
  border-left-color: var(--gold);
}

/* ===========================
   SERVICE PAGE — HERO
   =========================== */
.sp-hero {
  padding: 172px 0 90px;
  background: linear-gradient(140deg, #0a0a0a 0%, #1a1a1a 45%, #1e1608 100%);
  position: relative;
  overflow: hidden;
}

.sp-hero::before {
  content: '';
  position: absolute;
  top: -80px; right: -120px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(184,150,12,.1) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}

.sp-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  font-size: 12px;
  color: rgba(255,255,255,.4);
  flex-wrap: wrap;
}

.sp-breadcrumb a { color: rgba(255,255,255,.4); transition: color var(--transition); }
.sp-breadcrumb a:hover { color: var(--gold); }
.sp-breadcrumb .bc-sep { color: rgba(255,255,255,.2); }
.sp-breadcrumb .bc-cur { color: var(--gold); }

.sp-hero-icon {
  font-size: 52px;
  margin-bottom: 20px;
  display: block;
}

.sp-hero-tag {
  display: inline-block;
  color: var(--gold);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 16px;
}

.sp-hero h1 {
  font-family: var(--font-h);
  font-size: clamp(32px, 4.5vw, 56px);
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 20px;
}

.sp-hero h1 em { color: var(--gold); font-style: normal; }

.sp-hero-desc {
  color: rgba(255,255,255,.65);
  font-size: 17px;
  line-height: 1.75;
  max-width: 600px;
  margin-bottom: 36px;
}

.sp-hero-stats {
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
  padding-top: 36px;
  border-top: 1px solid rgba(255,255,255,.08);
}

.sp-stat-item { text-align: left; }
.sp-stat-num {
  font-family: var(--font-h);
  font-size: 32px;
  color: var(--gold);
  font-weight: 700;
  line-height: 1;
}
.sp-stat-label {
  font-size: 12px;
  color: rgba(255,255,255,.45);
  margin-top: 5px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ===========================
   SERVICE PAGE — SECTIONS
   =========================== */
.sp-section { padding: 84px 0; }
.sp-section.bg-light { background: var(--gray-light); }
.sp-section.bg-dark  { background: var(--dark); }
.sp-section.bg-white { background: var(--white); }

.sp-section-head { margin-bottom: 48px; }
.sp-section-head.center { text-align: center; }
.sp-section-head.center .section-lead { margin: 0 auto; text-align: center; }

/* Two-column layout */
.sp-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.sp-body-text {
  color: var(--gray);
  font-size: 15px;
  line-height: 1.85;
}

.sp-body-text p + p { margin-top: 14px; }

.sp-body-text h3 {
  font-family: var(--font-h);
  font-size: 20px;
  color: var(--dark);
  margin: 24px 0 10px;
}

.sp-body-text ul {
  margin: 12px 0 12px 20px;
  color: var(--gray);
  font-size: 15px;
  line-height: 1.8;
}

.sp-body-text ul li + li { margin-top: 6px; }

/* Info box */
.sp-info-box {
  background: linear-gradient(135deg, rgba(184,150,12,.08), rgba(184,150,12,.03));
  border: 1px solid rgba(184,150,12,.2);
  border-radius: var(--radius);
  padding: 28px;
}

.sp-info-box h3 {
  font-family: var(--font-h);
  font-size: 20px;
  color: var(--dark);
  margin-bottom: 16px;
}

.sp-check-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sp-check-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: #444;
  line-height: 1.6;
}

.sp-check-list li::before {
  content: '✓';
  color: var(--gold);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ===========================
   PROCESS STEPS
   =========================== */
.process-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.process-item {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  padding: 28px 0;
  border-bottom: 1px solid #f0f0f0;
}

.process-item:last-child { border-bottom: none; }

.process-num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--white);
  font-weight: 700;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-family: var(--font-h);
  box-shadow: 0 4px 14px rgba(184,150,12,.3);
}

.process-content h3 {
  font-size: 17px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 7px;
}

.process-content p {
  color: var(--gray);
  font-size: 14px;
  line-height: 1.7;
}

/* ===========================
   FEATURES / BENEFITS GRID
   =========================== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px;
}

.feature-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--radius);
  padding: 30px 24px;
  transition: all var(--transition);
}

.feature-card:hover {
  border-color: rgba(184,150,12,.35);
  background: rgba(184,150,12,.04);
  transform: translateY(-3px);
}

.feature-icon {
  font-size: 32px;
  margin-bottom: 14px;
  display: block;
}

.feature-card h3 {
  color: var(--white);
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
}

.feature-card p {
  color: rgba(255,255,255,.45);
  font-size: 13px;
  line-height: 1.65;
}

/* ===========================
   FAQ
   =========================== */
.faq-list {
  display: flex;
  flex-direction: column;
  max-width: 820px;
  margin: 0 auto;
}

.faq-item { border-bottom: 1px solid #eee; }

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 0;
  text-align: left;
  font-family: var(--font-b);
  font-size: 16px;
  font-weight: 600;
  color: var(--dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  line-height: 1.4;
}

.faq-icon {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--gold-light);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 400;
  transition: transform var(--transition);
  line-height: 1;
}

.faq-item.open .faq-icon { transform: rotate(45deg); }

.faq-answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height .4s ease;
}

.faq-item.open .faq-answer { max-height: 600px; }

.faq-answer p {
  color: var(--gray);
  font-size: 15px;
  line-height: 1.8;
  padding-bottom: 22px;
}

/* ===========================
   CTA SECTION
   =========================== */
.sp-cta {
  background: linear-gradient(140deg, #0a0a0a 0%, #1a1a1a 50%, #1e1608 100%);
  padding: 90px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.sp-cta::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 600px; height: 300px;
  background: radial-gradient(ellipse, rgba(184,150,12,.12) 0%, transparent 70%);
  pointer-events: none;
}

.sp-cta h2 {
  font-family: var(--font-h);
  font-size: clamp(26px, 3.5vw, 40px);
  color: var(--white);
  margin-bottom: 16px;
  position: relative;
}

.sp-cta p {
  color: rgba(255,255,255,.55);
  font-size: 16px;
  max-width: 520px;
  margin: 0 auto 36px;
  line-height: 1.7;
  position: relative;
}

/* ===========================
   RELATED SERVICES
   =========================== */
.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
  gap: 16px;
}

.related-card {
  display: block;
  background: var(--white);
  border: 1px solid #eee;
  border-radius: var(--radius);
  padding: 24px 18px;
  text-align: center;
  transition: all var(--transition);
  text-decoration: none;
}

.related-card:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.related-card .rc-icon { font-size: 30px; margin-bottom: 10px; display: block; }
.related-card h4 { font-size: 13px; font-weight: 600; color: var(--dark); }

/* ===========================
   RESPONSIVE — SERVICE PAGES
   =========================== */
@media (max-width: 900px) {
  .sp-two-col { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  .sp-hero { padding: 110px 0 70px; }
  .sp-hero-stats { gap: 24px; }
  .features-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 500px) {
  .hero-buttons { flex-direction: column; align-items: flex-start; }
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; }
}
