/* CSS Variables */
:root {
  --background: hsl(60, 30%, 98%);
  --foreground: hsl(150, 25%, 15%);
  --card: hsl(60, 25%, 97%);
  --card-foreground: hsl(150, 25%, 15%);
  --primary: hsl(142, 45%, 35%);
  --primary-foreground: hsl(60, 30%, 98%);
  --secondary: hsl(45, 60%, 92%);
  --secondary-foreground: hsl(150, 25%, 15%);
  --muted: hsl(60, 20%, 94%);
  --muted-foreground: hsl(150, 10%, 45%);
  --accent: hsl(38, 70%, 55%);
  --accent-foreground: hsl(60, 30%, 98%);
  --border: hsl(60, 15%, 88%);
  --radius: 0.75rem;
  --cream: hsl(45, 40%, 95%);
  --forest: hsl(150, 35%, 25%);
  --gradient-hero: linear-gradient(135deg, hsl(142, 45%, 35%) 0%, hsl(150, 35%, 25%) 100%);
  --gradient-gold: linear-gradient(135deg, hsl(38, 70%, 55%) 0%, hsl(40, 65%, 70%) 100%);
  --shadow-soft: 0 4px 20px -4px rgba(23, 37, 30, 0.08);
  --shadow-card: 0 8px 30px -8px rgba(23, 37, 30, 0.12);
  --shadow-elevated: 0 20px 50px -12px rgba(23, 37, 30, 0.15);
}

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

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--background);
  color: var(--foreground);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
}

/* SVG Icon Base Styles - Ensure all icons display properly */
svg {
  display: inline-block;
  vertical-align: middle;
  fill: none;
  stroke: currentColor;
  color: inherit;
}

svg[fill="none"] {
  fill: none;
}

svg[stroke="currentColor"] {
  stroke: currentColor;
}

/* Ensure SVG icons inherit color from parent */
.icon-milk,
.icon-menu,
.chevron svg,
.footer-logo-icon svg,
.footer-contact-list li svg,
.stat-icon svg,
.reason-icon svg,
.franchise-icon svg,
.mission-icon svg,
.mission-icon-gold svg,
.value-icon svg,
.contact-info-icon svg,
.form-icon svg,
.policy-note-icon svg,
.policy-list li svg {
  color: inherit;
  stroke: currentColor;
  fill: none;
}

/* Smooth page transitions - removed global transition as it can cause performance issues */
/* Individual elements have their own transitions defined */

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
}

a {
  text-decoration: none;
  color: inherit;
}

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

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
}

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

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

/* Section Padding */
.section-padding {
  padding: 4rem 1rem;
}

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

/* Background Colors */
.bg-background {
  background-color: var(--background);
}

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

.bg-card {
  background-color: var(--card);
}

.bg-secondary {
  background-color: var(--secondary);
}

.hero-gradient {
  background: var(--gradient-hero);
}

.franchise-section {
  background: var(--gradient-hero);
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background-color: rgba(251, 250, 245, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
}

.logo:hover {
  transform: scale(1.05);
}

.logo:hover .logo-icon {
  transform: rotate(10deg);
}

.logo-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gradient-hero);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.icon-milk {
  width: 28px;
  height: 28px;
  color: var(--primary-foreground);
}

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

.logo-subtitle {
  font-size: 0.75rem;
  color: var(--muted-foreground);
}

/* Navigation */
.nav-desktop {
  display: none;
  align-items: center;
  gap: 0.25rem;
}

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

.nav-link {
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  transition: all 0.3s ease;
  color: var(--foreground);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background-color: var(--primary);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.nav-link:hover {
  background-color: var(--muted);
}

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

.nav-link.active {
  background-color: var(--primary);
  color: var(--primary-foreground);
}

.nav-link.active::after {
  width: 0;
}

.dropdown {
  position: relative;
}

.dropdown-btn {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.chevron {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 0.25rem;
  transition: transform 0.3s ease;
  line-height: 1;
}

.chevron svg {
  width: 10px;
  height: 6px;
  display: block;
}

.dropdown:hover .chevron {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 0.25rem;
  background-color: var(--card);
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  box-shadow: var(--shadow-card);
  padding: 0.5rem 0;
  min-width: 180px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 100;
}

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

.dropdown-item {
  display: block;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  color: var(--foreground);
  transition: all 0.2s ease;
  transform: translateX(0);
}

.dropdown-item:hover {
  background-color: var(--muted);
  transform: translateX(5px);
  padding-left: 1.25rem;
}

/* Auth Buttons */
.auth-buttons {
  display: none;
  align-items: center;
  gap: 0.75rem;
}

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

/* Mobile Menu */
.mobile-menu-btn {
  display: block;
  padding: 0.5rem;
  border-radius: 0.5rem;
  transition: background-color 0.2s;
}

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

.mobile-menu-btn:hover {
  background-color: var(--muted);
}

.icon-menu {
  width: 24px;
  height: 24px;
  color: var(--foreground);
  stroke: currentColor;
  fill: none;
}

.mobile-nav {
  display: none;
  border-top: 1px solid var(--border);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}

.mobile-nav.active {
  display: flex;
  flex-direction: column;
  max-height: calc(100vh - 80px);
  padding: 0;
  animation: slideDown 0.3s ease-out;
  overflow: hidden;
}

@keyframes slideDown {
  from {
    opacity: 0;
    max-height: 0;
  }
  to {
    opacity: 1;
    max-height: calc(100vh - 80px);
  }
}

.mobile-nav-content {
  padding: 1rem 0;
  overflow-y: auto;
  overflow-x: hidden;
  max-height: 100%;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--muted-foreground) var(--muted);
}

/* Custom scrollbar for webkit browsers (Chrome, Safari, Edge) */
.mobile-nav-content::-webkit-scrollbar {
  width: 6px;
}

.mobile-nav-content::-webkit-scrollbar-track {
  background: var(--muted);
  border-radius: 3px;
}

.mobile-nav-content::-webkit-scrollbar-thumb {
  background: var(--muted-foreground);
  border-radius: 3px;
}

.mobile-nav-content::-webkit-scrollbar-thumb:hover {
  background: var(--foreground);
}

.mobile-nav-link {
  display: block;
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  transition: all 0.3s ease;
  color: var(--foreground);
  transform: translateX(0);
}

.mobile-nav-link:hover {
  background-color: var(--muted);
  transform: translateX(5px);
}

.mobile-nav-link.active {
  background-color: var(--primary);
  color: var(--primary-foreground);
  transform: translateX(5px);
}

.mobile-nav-divider {
  border-top: 1px solid var(--border);
  margin: 0.5rem 0;
  padding-top: 0.5rem;
}

.mobile-nav-buttons {
  display: flex;
  gap: 0.5rem;
  padding: 1rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1rem;
  border-radius: calc(var(--radius) - 2px);
  font-size: 0.875rem;
  font-weight: 500;
  transition: all 0.3s ease;
  cursor: pointer;
  transform: translateY(0);
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn:active {
  transform: translateY(0);
}

.btn:focus {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

.btn-primary {
  background-color: var(--primary);
  color: var(--primary-foreground);
}

.btn-primary:hover {
  background-color: hsl(142, 45%, 30%);
}

.btn-ghost {
  color: var(--foreground);
}

.btn-ghost:hover {
  background-color: var(--muted);
}

.btn-outline {
  border: 1px solid var(--border);
  color: var(--foreground);
}

.btn-outline:hover {
  background-color: var(--muted);
}

.btn-accent {
  background-color: var(--accent);
  color: var(--accent-foreground);
  animation: fadeIn 0.8s ease-out 0.6s both;
}

.btn-accent:hover {
  background-color: hsl(38, 70%, 50%);
}

.btn-lg {
  padding: 0.75rem 2rem;
  font-size: 1.125rem;
}

/* Hero Slider */
.hero-slider {
  position: relative;
  height: 90vh;
  min-height: 600px;
  overflow: hidden;
}

.hero-slider .container-custom {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  z-index: 10;
  padding-top: 0;
  padding-bottom: 0;
}

.hero-slides {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.7s ease-in-out;
  pointer-events: none;
}

.hero-slide.active {
  opacity: 1;
  pointer-events: auto;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.1);
  transition: transform 0.7s ease-in-out;
  will-change: transform;
}

.hero-slide.active .hero-bg {
  transform: scale(1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(23, 37, 30, 0.9), rgba(23, 37, 30, 0.7), transparent);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 42rem;
  color: var(--primary-foreground);
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.5s ease-out 0.2s, transform 0.5s ease-out 0.2s;
  will-change: opacity, transform;
}

.hero-slide.active .hero-content {
  opacity: 1;
  transform: translateY(0);
}

/* Ensure hero content is visible on active slide */
.hero-slide:not(.active) .hero-content {
  opacity: 0;
  transform: translateY(30px);
  pointer-events: none;
}

.hero-badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  background-color: var(--accent);
  color: var(--accent-foreground);
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
  animation: fadeIn 0.8s ease-out 0.3s both;
  transition: all 0.3s ease;
}

.hero-badge:hover {
  transform: scale(1.05);
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  animation: fadeIn 0.8s ease-out 0.4s both;
}

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

.hero-description {
  font-size: 1.125rem;
  opacity: 0.9;
  margin-bottom: 2rem;
  line-height: 1.75;
  animation: fadeIn 0.8s ease-out 0.5s both;
}

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

.hero-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: rgba(251, 250, 245, 0.2);
  backdrop-filter: blur(8px);
  color: var(--primary-foreground);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  transition: all 0.3s ease;
  z-index: 20;
  cursor: pointer;
}

.hero-nav-btn:hover {
  background-color: rgba(251, 250, 245, 0.4);
  transform: translateY(-50%) scale(1.1);
}

.hero-nav-btn:active {
  transform: translateY(-50%) scale(0.95);
}

.hero-nav-prev {
  left: 1rem;
}

@media (min-width: 768px) {
  .hero-nav-prev {
    left: 2rem;
  }
}

.hero-nav-next {
  right: 1rem;
}

@media (min-width: 768px) {
  .hero-nav-next {
    right: 2rem;
  }
}

.hero-dots {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.75rem;
  z-index: 20;
}

.hero-dot {
  width: 12px;
  height: 12px;
  border-radius: 9999px;
  background-color: rgba(251, 250, 245, 0.5);
  transition: all 0.3s ease;
  cursor: pointer;
}

.hero-dot:hover {
  background-color: rgba(251, 250, 245, 0.8);
  transform: scale(1.2);
}

.hero-dot.active {
  width: 32px;
  background-color: var(--accent);
}

/* Stats Section */
.stats-section {
  padding: 4rem 0;
  background: var(--gradient-hero);
}

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

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

.stat-item {
  text-align: center;
  color: var(--primary-foreground);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.stat-item.animated {
  opacity: 1;
  transform: translateY(0);
}

.stat-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  background-color: rgba(251, 250, 245, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.stat-item:hover .stat-icon {
  transform: scale(1.1);
  background-color: rgba(251, 250, 245, 0.2);
}

.stat-icon svg {
  width: 32px;
  height: 32px;
  color: var(--primary-foreground);
  stroke: currentColor;
  fill: none;
}

.stat-value {
  font-family: 'Playfair Display', serif;
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

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

.stat-label {
  font-size: 0.875rem;
  opacity: 0.8;
}

/* Section Header */
.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  background-color: var(--secondary);
  color: var(--secondary-foreground);
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
  transition: all 0.3s ease;
}

.section-badge:hover {
  transform: scale(1.05);
}

.badge-primary {
  background-color: rgba(142, 45%, 35%, 0.1);
  color: var(--primary);
}

.badge-light {
  background-color: rgba(251, 250, 245, 0.1);
  color: var(--primary-foreground);
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--foreground);
}

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

.section-title.text-white {
  color: var(--primary-foreground);
}

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

.section-subtitle.text-white {
  color: rgba(251, 250, 245, 0.8);
}

.section-text {
  color: var(--muted-foreground);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.section-footer {
  text-align: center;
  margin-top: 2.5rem;
}

/* About Section */
.about-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

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

.about-image {
  position: relative;
}

.about-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 1rem;
  box-shadow: var(--shadow-elevated);
  transition: transform 0.5s ease;
}

.about-image:hover .about-img {
  transform: scale(1.02);
}

.about-badge {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background-color: var(--accent);
  color: var(--accent-foreground);
  padding: 1.5rem;
  border-radius: 0.75rem;
  box-shadow: var(--shadow-card);
  animation: float 3s ease-in-out infinite;
  animation-delay: 1s;
}

.about-badge-value {
  font-family: 'Playfair Display', serif;
  font-size: 2.25rem;
  font-weight: 700;
}

.about-badge-label {
  font-size: 0.875rem;
}

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

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.feature-check {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: var(--primary);
  color: var(--primary-foreground);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.75rem;
  font-weight: 700;
}

.feature-item span {
  font-size: 0.875rem;
  color: var(--foreground);
}

/* Reasons Grid */
.reasons-grid {
  display: grid;
  gap: 1.5rem;
}

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

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

.reason-card {
  background-color: var(--card);
  padding: 2rem;
  border-radius: 0.75rem;
  box-shadow: var(--shadow-soft);
  transition: all 0.3s ease;
  transform: translateY(0);
}

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

.reason-icon {
  width: 56px;
  height: 56px;
  border-radius: 0.75rem;
  background: var(--gradient-hero);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  transition: all 0.3s ease;
}

.reason-card:hover .reason-icon {
  transform: scale(1.1) rotate(5deg);
}

.reason-icon svg {
  width: 28px;
  height: 28px;
  color: var(--primary-foreground);
  stroke: currentColor;
  fill: none;
}

.reason-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--foreground);
}

.reason-text {
  color: var(--muted-foreground);
  font-size: 0.875rem;
  line-height: 1.75;
}

/* Products Grid */
.products-grid {
  display: grid;
  gap: 1.5rem;
}

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

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

.product-card {
  background-color: var(--card);
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: all 0.3s ease;
  transform: translateY(0);
}

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

.product-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
}

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

.product-card:hover .product-image img {
  transform: scale(1.1);
}

.product-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 500;
  transition: all 0.3s ease;
  z-index: 10;
}

.product-card:hover .product-badge {
  transform: scale(1.05);
}

.product-badge.available {
  background-color: var(--primary);
  color: var(--primary-foreground);
}

.product-badge.coming-soon {
  background-color: var(--accent);
  color: var(--accent-foreground);
}

.product-info {
  padding: 1.5rem;
}

.product-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--foreground);
}

.product-price {
  color: var(--accent);
  font-weight: 700;
  font-size: 1.125rem;
}

.product-description {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-bottom: 1rem;
  line-height: 1.6;
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
}

.product-card-upcoming {
  opacity: 0.8;
}

.product-card-upcoming .product-image {
  filter: grayscale(100%);
}

.product-card-upcoming .product-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.2);
}

/* Testimonials */
.testimonials-grid {
  display: grid;
  gap: 1.5rem;
}

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

.testimonial-card {
  background-color: var(--card);
  padding: 2rem;
  border-radius: 0.75rem;
  box-shadow: var(--shadow-soft);
  position: relative;
  transition: all 0.3s ease;
  transform: translateY(0);
}

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

.testimonial-quote {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 40px;
  height: 40px;
  color: rgba(142, 45%, 35%, 0.1);
  transition: all 0.3s ease;
}

.testimonial-card:hover .testimonial-quote {
  color: rgba(142, 45%, 35%, 0.2);
  transform: scale(1.1);
}

.testimonial-stars {
  color: var(--accent);
  font-size: 1.25rem;
  margin-bottom: 1rem;
  letter-spacing: 0.25rem;
}

.testimonial-text {
  color: var(--foreground);
  margin-bottom: 1.5rem;
  line-height: 1.75;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gradient-hero);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-foreground);
  font-weight: 600;
  transition: all 0.3s ease;
}

.testimonial-card:hover .testimonial-avatar {
  transform: scale(1.1);
}

.testimonial-name {
  font-weight: 600;
  color: var(--foreground);
}

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

/* FAQ */
.faq-container {
  max-width: 48rem;
  margin: 0 auto;
}

.faq-item {
  background-color: var(--card);
  border-radius: 0.75rem;
  padding: 0 1.5rem;
  box-shadow: var(--shadow-soft);
  margin-bottom: 1rem;
  transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: var(--shadow-card);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 0;
  text-align: left;
  font-weight: 600;
  color: var(--foreground);
  cursor: pointer;
}

.faq-icon {
  font-size: 1.5rem;
  transition: transform 0.3s ease;
  display: inline-block;
}

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

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

.faq-item.active .faq-answer {
  max-height: 500px;
  padding-bottom: 1.25rem;
  padding-top: 0.5rem;
}

.faq-answer p {
  color: var(--muted-foreground);
}

/* Franchise Section */
.franchises-grid {
  display: grid;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

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

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

.franchise-card {
  background-color: rgba(251, 250, 245, 0.1);
  backdrop-filter: blur(8px);
  border-radius: 0.75rem;
  padding: 1.5rem;
  color: var(--primary-foreground);
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  transition: all 0.3s ease;
  transform: translateY(0);
}

.franchise-card:hover {
  background-color: rgba(251, 250, 245, 0.2);
  transform: translateY(-5px);
}

.franchise-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.franchise-card:hover .franchise-icon {
  transform: scale(1.1) rotate(5deg);
}

.franchise-icon svg {
  width: 24px;
  height: 24px;
  color: var(--accent-foreground);
  stroke: currentColor;
  fill: none;
}

.franchise-city {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 600;
}

.franchise-state {
  font-size: 0.875rem;
  opacity: 0.8;
}

.franchise-outlets {
  color: var(--accent);
  font-weight: 700;
  margin-top: 0.5rem;
}

/* Footer */
.footer {
  background-color: var(--forest);
  color: var(--primary-foreground);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  gap: 3rem;
}

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

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

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

.footer-logo-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: rgba(251, 250, 245, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-logo-icon svg {
  width: 28px;
  height: 28px;
  color: var(--foreground);
  stroke: currentColor;
  fill: none;
}

.footer-logo-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 700;
}

.footer-logo-subtitle {
  font-size: 0.75rem;
  opacity: 0.8;
}

.footer-description {
  font-size: 0.875rem;
  opacity: 0.8;
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

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

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(251, 250, 245, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  font-weight: 600;
  transform: scale(1);
}

.social-link:hover {
  background-color: rgba(251, 250, 245, 0.2);
  transform: scale(1.1);
}

.footer-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

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

.footer-list li {
  margin-bottom: 0.75rem;
}

.footer-list a {
  font-size: 0.875rem;
  opacity: 0.8;
  transition: all 0.2s ease;
  display: inline-block;
  transform: translateX(0);
}

.footer-list a:hover {
  opacity: 1;
  transform: translateX(5px);
}

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

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-size: 0.875rem;
  opacity: 0.8;
}

.footer-contact-list li svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 0.125rem;
  color: var(--foreground);
  stroke: currentColor;
  fill: none;
  opacity: 0.8;
}

.footer-bottom {
  border-top: 1px solid rgba(251, 250, 245, 0.2);
  margin-top: 3rem;
  padding-top: 2rem;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.875rem;
  opacity: 0.8;
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
}

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

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* Loading state */
.loading {
  opacity: 0.6;
  pointer-events: none;
}

/* Focus visible for accessibility */
*:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
  border-radius: 2px;
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(1.1);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Animation Classes */
.fade-up {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-up.animated {
  opacity: 1;
  transform: translateY(0);
}

.slide-in-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.slide-in-left.animated {
  opacity: 1;
  transform: translateX(0);
}

.slide-in-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.slide-in-right.animated {
  opacity: 1;
  transform: translateX(0);
}

/* Hero Content Animation - already defined above */

/* Utility Classes */
.text-white {
  color: var(--primary-foreground);
}

/* Page Hero */
.page-hero {
  position: relative;
  padding: 6rem 0;
  overflow: hidden;
}

.page-hero .hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.page-hero .hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(23, 37, 30, 0.9);
}

.page-hero-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-foreground);
  margin-bottom: 1rem;
}

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

.page-hero-subtitle {
  color: rgba(251, 250, 245, 0.8);
  font-size: 1.125rem;
  max-width: 42rem;
  margin: 0 auto;
}

/* Mission & Vision */
.mission-grid {
  display: grid;
  gap: 2rem;
}

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

.mission-card {
  background-color: var(--card);
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: var(--shadow-card);
  transition: all 0.3s ease;
  transform: translateY(0);
}

@media (min-width: 768px) {
  .mission-card {
    padding: 2rem;
  }
}

.mission-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-elevated);
}

.mission-card-gold {
  background-color: var(--card);
}

.mission-card-gold .mission-icon-gold {
  background: var(--gradient-gold);
}

.mission-icon {
  width: 4rem;
  height: 4rem;
  border-radius: 0.75rem;
  background: var(--gradient-hero);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
}

.mission-icon-gold {
  background: var(--gradient-gold);
}

.mission-card:hover .mission-icon {
  transform: scale(1.1) rotate(5deg);
}

.mission-icon svg {
  width: 2rem;
  height: 2rem;
  color: var(--primary-foreground);
  stroke: currentColor;
  fill: none;
}

.mission-icon-gold svg {
  color: var(--accent-foreground);
  stroke: currentColor;
  fill: none;
}

.mission-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--foreground);
}

.mission-text {
  color: var(--muted-foreground);
  line-height: 1.75;
}

/* Values Grid */
.values-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

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

.value-card {
  background-color: var(--card);
  padding: 1.5rem;
  border-radius: 0.75rem;
  box-shadow: var(--shadow-soft);
  text-align: center;
  transition: all 0.3s ease;
  transform: translateY(0);
}

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

.value-icon {
  width: 3.5rem;
  height: 3.5rem;
  margin: 0 auto 1rem;
  border-radius: 50%;
  background: var(--gradient-hero);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.value-card:hover .value-icon {
  transform: scale(1.1) rotate(5deg);
}

.value-icon svg {
  width: 1.75rem;
  height: 1.75rem;
  color: var(--primary-foreground);
  stroke: currentColor;
  fill: none;
}

.value-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--foreground);
}

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

/* Roadmap */
.roadmap {
  position: relative;
  padding: 2rem 0;
  min-height: 400px;
}

.roadmap-line {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background-color: var(--border);
  transform: translateX(-50%);
  display: none;
  z-index: 1;
}

@media (min-width: 768px) {
  .roadmap-line {
    display: block;
    left: 50%;
    transform: translateX(-50%);
  }
}

.roadmap-items {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  position: relative;
  z-index: 2;
  padding: 1rem 0;
}

@media (min-width: 768px) {
  .roadmap-items {
    gap: 2rem;
  }
}

.roadmap-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  position: relative;
}

@media (min-width: 768px) {
  .roadmap-item {
    gap: 2rem;
  }
}

.roadmap-item.animated {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 767px) {
  .roadmap-item {
    flex-direction: row;
  }
  
  .roadmap-item-right {
    flex-direction: row;
  }
  
  .roadmap-dot {
    order: -1;
  }
}

@media (min-width: 768px) {
  .roadmap-item {
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    min-height: 120px;
  }
  
  .roadmap-item:not(.roadmap-item-right) {
    flex-direction: row;
    justify-content: flex-start;
  }
  
  .roadmap-item:not(.roadmap-item-right) .roadmap-content {
    text-align: right;
    margin-right: auto;
    margin-left: 0;
    max-width: calc(50% - 2.5rem);
    width: auto;
    flex: 0 0 auto;
  }
  
  .roadmap-item:not(.roadmap-item-right) .roadmap-dot {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    margin: 0;
  }
  
  .roadmap-item-right {
    flex-direction: row-reverse;
    justify-content: flex-end;
  }
  
  .roadmap-item-right .roadmap-content {
    text-align: left;
    margin-left: auto;
    margin-right: 0;
    max-width: calc(50% - 2.5rem);
    width: auto;
    flex: 0 0 auto;
  }
  
  .roadmap-item-right .roadmap-dot {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    margin: 0;
  }
  
  .roadmap-item:hover .roadmap-dot {
    transform: translate(-50%, -50%) scale(1.2);
  }
}

.roadmap-content {
  background-color: var(--card);
  padding: 1.5rem;
  border-radius: 0.75rem;
  box-shadow: var(--shadow-soft);
  transition: all 0.3s ease;
  width: 100%;
  position: relative;
  display: inline-block;
}

@media (min-width: 768px) {
  .roadmap-content {
    width: auto;
    padding: 1.5rem;
  }
}

.roadmap-content:hover {
  box-shadow: var(--shadow-card);
  transform: translateY(-2px);
}

.roadmap-year {
  display: block;
  color: var(--accent);
  font-weight: 700;
  font-size: 1.125rem;
  margin-bottom: 0;
}

.roadmap-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0;
  color: var(--foreground);
}

.roadmap-desc {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.6;
  margin-top: 0;
}

.roadmap-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: var(--primary);
  border: 3px solid var(--background);
  flex-shrink: 0;
  display: block;
  box-shadow: 0 0 0 2px var(--border);
  transition: all 0.3s ease;
  position: relative;
  z-index: 3;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .roadmap-dot {
    width: 24px;
    height: 24px;
    border: 4px solid var(--background);
    box-shadow: 0 0 0 3px var(--border);
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    margin: 0;
    z-index: 10;
    background-color: var(--primary);
  }
}

@media (max-width: 767px) {
  .roadmap-item:hover .roadmap-dot {
    transform: scale(1.2);
    box-shadow: 0 0 0 4px var(--primary);
  }
}

/* Team Grid */
.team-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

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

.team-card {
  background-color: var(--card);
  padding: 1.5rem;
  border-radius: 0.75rem;
  box-shadow: var(--shadow-soft);
  text-align: center;
  transition: all 0.3s ease;
  transform: translateY(0);
}

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

.team-avatar {
  width: 6rem;
  height: 6rem;
  margin: 0 auto 1rem;
  border-radius: 50%;
  background: var(--gradient-hero);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-foreground);
  transition: all 0.3s ease;
}

.team-card:hover .team-avatar {
  transform: scale(1.1);
}

.team-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
  color: var(--foreground);
}

.team-role {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

/* Form Styles */
.form-container {
  max-width: 28rem;
  margin: 0 auto;
}

.form-card {
  background-color: var(--card);
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: var(--shadow-card);
  transition: all 0.3s ease;
  transform: translateY(0);
}

.form-card:hover {
  box-shadow: var(--shadow-elevated);
}

.form-header {
  text-align: center;
  margin-bottom: 2rem;
}

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

.form-icon svg {
  width: 32px;
  height: 32px;
  color: var(--primary-foreground);
  stroke: currentColor;
  fill: none;
}

.form-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--foreground);
}

.form-subtitle {
  color: var(--muted-foreground);
  font-size: 0.875rem;
  margin-top: 0.25rem;
}

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

.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: var(--foreground);
}

.form-input {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) - 2px);
  font-size: 0.875rem;
  transition: border-color 0.2s;
  background-color: var(--background);
  color: var(--foreground);
}

.form-input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(142, 45%, 35%, 0.1);
  transform: translateY(-1px);
}

.form-input {
  transition: all 0.3s ease;
}

.form-input:focus {
  transform: translateY(-1px);
}

.form-input::placeholder {
  color: var(--muted-foreground);
}

.input-group {
  position: relative;
}

.input-icon {
  position: absolute;
  right: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--muted-foreground);
  cursor: pointer;
}

.form-textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) - 2px);
  font-size: 0.875rem;
  font-family: inherit;
  resize: vertical;
  min-height: 150px;
  transition: all 0.3s ease;
}

.form-textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(142, 45%, 35%, 0.1);
  transform: translateY(-1px);
}

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.form-checkbox input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 0.125rem;
  cursor: pointer;
}

.form-link {
  color: var(--primary);
  text-decoration: underline;
}

.form-link:hover {
  color: hsl(142, 45%, 30%);
}

.flex {
  display: flex;
}

.items-center {
  align-items: center;
}

.justify-between {
  justify-content: space-between;
}

.justify-center {
  justify-content: center;
}

.w-full {
  width: 100%;
}

.space-y-5 > * + * {
  margin-top: 1.25rem;
}

.min-h-screen {
  min-height: 100vh;
}

.mt-6 {
  margin-top: 1.5rem;
}

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

.text-xs {
  font-size: 0.75rem;
}

.text-sm {
  font-size: 0.875rem;
}

.grid {
  display: grid;
}

.grid-cols-2 {
  grid-template-columns: repeat(2, 1fr);
}

.grid-cols-3 {
  grid-template-columns: repeat(3, 1fr);
}

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

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

@media (min-width: 1024px) {
  .lg\:grid-cols-2 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .lg\:grid-cols-3 {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .lg\:grid-cols-4 {
    grid-template-columns: repeat(4, 1fr);
  }
}

.gap-4 {
  gap: 1rem;
}

.gap-6 {
  gap: 1.5rem;
}

.gap-12 {
  gap: 3rem;
}

.items-center {
  align-items: center;
}

.justify-center {
  justify-content: center;
}

.flex-wrap {
  flex-wrap: wrap;
}

.mb-10 {
  margin-bottom: 2.5rem;
}

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

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

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.max-w-2xl {
  max-width: 42rem;
}

.max-w-4xl {
  max-width: 56rem;
}

.relative {
  position: relative;
}

.z-10 {
  z-index: 10;
}

.relative.z-10 {
  position: relative;
  z-index: 10;
}

/* Contact Info Cards */
.contact-info-grid {
  display: grid;
  gap: 1.5rem;
}

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

.contact-info-card {
  background-color: var(--cream);
  padding: 1.5rem;
  border-radius: 0.75rem;
  transition: all 0.3s ease;
  transform: translateY(0);
}

.contact-info-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-soft);
}

.contact-info-icon {
  width: 48px;
  height: 48px;
  border-radius: 0.5rem;
  background: var(--gradient-hero);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  transition: all 0.3s ease;
}

.contact-info-card:hover .contact-info-icon {
  transform: scale(1.1) rotate(5deg);
}

.contact-info-icon svg {
  width: 24px;
  height: 24px;
  color: var(--primary-foreground);
  stroke: currentColor;
  fill: none;
}

.contact-info-title {
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--foreground);
}

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

/* Policy Pages */
.policy-content {
  background-color: var(--card);
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: var(--shadow-soft);
  transition: all 0.3s ease;
  width: 100%;
}

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

.policy-content:hover {
  box-shadow: var(--shadow-card);
}

.policy-section {
  margin-bottom: 2rem;
  opacity: 1;
  transform: translateY(0);
}

.policy-section:last-child {
  margin-bottom: 0;
}

.policy-section.animated {
  opacity: 1;
  transform: translateY(0);
}

.policy-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--foreground);
}

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

.policy-section p {
  color: var(--muted-foreground);
  line-height: 1.75;
  margin-bottom: 0;
}

.policy-list {
  list-style: none;
  margin: 1rem 0;
  padding: 0;
}

.policy-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  color: var(--muted-foreground);
}

.policy-list li:last-child {
  margin-bottom: 0;
}

.policy-list li svg {
  width: 20px;
  height: 20px;
  color: var(--primary);
  stroke: currentColor;
  fill: none;
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.policy-note {
  background-color: rgba(38, 70%, 55%, 0.1);
  padding: 1.5rem;
  border-radius: 0.75rem;
  margin-bottom: 2rem;
}

.policy-note-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.policy-note-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gradient-hero);
  display: flex;
  align-items: center;
  justify-content: center;
}

.policy-note-icon svg {
  width: 24px;
  height: 24px;
  color: var(--primary-foreground);
  stroke: currentColor;
  fill: none;
}

.policy-note-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--foreground);
}

.policy-steps {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.policy-step {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
  background-color: var(--cream);
  border-radius: 0.5rem;
  transition: all 0.3s ease;
  transform: translateX(0);
}

.policy-step:hover {
  transform: translateX(5px);
  box-shadow: var(--shadow-soft);
}

.policy-step-number {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--gradient-hero);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--primary-foreground);
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.policy-step:hover .policy-step-number {
  transform: scale(1.1);
}

.policy-step-content h3 {
  font-weight: 600;
  margin-bottom: 0.25rem;
  color: var(--foreground);
}

.policy-step-content p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin: 0;
}

/* 404 Page */
.not-found {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--muted);
  text-align: center;
}

.not-found h1 {
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--foreground);
}

.not-found p {
  font-size: 1.25rem;
  color: var(--muted-foreground);
  margin-bottom: 1rem;
}

.not-found a {
  color: var(--primary);
  text-decoration: underline;
}

.not-found a:hover {
  color: hsl(142, 45%, 30%);
}

/* Additional Utility Classes for Opportunities Page */
.rounded-2xl {
  border-radius: 1rem;
}

.rounded-xl {
  border-radius: 0.75rem;
}

.rounded-lg {
  border-radius: 0.5rem;
}

.rounded-full {
  border-radius: 9999px;
}

.gold-gradient {
  background: var(--gradient-gold);
}

.p-8 {
  padding: 2rem;
}

@media (min-width: 768px) {
  .md\:p-12 {
    padding: 3rem;
  }
}

.w-20 {
  width: 5rem;
}

.h-20 {
  height: 5rem;
}

.w-16 {
  width: 4rem;
}

.h-16 {
  height: 4rem;
}

.w-14 {
  width: 3.5rem;
}

.h-14 {
  height: 3.5rem;
}

.w-10 {
  width: 2.5rem;
}

.h-10 {
  height: 2.5rem;
}

.px-6 {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.py-3 {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

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

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

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

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

.text-lg {
  font-size: 1.125rem;
  line-height: 1.75rem;
}

.text-sm {
  font-size: 0.875rem;
  line-height: 1.25rem;
}

.font-semibold {
  font-weight: 600;
}

.font-bold {
  font-weight: 700;
}

.text-muted-foreground {
  color: var(--muted-foreground);
}

.text-foreground {
  color: var(--foreground);
}

.text-primary-foreground {
  color: var(--primary-foreground);
}

.text-secondary-foreground {
  color: var(--secondary-foreground);
}

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

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.space-y-3 > * + * {
  margin-top: 0.75rem;
}

.space-y-6 > * + * {
  margin-top: 1.5rem;
}

.gap-3 {
  gap: 0.75rem;
}

.gap-4 {
  gap: 1rem;
}

.gap-6 {
  gap: 1.5rem;
}

.gap-12 {
  gap: 3rem;
}

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

/* section-footer already defined above */
