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

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
  color: #2d3748;
  background: #fefefe;
}

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

/* Preloader Styles */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #f0fdfa 0%, #fff7ed 50%, #fef3c7 100%);
  transition: opacity 0.5s, visibility 0.5s;
}

.preloader.hidden {
  opacity: 0;
  visibility: hidden;
}

.preloader-content {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.preloader-bubbles {
  position: absolute;
  top: -3rem;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
}

.bubble {
  position: absolute;
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  opacity: 0.6;
  animation: float-bubble 3s ease-in-out infinite;
}

.bubble-1 {
  background: #5eead4;
  top: -2rem;
  left: -2rem;
}

.bubble-2 {
  background: #fb923c;
  top: -3rem;
  left: 1rem;
  animation-delay: 0.5s;
}

.bubble-3 {
  background: #fbbf24;
  top: -1.5rem;
  right: -1.5rem;
  animation-delay: 1s;
}

.baby-bottle {
  position: relative;
  animation: bounce-gentle 2s ease-in-out infinite;
}

.bottle-nipple {
  position: absolute;
  top: -1.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 2rem;
  height: 2rem;
  background: #fdba74;
  border-radius: 50% 50% 0 0;
  border: 4px solid #fb923c;
}

.bottle-body {
  width: 5rem;
  height: 8rem;
  background: linear-gradient(to bottom, #ccfbf1, #99f6e4);
  border-radius: 1.5rem 1.5rem 1rem 1rem;
  border: 4px solid #14b8a6;
  position: relative;
  overflow: hidden;
}

.milk-level {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: rgba(255, 255, 255, 0.8);
  animation: fill-bottle 2s ease-in-out infinite;
}

.measurement-marks {
  position: absolute;
  left: 0.5rem;
  right: 0.5rem;
  top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.mark {
  height: 2px;
  background: rgba(20, 184, 166, 0.3);
}

.baby-icon {
  position: absolute;
  bottom: -1rem;
  right: -1rem;
  background: #fbbf24;
  border-radius: 50%;
  padding: 0.5rem;
  font-size: 1.5rem;
  animation: pulse 2s ease-in-out infinite;
}

.loading-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.loading-text p {
  font-size: 1.5rem;
  font-weight: bold;
  color: #0d9488;
}

.loading-dots {
  display: flex;
  gap: 0.25rem;
}

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

.dot:nth-child(1) {
  background: #14b8a6;
}

.dot:nth-child(2) {
  background: #fb923c;
  animation-delay: 0.2s;
}

.dot:nth-child(3) {
  background: #fbbf24;
  animation-delay: 0.4s;
}

/* Navigation Styles */
.navigation {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: linear-gradient(to right, #0d9488, #06b6d4);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.3s;
}

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

.logo {
  display: inline-block;
  font-size: 1.5rem;
  font-weight: bold;
  background: linear-gradient(to right, #ffffff, #ecfeff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.logo:hover {
  transform: scale(1.1);
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-link:hover,
.nav-link.active {
  color: #ffffff;
}

.language-switcher-desktop {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-left: 1rem;
  padding-left: 1rem;
  border-left: 1px solid rgba(255, 255, 255, 0.3);
}

.lang-btn {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.375rem 0.75rem;
  border-radius: 9999px;
  border: none;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s;
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
}

.lang-btn:hover {
  background: rgba(255, 255, 255, 0.3);
}

.lang-btn.active {
  background: #ffffff;
  color: #0d9488;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.flag {
  font-size: 1rem;
}

.lang-code {
  display: none;
}

.mobile-menu-btn {
  display: block;
  background: none;
  border: none;
  color: #ffffff;
  cursor: pointer;
  padding: 0.5rem;
}

.hamburger {
  display: block;
  width: 1.5rem;
  height: 2px;
  background: currentColor;
  position: relative;
}

.hamburger::before,
.hamburger::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  background: currentColor;
  left: 0;
  transition: all 0.3s;
}

.hamburger::before {
  top: -0.5rem;
}

.hamburger::after {
  bottom: -0.5rem;
}

.mobile-menu-btn.active .hamburger {
  background: transparent;
}

.mobile-menu-btn.active .hamburger::before {
  top: 0;
  transform: rotate(45deg);
}

.mobile-menu-btn.active .hamburger::after {
  bottom: 0;
  transform: rotate(-45deg);
}

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 1rem;
  padding: 1rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
}

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

.mobile-nav-link {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  transition: color 0.3s;
}

.mobile-nav-link:hover {
  color: #ffffff;
}

.language-switcher-mobile {
  padding: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
}

.lang-title {
  font-size: 0.875rem;
  font-weight: 500;
  color: #ffffff;
  margin-bottom: 0.75rem;
}

.lang-btn-mobile {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.5rem 1rem;
  margin-bottom: 0.5rem;
  border-radius: 0.5rem;
  border: none;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s;
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
  text-align: left;
}

.lang-btn-mobile:hover {
  background: rgba(255, 255, 255, 0.3);
}

.lang-btn-mobile.active {
  background: #ffffff;
  color: #0d9488;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

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

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}

.hero-decorations {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.cloud {
  position: absolute;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 9999px;
  filter: blur(40px);
}

.cloud-1 {
  top: 5rem;
  left: 2.5rem;
  width: 8rem;
  height: 4rem;
  animation: float 6s ease-in-out infinite;
}

.cloud-2 {
  top: 10rem;
  right: 5rem;
  width: 10rem;
  height: 5rem;
  animation: float-delayed 7s ease-in-out infinite;
}

.cloud-3 {
  bottom: 10rem;
  left: 25%;
  width: 9rem;
  height: 4.5rem;
  animation: float-slow 8s ease-in-out infinite;
}

.toy {
  position: absolute;
  font-size: 2.5rem;
}

.toy-1 {
  top: 25%;
  left: 25%;
  animation: bounce-slow 3s ease-in-out infinite;
}

.toy-2 {
  top: 33%;
  right: 25%;
  animation: bounce-delayed 4s ease-in-out infinite;
}

.toy-3 {
  bottom: 33%;
  left: 33%;
  animation: bounce-slow 3s ease-in-out infinite;
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 56rem;
  padding: 2rem 1rem;
}

.hero-subhead {
  font-size: 1.125rem;
  color: #ffffff;
  font-weight: 600;
  margin-bottom: 1rem;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
  animation: fade-in 1s ease-out;
}

.hero-title {
  font-size: 2.5rem;
  color: #ffffff;
  font-weight: bold;
  margin-bottom: 1.5rem;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
  animation: fade-in-up 1s ease-out 0.2s both;
}

.hero-subtitle {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
  animation: fade-in-up 1s ease-out 0.4s both;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  animation: fade-in-up 1s ease-out 0.6s both;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: #0d9488;
  color: #ffffff;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn-primary:hover {
  background: #0f766e;
  transform: translateY(-2px);
  box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #ffffff;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

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

.btn-ghost {
  background: transparent;
  color: #0d9488;
  padding: 0.5rem 1rem;
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.8);
}

.btn-full {
  width: 100%;
}

.icon {
  margin-right: 0.5rem;
}

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

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

.section-header h2 {
  font-size: 2rem;
  font-weight: bold;
  color: #2d3748;
  margin-bottom: 1rem;
}

.section-header p {
  color: #718096;
  max-width: 42rem;
  margin: 0 auto;
  line-height: 1.6;
}

/* About Section */
.about {
  background: linear-gradient(to bottom, rgba(240, 253, 250, 0.3), rgba(239, 246, 255, 0.2));
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
  max-width: 72rem;
  margin: 0 auto;
}

.about-image {
  position: relative;
  aspect-ratio: 1;
  border-radius: 1rem;
  overflow: hidden;
  background: linear-gradient(135deg, #ccfbf1, #fef3c7, #fed7aa);
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
  border: 4px solid #ffffff;
}

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

.about-content h2 {
  font-size: 1.875rem;
  font-weight: bold;
  color: #2d3748;
  margin-bottom: 1.5rem;
}

.about-content p {
  color: #718096;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.about-glance {
  background: linear-gradient(135deg, #fef3c7, #fed7aa);
  border-radius: 0.75rem;
  padding: 1.5rem;
  margin: 1.5rem 0;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  border: 2px solid #fde68a;
}

.about-glance h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: #2d3748;
  margin-bottom: 1rem;
}

.about-glance ul {
  list-style: none;
}

.about-glance li {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin-bottom: 0.75rem;
}

.about-glance .label {
  font-weight: 600;
  color: #0f766e;
}

.about-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
  color: #ffffff;
}

.badge-teal {
  background: #14b8a6;
}

.badge-orange {
  background: #fb923c;
}

.badge-yellow {
  background: #fbbf24;
}

/* Services Section */
.services {
  background: linear-gradient(to bottom, rgba(255, 237, 213, 0.5), rgba(254, 243, 199, 0.3));
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 72rem;
  margin: 0 auto;
}

.service-card {
  background: #ffffff;
  border-radius: 0.75rem;
  padding: 1.5rem;
  border: 2px solid;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  transition: all 0.3s;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.card-teal {
  background: #f0fdfa;
  border-color: #99f6e4;
}

.card-orange {
  background: #fff7ed;
  border-color: #fed7aa;
}

.card-yellow {
  background: #fefce8;
  border-color: #fde68a;
}

.card-green {
  background: #f0fdf4;
  border-color: #bbf7d0;
}

.card-blue {
  background: #eff6ff;
  border-color: #bfdbfe;
}

.card-pink {
  background: #fdf2f8;
  border-color: #fbcfe8;
}

.service-icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin-bottom: 1rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.icon-teal {
  background: #ccfbf1;
  color: #0d9488;
}

.icon-orange {
  background: #fed7aa;
  color: #ea580c;
}

.icon-yellow {
  background: #fde68a;
  color: #ca8a04;
}

.icon-green {
  background: #bbf7d0;
  color: #16a34a;
}

.icon-blue {
  background: #bfdbfe;
  color: #2563eb;
}

.icon-pink {
  background: #fbcfe8;
  color: #db2777;
}

.service-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #2d3748;
  margin-bottom: 0.5rem;
}

.service-card p {
  color: #718096;
  line-height: 1.6;
  margin-bottom: 1rem;
}

/* Service Pages */
.service-hero {
  padding: 8rem 0 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.service-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.1;
  z-index: 0;
}

.service-hero-teal {
  background: linear-gradient(135deg, #f0fdfa, #ccfbf1);
}

.service-hero-teal::before {
  background: radial-gradient(circle at 30% 50%, #14b8a6, transparent 70%);
}

.service-hero-orange {
  background: linear-gradient(135deg, #fff7ed, #fed7aa);
}

.service-hero-orange::before {
  background: radial-gradient(circle at 70% 50%, #fb923c, transparent 70%);
}

.service-hero-yellow {
  background: linear-gradient(135deg, #fefce8, #fde68a);
}

.service-hero-yellow::before {
  background: radial-gradient(circle at 50% 30%, #fbbf24, transparent 70%);
}

.service-hero-green {
  background: linear-gradient(135deg, #f0fdf4, #bbf7d0);
}

.service-hero-green::before {
  background: radial-gradient(circle at 30% 70%, #16a34a, transparent 70%);
}

.service-hero-blue {
  background: linear-gradient(135deg, #eff6ff, #bfdbfe);
}

.service-hero-blue::before {
  background: radial-gradient(circle at 70% 30%, #2563eb, transparent 70%);
}

.service-hero-pink {
  background: linear-gradient(135deg, #fdf2f8, #fbcfe8);
}

.service-hero-pink::before {
  background: radial-gradient(circle at 50% 70%, #db2777, transparent 70%);
}

.service-hero-content {
  position: relative;
  z-index: 1;
}

.service-icon-large {
  font-size: 4rem;
  margin-bottom: 1rem;
  animation: bounce-gentle 2s ease-in-out infinite;
}

.service-hero h1 {
  font-size: 2rem;
  font-weight: bold;
  color: #2d3748;
  margin-bottom: 1rem;
}

.service-hero p {
  font-size: 1.125rem;
  color: #718096;
  max-width: 42rem;
  margin: 0 auto;
}

.service-content {
  padding: 4rem 0;
}

.service-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 72rem;
  margin: 0 auto;
}

.service-main {
  order: 1;
}

.service-text {
  background: #ffffff;
  border-radius: 0.75rem;
  padding: 2rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  margin-bottom: 2rem;
}

.service-text h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #2d3748;
  margin: 2rem 0 1rem;
}

.service-text p {
  color: #718096;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.service-text ul {
  list-style: none;
  padding-left: 0;
  margin: 1rem 0;
}

.service-text li {
  color: #718096;
  line-height: 1.8;
  padding-left: 1.5rem;
  position: relative;
  margin-bottom: 0.5rem;
}

.service-text li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #14b8a6;
  font-weight: bold;
}

.service-cta-box {
  background: linear-gradient(135deg, #f0fdfa, #ccfbf1);
  border-radius: 0.75rem;
  padding: 2rem;
  border: 2px solid #99f6e4;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  text-align: center;
}

.service-cta-box h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #0f766e;
  margin-bottom: 0.5rem;
}

.service-cta-box p {
  color: #718096;
  margin-bottom: 1.5rem;
}

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

.service-sidebar {
  order: 2;
  background: #ffffff;
  border-radius: 0.75rem;
  padding: 1.5rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  height: fit-content;
}

.service-sidebar h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #2d3748;
  margin-bottom: 1rem;
}

.service-nav {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.service-nav-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  text-decoration: none;
  color: #2d3748;
  font-weight: 500;
  transition: all 0.3s;
  border: 2px solid;
}

.service-nav-item:hover {
  transform: translateX(4px);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.service-nav-icon {
  font-size: 1.5rem;
}

/* FAQ Section */
.faq {
  background: linear-gradient(to bottom, rgba(239, 246, 255, 0.3), rgba(240, 253, 250, 0.2));
}

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

.faq-item {
  background: #ffffff;
  border-radius: 0.5rem;
  padding: 1rem 1.5rem;
  margin-bottom: 0.75rem;
  border: 2px solid;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.faq-teal {
  background: rgba(240, 253, 250, 0.5);
  border-color: #99f6e4;
}

.faq-yellow {
  background: rgba(254, 252, 232, 0.5);
  border-color: #fde68a;
}

.faq-orange {
  background: rgba(255, 247, 237, 0.5);
  border-color: #fed7aa;
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: none;
  padding: 1rem 0;
  font-size: 1rem;
  font-weight: 500;
  color: #2d3748;
  text-align: left;
  cursor: pointer;
}

.faq-icon {
  font-size: 1.5rem;
  color: #0d9488;
  transition: transform 0.3s;
}

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

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

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

.faq-answer p {
  color: #718096;
  line-height: 1.6;
}

.faq-note {
  text-align: center;
  font-size: 0.875rem;
  color: #718096;
  margin-top: 2rem;
  line-height: 1.6;
}

.faq-note a {
  color: #0d9488;
  font-weight: 500;
  text-decoration: none;
}

.faq-note a:hover {
  text-decoration: underline;
}

/* Testimonials Section */
.testimonials {
  background: linear-gradient(to bottom, rgba(254, 252, 232, 0.4), rgba(255, 237, 213, 0.3));
}

.testimonials-carousel {
  max-width: 56rem;
  margin: 0 auto;
}

.testimonial-card {
  background: linear-gradient(135deg, #ffffff, rgba(255, 237, 213, 0.3));
  border-radius: 0.75rem;
  padding: 3rem 2rem;
  border: 2px solid #fed7aa;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.stars {
  color: #fbbf24;
  font-size: 2rem;
  margin-bottom: 1rem;
}

.testimonial-text {
  font-size: 1.125rem;
  color: #4a5568;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.testimonial-author {
  font-weight: 600;
  color: #2d3748;
}

.testimonial-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.5rem;
}

.testimonial-btn {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.5rem;
  border: 1px solid #99f6e4;
  background: #ffffff;
  color: #0d9488;
  font-size: 1.5rem;
  cursor: pointer;
  transition: all 0.3s;
}

.testimonial-btn:hover {
  background: #f0fdfa;
}

.testimonial-dots {
  display: flex;
  gap: 0.5rem;
}

.testimonial-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: #99f6e4;
  cursor: pointer;
  transition: all 0.3s;
}

.testimonial-dot.active {
  width: 2rem;
  background: #fb923c;
  border-radius: 9999px;
}

/* Contact Section */
.contact {
  background: linear-gradient(to bottom, rgba(240, 253, 250, 0.2), rgba(239, 246, 255, 0.3));
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 72rem;
  margin: 0 auto;
}

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

.info-card {
  background: linear-gradient(135deg, #ffffff, rgba(240, 253, 250, 0.3));
  border-radius: 0.75rem;
  padding: 1.5rem;
  border: 2px solid #99f6e4;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.info-card h3 {
  color: #0f766e;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.info-icon {
  font-size: 1.25rem;
  flex-shrink: 0;
}

.info-label {
  font-weight: 600;
  color: #2d3748;
  margin-bottom: 0.25rem;
}

.info-item a {
  color: #0d9488;
  text-decoration: none;
}

.info-item a:hover {
  text-decoration: underline;
}

.map-container {
  aspect-ratio: 16 / 9;
  border-radius: 0.5rem;
  overflow: hidden;
  border: 4px solid #fde68a;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.contact-form-container {
  background: #ffffff;
  border-radius: 0.75rem;
  padding: 2rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.form-note {
  background: #fef3c7;
  border-left: 4px solid #fbbf24;
  padding: 1rem;
  margin-bottom: 1.5rem;
  border-radius: 0.25rem;
}

.form-note p {
  font-size: 0.875rem;
  color: #78350f;
  line-height: 1.6;
}

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

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

.form-group label {
  font-weight: 500;
  color: #2d3748;
  font-size: 0.875rem;
}

.form-group input,
.form-group textarea {
  padding: 0.75rem;
  border: 2px solid #e2e8f0;
  border-radius: 0.5rem;
  font-size: 1rem;
  transition: all 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #14b8a6;
  box-shadow: 0 0 0 3px rgba(20, 184, 166, 0.1);
}

.form-success {
  background: #d1fae5;
  border: 2px solid #6ee7b7;
  border-radius: 0.5rem;
  padding: 1rem;
  margin-top: 1rem;
  text-align: center;
}

.form-success p {
  color: #065f46;
  font-weight: 500;
}

/* Footer */
.footer {
  background: linear-gradient(to right, #0d9488, #06b6d4);
  color: #ffffff;
  padding: 3rem 0 1.5rem;
}

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

.footer-col h3,
.footer-col h4 {
  margin-bottom: 1rem;
  font-size: 1.125rem;
}

.footer-tagline {
  font-size: 0.875rem;
  opacity: 0.9;
  margin-bottom: 0.5rem;
}

.footer-about {
  font-size: 0.875rem;
  opacity: 0.8;
  line-height: 1.6;
  margin-bottom: 1rem;
}

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

.social-links a {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  transition: all 0.3s;
}

.social-links a:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

.social-links svg {
  width: 1.25rem;
  height: 1.25rem;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-nav a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.3s;
}

.footer-nav a:hover {
  color: #ffffff;
}

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

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.875rem;
}

.footer-contact-item .icon {
  margin-right: 0;
  flex-shrink: 0;
}

.footer-contact-item a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
}

.footer-contact-item a:hover {
  color: #ffffff;
  text-decoration: underline;
}

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

.hours-item {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.875rem;
}

.hours-item .icon {
  margin-right: 0;
  flex-shrink: 0;
}

.hours-day {
  font-weight: 500;
  margin-bottom: 0.25rem;
}

.hours-time {
  opacity: 0.9;
  font-size: 0.8125rem;
}

.footer-emergency {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
}

.emergency-title {
  font-weight: 600;
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
}

.emergency-text {
  font-size: 0.8125rem;
  opacity: 0.9;
  line-height: 1.6;
}

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

.footer-bottom p {
  font-size: 0.875rem;
  opacity: 0.8;
}

/* WhatsApp Button */
.whatsapp-btn {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background: #25d366;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: all 0.3s;
  animation: pulse-whatsapp 2s ease-in-out infinite;
}

.whatsapp-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 16px rgba(37, 211, 102, 0.6);
}

.whatsapp-btn svg {
  width: 2rem;
  height: 2rem;
}

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

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

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

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

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

@keyframes pulse-whatsapp {
  0%,
  100% {
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
  }
  50% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.6);
  }
}

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

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

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

@keyframes float-bubble {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-30px) scale(1.1);
  }
}

@keyframes fill-bottle {
  0%,
  100% {
    height: 50%;
  }
  50% {
    height: 70%;
  }
}

@keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fade-in-up {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design */
@media (min-width: 640px) {
  .hero-buttons {
    flex-direction: row;
    justify-content: center;
  }

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

  .service-cta-buttons {
    flex-direction: row;
    justify-content: center;
  }
}

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

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

  .lang-code {
    display: inline;
  }

  .hero-title {
    font-size: 3.5rem;
  }

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

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

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

  .service-layout {
    grid-template-columns: 1fr 300px;
  }

  .service-main {
    order: 1;
  }

  .service-sidebar {
    order: 2;
    position: sticky;
    top: 6rem;
  }
}

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

  .footer-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* RTL Support */
[dir="rtl"] .icon {
  margin-right: 0;
  margin-left: 0.5rem;
}

[dir="rtl"] .service-nav-item:hover {
  transform: translateX(-4px);
}

[dir="rtl"] .whatsapp-btn {
  right: auto;
  left: 2rem;
}

[dir="rtl"] .service-text li {
  padding-left: 0;
  padding-right: 1.5rem;
}

[dir="rtl"] .service-text li::before {
  left: auto;
  right: 0;
}
