/* ============================================
   Vicki Albin CST — Global Styles
   Color Palette (Brand Colors):
     --sage:      #0CC0DF (aqua blue — primary accent)
     --sage-dark: #0A9AB3 (darker aqua)
     --sage-light:#EFDCD8 (light blush/pink)
     --cream:     #F9F2F0 (very light blush)
     --warm:      #7C5849 (grey brown — warm accent)
     --warm-light:#F0E4DF (light warm brown)
     --charcoal:  #4A3028 (dark brown)
     --text:      #5A4A44 (warm brown-grey)
     --white:     #FFFFFF
   ============================================ */

:root {
  --sage: #0CC0DF;
  --sage-dark: #0A9AB3;
  --sage-light: #EFDCD8;
  --cream: #F9F2F0;
  --warm: #7C5849;
  --warm-light: #F0E4DF;
  --charcoal: #4A3028;
  --text: #5A4A44;
  --white: #FFFFFF;
  --radius: 12px;
  --shadow: 0 4px 24px rgba(0,0,0,0.06);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.10);
  --transition: 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: color var(--transition); }
ul { list-style: none; }

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

/* Typography */
h1, h2, h3, h4, h5 {
  font-family: 'Playfair Display', Georgia, serif;
  color: var(--charcoal);
  line-height: 1.3;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); font-weight: 700; }
h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); font-weight: 600; }
h3 { font-size: clamp(1.3rem, 3vw, 1.6rem); font-weight: 600; }
h4 { font-size: 1.15rem; font-weight: 600; }

p { margin-bottom: 1rem; }

.section-label {
  font-family: 'DM Sans', sans-serif;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--sage);
  margin-bottom: 0.75rem;
}

.section-heading {
  margin-bottom: 1.25rem;
}

.section-subtext {
  max-width: 640px;
  margin: 0 auto 2.5rem;
  color: #6B7280;
  font-size: 1.05rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.3px;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
}

.btn-primary {
  background: var(--sage);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--sage-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(12, 192, 223, 0.35);
}

.btn-outline {
  background: transparent;
  color: var(--sage);
  border: 2px solid var(--sage);
}
.btn-outline:hover {
  background: var(--sage);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-warm {
  background: var(--warm);
  color: var(--white);
}
.btn-warm:hover {
  background: #6B4A3C;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(124, 88, 73, 0.35);
}

.btn-sm {
  padding: 10px 24px;
  font-size: 0.875rem;
}

.btn-lg {
  padding: 18px 40px;
  font-size: 1.05rem;
}

/* ============================================
   HEADER / NAVIGATION
   ============================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,0,0,0.05);
  transition: box-shadow var(--transition);
}

.site-header.scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-icon {
  width: 40px;
  height: 40px;
  background: var(--sage);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.logo-icon svg {
  width: 22px;
  height: 22px;
  fill: var(--white);
}

.logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--charcoal);
  line-height: 1.2;
}

.logo-text span {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--sage);
}

/* Desktop Nav */
.nav-desktop {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-desktop a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
  position: relative;
  padding: 4px 0;
}

.nav-desktop a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--sage);
  border-radius: 2px;
  transition: width var(--transition);
}

.nav-desktop a:hover::after,
.nav-desktop a.active::after {
  width: 100%;
}

.nav-desktop a:hover {
  color: var(--sage-dark);
}

/* Services dropdown */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-dropdown-toggle svg {
  width: 14px;
  height: 14px;
  transition: transform var(--transition);
}

.nav-dropdown:hover .nav-dropdown-toggle svg {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 12px 0;
  min-width: 280px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.25s ease;
  border: 1px solid rgba(0,0,0,0.06);
}

.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  top: calc(100% + 6px);
}

.nav-dropdown-menu a {
  display: block;
  padding: 10px 20px;
  font-size: 0.875rem;
  color: var(--text);
  transition: all 0.2s ease;
}

.nav-dropdown-menu a:hover {
  background: var(--sage-light);
  color: var(--sage-dark);
}

.nav-dropdown-menu a::after {
  display: none;
}

.header-cta {
  flex-shrink: 0;
}

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

.mobile-toggle span {
  width: 24px;
  height: 2px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: all var(--transition);
}

/* Mobile Nav */
.nav-mobile {
  display: none;
  position: fixed;
  top: 76px;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--white);
  padding: 32px 24px;
  overflow-y: auto;
  z-index: 999;
}

.nav-mobile.open {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.nav-mobile a {
  display: block;
  padding: 16px 0;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--charcoal);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.nav-mobile a:hover {
  color: var(--sage);
}

.nav-mobile .mobile-services-label {
  padding: 16px 0 8px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--sage);
  border-bottom: none;
}

.nav-mobile .mobile-service-link {
  padding: 12px 0 12px 16px;
  font-size: 0.95rem;
  font-weight: 400;
}

.nav-mobile .mobile-cta {
  margin-top: 24px;
  text-align: center;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  padding: 140px 0 100px;
  background: linear-gradient(165deg, var(--cream) 0%, var(--sage-light) 50%, var(--warm-light) 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(12, 192, 223, 0.12) 0%, transparent 70%);
  border-radius: 50%;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(124, 88, 73, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.hero-content {
  max-width: 560px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--sage-dark);
  margin-bottom: 24px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
}

.hero-badge .dot {
  width: 8px;
  height: 8px;
  background: var(--sage);
  border-radius: 50%;
}

.hero h1 {
  margin-bottom: 20px;
  color: var(--charcoal);
}

.hero h1 em {
  font-style: italic;
  color: var(--sage);
}

.hero-text {
  font-size: 1.1rem;
  color: #6B7280;
  margin-bottom: 32px;
  line-height: 1.8;
}

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

.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(0,0,0,0.08);
}

.hero-stat strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  color: var(--charcoal);
}

.hero-stat span {
  font-size: 0.85rem;
  color: #6B7280;
}

/* Hero visual */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero-image-wrapper {
  position: relative;
  width: 100%;
  max-width: 460px;
}

.hero-image-card {
  background: var(--white);
  border-radius: 24px;
  padding: 16px;
  box-shadow: var(--shadow-lg);
}

.hero-image-placeholder {
  width: 100%;
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, var(--sage-light) 0%, var(--warm-light) 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.hero-image-placeholder svg {
  width: 120px;
  height: 120px;
  opacity: 0.2;
  fill: var(--sage);
}

.hero-float-card {
  position: absolute;
  background: var(--white);
  border-radius: 16px;
  padding: 16px 20px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-float-card.card-top {
  top: -16px;
  right: -24px;
}

.hero-float-card.card-bottom {
  bottom: 24px;
  left: -24px;
}

.float-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.float-icon.green { background: var(--sage-light); }
.float-icon.warm { background: var(--warm-light); }

.float-icon svg {
  width: 22px;
  height: 22px;
}

.float-text strong {
  display: block;
  font-size: 0.85rem;
  color: var(--charcoal);
  font-weight: 600;
}

.float-text span {
  font-size: 0.75rem;
  color: #9CA3AF;
}

/* ============================================
   SECTIONS — General
   ============================================ */
section {
  padding: 100px 0;
}

.bg-cream { background: var(--cream); }
.bg-sage-light { background: var(--sage-light); }
.bg-white { background: var(--white); }
.text-center { text-align: center; }

/* ============================================
   HOW IT WORKS
   ============================================ */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 48px;
}

.step-card {
  text-align: center;
  padding: 40px 28px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid rgba(0,0,0,0.05);
  transition: all var(--transition);
  position: relative;
}

.step-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.step-number {
  width: 56px;
  height: 56px;
  background: var(--sage-light);
  color: var(--sage-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  margin: 0 auto 20px;
}

.step-card h3 {
  margin-bottom: 12px;
}

.step-card p {
  color: #6B7280;
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ============================================
   SERVICE CARDS
   ============================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 28px;
  border: 1px solid rgba(0,0,0,0.06);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--sage);
  transform: scaleX(0);
  transition: transform var(--transition);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  width: 56px;
  height: 56px;
  background: var(--sage-light);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.service-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--sage-dark);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card h3 {
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.service-card p {
  color: #6B7280;
  font-size: 0.9rem;
  margin-bottom: 20px;
  line-height: 1.7;
}

.service-card .learn-more {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--sage);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.service-card .learn-more svg {
  width: 16px;
  height: 16px;
  stroke: var(--sage);
  fill: none;
  stroke-width: 2;
  transition: transform var(--transition);
}

.service-card:hover .learn-more svg {
  transform: translateX(4px);
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 28px;
  border: 1px solid rgba(0,0,0,0.06);
  position: relative;
}

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

.testimonial-stars svg {
  width: 18px;
  height: 18px;
  fill: var(--warm);
}

.testimonial-card blockquote {
  font-size: 0.95rem;
  font-style: italic;
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 20px;
}

.testimonial-author {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--charcoal);
}

.testimonial-role {
  font-size: 0.8rem;
  color: #9CA3AF;
}

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
  background: linear-gradient(135deg, var(--sage) 0%, var(--sage-dark) 100%);
  border-radius: 20px;
  padding: 64px 48px;
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 70%);
  border-radius: 50%;
}

.cta-banner h2 {
  color: var(--white);
  margin-bottom: 16px;
  position: relative;
}

.cta-banner p {
  color: rgba(255,255,255,0.85);
  max-width: 520px;
  margin: 0 auto 32px;
  font-size: 1.05rem;
}

.cta-banner .btn-warm {
  position: relative;
}

/* ============================================
   ABOUT PAGE
   ============================================ */
.about-hero {
  padding: 140px 0 80px;
  background: linear-gradient(165deg, var(--cream) 0%, var(--sage-light) 100%);
}

.about-grid {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 64px;
  align-items: start;
}

.about-photo {
  width: 100%;
  aspect-ratio: 3/4;
  background: linear-gradient(135deg, var(--sage-light) 0%, var(--warm-light) 100%);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-photo svg {
  width: 80px;
  height: 80px;
  opacity: 0.15;
  fill: var(--sage);
}

.about-content h1 {
  margin-bottom: 8px;
}

.about-credentials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.credential-tag {
  background: var(--sage-light);
  color: var(--sage-dark);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.about-content p {
  font-size: 1.02rem;
  color: var(--text);
  line-height: 1.8;
}

.about-quote {
  margin: 32px 0;
  padding: 24px 28px;
  background: var(--warm-light);
  border-radius: var(--radius);
  border-left: 4px solid var(--warm);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--charcoal);
}

.about-certifications {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 32px;
}

.cert-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: var(--white);
  border-radius: 10px;
  border: 1px solid rgba(0,0,0,0.06);
  font-size: 0.9rem;
  font-weight: 500;
}

.cert-item svg {
  width: 20px;
  height: 20px;
  stroke: var(--sage);
  fill: none;
  stroke-width: 2;
  flex-shrink: 0;
}

/* ============================================
   SERVICE PAGE (Individual)
   ============================================ */
.service-hero {
  padding: 140px 0 80px;
  background: linear-gradient(165deg, var(--cream) 0%, var(--sage-light) 100%);
  text-align: center;
}

.service-hero .section-label {
  margin-bottom: 12px;
}

.service-hero h1 {
  max-width: 700px;
  margin: 0 auto 20px;
}

.service-hero .hero-text {
  max-width: 640px;
  margin: 0 auto;
}

.service-content {
  padding: 80px 0;
}

.service-content-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 64px;
  align-items: start;
}

.service-main h2 {
  margin-bottom: 16px;
  font-size: 1.6rem;
}

.service-main h3 {
  margin: 32px 0 12px;
  font-size: 1.25rem;
}

.service-main p {
  color: var(--text);
  font-size: 1rem;
  line-height: 1.8;
}

.service-main ul {
  margin: 16px 0 24px;
  padding-left: 0;
}

.service-main ul li {
  padding: 8px 0 8px 28px;
  position: relative;
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.6;
}

.service-main ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 16px;
  width: 8px;
  height: 8px;
  background: var(--sage);
  border-radius: 50%;
}

/* Sidebar */
.service-sidebar {
  position: sticky;
  top: 100px;
}

.sidebar-card {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 32px 24px;
  margin-bottom: 24px;
}

.sidebar-card h4 {
  margin-bottom: 16px;
  font-size: 1.1rem;
}

.sidebar-card ul li {
  padding: 6px 0;
  font-size: 0.9rem;
  color: var(--text);
}

.sidebar-cta {
  background: linear-gradient(135deg, var(--sage) 0%, var(--sage-dark) 100%);
  border-radius: var(--radius);
  padding: 32px 24px;
  color: var(--white);
  text-align: center;
}

.sidebar-cta h4 {
  color: var(--white);
  margin-bottom: 8px;
}

.sidebar-cta p {
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem;
  margin-bottom: 20px;
}

/* Related services */
.related-services {
  padding: 80px 0;
  background: var(--cream);
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 40px;
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-hero {
  padding: 140px 0 80px;
  background: linear-gradient(165deg, var(--cream) 0%, var(--sage-light) 100%);
  text-align: center;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-top: 48px;
}

.contact-form {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 6px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--charcoal);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #D1D5DB;
  border-radius: 10px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  color: var(--charcoal);
  transition: border-color var(--transition);
  background: var(--white);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--sage);
  box-shadow: 0 0 0 3px rgba(12, 192, 223, 0.12);
}

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

.contact-info-panel {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-info-card {
  display: flex;
  gap: 16px;
  padding: 24px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid rgba(0,0,0,0.06);
}

.contact-icon {
  width: 48px;
  height: 48px;
  background: var(--sage-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--sage-dark);
  fill: none;
  stroke-width: 1.5;
}

.contact-info-card h4 {
  margin-bottom: 4px;
  font-size: 1rem;
}

.contact-info-card p {
  font-size: 0.9rem;
  color: #6B7280;
  margin-bottom: 0;
}

.hours-grid {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 4px 16px;
  font-size: 0.9rem;
}

.hours-grid .day {
  font-weight: 500;
  color: var(--charcoal);
}

.hours-grid .time {
  color: #6B7280;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: var(--charcoal);
  color: rgba(255,255,255,0.7);
  padding: 64px 0 32px;
}

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

.footer-brand .logo-text {
  color: var(--white);
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.6);
}

.footer-col h4 {
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 20px;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
}

.footer-col ul li a:hover {
  color: var(--white);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
}

/* ============================================
   RESPONSIVE
   ============================================ */

/* Tablet */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }
  .hero-content { max-width: 100%; }
  .hero-buttons { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-visual { order: -1; }
  .hero-image-wrapper { max-width: 360px; }

  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: repeat(3, 1fr); gap: 24px; }

  .about-grid { grid-template-columns: 280px 1fr; gap: 40px; }
  .service-content-grid { grid-template-columns: 1fr; }
  .service-sidebar { position: static; }

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

/* Tablet Small */
@media (max-width: 768px) {
  section { padding: 72px 0; }

  .nav-desktop { display: none; }
  .header-cta { display: none; }
  .mobile-toggle { display: flex; }

  .hero { padding: 120px 0 72px; }
  .hero-float-card { display: none; }

  .steps-grid { grid-template-columns: 1fr; gap: 20px; }
  .step-card { padding: 28px 24px; }

  .services-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }

  .about-grid { grid-template-columns: 1fr; text-align: center; }
  .about-photo { max-width: 300px; margin: 0 auto; }
  .about-credentials { justify-content: center; }
  .about-certifications { grid-template-columns: 1fr; }

  .contact-grid { grid-template-columns: 1fr; }
  .contact-form { padding: 28px; }

  .cta-banner { padding: 48px 28px; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }

  .related-grid { grid-template-columns: 1fr; }
}

/* Mobile */
@media (max-width: 480px) {
  html { font-size: 15px; }
  .container { padding: 0 16px; }

  .hero { padding: 110px 0 60px; }
  .hero h1 { font-size: 2rem; }
  .hero-stats { flex-direction: column; gap: 20px; align-items: center; }

  .hero-buttons { flex-direction: column; align-items: center; }
  .hero-buttons .btn { width: 100%; justify-content: center; }

  .btn-lg { padding: 16px 32px; }
}

/* Ultra-wide */
@media (min-width: 1600px) {
  .container { max-width: 1400px; }
  .hero-grid { gap: 80px; }
}

/* Animations */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

.animate-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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