/* ================================================
   Mobile Massage GR — Premium Spa Stylesheet
   ================================================ */

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

/* 1. CSS Variables */
:root {
  --primary:       #2C4A3E;
  --primary-dark:  #1A2F27;
  --primary-light: #3D6B5A;
  --accent:        #C4956A;
  --accent-dark:   #A87B52;
  --accent-light:  #D4AB84;
  --cream:         #FAF7F2;
  --cream-dark:    #F0EBE3;
  --text:          #2D3436;
  --text-muted:    #636E72;
  --text-light:    #B2BEC3;
  --white:         #ffffff;
  --border:        #E8E2D9;
  --shadow:        0 2px 20px rgba(44,74,62,0.06);
  --shadow-md:     0 4px 24px rgba(44,74,62,0.1);
  --shadow-lg:     0 12px 48px rgba(44,74,62,0.12);
  --radius:        6px;
  --radius-lg:     12px;
  --max-width:     1200px;
  --header-height: 80px;
  --font-display:  'Cormorant Garamond', Georgia, serif;
  --font-body:     'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* 2. Reset & Base */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--primary); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--accent); text-decoration: none; }
ul { list-style: none; }

/* 3. Typography */
h1, h2, h3, h4 { font-family: var(--font-display); }
h1 { font-size: clamp(2.2rem, 5vw, 3.4rem); font-weight: 600; line-height: 1.15; color: var(--white); letter-spacing: -0.01em; }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.6rem); font-weight: 600; line-height: 1.2; color: var(--primary); }
h3 { font-size: clamp(1.15rem, 2vw, 1.4rem); font-weight: 600; line-height: 1.35; color: var(--primary); }
h4 { font-size: 1rem; font-weight: 600; color: var(--primary); }
p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* 4. Layout */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 2rem; }
.section { padding: 6rem 0; }
.section-sm { padding: 3.5rem 0; }
.section-dark { background: var(--primary-dark); }
.section-dark h2, .section-dark h3, .section-dark p { color: var(--white); }
.section-cream { background: var(--cream); }
.section-gray { background: var(--cream); }
.text-center { text-align: center; }
.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-header h2 { margin-bottom: 0.75rem; }
.section-header p { font-size: 1.1rem; color: var(--text-muted); max-width: 600px; margin: 0 auto; line-height: 1.8; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }

/* Decorative divider */
.section-header h2::after {
  content: '';
  display: block;
  width: 50px;
  height: 2px;
  background: var(--accent);
  margin: 1rem auto 0;
}
.section-header.text-left h2::after { margin-left: 0; }

/* 5. Header & Nav */
.site-header {
  background: var(--primary-dark);
  position: sticky;
  top: 0;
  z-index: 1000;
  height: var(--header-height);
  box-shadow: 0 1px 0 rgba(255,255,255,0.05);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
}
.logo a {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  line-height: 1.2;
}
.logo-main {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.01em;
}
.logo-accent {
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 500;
  color: var(--accent-light);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.main-nav > ul { display: flex; align-items: center; gap: 0.25rem; }
.main-nav > ul > li { position: relative; }
.main-nav > ul > li > a {
  display: block;
  padding: 0.5rem 0.9rem;
  color: rgba(255,255,255,0.75);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  border-radius: var(--radius);
  transition: all 0.25s;
  white-space: nowrap;
}
.main-nav > ul > li > a:hover {
  color: var(--white);
  background: rgba(255,255,255,0.08);
}
.main-nav .has-dropdown > a::after {
  content: '';
  display: inline-block;
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid currentColor;
  margin-left: 5px;
  vertical-align: middle;
  opacity: 0.5;
}
.main-nav .dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all 0.2s ease;
  border: 1px solid var(--border);
  overflow: hidden;
}
.main-nav .has-dropdown:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.main-nav .dropdown li a {
  display: block;
  padding: 0.7rem 1.25rem;
  color: var(--text);
  font-size: 0.875rem;
  border-bottom: 1px solid rgba(0,0,0,0.04);
  transition: all 0.15s;
}
.main-nav .dropdown li:last-child a { border-bottom: none; }
.main-nav .dropdown li a:hover {
  background: var(--cream);
  color: var(--primary);
  padding-left: 1.5rem;
}
.nav-cta > a {
  background: var(--accent) !important;
  color: var(--white) !important;
  font-weight: 600 !important;
  padding: 0.5rem 1.2rem !important;
  border-radius: var(--radius) !important;
  margin-left: 0.5rem;
  letter-spacing: 0.02em;
}
.nav-cta > a:hover {
  background: var(--accent-dark) !important;
  transform: translateY(-1px);
}
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  flex-direction: column;
  gap: 5px;
}
.mobile-menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s;
  border-radius: 1px;
}

/* 6. Hero */
.hero {
  background: var(--primary-dark);
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,47,39,0.92) 0%, rgba(44,74,62,0.85) 50%, rgba(61,107,90,0.8) 100%);
  z-index: 1;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.hero .container { position: relative; z-index: 2; }
.hero-content { max-width: 700px; }
.hero h1 { margin-bottom: 1.5rem; }
.hero p, .hero-subtext {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 2.25rem;
  max-width: 580px;
  line-height: 1.8;
}
.hero-badge {
  display: inline-block;
  background: rgba(196,149,106,0.15);
  color: var(--accent-light);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  padding: 0.4rem 1.1rem;
  border-radius: 100px;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(196,149,106,0.3);
}
.hero-cta, .hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}
.hero-trust {
  margin-top: 3rem;
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
}
.hero-trust-item, .trust-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: rgba(255,255,255,0.6);
  font-size: 0.85rem;
  letter-spacing: 0.01em;
}
.hero-trust-item::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
}
.trust-item .trust-icon { color: var(--accent-light); font-size: 0.85rem; }

/* Inner-page hero */
.page-hero {
  background: var(--primary-dark);
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(196,149,106,0.08) 0%, transparent 70%);
  border-radius: 50%;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 {
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  margin-bottom: 0.5rem;
}
.page-hero p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.65);
  margin-top: 0.75rem;
  max-width: 600px;
  line-height: 1.75;
}
.breadcrumb { margin-bottom: 1rem; }
.breadcrumb a, .breadcrumb span {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.02em;
}
.breadcrumb a:hover { color: var(--accent-light); }
.breadcrumb .sep { margin: 0 0.5rem; }

/* 7. Buttons */
.btn {
  display: inline-block;
  padding: 0.85rem 2rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.9rem;
  font-family: var(--font-body);
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: all 0.3s ease;
  white-space: nowrap;
  line-height: 1;
  letter-spacing: 0.03em;
}
.btn-primary {
  background: var(--accent);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(196,149,106,0.35);
}
.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.3);
}
.btn-secondary:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.6);
}
.btn-dark {
  background: var(--primary);
  color: var(--white);
}
.btn-dark:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 1.5px solid var(--primary);
}
.btn-outline:hover {
  background: var(--primary);
  color: var(--white);
}
.btn-lg {
  padding: 1rem 2.5rem;
  font-size: 0.95rem;
}
.btn-block { width: 100%; text-align: center; padding: 1rem; }

/* 8. Cards */
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: all 0.3s ease;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.card h3 { margin-bottom: 0.75rem; }
.card h3 a { color: var(--primary); transition: color 0.2s; }
.card h3 a:hover { color: var(--accent); }
.card p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.7; }

/* Service cards with images */
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: all 0.35s ease;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.service-card .card-img {
  height: 200px;
  overflow: hidden;
}
.service-card .card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.service-card:hover .card-img img {
  transform: scale(1.05);
}
.service-card .card-body {
  padding: 1.75rem;
}
.service-card h3 { margin-bottom: 0.6rem; font-size: 1.2rem; }
.service-card h3 a { color: var(--primary); }
.service-card h3 a:hover { color: var(--accent); }
.service-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 0;
}

/* Card icon (SVG-based, not emoji) */
.card-icon {
  width: 48px;
  height: 48px;
  background: var(--cream);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}
.card-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--accent);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* 9. Stats Bar */
.stats-bar {
  background: var(--primary);
  padding: 2.5rem 0;
  position: relative;
}
.stats-bar::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255,255,255,0.02) 0%, rgba(255,255,255,0.06) 50%, rgba(255,255,255,0.02) 100%);
}
.stats-bar .container { position: relative; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}
.stat-number, .stat-value {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 600;
  color: var(--accent-light);
  line-height: 1;
}
.stat-label {
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(255,255,255,0.55);
  margin-top: 0.4rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* 10. Split Content */
.content-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.content-block h2 { margin-bottom: 1.25rem; }
.content-block h2::after {
  content: '';
  display: block;
  width: 40px;
  height: 2px;
  background: var(--accent);
  margin-top: 1rem;
}
.content-block p { color: var(--text-muted); margin-bottom: 1rem; line-height: 1.8; }
.feature-list { margin-top: 1.75rem; }
.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.65rem 0;
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.6;
}
.feature-list li::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 0.45rem;
}
.content-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.content-image img {
  width: 100%;
  height: 380px;
  object-fit: cover;
}

/* Why Choose wrapper (used on homepage) */
.why-choose { padding: 6rem 0; background: var(--cream); }
.why-choose-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.why-choose-content h2 { margin-bottom: 1.25rem; }
.why-choose-content h2::after {
  content: '';
  display: block;
  width: 40px;
  height: 2px;
  background: var(--accent);
  margin-top: 1rem;
}
.why-choose-content p { color: var(--text-muted); line-height: 1.8; }
.why-choose-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.why-choose-image img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

/* 11. CTA Banner */
.cta-banner {
  background: var(--primary-dark);
  padding: 5.5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(196,149,106,0.06) 0%, transparent 60%);
  border-radius: 50%;
}
.cta-banner .container { position: relative; }
.cta-banner h2 {
  color: var(--white);
  margin-bottom: 1rem;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
}
.cta-banner p {
  color: rgba(255,255,255,0.6);
  font-size: 1.05rem;
  max-width: 520px;
  margin: 0 auto 2.5rem;
  line-height: 1.8;
}
.cta-banner .btn-primary { background: var(--accent); color: var(--white); }
.banner-ctas { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* 12. Contact / Forms */
.contact-section, .contact-form-section {
  background: var(--cream);
  padding: 6rem 0;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  align-items: start;
}
.contact-info h2 { margin-bottom: 1rem; }
.contact-info h2::after {
  content: '';
  display: block;
  width: 40px;
  height: 2px;
  background: var(--accent);
  margin-top: 0.75rem;
}
.contact-info > p { color: var(--text-muted); line-height: 1.8; }
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-top: 1.75rem;
}
.contact-detail-icon {
  width: 44px;
  height: 44px;
  background: var(--primary);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-detail-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--white);
  fill: none;
  stroke-width: 1.5;
}
.contact-detail-text strong {
  display: block;
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 500;
}
.contact-detail-text span {
  font-size: 0.95rem;
  color: var(--text);
  font-weight: 600;
}
.contact-detail-text span a { color: var(--text); }
.contact-detail-text span a:hover { color: var(--accent); }

.form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}
.form-card h3 {
  margin-bottom: 0.25rem;
  color: var(--primary);
  font-size: 1.4rem;
}
.form-card > p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 1.75rem;
}
.form-wrapper {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}
.form-wrapper h2 { margin-bottom: 0.5rem; }
.form-wrapper > p { color: var(--text-muted); margin-bottom: 2rem; }
.contact-form { text-align: left; }
.form-group { margin-bottom: 1.25rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.4rem;
  letter-spacing: 0.02em;
}
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="date"],
textarea,
select {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  transition: border-color 0.25s, box-shadow 0.25s;
  -webkit-appearance: none;
  appearance: none;
}
input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: var(--primary-light);
  box-shadow: 0 0 0 3px rgba(44,74,62,0.08);
}
textarea { resize: vertical; min-height: 110px; }
.form-submit { margin-top: 1.5rem; }
.form-note {
  font-size: 0.78rem;
  color: var(--text-light);
  text-align: center;
  margin-top: 0.75rem;
}
.hidden { display: none !important; }

/* 13. Process Steps */
.step-item {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 1.5rem;
  align-items: start;
  padding: 2rem 0;
  border-bottom: 1px solid var(--border);
}
.step-item:last-child { border-bottom: none; }
.step-number {
  width: 48px;
  height: 48px;
  background: var(--cream);
  color: var(--primary);
  border: 1.5px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  flex-shrink: 0;
}
.step-content h3 { margin-bottom: 0.5rem; }
.step-content p { color: var(--text-muted); }

/* 14. Comparison Table */
.comparison-table { width: 100%; border-collapse: collapse; margin: 2rem 0; }
.comparison-table th, .comparison-table td {
  padding: 1rem 1.25rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
}
.comparison-table th {
  background: var(--primary);
  color: var(--white);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.03em;
}
.comparison-table tr:nth-child(even) { background: var(--cream); }
.comparison-table .win { color: #2D7A4F; font-weight: 600; }
.comparison-table .lose { color: #B44040; }

/* 15. FAQ */
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 1.35rem 0;
  font-size: 1rem;
  font-weight: 600;
  font-family: var(--font-body);
  color: var(--primary);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.2s;
}
.faq-question:hover { color: var(--accent); }
.faq-question::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--accent);
  transition: transform 0.25s;
  flex-shrink: 0;
  margin-left: 1rem;
}
.faq-item.open .faq-question::after { transform: rotate(45deg); }
.faq-answer {
  display: none;
  padding-bottom: 1.5rem;
  color: var(--text-muted);
  line-height: 1.8;
  font-size: 0.95rem;
}
.faq-item.open .faq-answer { display: block; }

/* 16. Callout Box */
.callout {
  background: var(--cream);
  border-left: 3px solid var(--accent);
  padding: 1.5rem 2rem;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 2rem 0;
}
.callout h4 { color: var(--primary); margin-bottom: 0.5rem; }
.callout p { color: var(--text-muted); margin: 0; font-size: 0.95rem; }

/* 17. Article / Blog Content */
.article-body { max-width: 720px; margin: 0 auto; }
.article-body h2 { margin: 2.5rem 0 1rem; }
.article-body h2::after {
  content: '';
  display: block;
  width: 30px;
  height: 2px;
  background: var(--accent);
  margin-top: 0.75rem;
}
.article-body h3 { margin: 2rem 0 0.75rem; }
.article-body p { line-height: 1.9; color: var(--text-muted); margin-bottom: 1.25rem; }
.article-body ul, .article-body ol { margin: 0 0 1.5rem 1.25rem; }
.article-body li { padding: 0.4rem 0; color: var(--text-muted); line-height: 1.75; }
.article-body ul li { list-style: disc; }
.article-body ol li { list-style: decimal; }
.article-body table { width: 100%; border-collapse: collapse; margin: 2rem 0; }
.article-body table th, .article-body table td {
  padding: 0.875rem 1rem;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
  text-align: left;
}
.article-body table th { background: var(--primary); color: var(--white); }

/* 18. Pricing */
.pricing-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  text-align: center;
  transition: all 0.3s ease;
}
.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.pricing-card.featured {
  border-color: var(--accent);
  box-shadow: var(--shadow-md);
  position: relative;
}
.pricing-card.featured::before {
  content: 'Most Popular';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 600;
  padding: 0.3rem 1rem;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.pricing-card h3 { margin-bottom: 0.5rem; font-size: 1.25rem; }
.pricing-amount {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 600;
  color: var(--primary);
  margin: 1rem 0;
  line-height: 1;
}
.pricing-amount span {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--text-muted);
}
.pricing-features { margin: 1.75rem 0; text-align: left; }
.pricing-features li {
  padding: 0.55rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.04);
  font-size: 0.9rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.pricing-features li::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
}

/* Add-on card */
.addon-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.5rem;
  border: 1px solid var(--border);
  text-align: center;
  transition: all 0.25s ease;
}
.addon-card:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow);
}
.addon-card h3 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
  font-family: var(--font-body);
  font-weight: 600;
}
.addon-card .addon-price {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--accent);
  margin: 0.5rem 0;
}
.addon-card p {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin: 0;
}

/* 19. Footer */
.site-footer, .footer { background: var(--primary-dark); }
.footer-top { padding: 4.5rem 0 3rem; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
}
.footer-brand .logo-main { color: var(--white); }
.footer-brand .logo-accent { color: var(--accent-light); }
.footer-brand > p, .footer-brand p:not(.footer-phone) {
  margin-top: 1rem;
  font-size: 0.88rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.45);
}
.footer-phone { margin-top: 1rem; }
.footer-phone a { color: var(--accent-light); font-weight: 600; font-size: 0.95rem; }
.footer-col h4 {
  color: rgba(255,255,255,0.85);
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 1.25rem;
}
.footer-col ul li { margin-bottom: 0.6rem; }
.footer-col ul li a {
  color: rgba(255,255,255,0.45);
  font-size: 0.88rem;
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--accent-light); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 1.5rem 0;
}
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer-bottom p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
  margin: 0;
}
/* Compat: older markup uses .footer-content and .footer-nav */
.footer-content { margin-bottom: 2rem; }
.footer-content h3 {
  font-family: var(--font-display);
  color: var(--white);
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
}
.footer-content p { color: rgba(255,255,255,0.45); font-size: 0.88rem; line-height: 1.75; }
.footer-nav ul { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.footer-nav ul li a { color: rgba(255,255,255,0.45); font-size: 0.88rem; }
.footer-nav ul li a:hover { color: var(--accent-light); }

/* 20. Thank-You Page */
.thankyou-section { padding: 8rem 0; text-align: center; }
.thankyou-icon { font-size: 3.5rem; margin-bottom: 1.5rem; color: var(--primary); }
.thankyou-section h1 {
  color: var(--primary);
  font-size: 2.25rem;
  margin-bottom: 1rem;
}
.thankyou-section p {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 480px;
  margin: 0 auto 2rem;
  line-height: 1.8;
}

/* Services section (homepage compat) */
.services { padding: 6rem 0; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

/* 21. Scroll Animations */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-up {
  opacity: 0;
  animation: fadeUp 0.6s ease forwards;
}
.fade-up-1 { animation-delay: 0.1s; }
.fade-up-2 { animation-delay: 0.2s; }
.fade-up-3 { animation-delay: 0.3s; }
.fade-up-4 { animation-delay: 0.4s; }
.fade-up-5 { animation-delay: 0.5s; }
.fade-up-6 { animation-delay: 0.6s; }

/* 22. Responsive */
@media (max-width: 1100px) {
  .main-nav > ul > li > a { padding: 0.5rem 0.65rem; font-size: 0.82rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 900px) {
  .grid-3, .services-grid { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .content-split, .why-choose-wrapper { grid-template-columns: 1fr; gap: 2.5rem; }
  .contact-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .main-nav {
    display: none;
    position: fixed;
    top: var(--header-height);
    left: 0; right: 0;
    background: var(--primary-dark);
    padding: 1rem 2rem 2rem;
    max-height: calc(100vh - var(--header-height));
    overflow-y: auto;
    border-top: 1px solid rgba(255,255,255,0.06);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
  }
  .main-nav.mobile-open { display: block; }
  .main-nav > ul { flex-direction: column; gap: 0; }
  .main-nav > ul > li { border-bottom: 1px solid rgba(255,255,255,0.06); }
  .main-nav > ul > li > a { padding: 0.9rem 0.5rem; font-size: 0.95rem; }
  .main-nav .dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    background: rgba(0,0,0,0.2);
    border: none;
    border-radius: 0;
    display: none;
  }
  .main-nav .has-dropdown.mobile-open .dropdown { display: block; }
  .main-nav .dropdown li a {
    color: rgba(255,255,255,0.6);
    padding-left: 1.5rem;
    font-size: 0.88rem;
  }
  .mobile-menu-toggle { display: flex; }
  .hero { padding: 3.5rem 0; }
  .section { padding: 4rem 0; }
  .grid-2 { grid-template-columns: 1fr; }
  .grid-3, .services-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
  .hero-trust { gap: 1.25rem; flex-direction: column; }
  .hero-cta, .hero-ctas { flex-direction: column; align-items: stretch; }
  .hero-cta .btn, .hero-ctas .btn { text-align: center; }
  .banner-ctas { flex-direction: column; align-items: center; }
  .why-choose-image img, .content-image img { height: 280px; }
  .contact-form-section .form-wrapper { text-align: left; }
}

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
  .stat-number, .stat-value { font-size: 1.8rem; }
  .pricing-amount { font-size: 2.5rem; }
}
