/* ============================================
   THO Solutions - Main Stylesheet
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

/* ============================================
   CSS Variables (Design System)
   ============================================ */
:root {
  --background: hsl(210, 20%, 98%);
  --foreground: hsl(220, 30%, 15%);
  --card: hsl(0, 0%, 100%);
  --card-foreground: hsl(220, 30%, 15%);
  --primary: hsl(220, 70%, 20%);
  --primary-foreground: hsl(210, 40%, 98%);
  --secondary: hsl(210, 20%, 96%);
  --secondary-foreground: hsl(220, 30%, 15%);
  --muted: hsl(210, 20%, 94%);
  --muted-foreground: hsl(220, 10%, 45%);
  --accent: hsl(195, 100%, 45%);
  --accent-foreground: hsl(0, 0%, 100%);
  --border: hsl(220, 15%, 90%);
  --radius: 0.75rem;
  
  --gradient-hero: linear-gradient(135deg, hsl(220, 70%, 15%) 0%, hsl(220, 60%, 25%) 50%, hsl(210, 50%, 30%) 100%);
  --gradient-accent: linear-gradient(135deg, hsl(195, 100%, 45%) 0%, hsl(210, 100%, 55%) 100%);
  --shadow-soft: 0 4px 20px -4px hsla(220, 30%, 15%, 0.1);
  --shadow-elevated: 0 8px 30px -8px hsla(220, 30%, 15%, 0.15);
  --shadow-glow: 0 0 40px -10px hsla(195, 100%, 45%, 0.3);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', system-ui, sans-serif;
  background-color: var(--background);
  color: var(--foreground);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

ul, ol {
  list-style: none;
}

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

/* ============================================
   Utility Classes
   ============================================ */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1rem;
}

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

.text-gradient {
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

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

.shadow-soft {
  box-shadow: var(--shadow-soft);
}

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

.shadow-glow {
  box-shadow: var(--shadow-glow);
}

/* ============================================
   Buttons
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

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

.btn-primary:hover {
  background-color: hsla(220, 70%, 20%, 0.9);
  box-shadow: var(--shadow-elevated);
}

.btn-hero {
  background: var(--gradient-accent);
  color: var(--accent-foreground);
  box-shadow: var(--shadow-glow);
}

.btn-hero:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.btn-hero-outline {
  background: transparent;
  color: var(--primary-foreground);
  border: 2px solid hsla(210, 40%, 98%, 0.3);
  backdrop-filter: blur(4px);
}

.btn-hero-outline:hover {
  background: hsla(210, 40%, 98%, 0.1);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

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

.btn-lg {
  padding: 0.875rem 2rem;
  font-size: 1rem;
}

.btn-xl {
  padding: 1rem 2.5rem;
  font-size: 1.125rem;
  border-radius: 0.875rem;
}

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

/* ============================================
   Header & Navigation
   ============================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: hsla(210, 20%, 98%, 0.8);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

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

@media (min-width: 768px) {
  .header-inner {
    height: 5rem;
  }
}

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

.logo-icon {
  width: 2.5rem;
  height: 2.5rem;
  background: var(--gradient-accent);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-glow);
}

.logo-icon svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--accent-foreground);
}

.logo-text {
  font-size: 1.25rem;
  font-weight: 700;
}

.nav {
  display: none;
}

@media (min-width: 768px) {
  .nav {
    display: flex;
    align-items: center;
    gap: 0.25rem;
  }
}

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

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

.nav-link.active {
  color: var(--accent);
  background: hsla(195, 100%, 45%, 0.1);
}

.header-cta {
  display: none;
}

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

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

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

.mobile-nav {
  display: none;
  padding: 1rem 0;
  border-top: 1px solid var(--border);
}

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

.mobile-nav-link {
  display: block;
  padding: 0.75rem 1rem;
  border-radius: var(--radius);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted-foreground);
}

.mobile-nav-link.active {
  color: var(--accent);
  background: hsla(195, 100%, 45%, 0.1);
}

/* ============================================
   Hero Section
   ============================================ */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  background: var(--gradient-hero);
  overflow: hidden;
  padding-top: 5rem;
}

.hero-bg {
  position: absolute;
  inset: 0;
  opacity: 0.2;
}

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, hsla(220, 70%, 15%, 0.95), hsla(220, 70%, 15%, 0.8), transparent);
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 42rem;
}

.hero-badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  background: hsla(195, 100%, 45%, 0.2);
  color: var(--accent);
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.hero-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-foreground);
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

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

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

.hero-description {
  font-size: 1.125rem;
  color: hsla(210, 40%, 98%, 0.8);
  margin-bottom: 2rem;
  line-height: 1.7;
}

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

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

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

.hero-stats {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: none;
  gap: 1.5rem;
}

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

.stat-card {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.5rem;
  background: hsla(210, 40%, 98%, 0.1);
  backdrop-filter: blur(12px);
  border-radius: 0.875rem;
  border: 1px solid hsla(210, 40%, 98%, 0.2);
}

.stat-icon {
  width: 2rem;
  height: 2rem;
  color: var(--accent);
}

.stat-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-foreground);
}

.stat-label {
  font-size: 0.875rem;
  color: hsla(210, 40%, 98%, 0.7);
}

/* ============================================
   Section Styles
   ============================================ */
.section {
  padding: 5rem 0;
}

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

.section-muted {
  background: var(--muted);
}

.section-header {
  text-align: center;
  max-width: 42rem;
  margin: 0 auto 4rem;
}

.section-badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  background: hsla(195, 100%, 45%, 0.1);
  color: var(--accent);
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.section-title {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 1rem;
}

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

.section-description {
  font-size: 1.125rem;
  color: var(--muted-foreground);
}

/* ============================================
   Service Cards
   ============================================ */
.services-grid {
  display: grid;
  gap: 1.5rem;
}

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

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

.service-card {
  background: var(--card);
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--border);
  transition: all 0.5s ease;
}

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

.service-card:hover {
  box-shadow: var(--shadow-elevated);
  border-color: hsla(195, 100%, 45%, 0.3);
}

.service-icon {
  width: 3.5rem;
  height: 3.5rem;
  background: var(--gradient-accent);
  border-radius: 0.875rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow-glow);
  transition: transform 0.5s ease;
}

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

.service-icon svg {
  width: 1.75rem;
  height: 1.75rem;
  color: var(--accent-foreground);
}

.service-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 0.75rem;
}

.service-description {
  color: var(--muted-foreground);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.service-features {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

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

.service-feature-dot {
  width: 0.375rem;
  height: 0.375rem;
  border-radius: 50%;
  background: var(--accent);
}

/* ============================================
   Why Choose Us Section
   ============================================ */
.why-choose-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

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

.why-choose-content h2 {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .why-choose-content h2 {
    font-size: 2.25rem;
  }
}

.why-choose-content p {
  color: var(--muted-foreground);
  font-size: 1.125rem;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.check-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.check-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.check-icon {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--accent);
  flex-shrink: 0;
}

.why-choose-image {
  position: relative;
}

.why-choose-image img {
  border-radius: 1rem;
  box-shadow: var(--shadow-elevated);
}

.satisfaction-badge {
  position: absolute;
  bottom: -1.5rem;
  left: -1.5rem;
  background: var(--card);
  border-radius: 0.875rem;
  padding: 1.5rem;
  box-shadow: var(--shadow-elevated);
  border: 1px solid var(--border);
}

.satisfaction-value {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--accent);
}

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

/* ============================================
   CTA Section
   ============================================ */
.cta-section {
  padding: 5rem 0;
  background: var(--gradient-hero);
  text-align: center;
}

.cta-title {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--primary-foreground);
  margin-bottom: 1rem;
}

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

.cta-description {
  color: hsla(210, 40%, 98%, 0.8);
  font-size: 1.125rem;
  max-width: 42rem;
  margin: 0 auto 2rem;
}

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

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

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

.footer-grid {
  display: grid;
  gap: 3rem;
  margin-bottom: 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-brand p {
  color: hsla(210, 40%, 98%, 0.7);
  font-size: 0.875rem;
  line-height: 1.7;
  margin-top: 1rem;
}

.footer-title {
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-link {
  color: hsla(210, 40%, 98%, 0.7);
  font-size: 0.875rem;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: var(--accent);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: hsla(210, 40%, 98%, 0.7);
  margin-bottom: 0.75rem;
}

.footer-contact-item svg {
  width: 1rem;
  height: 1rem;
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.footer-bottom {
  border-top: 1px solid hsla(210, 40%, 98%, 0.1);
  padding-top: 2rem;
  text-align: center;
  font-size: 0.875rem;
  color: hsla(210, 40%, 98%, 0.5);
}

/* ============================================
   About Page Styles
   ============================================ */
.page-hero {
  padding: 5rem 0;
  background: var(--gradient-hero);
  text-align: center;
  margin-top: 4rem;
}

@media (min-width: 768px) {
  .page-hero {
    padding: 7rem 0;
    margin-top: 5rem;
  }
}

.page-hero-content {
  max-width: 48rem;
  margin: 0 auto;
}

.page-hero-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-foreground);
  margin-bottom: 1.5rem;
}

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

.page-hero-description {
  font-size: 1.125rem;
  color: hsla(210, 40%, 98%, 0.8);
  line-height: 1.7;
}

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

.story-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

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

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

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

.stat-item svg {
  width: 2rem;
  height: 2rem;
  color: var(--accent);
  margin: 0 auto 0.5rem;
}

.stat-item .value {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--foreground);
}

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

.timeline {
  background: var(--muted);
  border-radius: 1rem;
  padding: 2rem;
}

.timeline-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 1.5rem;
}

.timeline-item {
  display: flex;
  gap: 1rem;
  padding-bottom: 1.5rem;
}

.timeline-marker {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.timeline-dot {
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 50%;
  background: var(--accent);
}

.timeline-line {
  width: 2px;
  flex: 1;
  background: var(--border);
  margin-top: 0.25rem;
}

.timeline-year {
  font-weight: 700;
  color: var(--accent);
}

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

.mission-vision-grid {
  display: grid;
  gap: 2rem;
}

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

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

.values-grid {
  display: grid;
  gap: 1.5rem;
}

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

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

.value-card {
  background: var(--card);
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--border);
  text-align: center;
  transition: all 0.3s ease;
}

.value-card:hover {
  box-shadow: var(--shadow-elevated);
  border-color: hsla(195, 100%, 45%, 0.3);
}

.value-icon {
  width: 3.5rem;
  height: 3.5rem;
  background: var(--gradient-accent);
  border-radius: 0.875rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.value-icon svg {
  width: 1.75rem;
  height: 1.75rem;
  color: var(--accent-foreground);
}

.value-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 0.5rem;
}

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

.reasons-grid {
  display: grid;
  gap: 1rem;
  max-width: 48rem;
  margin: 0 auto;
}

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

.reason-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--card);
  border-radius: var(--radius);
  padding: 1rem;
  box-shadow: var(--shadow-soft);
}

.reason-item svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--accent);
  flex-shrink: 0;
}

/* ============================================
   Services Page Styles
   ============================================ */
.services-list {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

.service-section {
  display: grid;
  gap: 2rem;
  align-items: center;
}

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

.service-section.reverse .service-content {
  order: 1;
}

@media (min-width: 1024px) {
  .service-section.reverse .service-content {
    order: 2;
  }
  
  .service-section.reverse .service-features-box {
    order: 1;
  }
}

.service-content .service-icon {
  width: 4rem;
  height: 4rem;
  border-radius: 1rem;
}

.service-content .service-icon svg {
  width: 2rem;
  height: 2rem;
}

.service-content .service-title {
  font-size: 1.875rem;
}

.service-content .service-description {
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}

.service-features-box {
  background: var(--muted);
  border-radius: 1rem;
  padding: 2rem;
}

.service-features-box h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 1.5rem;
}

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

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

.feature-check {
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  background: hsla(195, 100%, 45%, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-check svg {
  width: 0.75rem;
  height: 0.75rem;
  color: var(--accent);
}

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

.process-grid {
  display: grid;
  gap: 2rem;
}

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

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

.process-number {
  width: 4rem;
  height: 4rem;
  background: var(--gradient-accent);
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  box-shadow: var(--shadow-glow);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--accent-foreground);
}

.process-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 0.5rem;
}

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

/* ============================================
   Support Page Styles
   ============================================ */
.support-options-grid {
  display: grid;
  gap: 1.5rem;
}

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

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

.support-option {
  background: var(--card);
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--border);
  text-align: center;
  transition: all 0.3s ease;
}

.support-option:hover {
  box-shadow: var(--shadow-elevated);
  border-color: hsla(195, 100%, 45%, 0.3);
}

.support-option:hover .support-option-icon {
  transform: scale(1.1);
}

.support-option-icon {
  width: 3.5rem;
  height: 3.5rem;
  background: var(--gradient-accent);
  border-radius: 0.875rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  transition: transform 0.3s ease;
}

.support-option-icon svg {
  width: 1.75rem;
  height: 1.75rem;
  color: var(--accent-foreground);
}

.support-option h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 0.5rem;
}

.support-option p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-bottom: 1rem;
}

.support-option .action {
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.support-option .available {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: var(--muted-foreground);
}

.support-option .available svg {
  width: 0.75rem;
  height: 0.75rem;
}

.emergency-banner {
  padding: 3rem 0;
  background: var(--accent);
}

.emergency-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  text-align: center;
}

@media (min-width: 768px) {
  .emergency-content {
    flex-direction: row;
    text-align: left;
  }
}

.emergency-content h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent-foreground);
  margin-bottom: 0.5rem;
}

.emergency-content p {
  color: hsla(0, 0%, 100%, 0.8);
}

.faq-list {
  max-width: 48rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: var(--card);
  border-radius: 0.875rem;
  padding: 0 1.5rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
}

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

.faq-question svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--muted-foreground);
  transition: transform 0.3s ease;
}

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

.faq-answer {
  display: none;
  padding-bottom: 1.25rem;
  color: var(--muted-foreground);
  line-height: 1.7;
}

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

.resources-grid {
  display: grid;
  gap: 2rem;
}

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

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

.resource-icon {
  width: 3.5rem;
  height: 3.5rem;
  background: var(--gradient-accent);
  border-radius: 0.875rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.resource-icon svg {
  width: 1.75rem;
  height: 1.75rem;
  color: var(--accent-foreground);
}

.resource-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 1rem;
}

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

/* ============================================
   Contact Page Styles
   ============================================ */
.contact-grid {
  display: grid;
  gap: 3rem;
}

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

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

.contact-form-card h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 1.5rem;
}

.form-row {
  display: grid;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-label {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--foreground);
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--background);
  font-family: inherit;
  font-size: 1rem;
  color: var(--foreground);
  transition: border-color 0.3s ease;
}

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

.form-input {
  height: 3rem;
}

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

.contact-info h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 0.5rem;
}

.contact-info > p {
  color: var(--muted-foreground);
  margin-bottom: 1.5rem;
}

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

.contact-info-item {
  background: var(--card);
  border-radius: 0.875rem;
  padding: 1.5rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--border);
  transition: all 0.3s ease;
}

.contact-info-item:hover {
  box-shadow: var(--shadow-elevated);
  border-color: hsla(195, 100%, 45%, 0.3);
}

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

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

.contact-info-icon svg {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--accent-foreground);
}

.contact-info-item h3 {
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 0.25rem;
}

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

.promise-box {
  background: var(--muted);
  border-radius: 0.875rem;
  padding: 1.5rem;
  margin-top: 2rem;
}

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

.promise-header svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--accent);
}

.promise-header h3 {
  font-weight: 600;
  color: var(--foreground);
}

.promise-box p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.map-section {
  aspect-ratio: 16 / 9;
  max-height: 400px;
  background: var(--card);
  border-radius: 1rem;
  box-shadow: var(--shadow-elevated);
  display: flex;
  align-items: center;
  justify-content: center;
}

.map-placeholder {
  text-align: center;
  padding: 2rem;
}

.map-placeholder svg {
  width: 4rem;
  height: 4rem;
  color: var(--accent);
  margin: 0 auto 1rem;
}

.map-placeholder h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 0.5rem;
}

.map-placeholder p {
  color: var(--muted-foreground);
}

/* ============================================
   Animations
   ============================================ */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

.animate-slide-up {
  animation: slideUp 0.6s ease-out forwards;
}
