/* Escondido Dermatology - Static Site Styles */
/* Converted from Tailwind CSS */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Manrope:wght@300;400;500;600;700&display=swap');

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

/* CSS Variables - Color Palette */
:root {
  /* Lavender/Purple Colors (from Logo) */
  --sage-50: #f8f4f9;
  --sage-100: #f1eaf3;
  --sage-200: #e4d5e8;
  --sage-300: #ceb5d6;
  --sage-400: #b28cbf;
  --sage-500: #9b6ab1; /* Primary Logo Purple */
  --sage-600: #814f96;
  --sage-700: #6a407b;
  --sage-800: #583665;
  --sage-900: #4a2f54;
  
  /* Cream Colors - Keeping for warmth */
  --cream-50: #FEFDFB;
  --cream-100: #F8F6F0;
  --cream-200: #F0EDE4;
  --cream-300: #E8E4D9;
  --cream-400: #DDD8C9;
  --cream-500: #D0C9B5;
  
  /* Slate/Gray Colors (from Logo) */
  --olive-50: #f9f9f9;
  --olive-100: #f2f2f2;
  --olive-200: #e5e5e5;
  --olive-300: #d1d1d1;
  --olive-400: #a1a1a1;
  --olive-500: #706f6f; /* Logo Gray */
  --olive-600: #5a5959;
  --olive-700: #454444;
  --olive-800: #333232;
  --olive-900: #262525;
  
  /* Text Colors */
  --text-primary: #333232;
  --text-secondary: #454444;
  --text-muted: #706f6f;
  
  /* Fonts */
  --font-display: 'Playfair Display', serif;
  --font-body: 'Manrope', sans-serif;
}

/* Base Styles */
html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-secondary);
  background-color: var(--cream-100);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--text-primary);
  line-height: 1.2;
}

h1 {
  font-size: 3rem;
}

h2 {
  font-size: 2.25rem;
}

h3 {
  font-size: 1.5rem;
}

h4 {
  font-size: 1.25rem;
}

p {
  margin-bottom: 1rem;
}

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

@media (min-width: 768px) {
  .container {
    padding: 0 3rem;
  }
}

@media (min-width: 1024px) {
  .container {
    padding: 0 6rem;
  }
}

/* ===================
   TOP BAR
   =================== */
.top-bar {
  background-color: var(--sage-600);
  color: white;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  display: none;
}

@media (min-width: 768px) {
  .top-bar {
    display: block;
  }
}

.top-bar-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-bar-left {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.top-bar a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.top-bar a:hover {
  color: var(--sage-200);
}

.top-bar-right {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* ===================
   HEADER / NAVIGATION
   =================== */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background-color: var(--cream-100);
  transition: all 0.3s ease;
}

.header.scrolled {
  background-color: rgba(254, 253, 251, 0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 1rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

@media (min-width: 768px) {
  .nav-container {
    padding: 1rem 2rem;
  }
}

@media (min-width: 1024px) {
  .nav-container {
    padding: 1rem 3rem;
  }
}

/* Logo */
.logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.logo-img {
  height: 50px;
  width: auto;
  display: block;
}

@media (min-width: 768px) {
  .logo-img {
    height: 60px;
  }
}

@media (min-width: 1024px) {
  .logo-img {
    height: 75px;
  }
}

.logo h1 {
  font-family: var(--font-display);
  font-size: 1.125rem;
  color: var(--sage-700);
  letter-spacing: -0.025em;
  white-space: nowrap;
  margin: 0;
}

@media (min-width: 768px) {
  .logo h1 {
    font-size: 1.25rem;
  }
}

@media (min-width: 1024px) {
  .logo h1 {
    font-size: 1.5rem;
  }
}

/* Desktop Navigation */
.nav-desktop {
  display: none;
  align-items: center;
  justify-content: center;
  flex: 1;
  gap: 0.75rem;
  margin: 0 1rem;
}

@media (min-width: 1024px) {
  .nav-desktop {
    display: flex;
  }
}

@media (min-width: 1280px) {
  .nav-desktop {
    gap: 1.25rem;
  }
}

.nav-link {
  position: relative;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
  white-space: nowrap;
  padding: 0.5rem 0;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: var(--sage-600);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--sage-600);
  transition: width 0.3s ease;
}

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

.nav-link.active {
  color: var(--sage-600);
}

.nav-link.active::after {
  width: 100%;
}

/* Services Dropdown */
.dropdown {
  position: relative;
}

.dropdown-trigger {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  cursor: pointer;
  background: none;
  border: none;
  font: inherit;
  color: inherit;
}

.dropdown-trigger svg {
  transition: transform 0.3s ease;
}

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

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 0.5rem;
  width: 16rem;
  background: white;
  border-radius: 0.75rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  border: 1px solid var(--cream-300);
  padding: 0.5rem 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 50;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu a {
  display: block;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  color: var(--text-secondary);
  transition: all 0.2s ease;
}

.dropdown-menu a:hover {
  background-color: var(--sage-50);
  color: var(--sage-700);
}

.dropdown-menu a.all-services {
  font-weight: 500;
  border-bottom: 1px solid var(--cream-200);
  margin-bottom: 0.25rem;
  padding-bottom: 0.75rem;
}

/* Header CTA */
.header-cta {
  display: none;
  flex-shrink: 0;
}

@media (min-width: 1024px) {
  .header-cta {
    display: block;
  }
}

/* Mobile Menu Button */
.mobile-menu-btn {
  display: block;
  padding: 0.5rem;
  background: none;
  border: none;
  color: var(--text-primary);
  cursor: pointer;
}

@media (min-width: 1024px) {
  .mobile-menu-btn {
    display: none;
  }
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  background: white;
  border-top: 1px solid var(--cream-200);
  padding: 1rem 1.5rem;
}

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

@media (min-width: 1024px) {
  .mobile-menu {
    display: none !important;
  }
}

.mobile-menu a {
  display: block;
  padding: 0.75rem 0;
  font-weight: 500;
  color: var(--text-primary);
  border-bottom: 1px solid var(--cream-100);
}

.mobile-menu a:last-child {
  border-bottom: none;
}

.mobile-menu .btn-primary {
  margin-top: 1rem;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
}

/* ===================
   BUTTONS
   =================== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background-color: var(--sage-600);
  color: white;
  padding: 0.75rem 2rem;
  border-radius: 0.5rem;
  font-weight: 500;
  font-size: 0.875rem;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  background-color: var(--sage-700);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background-color: transparent;
  color: var(--sage-700);
  padding: 0.75rem 2rem;
  border-radius: 0.5rem;
  font-weight: 500;
  font-size: 0.875rem;
  border: 2px solid var(--sage-600);
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn-secondary:hover {
  background-color: var(--sage-600);
  color: white;
}

.btn-white {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background-color: white;
  color: var(--sage-700);
  padding: 1rem 2rem;
  border-radius: 0.5rem;
  font-weight: 500;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

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

.btn-outline-white {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background-color: transparent;
  color: white;
  padding: 1rem 2rem;
  border-radius: 0.5rem;
  font-weight: 500;
  border: 2px solid white;
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn-outline-white:hover {
  background-color: white;
  color: var(--sage-700);
}

/* Rounded button variants */
.btn-primary.rounded-full,
.btn-secondary.rounded-full,
.btn-white.rounded-full,
.btn-outline-white.rounded-full {
  border-radius: 9999px;
}

/* ===================
   HERO BANNER (New)
   =================== */
.hero-banner {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-color: var(--sage-900);
}

/* Video Background Styles */
.hero-video-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background-color: var(--sage-900);
}

.hero-video-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-video-fallback {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  z-index: 1;
}

.hero-video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  z-index: 2;
}

.hero-banner-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 1;
}

.hero-banner-content {
  position: relative;
  z-index: 10;
  width: 100%;
  padding: 4rem 0;
  color: white;
}

@media (min-width: 1024px) {
  .hero-banner-content {
    padding: 6rem 0;
  }
}

.hero-banner-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .hero-banner-grid {
    grid-template-columns: 1.1fr 0.9fr;
  }
}

.hero-banner-text {
  max-width: 800px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
}

.hero-banner-text h1 {
  font-size: 2.5rem;
  color: white;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .hero-banner-text h1 {
    font-size: 3.5rem;
  }
}

.hero-banner-text h1 span {
  color: var(--sage-200);
  font-style: italic;
}

.hero-banner-text p {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.75;
  margin-bottom: 2.5rem;
  max-width: 600px;
}

@media (min-width: 768px) {
  .hero-banner-text p {
    font-size: 1.25rem;
  }
}

.hero-banner-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

/* Banner Collage Layout */
.banner-collage {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  position: relative;
}

.banner-collage-item {
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  border: 4px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.3s ease;
}

.banner-collage-item:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 255, 255, 0.3);
}

.banner-collage-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.b-item-1 { height: 220px; }
.b-item-2 { height: 260px; margin-top: 2rem; }
.b-item-3 { height: 240px; margin-top: -2rem; }
.b-item-4 { height: 220px; }

@media (max-width: 768px) {
  .banner-collage {
    max-width: 400px;
    margin: 0 auto;
  }
  .b-item-1, .b-item-2, .b-item-3, .b-item-4 {
    height: 150px;
    margin-top: 0;
  }
}

/* ===================
   HERO SECTION
   =================== */
.hero {
  position: relative;
  min-height: 85vh;
  background-color: var(--cream-100);
  overflow: hidden;
}

.hero-background {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.4;
  pointer-events: none;
}

/* Background organic shapes */
.hero-shapes {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-shape {
  position: absolute;
  border-radius: 50%;
}

.hero-shape-1 {
  top: 5rem;
  left: 2.5rem;
  width: 16rem;
  height: 16rem;
  background-color: rgba(212, 219, 201, 0.3);
  filter: blur(48px);
}

.hero-shape-2 {
  bottom: 5rem;
  right: 5rem;
  width: 24rem;
  height: 24rem;
  background-color: rgba(215, 221, 204, 0.2);
  filter: blur(48px);
}

.hero-shape-3 {
  top: 50%;
  left: 33%;
  width: 12rem;
  height: 12rem;
  background-color: rgba(181, 194, 164, 0.2);
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 1280px;
  margin: 0 auto;
  padding: 4rem 1.5rem;
}

@media (min-width: 768px) {
  .hero-content {
    padding: 4rem 3rem;
  }
}

@media (min-width: 1024px) {
  .hero-content {
    padding: 6rem;
  }
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
  min-height: 70vh;
}

@media (min-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.hero-text h1 {
  font-size: 3rem;
  color: var(--sage-800);
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .hero-text h1 {
    font-size: 3.75rem;
  }
}

@media (min-width: 1024px) {
  .hero-text h1 {
    font-size: 4.5rem;
  }
}

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

.hero-text p {
  font-size: 1.25rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 2rem;
  max-width: 32rem;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 640px) {
  .hero-buttons {
    flex-direction: row;
  }
}

.hero-location {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 2.5rem;
  color: var(--text-secondary);
  font-size: 0.875rem;
}

.hero-location svg {
  color: var(--sage-600);
}

/* Hero Image Collage */
.hero-collage {
  position: relative;
  height: 500px;
}

@media (min-width: 1024px) {
  .hero-collage {
    height: 600px;
  }
}

.collage-item {
  position: absolute;
  background: white;
  padding: 0.75rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  border-radius: 0.5rem;
}

.collage-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0.25rem;
}

.collage-main {
  top: 0;
  left: 0;
  width: 280px;
  height: 350px;
  z-index: 20;
  transform: rotate(-2deg);
}

@media (min-width: 768px) {
  .collage-main {
    width: 320px;
    height: 400px;
  }
}

.collage-doctor {
  top: 1rem;
  right: 0;
  width: 180px;
  height: 220px;
  z-index: 30;
  transform: rotate(3deg);
}

@media (min-width: 768px) {
  .collage-doctor {
    width: 220px;
    height: 260px;
  }
}

.collage-skin {
  bottom: 5rem;
  right: 2.5rem;
  width: 170px;
  height: 190px;
  z-index: 10;
  transform: rotate(-3deg);
}

@media (min-width: 768px) {
  .collage-skin {
    width: 200px;
    height: 220px;
  }
}

.collage-treatment {
  bottom: 0;
  left: 5rem;
  width: 150px;
  height: 130px;
  z-index: 20;
  transform: rotate(2deg);
}

@media (min-width: 768px) {
  .collage-treatment {
    width: 180px;
    height: 160px;
  }
}

/* Decorative circles in collage */
.collage-circle {
  position: absolute;
  border-radius: 50%;
  z-index: -1;
}

.collage-circle-1 {
  top: 50%;
  right: 25%;
  width: 4rem;
  height: 4rem;
  background-color: rgba(181, 194, 164, 0.4);
}

.collage-circle-2 {
  bottom: 33%;
  left: 50%;
  width: 6rem;
  height: 6rem;
  border: 2px solid var(--sage-200);
}

/* ===================
   TRUST SIGNALS
   =================== */
.trust-signals {
  background-color: var(--sage-600);
  padding: 3rem 0;
}

.trust-signals-grid {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

@media (min-width: 768px) {
  .trust-signals-grid {
    grid-template-columns: repeat(4, 1fr);
    padding: 0 3rem;
  }
}

@media (min-width: 1024px) {
  .trust-signals-grid {
    padding: 0 6rem;
  }
}

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

.trust-item .number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: white;
  margin-bottom: 0.25rem;
}

@media (min-width: 768px) {
  .trust-item .number {
    font-size: 3rem;
  }
}

.trust-item .label {
  color: var(--sage-200);
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ===================
   SECTIONS (General)
   =================== */
.section {
  padding: 4rem 0;
}

@media (min-width: 768px) {
  .section {
    padding: 6rem 0;
  }
}

@media (min-width: 1024px) {
  .section {
    padding: 8rem 0;
  }
}

.section-white {
  background-color: white;
}

.section-cream {
  background-color: var(--cream-100);
}

.section-cream-dark {
  background-color: var(--cream-200);
}

.section-sage {
  background-color: var(--sage-600);
}

.section-sage-light {
  background-color: var(--sage-500);
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-label {
  color: var(--sage-600);
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: 2.25rem;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .section-title {
    font-size: 3rem;
  }
}

.section-subtitle {
  color: var(--text-secondary);
  max-width: 42rem;
  margin: 0 auto;
}

/* ===================
   SERVICE CARDS
   =================== */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* 3-column variant */
.services-grid-3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .services-grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .services-grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

.service-card {
  display: block;
  background: white;
  padding: 2rem;
  border-radius: 0.75rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  border: 1px solid var(--cream-300);
  height: 100%;
  transition: all 0.3s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.service-card-icon {
  width: 3rem;
  height: 3rem;
  background-color: var(--sage-100);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  transition: all 0.3s ease;
}

.service-card-icon svg {
  color: var(--sage-600);
  transition: all 0.3s ease;
}

.service-card:hover .service-card-icon {
  background-color: var(--sage-600);
}

.service-card:hover .service-card-icon svg {
  color: white;
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.service-card p {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.service-card .learn-more {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  color: var(--sage-600);
  font-size: 0.875rem;
  font-weight: 500;
  transition: gap 0.3s ease;
}

.service-card:hover .learn-more {
  gap: 0.5rem;
}

/* ===================
   TWO COLUMN LAYOUTS
   =================== */
.two-col {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .two-col {
    grid-template-columns: 1fr 1fr;
  }
}

.two-col-reverse {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .two-col-reverse {
    grid-template-columns: 1fr 1fr;
  }
  
  .two-col-reverse .col-image {
    order: -1;
  }
}

.col-text .label {
  color: var(--sage-600);
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

.col-text h2 {
  font-family: var(--font-display);
  font-size: 2.25rem;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .col-text h2 {
    font-size: 3rem;
  }
}

.col-text p {
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.col-text p.muted {
  color: var(--text-muted);
  font-size: 0.875rem;
}

.col-image {
  position: relative;
}

.col-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 0.75rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.col-image-badge {
  position: absolute;
  bottom: -1.5rem;
  left: -1.5rem;
  background-color: var(--sage-600);
  border-radius: 0.75rem;
  padding: 1.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  max-width: 280px;
  display: none;
}

@media (min-width: 768px) {
  .col-image-badge {
    display: block;
  }
}

.col-image-badge h4 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: white;
  margin-bottom: 0.25rem;
}

.col-image-badge p {
  color: var(--sage-200);
  font-size: 0.875rem;
  margin: 0;
}

/* Checklist */
.checklist {
  list-style: none;
  margin-bottom: 2rem;
}

.checklist li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text-secondary);
  margin-bottom: 0.75rem;
}

.checklist li svg {
  color: var(--sage-600);
  flex-shrink: 0;
}

/* ===================
   CTA SECTIONS
   =================== */
.cta-section {
  padding: 5rem 0;
  text-align: center;
}

.cta-section h2 {
  font-family: var(--font-display);
  font-size: 2.25rem;
  color: white;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .cta-section h2 {
    font-size: 3rem;
  }
}

.cta-section p {
  color: var(--sage-200);
  font-size: 1.125rem;
  margin-bottom: 2rem;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
}

@media (min-width: 640px) {
  .cta-buttons {
    flex-direction: row;
  }
}

/* ===================
   FOOTER
   =================== */
.footer {
  background-color: var(--sage-700);
  color: white;
  padding: 4rem 0 0;
}

.footer-grid {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    padding: 0 3rem;
  }
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: repeat(4, 1fr);
    padding: 0 6rem;
  }
}

.footer h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: white;
  margin-bottom: 1rem;
}

.footer-logo {
  height: 40px;
  width: auto;
  margin-bottom: 1rem;
  filter: brightness(0) invert(1);
}

.footer h4 {
  font-family: var(--font-display);
  font-size: 1.125rem;
  color: white;
  margin-bottom: 1rem;
}

.footer p {
  color: var(--sage-300);
  font-size: 0.875rem;
  line-height: 1.75;
}

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

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

.footer-links a {
  color: var(--sage-300);
  font-size: 0.875rem;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: white;
}

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

.footer-hours li {
  display: flex;
  justify-content: space-between;
  color: var(--sage-300);
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}

.footer-contact {
  color: var(--sage-300);
  font-size: 0.875rem;
}

.footer-contact p {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.footer-contact svg {
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.footer-contact a:hover {
  color: white;
}

.footer-bottom {
  border-top: 1px solid var(--sage-600);
  margin-top: 3rem;
  padding: 2rem 0;
  text-align: center;
}

.footer-bottom p {
  color: var(--sage-400);
  font-size: 0.875rem;
  margin: 0;
}

/* ===================
   PAGE HERO (Internal Pages)
   =================== */
.page-hero {
  padding: 5rem 0;
  background-color: var(--cream-100);
}

.page-hero-center {
  text-align: center;
}

.page-hero .label {
  color: var(--sage-600);
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .page-hero h1 {
    font-size: 3rem;
  }
}

@media (min-width: 1024px) {
  .page-hero h1 {
    font-size: 3.75rem;
  }
}

.page-hero p {
  font-size: 1.125rem;
  color: var(--text-secondary);
  max-width: 42rem;
  margin: 0 auto;
  line-height: 1.75;
}

/* ===================
   DOCTOR CARDS
   =================== */
.doctors-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

@media (min-width: 1024px) {
  .doctors-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.doctor-card {
  background-color: var(--cream-50);
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  border: 1px solid var(--sage-100);
  transition: box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.doctor-card:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.doctor-card-image {
  aspect-ratio: 3/4;
  overflow: hidden;
}

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

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

.doctor-card-content {
  padding: 2rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.doctor-card .btn-primary {
  margin-top: auto;
}

.doctor-card h2 {
  font-family: var(--font-display);
  font-size: 1.875rem;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
}

.doctor-card .title {
  color: var(--sage-600);
  font-weight: 500;
  margin-bottom: 1rem;
}

.doctor-card .bio {
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.doctor-card .certification {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.doctor-card .certification svg {
  color: var(--sage-600);
}

.doctor-card .specialties {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1.5rem 0;
}

.doctor-card .specialty-tag {
  background-color: var(--sage-100);
  color: var(--sage-700);
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 500;
}

/* ===================
   INFO CARDS / BOXES
   =================== */
.info-card {
  background-color: var(--cream-50);
  padding: 1.5rem;
  border-radius: 0.75rem;
  border: 1px solid var(--sage-100);
}

.info-card-icon {
  width: 3rem;
  height: 3rem;
  background-color: var(--sage-100);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.info-card-icon svg {
  color: var(--sage-600);
}

.info-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.info-card p {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}

/* 4-column info grid */
.info-grid-4 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .info-grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .info-grid-4 {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* 3-column info grid */
.info-grid-3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .info-grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* 2-column grid */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

@media (min-width: 768px) {
  .grid-2 {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ===================
   TAGS / PILLS
   =================== */
.tag {
  display: inline-block;
  background-color: white;
  color: var(--text-secondary);
  padding: 0.5rem 1.25rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  border: 1px solid var(--sage-100);
  transition: all 0.3s ease;
}

.tag:hover {
  border-color: var(--sage-400);
  color: var(--sage-700);
}

.tags-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

/* ===================
   CONTACT PAGE
   =================== */
.contact-box {
  background-color: var(--sage-600);
  color: white;
  padding: 2rem;
  border-radius: 1rem;
  margin-bottom: 1.5rem;
}

.contact-box-inner {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.contact-box-icon {
  width: 3.5rem;
  height: 3.5rem;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-box-icon svg {
  color: white;
}

.contact-box .label {
  color: var(--sage-200);
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.contact-box .phone {
  font-family: var(--font-display);
  font-size: 1.875rem;
  color: white;
  transition: color 0.3s ease;
}

.contact-box .phone:hover {
  color: var(--sage-200);
}

.contact-box .note {
  color: var(--sage-200);
  font-size: 0.875rem;
  margin: 0;
}

.contact-info-item {
  background-color: var(--cream-50);
  padding: 1.5rem;
  border-radius: 0.75rem;
  border: 1px solid var(--sage-100);
  margin-bottom: 1rem;
}

.contact-info-item-inner {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-info-icon {
  width: 3rem;
  height: 3rem;
  background-color: var(--sage-100);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info-icon svg {
  color: var(--sage-600);
}

.contact-info-item h3 {
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
  font-family: var(--font-body);
  font-size: 1rem;
}

.contact-info-item p {
  color: var(--text-secondary);
  margin: 0;
  font-size: 0.9375rem;
}

.contact-info-item a {
  color: var(--sage-600);
}

.contact-info-item a:hover {
  color: var(--sage-700);
}

.contact-info-item .muted {
  color: var(--text-muted);
  font-size: 0.875rem;
}

/* Map */
.map-container {
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border: 1px solid var(--sage-100);
  height: 500px;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* Office hours in contact page */
.hours-list {
  list-style: none;
}

.hours-list li {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--sage-100);
  font-size: 0.875rem;
}

.hours-list li:last-child {
  border-bottom: none;
}

.hours-list .day {
  color: var(--text-secondary);
}

.hours-list .time {
  color: var(--text-primary);
  font-weight: 500;
}

.hours-list .closed {
  color: var(--text-muted);
}

/* ===================
   PATIENT RESOURCES
   =================== */
.form-card {
  background-color: var(--cream-50);
  padding: 1.5rem;
  border-radius: 0.75rem;
  border: 1px solid var(--sage-100);
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.form-card h3 {
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
  font-family: var(--font-body);
  font-size: 1rem;
}

.form-card p {
  font-size: 0.875rem;
  color: var(--text-secondary);
  margin: 0;
}

.form-card-download {
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  background-color: var(--sage-100);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sage-600);
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.form-card-download:hover {
  background-color: var(--sage-600);
  color: white;
}

.resource-card {
  background-color: white;
  padding: 2rem;
  border-radius: 1rem;
  border: 1px solid var(--sage-100);
}

.resource-card-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.resource-card-icon {
  width: 3rem;
  height: 3rem;
  background-color: var(--sage-100);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.resource-card-icon svg {
  color: var(--sage-600);
}

.resource-card h2 {
  font-family: var(--font-display);
  font-size: 1.875rem;
  color: var(--text-primary);
  margin: 0;
}

.check-list {
  list-style: none;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.check-list li svg {
  color: var(--sage-500);
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.check-list li span {
  color: var(--text-secondary);
}

.payment-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.payment-item {
  background-color: var(--cream-50);
  padding: 1rem;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.payment-item svg {
  color: var(--sage-600);
}

.payment-item span {
  color: var(--text-secondary);
  font-weight: 500;
}

/* Policy cards */
.policy-card {
  background-color: var(--cream-50);
  padding: 2rem;
  border-radius: 1rem;
  border: 1px solid var(--sage-100);
}

.policy-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.policy-card ul {
  list-style: none;
}

.policy-card li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
  font-size: 0.875rem;
  color: var(--text-secondary);
}

.policy-card li::before {
  content: '';
  width: 0.375rem;
  height: 0.375rem;
  background-color: var(--sage-600);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 0.5rem;
}

/* ===================
   SERVICE DETAIL PAGE
   =================== */
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--sage-600);
  margin-bottom: 2rem;
  font-size: 0.9375rem;
}

.back-link:hover {
  color: var(--sage-700);
}

.service-tagline {
  font-size: 1.25rem;
  color: var(--sage-500);
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.overview-text {
  font-size: 1.125rem;
  color: var(--text-secondary);
  line-height: 1.8;
}

.expect-list {
  list-style: none;
}

.expect-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.expect-list .step {
  width: 1.5rem;
  height: 1.5rem;
  background-color: var(--sage-100);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.expect-list .step span {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--sage-600);
}

.expect-list p {
  color: var(--text-secondary);
  margin: 0;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  background-color: var(--sage-50);
  padding: 1rem;
  border-radius: 0.75rem;
  margin-bottom: 1rem;
}

.benefit-item svg {
  color: var(--sage-600);
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.benefit-item p {
  color: var(--text-secondary);
  margin: 0;
}

/* FAQ Accordion */
.faq-item {
  background-color: white;
  border-radius: 0.75rem;
  border: 1px solid var(--sage-100);
  margin-bottom: 1rem;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 1.25rem 1.5rem;
  background: none;
  border: none;
  text-align: left;
  font-weight: 500;
  color: var(--text-primary);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-body);
  font-size: 1rem;
}

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

.faq-question svg {
  transition: transform 0.3s ease;
}

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

.faq-answer {
  padding: 0 1.5rem 1.25rem;
  color: var(--text-secondary);
  display: none;
}

.faq-item.active .faq-answer {
  display: block;
}

/* Related services */
.related-services {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

.related-services a {
  background-color: var(--cream-50);
  padding: 0.5rem 1.25rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  color: var(--text-secondary);
  border: 1px solid var(--sage-100);
  transition: all 0.3s ease;
}

.related-services a:hover {
  border-color: var(--sage-400);
  color: var(--sage-700);
  background-color: white;
}

/* ===================
   DOCTOR PROFILE PAGE
   =================== */
.profile-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

@media (min-width: 1024px) {
  .profile-grid {
    grid-template-columns: 1fr 2fr;
  }
}

.profile-image {
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

@media (min-width: 1024px) {
  .profile-image {
    position: sticky;
    top: 8rem;
  }
}

.profile-image img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
}

.profile-content h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
  .profile-content h1 {
    font-size: 3rem;
  }
}

.profile-content .title {
  font-size: 1.25rem;
  color: var(--sage-600);
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.profile-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}

.profile-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background-color: var(--sage-100);
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  color: var(--sage-600);
}

.profile-bio p {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.education-item {
  background-color: var(--cream-50);
  padding: 1rem;
  border-radius: 0.75rem;
  border: 1px solid var(--sage-100);
  margin-bottom: 1rem;
}

.education-item .degree {
  font-weight: 500;
  color: var(--text-primary);
}

.education-item .institution {
  font-size: 0.875rem;
  color: var(--text-secondary);
}

.certification-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background-color: var(--cream-50);
  padding: 1rem;
  border-radius: 0.75rem;
  border: 1px solid var(--sage-100);
  margin-bottom: 0.75rem;
}

.certification-item::before {
  content: '';
  width: 0.5rem;
  height: 0.5rem;
  background-color: var(--sage-600);
  border-radius: 50%;
  flex-shrink: 0;
}

.certification-item span {
  color: var(--text-secondary);
}

.expertise-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.expertise-tag {
  background-color: white;
  color: var(--sage-700);
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
  border: 1px solid var(--sage-200);
}

.membership-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.membership-item::before {
  content: '';
  width: 0.5rem;
  height: 0.5rem;
  background-color: var(--sage-500);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 0.5rem;
}

.membership-item span {
  color: var(--text-secondary);
}

.interests-section {
  text-align: center;
}

.interests-section h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: white;
  margin-bottom: 1rem;
}

.interests-section p {
  color: var(--sage-200);
  margin-bottom: 1.5rem;
}

.interests-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

.interest-tag {
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(4px);
  color: white;
  padding: 0.5rem 1.25rem;
  border-radius: 9999px;
  font-size: 0.875rem;
}

/* ===================
   CREDENTIALS SECTION
   =================== */
.credentials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .credentials-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.credential-card {
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(4px);
  padding: 2rem;
  border-radius: 1rem;
  text-align: center;
}

.credential-card-icon {
  width: 3.5rem;
  height: 3.5rem;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.credential-card-icon svg {
  color: white;
}

.credential-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: white;
  margin-bottom: 0.5rem;
}

.credential-card p {
  font-size: 0.875rem;
  color: var(--sage-200);
  margin: 0;
}

/* ===================
   HOURS CARD (sage background)
   =================== */
.hours-card {
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(4px);
  border-radius: 1rem;
  padding: 2rem;
  max-width: 28rem;
  margin: 0 auto;
}

.hours-card-list {
  list-style: none;
}

.hours-card-list li {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--sage-100);
}

.hours-card-list li:last-child {
  border-bottom: none;
}

.hours-card-list .day {
  font-weight: 500;
  color: white;
}

/* ===================
   UTILITIES
   =================== */
.text-center {
  text-align: center;
}

.text-white {
  color: white;
}

.text-sage-200 {
  color: var(--sage-200);
}

.mb-4 {
  margin-bottom: 1rem;
}

.mb-6 {
  margin-bottom: 1.5rem;
}

.mb-8 {
  margin-bottom: 2rem;
}

.mb-12 {
  margin-bottom: 3rem;
}

.mt-4 {
  margin-top: 1rem;
}

.mt-8 {
  margin-top: 2rem;
}

.mt-12 {
  margin-top: 3rem;
}

.hidden {
  display: none;
}

@media (min-width: 768px) {
  .md\:block {
    display: block;
  }
}

/* Animation keyframes */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-in {
  animation: fadeIn 0.6s ease-out forwards;
}

/* SVG icon sizing */
svg {
  width: 1em;
  height: 1em;
  vertical-align: middle;
}

.icon-sm {
  width: 1rem;
  height: 1rem;
}

.icon-md {
  width: 1.25rem;
  height: 1.25rem;
}

.icon-lg {
  width: 1.5rem;
  height: 1.5rem;
}

.icon-xl {
  width: 1.75rem;
  height: 1.75rem;
}

/* Logo Bar Styles */
.logo-bar-section {
  padding: 3rem 0;
  border-top: 1px solid var(--sage-100);
}

.logo-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  opacity: 0.8;
}

.logo-bar img {
  height: 120px;
  width: auto;
  max-width: 100%;
  filter: grayscale(100%);
  transition: all 0.3s ease;
}

.logo-bar img:hover {
  filter: grayscale(0%);
  opacity: 1;
}

@media (max-width: 768px) {
  .logo-bar {
    gap: 2rem;
  }
  
  .logo-bar img {
    height: 80px;
  }
}
