/* ========================================
   SugarDaddiesIreland.com - Main Stylesheet
   ======================================== */

/* CSS Variables */
:root {
  --emerald-dark: #062b1b;
  --emerald: #0f5132;
  --emerald-soft: #2f7a4f;
  --sage: #eaf2e7;
  --cream: #fbf7ed;
  --white: #ffffff;
  --charcoal: #1f2722;
  --muted: #6b746f;
  --gold: #e8c76f;
  --border: #e6e0d3;
  --shadow: rgba(0, 0, 0, 0.08);
  --shadow-lg: rgba(0, 0, 0, 0.12);
  --radius: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --transition: all 0.3s ease;
}

/* Reset & Base */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--charcoal);
  background-color: var(--cream);
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: Georgia, 'Times New Roman', Times, serif;
  font-weight: 600;
  line-height: 1.2;
  color: var(--charcoal);
}

h1 { font-size: clamp(2rem, 4vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }

p {
  margin-bottom: 1rem;
  color: var(--muted);
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ========================================
   HEADER & NAVIGATION
   ======================================== */
.site-header {
  background-color: var(--emerald-dark);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(0,0,0,0.15);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: Georgia, 'Times New Roman', Times, serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--white);
  white-space: nowrap;
}

.logo-icon {
  font-size: 1.5rem;
  color: var(--gold);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 0;
}

.nav-links a {
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: var(--radius);
  transition: var(--transition);
}

.nav-links a:hover {
  color: var(--white);
  background: rgba(255,255,255,0.1);
}

.nav-links a.active {
  color: var(--gold);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
}

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

.btn-gold:hover {
  background-color: #d4b85a;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(232, 199, 111, 0.3);
}

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

.btn-outline:hover {
  background-color: rgba(255,255,255,0.1);
  border-color: var(--white);
}

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

.btn-emerald:hover {
  background-color: var(--emerald-soft);
  transform: translateY(-2px);
}

.btn-white {
  background-color: var(--white);
  color: var(--emerald);
  border: 2px solid var(--emerald);
}

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

/* Mobile Menu */
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.mobile-toggle span {
  display: block;
  width: 25px;
  height: 2px;
  background-color: var(--white);
  transition: var(--transition);
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
  background: linear-gradient(135deg, var(--emerald-dark) 0%, var(--emerald) 50%, #1a5c3a 100%);
  position: relative;
  overflow: hidden;
  padding: 4rem 0;
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-content h1 {
  color: var(--white);
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  margin-bottom: 1.5rem;
  line-height: 1.15;
}

.hero-content h1 span {
  color: var(--gold);
}

.hero-content p {
  color: rgba(255,255,255,0.85);
  font-size: 1.1rem;
  margin-bottom: 2rem;
  max-width: 500px;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.hero-trust {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.8);
  font-size: 0.85rem;
}

.trust-item svg {
  width: 18px;
  height: 18px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 2;
}

.hero-image {
  position: relative;
  z-index: 2;
}

.hero-image img {
  border-radius: var(--radius-xl);
  box-shadow: 0 30px 60px rgba(0,0,0,0.3);
  object-fit: cover;
  width: 100%;
  height: 450px;
}

/* Hero decorative elements */
.hero::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(232,199,111,0.15) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 1;
}

/* ========================================
   STATS STRIP
   ======================================== */
.stats-strip {
  position: relative;
  z-index: 10;
  margin-top: -40px;
  padding: 0 1.5rem;
}

.stats-inner {
  max-width: 1100px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: 0 10px 40px var(--shadow-lg);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 2rem;
  gap: 1.5rem;
}

.stat-item {
  text-align: center;
  padding: 1rem;
}

.stat-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 0.75rem;
  background: var(--sage);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--emerald);
}

.stat-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--emerald);
  fill: none;
  stroke-width: 2;
}

.stat-item h3 {
  font-family: Georgia, serif;
  font-size: 1.5rem;
  color: var(--charcoal);
  margin-bottom: 0.25rem;
}

.stat-item p {
  font-size: 0.85rem;
  color: var(--muted);
  margin: 0;
}

/* ========================================
   SECTION COMMON STYLES
   ======================================== */
.section {
  padding: 5rem 0;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3rem;
}

.section-header h2 {
  margin-bottom: 1rem;
  color: var(--charcoal);
}

.section-header p {
  color: var(--muted);
  font-size: 1.05rem;
}

/* ========================================
   FEATURE CARDS (Built for Meaningful)
   ======================================== */
.feature-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.feature-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 4px 20px var(--shadow);
  transition: var(--transition);
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px var(--shadow-lg);
}

.feature-card-image {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.feature-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.feature-card:hover .feature-card-image img {
  transform: scale(1.05);
}

.feature-card-icon {
  position: absolute;
  bottom: -24px;
  left: 50%;
  transform: translateX(-50%);
  width: 48px;
  height: 48px;
  background: var(--emerald);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 4px solid var(--white);
}

.feature-card-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--white);
  fill: none;
  stroke-width: 2;
}

.feature-card-body {
  padding: 2.5rem 1.5rem 1.5rem;
  text-align: center;
}

.feature-card-body h3 {
  margin-bottom: 0.75rem;
  color: var(--charcoal);
}

.feature-card-body p {
  font-size: 0.9rem;
  color: var(--muted);
  margin: 0;
  line-height: 1.6;
}

/* ========================================
   AUDIENCE SPLIT SECTION
   ======================================== */
.audience-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.audience-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 450px;
  display: flex;
  align-items: flex-end;
}

.audience-card-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.audience-card-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.audience-card-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(6,43,27,0.92) 0%, rgba(6,43,27,0.5) 50%, rgba(6,43,27,0.2) 100%);
}

.audience-card-content {
  position: relative;
  z-index: 2;
  padding: 2.5rem;
  color: var(--white);
  width: 100%;
}

.audience-card-content h3 {
  color: var(--white);
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.audience-card-content p {
  color: rgba(255,255,255,0.85);
  margin-bottom: 1.25rem;
  font-size: 0.95rem;
}

.audience-features {
  list-style: none;
  margin-bottom: 1.5rem;
}

.audience-features li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.audience-features li svg {
  width: 16px;
  height: 16px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 3;
}

/* ========================================
   CITY CARDS SECTION
   ======================================== */
.city-section {
  position: relative;
}

.city-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.city-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 4px 16px var(--shadow);
  transition: var(--transition);
}

.city-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px var(--shadow-lg);
}

.city-card-image {
  height: 180px;
  overflow: hidden;
}

.city-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.city-card:hover .city-card-image img {
  transform: scale(1.08);
}

.city-card-body {
  padding: 1.25rem;
}

.city-card-body h4 {
  font-family: Georgia, serif;
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
  color: var(--charcoal);
}

.city-card-body p {
  font-size: 0.85rem;
  color: var(--muted);
  margin: 0;
}

/* ========================================
   HOW IT WORKS
   ======================================== */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
}

.step {
  text-align: center;
  position: relative;
}

.step-number {
  width: 50px;
  height: 50px;
  background: var(--emerald);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: Georgia, serif;
  font-size: 1.3rem;
  font-weight: 600;
  margin: 0 auto 1.25rem;
  position: relative;
  z-index: 2;
}

.step-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 1rem;
  background: var(--sage);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--emerald);
  fill: none;
  stroke-width: 1.8;
}

.step h4 {
  font-family: Georgia, serif;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: var(--charcoal);
}

.step p {
  font-size: 0.88rem;
  color: var(--muted);
  margin: 0;
  line-height: 1.5;
}

/* Connecting line between steps */
.steps::before {
  content: '';
  position: absolute;
  top: 25px;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: var(--border);
  z-index: 1;
}

/* ========================================
   PREMIUM BANNER
   ======================================== */
.premium-banner {
  background: linear-gradient(135deg, var(--emerald-dark) 0%, var(--emerald) 100%);
  border-radius: var(--radius-xl);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
}

.premium-banner-image {
  height: 100%;
  min-height: 400px;
}

.premium-banner-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.premium-banner-content {
  padding: 3rem;
  color: var(--white);
}

.premium-banner-content h2 {
  color: var(--white);
  font-size: 2rem;
  margin-bottom: 1.25rem;
}

.premium-banner-content > p {
  color: rgba(255,255,255,0.85);
  margin-bottom: 2rem;
  font-size: 1rem;
}

.premium-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.premium-feature {
  text-align: center;
}

.premium-feature-icon {
  width: 48px;
  height: 48px;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.75rem;
}

.premium-feature-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 2;
}

.premium-feature h4 {
  color: var(--white);
  font-size: 0.95rem;
  margin-bottom: 0.25rem;
}

.premium-feature p {
  color: rgba(255,255,255,0.75);
  font-size: 0.8rem;
  margin: 0;
}

/* ========================================
   DATING CATEGORIES
   ======================================== */
.category-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.category-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 4px 20px var(--shadow);
  transition: var(--transition);
}

.category-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px var(--shadow-lg);
}

.category-card-image {
  height: 160px;
  overflow: hidden;
}

.category-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.category-card:hover .category-card-image img {
  transform: scale(1.08);
}

.category-card-body {
  padding: 1.5rem;
}

.category-card-body h4 {
  font-family: Georgia, serif;
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
  color: var(--charcoal);
}

.category-card-body p {
  font-size: 0.88rem;
  color: var(--muted);
  margin-bottom: 1.25rem;
  line-height: 1.5;
}

.category-card-body .btn {
  width: 100%;
  padding: 0.6rem 1rem;
  font-size: 0.85rem;
}

/* ========================================
   TESTIMONIALS
   ======================================== */
.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: 0 4px 20px var(--shadow);
  text-align: center;
  transition: var(--transition);
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px var(--shadow-lg);
}

.testimonial-avatar {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 1.25rem;
  border: 3px solid var(--gold);
}

.testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-text {
  font-style: italic;
  color: var(--charcoal);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.testimonial-name {
  font-weight: 600;
  color: var(--emerald);
  font-size: 0.95rem;
}

.testimonial-location {
  font-size: 0.85rem;
  color: var(--muted);
}

/* ========================================
   SAFETY SECTION
   ======================================== */
.safety-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.safety-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: 0 4px 16px var(--shadow);
  transition: var(--transition);
}

.safety-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px var(--shadow-lg);
}

.safety-icon {
  width: 56px;
  height: 56px;
  background: var(--sage);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
}

.safety-icon svg {
  width: 26px;
  height: 26px;
  stroke: var(--emerald);
  fill: none;
  stroke-width: 2;
}

.safety-card h4 {
  font-family: Georgia, serif;
  font-size: 1.05rem;
  margin-bottom: 0.75rem;
  color: var(--charcoal);
}

.safety-card p {
  font-size: 0.88rem;
  color: var(--muted);
  margin: 0;
  line-height: 1.5;
}

/* ========================================
   FAQ SECTION
   ======================================== */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--white);
  border-radius: var(--radius);
  margin-bottom: 0.75rem;
  box-shadow: 0 2px 10px var(--shadow);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: none;
  border: none;
  cursor: pointer;
  font-family: Georgia, serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--charcoal);
  text-align: left;
  transition: var(--transition);
}

.faq-question:hover {
  color: var(--emerald);
}

.faq-icon {
  width: 24px;
  height: 24px;
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-left: 1rem;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

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

.faq-item.active .faq-answer {
  max-height: 500px;
}

.faq-answer-inner {
  padding: 0 1.5rem 1.25rem;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

.faq-answer-inner p {
  margin: 0;
}

/* ========================================
   FINAL CTA SECTION
   ======================================== */
.final-cta {
  background: linear-gradient(135deg, var(--emerald-dark) 0%, var(--emerald) 100%);
  border-radius: var(--radius-xl);
  padding: 4rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.final-cta::before {
  content: '';
  position: absolute;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(232,199,111,0.15) 0%, transparent 70%);
  border-radius: 50%;
}

.final-cta h2 {
  color: var(--white);
  font-size: 2.2rem;
  margin-bottom: 1rem;
  position: relative;
}

.final-cta > p {
  color: rgba(255,255,255,0.85);
  font-size: 1.1rem;
  margin-bottom: 2rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.final-cta small {
  display: block;
  color: rgba(255,255,255,0.65);
  font-size: 0.85rem;
  margin-top: 1rem;
  position: relative;
}

/* ========================================
   FOOTER
   ======================================== */
.site-footer {
  background-color: var(--emerald-dark);
  color: rgba(255,255,255,0.8);
  padding: 4rem 0 1.5rem;
  margin-top: 5rem;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr 1.2fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand .logo {
  margin-bottom: 1rem;
}

.footer-brand p {
  color: rgba(255,255,255,0.65);
  font-size: 0.88rem;
  line-height: 1.6;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--gold);
  color: var(--emerald-dark);
}

.footer-social svg {
  width: 16px;
  height: 16px;
}

.footer-column h4 {
  color: var(--white);
  font-family: Georgia, serif;
  font-size: 1rem;
  margin-bottom: 1.25rem;
}

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

.footer-links li {
  margin-bottom: 0.6rem;
}

.footer-links a {
  color: rgba(255,255,255,0.65);
  font-size: 0.88rem;
  transition: var(--transition);
}

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

.footer-legal {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.footer-legal svg {
  width: 18px;
  height: 18px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 2;
}

.footer-legal span {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.8);
  font-weight: 600;
}

.footer-legal-text {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.5;
}

.footer-divider {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-copyright {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
}

.footer-disclaimer {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
  max-width: 400px;
  text-align: right;
}

/* ========================================
   INNER PAGE HERO
   ======================================== */
.page-hero {
  background: linear-gradient(135deg, var(--emerald-dark) 0%, var(--emerald) 100%);
  padding: 4rem 0;
  text-align: center;
}

.page-hero h1 {
  color: var(--white);
  margin-bottom: 1rem;
}

.page-hero p {
  color: rgba(255,255,255,0.85);
  max-width: 600px;
  margin: 0 auto;
}

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  list-style: none;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.breadcrumb li {
  color: rgba(255,255,255,0.7);
  font-size: 0.88rem;
}

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

.breadcrumb a:hover {
  text-decoration: underline;
}

/* ========================================
   CONTENT PAGES
   ======================================== */
.content-section {
  padding: 3rem 0;
}

.content-block {
  max-width: 800px;
  margin: 0 auto;
}

.content-block h2 {
  margin: 2.5rem 0 1rem;
  color: var(--charcoal);
}

.content-block h3 {
  margin: 2rem 0 0.75rem;
  color: var(--emerald);
}

.content-block p {
  margin-bottom: 1.25rem;
  line-height: 1.8;
}

.content-block ul {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
}

.content-block ul li {
  margin-bottom: 0.5rem;
  color: var(--muted);
  line-height: 1.7;
}

/* ========================================
   BLOG STYLES
   ======================================== */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.blog-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 4px 20px var(--shadow);
  transition: var(--transition);
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px var(--shadow-lg);
}

.blog-card-image {
  height: 200px;
  overflow: hidden;
}

.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-card:hover .blog-card-image img {
  transform: scale(1.08);
}

.blog-card-body {
  padding: 1.5rem;
}

.blog-card-meta {
  font-size: 0.8rem;
  color: var(--emerald);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.blog-card-body h3 {
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
  color: var(--charcoal);
}

.blog-card-body p {
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 1rem;
  line-height: 1.6;
}

.blog-article {
  max-width: 800px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 3rem;
  box-shadow: 0 4px 20px var(--shadow);
}

.blog-article-image {
  margin: -3rem -3rem 2rem;
  height: 350px;
  overflow: hidden;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.blog-article-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-article h1 {
  margin-bottom: 1rem;
  font-size: 2rem;
}

.blog-article .blog-meta {
  color: var(--emerald);
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 2rem;
}

.blog-article h2 {
  margin: 2.5rem 0 1rem;
}

.blog-article p {
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.blog-article ul {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
}

.blog-article ul li {
  margin-bottom: 0.5rem;
  color: var(--muted);
  line-height: 1.7;
}

/* ========================================
   FORM STYLES
   ======================================== */
.form-container {
  max-width: 500px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: 0 4px 20px var(--shadow);
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--charcoal);
  font-size: 0.9rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  font-size: 1rem;
  font-family: inherit;
  transition: var(--transition);
  background: var(--white);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--emerald);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-submit {
  width: 100%;
  padding: 1rem;
  font-size: 1rem;
}

.form-note {
  text-align: center;
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 1.5rem;
}

.form-note a {
  color: var(--emerald);
  font-weight: 600;
}

.form-note a:hover {
  text-decoration: underline;
}

/* ========================================
   UTILITY CLASSES
   ======================================== */
.text-center { text-align: center; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }

/* ========================================
   ANIMATIONS
   ======================================== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  animation: fadeInUp 0.6s ease forwards;
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem;
  }
  
  .footer-brand {
    grid-column: 1 / -1;
  }
  
  .category-cards {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .steps::before {
    display: none;
  }
}

@media (max-width: 768px) {
  .header-inner {
    height: 60px;
  }
  
  .mobile-toggle {
    display: flex;
  }
  
  .main-nav {
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--emerald-dark);
    flex-direction: column;
    padding: 2rem;
    gap: 0;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 999;
    overflow-y: auto;
  }
  
  .main-nav.active {
    transform: translateX(0);
  }
  
  .nav-links {
    flex-direction: column;
    width: 100%;
    gap: 0.25rem;
  }
  
  .nav-links a {
    padding: 1rem;
    font-size: 1.1rem;
    width: 100%;
    display: block;
  }
  
  .header-cta {
    margin-top: 1rem;
    width: 100%;
  }
  
  .header-cta .btn {
    width: 100%;
  }
  
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .hero-content p {
    margin-left: auto;
    margin-right: auto;
  }
  
  .hero-buttons {
    justify-content: center;
  }
  
  .hero-trust {
    justify-content: center;
  }
  
  .hero-image {
    order: -1;
  }
  
  .hero-image img {
    height: 300px;
  }
  
  .stats-inner {
    grid-template-columns: repeat(2, 1fr);
    padding: 1.5rem;
  }
  
  .feature-cards {
    grid-template-columns: 1fr;
  }
  
  .audience-split {
    grid-template-columns: 1fr;
  }
  
  .city-cards {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem 1.5rem;
  }
  
  .premium-banner {
    grid-template-columns: 1fr;
  }
  
  .premium-banner-image {
    min-height: 250px;
  }
  
  .premium-features {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .category-cards {
    grid-template-columns: 1fr;
  }
  
  .testimonials {
    grid-template-columns: 1fr;
  }
  
  .safety-cards {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .blog-grid {
    grid-template-columns: 1fr;
  }
  
  .blog-article {
    padding: 1.5rem;
  }
  
  .blog-article-image {
    margin: -1.5rem -1.5rem 1.5rem;
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
  
  .footer-brand {
    grid-column: 1 / -1;
  }
  
  .section {
    padding: 3rem 0;
  }
}

@media (max-width: 480px) {
  .stats-inner {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .city-cards {
    grid-template-columns: 1fr;
  }
  
  .steps {
    grid-template-columns: 1fr;
  }
  
  .safety-cards {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-divider {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-disclaimer {
    text-align: center;
  }
  
  .hero-buttons {
    flex-direction: column;
  }
  
  .hero-buttons .btn {
    width: 100%;
  }
  
  .premium-banner-content {
    padding: 2rem 1.5rem;
  }
  
  .final-cta {
    padding: 3rem 1.5rem;
  }
  
  .final-cta h2 {
    font-size: 1.6rem;
  }
}
