/* Design System - Sacred Color Palette */
:root {
  /* Sacred & Spiritual Color Palette */
  --background: hsl(35, 15%, 98%);
  --foreground: hsl(158, 25%, 15%);
  
  --card: hsl(0, 0%, 100%);
  --card-foreground: hsl(158, 25%, 15%);
  
  --popover: hsl(0, 0%, 100%);
  --popover-foreground: hsl(158, 25%, 15%);
  
  /* Islamic Emerald Green */
  /* Exact palette */
  --primary: #006400; /* Dark Green */
  --primary-foreground: #FFFFFF;
  
  /* Warm Cream */
  --secondary: hsl(35, 25%, 95%);
  --secondary-foreground: hsl(158, 25%, 15%);
  
  /* Soft Muted */
  --muted: hsl(35, 15%, 92%);
  --muted-foreground: hsl(158, 15%, 45%);
  
  /* Sacred Gold */
  --accent: #FFD700; /* Gold */
  --accent-foreground: #0f1f1a;
  
  --destructive: hsl(0, 84.2%, 60.2%);
  --destructive-foreground: hsl(210, 40%, 98%);
  
  --border: hsl(35, 20%, 88%);
  --input: hsl(35, 20%, 88%);
  --ring: #006400;
  
  /* Custom Spiritual Tokens */
  --sacred-gold: #FFD700;
  --sacred-gold-light: #ffe34d;
  --emerald-deep: #006400;
  --emerald-light: #178f17;
  --cream-warm: hsl(35, 25%, 95%);
  --cream-soft: hsl(35, 15%, 98%);
  
  /* Gradients */
  --gradient-sacred: linear-gradient(135deg, var(--sacred-gold), var(--emerald-light));
  --gradient-subtle: linear-gradient(180deg, var(--cream-soft), var(--cream-warm));
  --gradient-hero: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.6));
  
  /* Shadows */
  --shadow-sacred: 0 10px 30px -5px rgba(0, 100, 0, 0.2);
  --shadow-gold: 0 4px 20px rgba(255, 215, 0, 0.3);
  
  /* Transitions */
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-sacred: all 0.4s ease-out;
  
  --radius: 0.5rem;
  
  /* Typography */
  --font-serif: 'Playfair Display', serif;
  --font-sans: 'Roboto', system-ui, -apple-system, Segoe UI, Arial, sans-serif;
}

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

body {
  font-family: var(--font-sans);
  background-color: var(--background);
  color: var(--foreground);
  line-height: 1.6;
  scroll-behavior: smooth;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.2;
}

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

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

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

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

.section-header h2 {
  font-size: 2.5rem;
  color: var(--emerald-deep);
  margin-bottom: 1.5rem;
}

.section-header p {
  font-size: 1.25rem;
  color: var(--muted-foreground);
  max-width: 48rem;
  margin: 0 auto;
}

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

/* Button Styles */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  white-space: nowrap;
  border-radius: var(--radius);
  font-size: 0.875rem;
  font-weight: 500;
  border: none;
  cursor: pointer;
  transition: var(--transition-smooth);
  text-decoration: none;
  font-family: inherit;
}

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

.btn:disabled {
  pointer-events: none;
  opacity: 0.5;
}

.btn .icon {
  width: 1rem;
  height: 1rem;
}

/* Button Variants */
.btn-default {
  background-color: var(--primary);
  color: var(--primary-foreground);
  box-shadow: var(--shadow-sacred);
}

.btn-default:hover {
  background-color: hsl(158, 64%, 20%);
  transform: translateY(-2px);
}

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

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

.btn-sacred {
  background: var(--gradient-sacred);
  color: white;
  font-weight: 600;
  box-shadow: var(--shadow-gold);
}

.btn-sacred:hover {
  box-shadow: var(--shadow-sacred);
  transform: scale(1.05);
}

.btn-hero {
  background-color: var(--sacred-gold); /* gold */
  color: var(--emerald-deep); /* green text */
  font-weight: 700;
  box-shadow: var(--shadow-gold);
}

.btn-hero:hover {
  background-color: var(--sacred-gold-light);
  box-shadow: var(--shadow-sacred);
  transform: scale(1.05);
}

.btn-pilgrimage {
  background-color: var(--emerald-deep); /* green */
  color: white;
  font-weight: 500;
  border: 1px solid var(--sacred-gold);
}

.btn-pilgrimage:hover {
  background-color: var(--emerald-light);
  border-color: var(--sacred-gold-light);
}

/* Button Sizes */
.btn-sm {
  height: 2.25rem;
  padding: 0 0.75rem;
  border-radius: calc(var(--radius) - 2px);
}

.btn-lg {
  height: 2.75rem;
  padding: 0 2rem;
  border-radius: calc(var(--radius) + 2px);
  font-size: 1rem;
}

.btn-full {
  width: 100%;
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  z-index: 50;
  box-shadow: var(--shadow-sacred);
}

.navbar-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.navbar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 4rem;
}

.logo h1 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--emerald-deep);
  margin: 0;
}

.logo p {
  font-size: 0.75rem;
  color: var(--muted-foreground);
  margin: -0.25rem 0 0 0;
}

.nav-links {
  display: none;
  gap: 2rem;
}

.nav-links a {
  color: var(--foreground);
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition-smooth);
}

.nav-links a:hover {
  color: var(--emerald-deep);
}

.nav-cta {
  display: none;
  align-items: center;
  gap: 1rem;
}

.contact-info {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

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

.mobile-menu-btn button {
  background: none;
  border: none;
  color: var(--foreground);
  cursor: pointer;
  padding: 0.5rem;
}

.mobile-menu-btn button:hover {
  color: var(--emerald-deep);
}

.mobile-nav {
  display: none;
  background-color: var(--background);
  border-top: 1px solid var(--border);
}

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

.mobile-nav-content {
  padding: 0.5rem;
}

.mobile-nav-link {
  display: block;
  padding: 0.75rem;
  color: var(--foreground);
  text-decoration: none;
  border-radius: var(--radius);
  transition: var(--transition-smooth);
}

.mobile-nav-link:hover {
  color: var(--emerald-deep);
  background-color: var(--secondary);
}

.mobile-contact {
  padding: 0.75rem;
  border-top: 1px solid var(--border);
  margin-top: 0.5rem;
}

.mobile-contact .contact-info {
  margin-bottom: 0.75rem;
}

@media (min-width: 768px) {
  .nav-links {
    display: flex;
  }
  
  .mobile-menu-btn {
    display: none;
  }
}

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

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  inset: 0;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(0,0,0,0.45), rgba(0,0,0,0.65)); /* darker overlay for readability */
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  color: white;
  padding: 0 1rem;
  max-width: 64rem;
  margin: 0 auto;
}

.hero-title {
  font-size: 3rem; /* ~3rem desktop */
  font-weight: 700;
  margin-bottom: 1.5rem;
  animation: fadeIn 1s ease-out;
}

.hero-title-accent {
  display: block;
  color: var(--sacred-gold);
}

.hero-description {
  font-size: 1.125rem; /* readable subheadline */
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 32rem;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
  animation: fadeIn 1s ease-out 0.2s both;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 3rem;
  animation: fadeIn 1s ease-out 0.4s both;
}

.hero-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 4rem;
  animation: fadeIn 1s ease-out 0.6s both;
}

.feature-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: var(--transition-sacred);
}

.feature-card:hover {
  background: rgba(255, 255, 255, 0.2);
}

.feature-icon {
  width: 3rem;
  height: 3rem;
  color: var(--sacred-gold);
  margin-bottom: 1rem;
}

.feature-card h3 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.feature-card p {
  color: rgba(255, 255, 255, 0.8);
  text-align: center;
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  animation: pulse 2s infinite;
}

.scroll-mouse {
  width: 1.5rem;
  height: 2.5rem;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 1rem;
  display: flex;
  justify-content: center;
}

.scroll-wheel {
  width: 0.25rem;
  height: 0.75rem;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 0.125rem;
  margin-top: 0.5rem;
  animation: pulse 2s infinite;
}

@media (min-width: 640px) {
  .hero-title {
    font-size: 3.5rem;
  }
  
  .hero-buttons {
    flex-direction: row;
  }
  
  .hero-features {
    grid-template-columns: repeat(3, 1fr);
  }
}

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

/* About Section */
.about {
  padding: 5rem 0;
  background: var(--gradient-subtle);
}

.about-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 4rem;
}

.about-text h3 {
  font-size: 1.875rem;
  color: var(--foreground);
  margin-bottom: 1.5rem;
}

.about-text p {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.stats {
  display: flex;
  gap: 2rem;
  padding-top: 1.5rem;
}

.stat {
  text-align: center;
}

.stat-number {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--emerald-deep);
}

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

.about-image {
  position: relative;
}

.about-image img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-sacred);
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.value-card {
  text-align: center;
  padding: 1.5rem;
  background-color: var(--card);
  border-radius: var(--radius);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border: 1px solid var(--border);
  transition: var(--transition-sacred);
}

.value-card:hover {
  box-shadow: var(--shadow-sacred);
}

.value-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  background: var(--gradient-sacred);
  border-radius: 50%;
  margin-bottom: 1rem;
}

.value-icon .icon {
  width: 2rem;
  height: 2rem;
  color: white;
}

.value-card h4 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 0.75rem;
}

.value-card p {
  color: var(--muted-foreground);
  line-height: 1.6;
}

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

/* Packages Section */
.packages {
  padding: 5rem 0;
  background-color: var(--background);
}

.packages-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 4rem;
}

.package-card {
  position: relative;
  background-color: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition-sacred);
}

.package-card:hover {
  box-shadow: var(--shadow-sacred);
}

.package-popular {
  border-color: var(--sacred-gold);
  box-shadow: var(--shadow-gold);
}

.popular-badge {
  position: absolute;
  top: 0;
  right: 0;
  background: var(--gradient-sacred);
  color: white;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 600;
}

.package-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.5rem;
  padding: 1.5rem 1.5rem 0;
}

.package-type {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.75rem;
  background-color: rgba(158, 64, 25, 0.1);
  color: var(--emerald-deep);
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: 9999px;
}

.package-duration {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  color: var(--muted-foreground);
  font-size: 0.875rem;
}

.package-card h3 {
  font-size: 1.5rem;
  color: var(--foreground);
  margin: 0 1.5rem 1rem;
}

.package-price {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--emerald-deep);
  margin: 0 1.5rem 1rem;
}

.package-price span {
  font-size: 1rem;
  font-weight: 400;
  color: var(--muted-foreground);
  margin-left: 0.5rem;
}

.package-description {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--muted-foreground);
  margin: 0 1.5rem 1.5rem;
}

.package-features {
  padding: 0 1.5rem 1.5rem;
}

.package-features h4 {
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 0.75rem;
}

.package-features ul {
  list-style: none;
  padding: 0;
}

.package-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--muted-foreground);
}

.package-features .icon {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--emerald-deep);
  margin-top: 0.125rem;
  flex-shrink: 0;
}

.package-buttons {
  padding: 1.5rem;
  border-top: 1px solid var(--border);
}

.package-buttons .btn {
  margin-bottom: 0.75rem;
}

.custom-package {
  margin-top: 4rem;
  text-align: center;
}

.custom-package-content {
  background-color: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  max-width: 64rem;
  margin: 0 auto;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.custom-package h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 1rem;
}

.custom-package p {
  color: var(--muted-foreground);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

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

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

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

/* Why Choose Section */
.why-choose {
  padding: 5rem 0;
  background: var(--gradient-subtle);
}

.reasons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 5rem;
}

.reason-card {
  background-color: var(--card);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border: 1px solid var(--border);
  transition: var(--transition-sacred);
}

.reason-card:hover {
  box-shadow: var(--shadow-sacred);
}

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

.reason-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  background: var(--gradient-sacred);
  border-radius: var(--radius);
  margin-bottom: 1rem;
  transition: var(--transition-sacred);
}

.reason-icon .icon {
  width: 1.5rem;
  height: 1.5rem;
  color: white;
}

.reason-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 0.75rem;
}

.reason-card p {
  color: var(--muted-foreground);
  line-height: 1.6;
}

.testimonials {
  background-color: var(--card);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border: 1px solid var(--border);
  margin-bottom: 4rem;
}

.testimonials h3 {
  font-size: 1.875rem;
  font-weight: 600;
  text-align: center;
  color: var(--foreground);
  margin-bottom: 2rem;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.testimonial-card {
  text-align: center;
  padding: 1.5rem;
  background-color: var(--background);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: var(--transition-sacred);
}

.testimonial-card:hover {
  box-shadow: var(--shadow-sacred);
}

.rating {
  display: flex;
  justify-content: center;
  gap: 0.25rem;
  margin-bottom: 1rem;
}

.rating .star {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--sacred-gold);
  fill: currentColor;
}

.testimonial-card p {
  color: var(--muted-foreground);
  margin-bottom: 1rem;
  font-style: italic;
  line-height: 1.6;
}

.testimonial-author {
  border-top: 1px solid var(--border);
  padding-top: 1rem;
}

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

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

.statistics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  text-align: center;
}

.statistics .stat {
  padding: 1rem;
}

.statistics .stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--emerald-deep);
  margin-bottom: 0.5rem;
}

.statistics .stat-label {
  color: var(--muted-foreground);
}

/* Gallery Section */
.gallery {
  padding: 5rem 0;
  background-color: var(--background);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 4/3;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-sacred);
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
  color: white;
  padding: 1.5rem;
  transform: translateY(100%);
  transition: var(--transition-sacred);
}

.gallery-item:hover .gallery-overlay {
  transform: translateY(0);
}

.gallery-overlay h4 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.gallery-overlay p {
  font-size: 0.875rem;
  opacity: 0.9;
}

/* Contact Section */
.contact {
  padding: 5rem 0;
  background-color: var(--background);
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

.form-card {
  background-color: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow-sacred);
}

.form-card h3 {
  font-size: 1.5rem;
  color: var(--foreground);
  margin-bottom: 0.5rem;
}

.form-card p {
  color: var(--muted-foreground);
  margin-bottom: 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--input);
  border-radius: var(--radius);
  background-color: var(--background);
  color: var(--foreground);
  font-size: 0.875rem;
  transition: var(--transition-smooth);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--ring);
  box-shadow: 0 0 0 2px hsl(158, 64%, 25%, 0.2);
}

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

.whatsapp-button {
  text-align: center;
  padding-top: 1rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-card {
  background-color: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: var(--transition-sacred);
}

.contact-card:hover {
  box-shadow: var(--shadow-sacred);
}

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

.contact-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  background: var(--gradient-sacred);
  border-radius: var(--radius);
  flex-shrink: 0;
}

.contact-icon .icon {
  width: 1.5rem;
  height: 1.5rem;
  color: white;
}

.contact-details h4 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 0.5rem;
}

.contact-details p {
  color: var(--foreground);
  font-weight: 500;
  margin-bottom: 0.25rem;
}

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

.quick-actions {
  background: var(--gradient-sacred);
  color: white;
  border: none;
  border-radius: var(--radius);
}

.quick-actions-content {
  padding: 1.5rem;
  text-align: center;
}

.quick-actions h4 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.quick-actions p {
  margin-bottom: 1.5rem;
  opacity: 0.9;
}

.quick-actions-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.quick-actions .btn-outline {
  background-color: white;
  color: var(--emerald-deep);
  border-color: white;
}

.quick-actions .btn-outline:hover {
  background-color: rgba(255, 255, 255, 0.9);
}

.office-visit {
  margin-top: 4rem;
  text-align: center;
}

.office-visit-content {
  background: var(--gradient-subtle);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
}

.office-visit h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 1rem;
}

.office-visit p {
  color: var(--muted-foreground);
  margin-bottom: 1.5rem;
  max-width: 32rem;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

@media (min-width: 640px) {
  .form-row {
    grid-template-columns: 1fr 1fr;
  }
  
  .quick-actions-buttons {
    flex-direction: row;
  }
}

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

/* Footer */
.footer {
  background-color: var(--emerald-deep);
  color: white;
  padding: 3rem 0 1rem;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-logo h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.footer-logo p {
  opacity: 0.8;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

.footer-section h4 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

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

.footer-section a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: var(--transition-smooth);
}

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

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

.footer-bottom p {
  opacity: 0.7;
}

/* Social Icons */
.social-icons {
  display: flex;
  gap: 0.75rem;
  margin-top: 0.75rem;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 9999px;
  background: rgba(255,255,255,0.1);
  color: white;
  transition: var(--transition-smooth);
}

.social-link:hover {
  background: var(--sacred-gold);
  color: var(--emerald-deep);
}

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

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

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

.fade-in {
  animation: fadeIn 1s ease-out;
}

/* Utility Classes */
.icon {
  width: 1rem;
  height: 1rem;
  stroke-width: 2;
}

/* Responsive adjustments */
@media (max-width: 639px) {
  .container {
    padding: 0 1rem;
  }
  
  .section-header h2 {
    font-size: 2rem;
  }
  
  .section-header p {
    font-size: 1rem;
  }
  
  .hero-title {
    font-size: 2rem; /* ~2rem mobile */
  }
  
  .hero-description {
    font-size: 1rem;
  }
}