/* Pandoxys - Healthcare Platform Styles */
/* Converted from React/Tailwind to Pure CSS */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Plus+Jakarta+Sans:wght@500;600;700;800&display=swap');

/* CSS Variables */
:root {
  --background: hsl(210, 40%, 98%);
  --foreground: hsl(222, 47%, 11%);
  --card: hsl(0, 0%, 100%);
  --card-foreground: hsl(222, 47%, 11%);
  --primary: hsl(173, 80%, 32%);
  --primary-foreground: hsl(0, 0%, 100%);
  --secondary: hsl(222, 47%, 11%);
  --secondary-foreground: hsl(0, 0%, 100%);
  --muted: hsl(210, 40%, 96%);
  --muted-foreground: hsl(215, 16%, 47%);
  --accent: hsl(160, 84%, 39%);
  --accent-foreground: hsl(0, 0%, 100%);
  --border: hsl(214, 32%, 91%);
  --radius: 0.75rem;

  /* Healthcare Colors */
  --healthcare-teal: hsl(173, 80%, 32%);
  --healthcare-teal-light: hsl(173, 70%, 94%);
  --healthcare-navy: hsl(222, 47%, 11%);
  --healthcare-green: hsl(160, 84%, 39%);
  --healthcare-green-light: hsl(160, 70%, 94%);
  --healthcare-blue: hsl(210, 100%, 50%);
  --healthcare-blue-light: hsl(210, 100%, 96%);

  /* Gradients */
  --gradient-hero: linear-gradient(135deg, hsl(173, 80%, 32%) 0%, hsl(160, 84%, 39%) 100%);

  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgba(30, 41, 59, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(30, 41, 59, 0.1), 0 2px 4px -2px rgba(30, 41, 59, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(30, 41, 59, 0.1), 0 4px 6px -4px rgba(30, 41, 59, 0.1);
  --shadow-xl: 0 20px 25px -5px rgba(30, 41, 59, 0.1), 0 8px 10px -6px rgba(30, 41, 59, 0.1);
  --shadow-card: 0 4px 20px -4px rgba(20, 130, 120, 0.15);
}

/* 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;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Plus Jakarta Sans', 'Inter', system-ui, sans-serif;
  line-height: 1.2;
}

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

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

ul {
  list-style: none;
}

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

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

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

/* Utility Classes */
.text-gradient {
  background: var(--gradient-hero);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background-color: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

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

.navbar-logo img {
  width: 80px;
  height: auto;
}

.navbar-links {
  display: none;
  align-items: center;
  gap: 2rem;
}

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

.navbar-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted-foreground);
  transition: color 0.2s ease;
}

.navbar-links a:hover,
.navbar-links a.active {
  color: var(--primary);
}

.navbar-cta {
  display: none;
}

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

.navbar-mobile-toggle {
  display: block;
  padding: 0.5rem;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--foreground);
}

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

.navbar-mobile-toggle svg {
  width: 24px;
  height: 24px;
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  padding: 1rem 0;
}

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

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

.mobile-menu a {
  display: block;
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted-foreground);
  transition: all 0.2s ease;
}

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

.mobile-menu a.active {
  background-color: var(--primary);
  color: var(--primary-foreground);
}

.mobile-menu .btn {
  width: 100%;
  margin-top: 0.5rem;
}

/* ===== 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: 500;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
}

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

.btn-primary:hover {
  background-color: hsl(173, 80%, 28%);
}

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

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

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

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

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

.btn svg {
  width: 20px;
  height: 20px;
}

/* ===== HERO SECTION ===== */
.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--healthcare-teal-light) 0%, var(--background) 50%, var(--healthcare-green-light) 100%);
  padding-top: 80px;
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.3;
  pointer-events: none;
}

.hero-bg-pattern .circle-1 {
  position: absolute;
  top: 80px;
  left: 40px;
  width: 288px;
  height: 288px;
  background-color: rgba(20, 130, 120, 0.2);
  border-radius: 50%;
  filter: blur(48px);
}

.hero-bg-pattern .circle-2 {
  position: absolute;
  bottom: 80px;
  right: 40px;
  width: 384px;
  height: 384px;
  background-color: rgba(16, 185, 129, 0.2);
  border-radius: 50%;
  filter: blur(48px);
}

.hero-content {
  position: relative;
  padding: 5rem 0 8rem;
}

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

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

.hero-text {
  text-align: center;
  display: flex;
  flex-direction: column;
}

@media (min-width: 1024px) {
  .hero-text {
    text-align: left;
  }
}

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

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

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

.hero-description {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  max-width: 36rem;
  margin: 0 auto 1rem;
}

@media (min-width: 1024px) {
  .hero-description {
    margin: 0 0 1rem 0;
  }
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  margin: 2rem 0;
}

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

@media (min-width: 1024px) {
  .hero-buttons {
    justify-content: flex-start;
  }
}

.hero-trust-indicators {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  max-width: 28rem;
  margin: 3rem auto 0;
}

@media (min-width: 640px) {
  .hero-trust-indicators {
    gap: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .hero-trust-indicators {
    margin-left: 0;
    margin-right: 0;
  }
}

.trust-indicator {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 0.5rem;
  min-height: 80px;
}

.trust-indicator svg {
  width: 24px;
  height: 24px;
  color: var(--primary);
  margin-bottom: 0.5rem;
  flex-shrink: 0;
}

.trust-indicator span {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted-foreground);
  line-height: 1.4;
  word-wrap: break-word;
  max-width: 100%;
}

/* Hero Image */
.hero-image-wrapper {
  position: relative;
}

.hero-image {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

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

.hero-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(30, 41, 59, 0.5) 0%, transparent 100%);
}

/* Floating Card */
.floating-card {
  display: none;
  position: absolute;
  bottom: -24px;
  left: -24px;
  background-color: var(--card);
  border-radius: 0.75rem;
  padding: 1rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}

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

.floating-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: rgba(16, 185, 129, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}

.floating-card-icon svg {
  width: 24px;
  height: 24px;
  color: var(--accent);
}

.floating-card-text p:first-child {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--foreground);
}

.floating-card-text p:last-child {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

/* ===== VALUE HIGHLIGHTS SECTION ===== */
.value-highlights {
  padding: 5rem 0;
  background-color: var(--card);
}

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

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

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

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

.section-label {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
}

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

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

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

.highlight-card {
  padding: 1.5rem;
  border-radius: 1rem;
  background-color: var(--background);
  border: 1px solid var(--border);
  transition: all 0.3s ease;
}

.highlight-card:hover {
  border-color: rgba(20, 130, 120, 0.3);
  box-shadow: var(--shadow-card);
}

.highlight-card-icon {
  width: 56px;
  height: 56px;
  border-radius: 0.75rem;
  background-color: rgba(20, 130, 120, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  transition: all 0.3s ease;
}

.highlight-card:hover .highlight-card-icon {
  background-color: var(--primary);
  transform: scale(1.1);
}

.highlight-card-icon svg {
  width: 28px;
  height: 28px;
  color: var(--primary);
  transition: color 0.3s ease;
}

.highlight-card:hover .highlight-card-icon svg {
  color: var(--primary-foreground);
}

.highlight-card h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 0.5rem;
}

.highlight-card p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.6;
}

/* ===== SERVICES OVERVIEW SECTION ===== */
.services-overview {
  padding: 5rem 0;
  background-color: var(--background);
}

.services-grid {
  display: grid;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

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

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

.service-card {
  position: relative;
  padding: 1.5rem;
  border-radius: 1rem;
  background-color: var(--card);
  border: 1px solid var(--border);
  transition: all 0.3s ease;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(20, 130, 120, 0.05) 0%, rgba(16, 185, 129, 0.05) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-card:hover::before {
  opacity: 1;
}

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

.service-card-content {
  position: relative;
}

.service-card-icon {
  width: 56px;
  height: 56px;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.service-card-icon.teal {
  background-color: var(--healthcare-teal-light);
  color: var(--primary);
}

.service-card-icon.blue {
  background-color: var(--healthcare-blue-light);
  color: var(--healthcare-blue);
}

.service-card-icon svg {
  width: 28px;
  height: 28px;
}

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

.service-card p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.6;
}

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

/* ===== WHY CHOOSE US SECTION ===== */
.why-choose-us {
  padding: 5rem 0;
  background-color: var(--secondary);
  color: var(--secondary-foreground);
  overflow: hidden;
}

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

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

.why-choose-content h2 {
  font-size: 1.875rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

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

.why-choose-content > p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 2rem;
  line-height: 1.7;
}

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

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

.feature-item svg {
  width: 20px;
  height: 20px;
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 2px;
}

.feature-item span {
  color: rgba(255, 255, 255, 0.8);
}

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

.stat-card {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 1rem;
  padding: 1.5rem;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: border-color 0.3s ease;
}

.stat-card:hover {
  border-color: rgba(20, 130, 120, 0.3);
}

.stat-card .value {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

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

.stat-card .label {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
}

/* ===== WHO WE SERVE SECTION ===== */
.who-we-serve {
  padding: 5rem 0;
  background-color: var(--card);
}

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

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

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

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

.audience-card:hover {
  border-color: rgba(20, 130, 120, 0.3);
  box-shadow: var(--shadow-card);
}

.audience-card-icon {
  width: 64px;
  height: 64px;
  border-radius: 1rem;
  background-color: rgba(20, 130, 120, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  transition: all 0.3s ease;
}

.audience-card:hover .audience-card-icon {
  background-color: var(--primary);
  transform: scale(1.1);
}

.audience-card-icon svg {
  width: 32px;
  height: 32px;
  color: var(--primary);
  transition: color 0.3s ease;
}

.audience-card:hover .audience-card-icon svg {
  color: var(--primary-foreground);
}

.audience-card h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 0.5rem;
}

.audience-card p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.6;
}

/* ===== CTA BANNER SECTION ===== */
.cta-banner {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  position: relative;
  overflow: hidden;
}

.cta-bg-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.1;
  pointer-events: none;
}

.cta-bg-pattern .circle {
  position: absolute;
  border: 2px solid white;
  border-radius: 50%;
}

.cta-bg-pattern .circle-1 {
  top: 40px;
  left: 40px;
  width: 160px;
  height: 160px;
}

.cta-bg-pattern .circle-2 {
  bottom: 40px;
  right: 40px;
  width: 240px;
  height: 240px;
}

.cta-bg-pattern .circle-3 {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 384px;
  height: 384px;
  border-width: 1px;
}

.cta-content {
  position: relative;
  text-align: center;
  max-width: 48rem;
  margin: 0 auto;
}

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

@media (min-width: 640px) {
  .cta-content h2 {
    font-size: 2.25rem;
  }
}

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

.cta-content > p {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2rem;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
}

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

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

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

.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-brand img {
  width: 128px;
  height: auto;
  margin-bottom: 1rem;
}

.footer-brand p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

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

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

.footer-section a {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.2s ease;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

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

.footer-section a svg {
  width: 20px;
  height: 20px;
  color: var(--primary);
  flex-shrink: 0;
}

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

.footer-bottom p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}

/* ===== ABOUT PAGE ===== */
.page-hero {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--healthcare-teal-light) 0%, var(--background) 50%, var(--healthcare-green-light) 100%);
  padding-top: calc(80px + 5rem);
}

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

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

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

.page-hero p {
  font-size: 1.125rem;
  color: var(--muted-foreground);
}

/* Mission & Vision Section */
.mission-vision {
  padding: 5rem 0;
  background-color: var(--card);
}

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

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

.mission-card,
.vision-card {
  background-color: var(--background);
  border-radius: 1rem;
  padding: 2rem;
  border: 1px solid var(--border);
}

.mission-card .icon-box,
.vision-card .icon-box {
  width: 56px;
  height: 56px;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.mission-card .icon-box {
  background-color: rgba(20, 130, 120, 0.1);
}

.vision-card .icon-box {
  background-color: rgba(16, 185, 129, 0.1);
}

.mission-card .icon-box svg {
  width: 28px;
  height: 28px;
  color: var(--primary);
}

.vision-card .icon-box svg {
  width: 28px;
  height: 28px;
  color: var(--accent);
}

.mission-card h2,
.vision-card h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 1rem;
}

.mission-card p,
.vision-card p {
  color: var(--muted-foreground);
  line-height: 1.7;
}

/* Our Story Section */
.our-story {
  padding: 5rem 0;
  background-color: var(--background);
}

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

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

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

@media (min-width: 640px) {
  .story-content h2 {
    font-size: 2.25rem;
  }
}

.story-content p {
  color: var(--muted-foreground);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.story-image img {
  border-radius: 1rem;
  box-shadow: var(--shadow-xl);
  width: 100%;
  height: auto;
}

/* ===== SERVICES PAGE ===== */
.services-list {
  padding: 5rem 0;
  background-color: var(--background);
}

.services-list-content {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

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

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

  .service-detail.reverse .service-detail-content {
    order: 2;
  }

  .service-detail.reverse .service-detail-visual {
    order: 1;
  }
}

.service-detail-icon {
  width: 64px;
  height: 64px;
  border-radius: 1rem;
  background-color: rgba(20, 130, 120, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.service-detail-icon svg {
  width: 32px;
  height: 32px;
  color: var(--primary);
}

.service-detail-content h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 1rem;
}

@media (min-width: 640px) {
  .service-detail-content h2 {
    font-size: 1.875rem;
  }
}

.service-detail-content > p {
  color: var(--muted-foreground);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.benefits-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.benefit-item svg {
  width: 20px;
  height: 20px;
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 2px;
}

.benefit-item span {
  color: rgba(30, 41, 59, 0.8);
}

.audience-note {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-bottom: 1.5rem;
}

.audience-note strong {
  color: var(--foreground);
}

.service-detail-visual {
  background-color: var(--card);
  border-radius: 1rem;
  padding: 2rem;
  border: 1px solid var(--border);
}

.service-visual-placeholder {
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, rgba(20, 130, 120, 0.1) 0%, rgba(16, 185, 129, 0.1) 100%);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-visual-placeholder svg {
  width: 96px;
  height: 96px;
  color: rgba(20, 130, 120, 0.3);
}

/* ===== CONTACT PAGE ===== */
.contact-content {
  padding: 5rem 0;
  background-color: var(--background);
}

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

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

.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-cards {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-card {
  display: flex;
  gap: 1rem;
  padding: 1rem;
  background-color: var(--card);
  border-radius: 0.75rem;
  border: 1px solid var(--border);
  transition: background-color 0.2s ease;
}

.contact-card:hover {
  background-color: rgba(20, 130, 120, 0.05);
}

.contact-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 0.5rem;
  background-color: rgba(20, 130, 120, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-card-icon svg {
  width: 24px;
  height: 24px;
  color: var(--primary);
}

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

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

/* Contact Form */
.contact-form-wrapper {
  background-color: var(--card);
  border-radius: 1rem;
  padding: 2rem;
  border: 1px solid var(--border);
}

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

.contact-form-wrapper > p {
  color: var(--muted-foreground);
  margin-bottom: 2rem;
}

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

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

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

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

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

.form-group input,
.form-group textarea {
  padding: 0.75rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.875rem;
  font-family: inherit;
  background-color: var(--background);
  color: var(--foreground);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(20, 130, 120, 0.1);
}

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

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

/* ===== 404 PAGE ===== */
.not-found {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--muted);
  text-align: center;
  padding: 2rem;
}

.not-found h1 {
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

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

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

.not-found a:hover {
  color: hsl(173, 80%, 28%);
}

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

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

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

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

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

.animate-fade-up {
  animation: fadeUp 0.6s ease-out forwards;
}

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

.animate-slide-left {
  animation: slideInLeft 0.5s ease-out forwards;
}

.animate-slide-right {
  animation: slideInRight 0.5s ease-out forwards;
}

.animate-scale-in {
  animation: scaleIn 0.6s ease-out forwards;
}

.animate-delay-100 { animation-delay: 0.1s; }
.animate-delay-200 { animation-delay: 0.2s; }
.animate-delay-300 { animation-delay: 0.3s; }
.animate-delay-400 { animation-delay: 0.4s; }
.animate-delay-500 { animation-delay: 0.5s; }
.animate-delay-600 { animation-delay: 0.6s; }

/* Initial state for animations */
[class*="animate-"] {
  opacity: 0;
}

[data-animation] {
  opacity: 0;
  transition: opacity 0.3s ease;
}

/* Toast Notification */
.toast-container {
  position: fixed;
  bottom: 1rem;
  right: 1rem;
  z-index: 100;
}

.toast {
  background-color: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem 1.5rem;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  max-width: 400px;
  animation: slideInRight 0.3s ease-out;
}

.toast.hidden {
  display: none;
}

.toast-icon {
  width: 20px;
  height: 20px;
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 2px;
}

.toast-content h4 {
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 0.25rem;
}

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