/* CSS Variables - Matching React app's globals.css exactly */
:root {
  /* Vibrant color palette for child security - warm, trustworthy, energetic */
  --background: oklch(0.98 0.01 90);
  --foreground: oklch(0.2 0.05 260);
  --card: oklch(1 0 0);
  --card-foreground: oklch(0.2 0.05 260);

  /* Primary: Vibrant blue for trust and security */
  --primary: oklch(0.55 0.22 250);
  --primary-foreground: oklch(0.99 0 0);

  /* Secondary: Warm coral/orange for care and warmth */
  --secondary: oklch(0.75 0.15 45);
  --secondary-foreground: oklch(0.2 0.05 260);

  /* Muted: Soft lavender */
  --muted: #536480;
  --muted-foreground: oklch(0.5 0.05 260);

  /* Accent: Vibrant green for safety and growth */
  --accent: oklch(0.65 0.18 150);
  --accent-foreground: oklch(0.99 0 0);

  --border: oklch(0.88 0.02 280);
  --input: oklch(0.95 0.02 280);
  --ring: oklch(0.55 0.22 250);

  /* Chart colors - vibrant and playful */
  --chart-1: oklch(0.65 0.25 280);
  --chart-2: oklch(0.7 0.2 45);
  --chart-3: oklch(0.6 0.22 150);
  --chart-4: oklch(0.75 0.18 320);
  --chart-5: oklch(0.7 0.2 200);

  --radius: 1.25rem;

  --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;

  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1);
  --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1);
  --shadow-2xl: 0 25px 50px -12px rgb(0 0 0 / 0.25);
}

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

.footer-col a{
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.5rem;
    display: block;
    text-decoration: none;
}


.services{
    width: 100%;
    overflow: hidden;
}

.contact{
    width: 100%;
    overflow: hidden;
}
/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  color: var(--foreground);
  background: var(--background);
  line-height: 1.6;
  overflow-x: hidden;
}

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

/* Buttons */
.btn-primary {
  background: linear-gradient(135deg, oklch(0.6 0.25 260), oklch(0.5 0.2 240));
  color: var(--primary-foreground);
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-lg);
}

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

.btn-secondary {
  background: linear-gradient(135deg, oklch(0.8 0.18 50), oklch(0.7 0.15 40));
  color: var(--secondary-foreground);
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-lg);
}

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

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

.btn-full {
  width: 100%;
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

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

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

.logo-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #006fea 0%, #00ac4e 100%);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  font-size: 1.25rem;
}

.logo-title {
  font-size: 1.125rem;
  font-weight: bold;
  line-height: 1.2;
}

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

.header-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.phone-link {
  display: none;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: var(--foreground);
  transition: color 0.3s ease;
}

.phone-link:hover {
  color: var(--primary);
}

.phone-icon {
  width: 40px;
  height: 40px;
  background: oklch(0.95 0.05 250);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  transition: background 0.3s ease;
}

.phone-link:hover .phone-icon {
  background: oklch(0.9 0.08 250);
}

.phone-label {
  font-size: 0.75rem;
  color: var(--muted);
}

.phone-number {
  font-size: 1.125rem;
  font-weight: 600;
}

@media (min-width: 768px) {
  .phone-link {
    display: flex;
  }
}

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

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(148deg, #7a6eff 0%, #007ffc 25%, #00ac4e 50%, #fe6a00 75%, #df84f4 100%);
  opacity: 0.1;
}

.hero-blur {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  animation: pulse 3s ease-in-out infinite;
}

.hero-blur-1 {
  top: 5rem;
  left: 2.5rem;
  width: 16rem;
  height: 16rem;
  background: oklch(0.7 0.15 250 / 0.3);
}

.hero-blur-2 {
  bottom: 5rem;
  right: 2.5rem;
  width: 20rem;
  height: 20rem;
  background: oklch(0.8 0.12 45 / 0.3);
  animation-delay: 1s;
}

.hero-blur-3 {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 24rem;
  height: 24rem;
  background: oklch(0.7 0.15 150 / 0.2);
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 80rem;
}

.hero-icons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.hero-icon {
  padding: 1rem;
  border-radius: 1rem;
  box-shadow: var(--shadow-lg);
  animation: bounce 2s ease-in-out infinite;
}

.hero-icon-1 {
  background: var(--primary);
  color: white;
}

.hero-icon-2 {
  background: var(--secondary);
  color: white;
  animation-delay: 0.2s;
}

.hero-icon-3 {
  background: var(--accent);
  color: white;
  animation-delay: 0.5s;
}

.hero-title {
  font-size: 3.75rem;
  font-weight: bold;
  margin-bottom: 2rem;
  line-height: 1;
  letter-spacing: -0.025em;
}

.hero-title-gradient {
  background: linear-gradient(135deg, oklch(0.6 0.25 260), oklch(0.65 0.18 150), oklch(0.75 0.15 45));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-description {
  font-size: 1.25rem;
  color: var(--muted);
  margin-bottom: 3rem;
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  align-items: center;
  margin-bottom: 4rem;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  font-size: 0.875rem;
}

.badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--card);
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  box-shadow: var(--shadow-lg);
  font-weight: 600;
}

.badge-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

.badge-dot-1 {
  background: var(--accent);
}

.badge-dot-2 {
  background: var(--primary);
}

.badge-dot-3 {
  background: var(--secondary);
}

.hero-location {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.875rem;
  color: var(--muted);
  background: var(--card);
  padding: 0.5rem 1.5rem;
  border-radius: 9999px;
  box-shadow: var(--shadow-lg);
}

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

  .hero-buttons {
    flex-direction: row;
  }
}

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

/* Section Styles */
section {
  padding: 6rem 0;
}

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

.section-badge {
  display: inline-block;
  background: oklch(0.95 0.05 250);
  color: var(--primary);
  padding: 0.5rem 1.5rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.section-badge-accent {
  background: oklch(0.95 0.05 280);
  color: var(--chart-1);
}

.section-badge-secondary {
  background: oklch(0.95 0.05 45);
  color: var(--secondary);
}

.section-badge-white {
  background: rgba(255, 255, 255, 0.2);
  color: white;
}

.section-title {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
}

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

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

.gradient-text {
  background: linear-gradient(135deg, oklch(0.6 0.25 260), oklch(0.65 0.25 280));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gradient-text-alt {
  background: linear-gradient(135deg, oklch(0.75 0.15 45), oklch(0.6 0.25 260));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-blur {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}

.section-blur-1 {
  top: 0;
  right: 0;
  width: 24rem;
  height: 24rem;
  background: oklch(0.7 0.15 250 / 0.15);
}

.section-blur-2 {
  bottom: 0;
  left: 0;
  width: 24rem;
  height: 24rem;
  background: oklch(0.7 0.15 280 / 0.15);
}

.section-blur-3 {
  top: 5rem;
  left: 5rem;
  width: 18rem;
  height: 18rem;
  background: oklch(0.8 0.12 45 / 0.15);
}

.section-blur-4 {
  bottom: 5rem;
  right: 5rem;
  width: 18rem;
  height: 18rem;
  background: oklch(0.7 0.15 280 / 0.15);
}

.section-blur-5 {
  top: 0;
  left: 0;
  width: 24rem;
  height: 24rem;
  background: oklch(0.7 0.15 250 / 0.15);
}

.section-blur-6 {
  bottom: 0;
  right: 0;
  width: 24rem;
  height: 24rem;
  background: oklch(0.7 0.15 280 / 0.15);
}

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

/* Advantages Section */
.advantages {
  position: relative;
  background: rgba(223, 226, 255, 0.3);
}

.advantages-grid {
  display: grid;
  gap: 1.5rem;
  max-width: 88rem;
  margin: 0 auto;
}

.advantage-card {
  background: var(--card);
  padding: 2rem;
  border-radius: 1.5rem;
  box-shadow: var(--shadow-xl);
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.advantage-card:hover {
  transform: translateY(-0.5rem);
  box-shadow: var(--shadow-2xl);
  border-color: oklch(0.7 0.15 250 / 0.3);
}

.advantage-icon {
  display: inline-flex;
  padding: 1rem;
  border-radius: 1rem;
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow-lg);
}

.advantage-icon-1 {
  background: var(--primary);
  color: white;
}

.advantage-icon-2 {
  background: var(--secondary);
  color: white;
}

.advantage-icon-3 {
  background: var(--accent);
  color: white;
}

.advantage-icon-4 {
  background: var(--chart-1);
  color: white;
}

.advantage-icon-5 {
  background: var(--chart-4);
  color: white;
}

.advantage-icon-6 {
  background: var(--chart-2);
  color: white;
}

.advantage-card h3 {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

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

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

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

/* Services Section */
.services {
  position: relative;
  background: var(--background);
}

.services-grid {
  display: grid;
  gap: 1.5rem;
  max-width: 88rem;
  margin: 0 auto 3rem;
}

.service-card {
  position: relative;
  background: linear-gradient(135deg, oklch(0.7 0.15 250 / 0.2), oklch(0.7 0.15 250 / 0.05));
  border: 2px solid oklch(0.7 0.15 250 / 0.3);
  padding: 2rem;
  border-radius: var(--radius);
  transition: all 0.3s ease;
}

.service-card:hover {
  transform: translateY(-0.5rem);
  box-shadow: var(--shadow-2xl);
}

.service-card-1 {
  background: linear-gradient(135deg, oklch(0.7 0.15 250 / 0.2), oklch(0.7 0.15 250 / 0.05));
  border-color: oklch(0.7 0.15 250 / 0.3);
}

.service-card-2 {
  background: linear-gradient(135deg, oklch(0.8 0.12 45 / 0.2), oklch(0.8 0.12 45 / 0.05));
  border-color: oklch(0.8 0.12 45 / 0.3);
}

.service-card-3 {
  background: linear-gradient(135deg, oklch(0.7 0.15 280 / 0.2), oklch(0.7 0.15 280 / 0.05));
  border-color: oklch(0.7 0.15 280 / 0.3);
}

.service-card-4 {
  background: linear-gradient(135deg, oklch(0.7 0.15 150 / 0.2), oklch(0.7 0.15 150 / 0.05));
  border-color: oklch(0.7 0.15 150 / 0.3);
}

.service-card-5 {
  background: linear-gradient(135deg, oklch(0.8 0.12 320 / 0.2), oklch(0.8 0.12 320 / 0.05));
  border-color: oklch(0.8 0.12 320 / 0.3);
}

.service-card-6 {
  background: linear-gradient(135deg, oklch(0.75 0.15 200 / 0.2), oklch(0.75 0.15 200 / 0.05));
  border-color: oklch(0.75 0.15 200 / 0.3);
}

.service-popular {
  padding-top: 3rem;
}

.popular-badge {
  position: absolute;
  top: -1rem;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, oklch(0.6 0.25 260), oklch(0.65 0.25 280));
  color: white;
  padding: 0.5rem 1.5rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: bold;
  box-shadow: var(--shadow-lg);
}

.service-card h3 {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 0.75rem;
}

.service-card > p {
  color: var(--muted);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.service-price {
  margin-bottom: 1.5rem;
}

.price {
  font-size: 2.25rem;
  font-weight: bold;
  margin-bottom: 0.25rem;
}

.price-period {
  font-size: 0.875rem;
  color: var(--muted);
}

.service-features {
  list-style: none;
  margin-bottom: 1.5rem;
}

.service-features li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
  font-size: 0.875rem;
}

.service-features svg {
  color: var(--chart-1);
  flex-shrink: 0;
}

.btn-service {
  width: 100%;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-lg);
  color: white;
}

.btn-service-1 {
  background: var(--primary);
}

.btn-service-1:hover {
  background: oklch(0.5 0.2 250);
}

.btn-service-2 {
  background: var(--secondary);
}

.btn-service-2:hover {
  background: oklch(0.7 0.13 45);
}

.btn-service-3 {
  background: var(--chart-1);
}

.btn-service-3:hover {
  background: oklch(0.6 0.23 280);
}

.btn-service-4 {
  background: var(--accent);
}

.btn-service-4:hover {
  background: oklch(0.6 0.16 150);
}

.btn-service-5 {
  background: var(--chart-4);
}

.btn-service-5:hover {
  background: oklch(0.7 0.16 320);
}

.btn-service-6 {
  background: var(--chart-2);
}

.btn-service-6:hover {
  background: oklch(0.65 0.18 200);
}

.services-note {
  text-align: center;
  background: linear-gradient(135deg, oklch(0.95 0.05 250), oklch(0.95 0.05 280), oklch(0.95 0.05 45));
  padding: 3rem;
  border-radius: var(--radius);
  border: 2px solid oklch(0.7 0.15 250 / 0.2);
}

.services-note p {
  font-size: 1.125rem;
  color: var(--muted);
  margin-bottom: 1.5rem;
}

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

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

/* Statistics Section */
.statistics {
  position: relative;
  padding: 6rem 0;
  overflow: hidden;
}

.statistics-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, oklch(0.6 0.25 260), oklch(0.65 0.25 280), oklch(0.75 0.15 45));
  opacity: 0.95;
}

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

.statistics-grid {
  display: grid;
  gap: 1.5rem;
  max-width: 72rem;
  margin: 0 auto 4rem;
}

.stat-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 2rem;
  border-radius: 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: var(--shadow-xl);
}

.stat-card:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-0.5rem);
}

.stat-number {
  font-size: 3.75rem;
  font-weight: bold;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--primary), var(--chart-1));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-number-1 {
  background: linear-gradient(135deg, oklch(0.75 0.15 250), oklch(0.7 0.15 150));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-number-2 {
  background: linear-gradient(135deg, oklch(0.8 0.12 45), oklch(0.8 0.12 320));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-number-3 {
  background: linear-gradient(135deg, oklch(0.75 0.15 280), oklch(0.75 0.15 200));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-number-4 {
  background: linear-gradient(135deg, oklch(0.7 0.15 150), oklch(0.75 0.15 250));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  font-weight: 500;
}

.statistics-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
}

.stat-badge {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 1rem 2rem;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  font-weight: 600;
}

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

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

/* Testimonials Section */
.testimonials {
  background: #fa8c58;
  padding: 6rem 0;
}

.testimonials .section-title{
  text-align: center;
}

.testimonials-grid {
  display: grid;
  gap: 2rem;
  max-width: 72rem;
  margin: 0 auto;
}

.testimonial-card {
  background: var(--card);
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-xl);
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-0.5rem);
  box-shadow: var(--shadow-2xl);
}

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

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

.author-name {
  font-weight: bold;
  font-size: 1.125rem;
  margin-bottom: 0.25rem;
}

.author-role {
  color: var(--muted);
}

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

/* SEO Text Section */
.seo-text {
  background: var(--background);
  padding: 6rem 0;
}

.seo-content {
  max-width: 56rem;
  margin: 0 auto;
}

.seo-content h2 {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 2rem;
}

.seo-content h3 {
  font-size: 1.875rem;
  font-weight: bold;
  margin-bottom: 1rem;
  margin-top: 3rem;
}

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

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

/* FAQ Section */
.faq {
  background: #fa8c58;
  padding: 6rem 0;
}

.faq .section-title{
  text-align: center;
}

.faq-list {
  max-width: 48rem;
  margin: 0 auto;
}

.faq-item {
  background: var(--card);
  margin-bottom: 1rem;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  font-size: 1.125rem;
  font-weight: bold;
  padding: 1.5rem 2rem;
  border: none;
  background: none;
  cursor: pointer;
  transition: color 0.3s ease;
}

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

.faq-icon {
  flex-shrink: 0;
  transition: transform 0.3s ease;
  color: var(--primary);
}

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

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

.faq-item.active .faq-answer {
  max-height: 500px;
}

.faq-answer p {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.6;
  padding: 0 2rem 1.5rem;
}

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

/* Contact Section */
.contact {
  position: relative;
  background: var(--background);
  padding: 6rem 0;
}

.contact-grid {
  display: grid;
  gap: 3rem;
  max-width: 72rem;
  margin: 0 auto;
}

.contact-info h3 {
  font-size: 1.875rem;
  font-weight: bold;
  margin-bottom: 2rem;
}

.contact-info > p {
  font-size: 1.125rem;
  color: var(--muted);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.contact-items {
  margin-bottom: 2rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  border-radius: 1rem;
  margin-bottom: 1rem;
  border: 2px solid;
  transition: all 0.3s ease;
}

.contact-item:hover {
  transform: translateY(-0.25rem);
  box-shadow: var(--shadow-lg);
}

.contact-item-1 {
  background: oklch(0.95 0.05 250);
  border-color: oklch(0.7 0.15 250 / 0.3);
}

.contact-item-2 {
  background: oklch(0.95 0.05 45);
  border-color: oklch(0.8 0.12 45 / 0.3);
}

.contact-item-3 {
  background: oklch(0.95 0.05 280);
  border-color: oklch(0.7 0.15 280 / 0.3);
}

.contact-icon {
  padding: 0.75rem;
  border-radius: 0.75rem;
  flex-shrink: 0;
}

.contact-item-1 .contact-icon {
  background: var(--primary);
  color: white;
}

.contact-item-2 .contact-icon {
  background: var(--secondary);
  color: white;
}

.contact-item-3 .contact-icon {
  background: var(--chart-1);
  color: white;
}

.contact-label {
  font-weight: bold;
  margin-bottom: 0.25rem;
  font-size: 0.875rem;
}

.contact-value {
  font-size: 1.125rem;
  color: var(--foreground);
  text-decoration: none;
  font-weight: 600;
}

.contact-value:hover {
  text-decoration: underline;
}

.contact-hours {
  padding: 1.5rem;
  background: linear-gradient(135deg, oklch(0.95 0.05 150), oklch(0.95 0.05 320));
  border-radius: 1rem;
  border: 2px solid oklch(0.7 0.15 150 / 0.3);
}

.contact-hours p {
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
  line-height: 1.6;
}

.contact-form-wrapper {
  background: var(--card);
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-2xl);
  border: 2px solid oklch(0.7 0.15 250 / 0.2);
}

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

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

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

.contact-form textarea {
  resize: vertical;
  min-height: 8rem;
}

.form-privacy {
  font-size: 0.875rem;
  color: var(--muted);
  text-align: center;
  margin: 0;
}

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

@media (min-width: 768px) {
  .contact-info h3 {
    font-size: 2.25rem;
  }
}

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

.footer-grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-col h4 {
  font-size: 1.25rem;
  font-weight: bold;
  margin-bottom: 1rem;
  color: white;
}

.footer-col p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

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

.footer-col li {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0.5rem;
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 2rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
}

.footer-links {
  display: flex;
  gap: 1.5rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color 0.3s ease;
}

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

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

  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

@media (max-width: 768px) {
 .logo-text{
     display: none;
 }
}

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

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