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

:root {
  /* Colors */
  --color-primary: hsl(160, 70%, 45%);
  --color-primary-fg: hsl(0, 0%, 100%);
  --color-secondary: hsl(190, 60%, 55%);
  --color-secondary-fg: hsl(0, 0%, 100%);
  --color-accent: hsl(25, 95%, 60%);
  --color-accent-fg: hsl(0, 0%, 100%);
  --color-background: hsl(0, 0%, 100%);
  --color-foreground: hsl(220, 15%, 20%);
  --color-muted: hsl(200, 15%, 95%);
  --color-muted-fg: hsl(210, 10%, 40%);
  
  /* Typography */
  --font-sans: 'Poppins', 'Nunito', sans-serif;
  
  /* Spacing */
  --spacing-1: 0.25rem;
  --spacing-2: 0.5rem;
  --spacing-3: 0.75rem;
  --spacing-4: 1rem;
  --spacing-5: 1.25rem;
  --spacing-6: 1.5rem;
  --spacing-8: 2rem;
  --spacing-10: 2.5rem;
  --spacing-12: 3rem;
  --spacing-16: 4rem;
  --spacing-20: 5rem;
  --spacing-24: 6rem;
  
  /* Border Radius */
  --radius: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-2xl: 1.5rem;
  --radius-full: 9999px;
  
  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
  --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  
  /* Transitions */
  --transition: all 0.3s ease;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  background: linear-gradient(to bottom, hsl(0, 0%, 100%), hsl(190, 100%, 97%), hsl(0, 0%, 100%));
  color: var(--color-foreground);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body.menu-open {
  overflow: hidden;
}

.app-wrapper {
  min-height: 100vh;
}

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

/* ========================================
   Icons & SVG
   ======================================== */
.icon, .icon-sm {
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
}

.icon-sm {
  width: 1rem;
  height: 1rem;
}

.icon-brand {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--color-primary);
}

.icon-rocket {
  width: 2rem;
  height: 2rem;
}

.icon-heart {
  width: 2rem;
  height: 2rem;
  color: var(--color-primary);
}

.icon-sparkles {
  width: 3rem;
  height: 3rem;
}

/* ========================================
   Buttons
   ======================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.625rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.25rem;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-1px);
}

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

.btn-primary:hover {
  background-color: hsl(160, 70%, 40%);
  box-shadow: var(--shadow-lg);
}

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

.btn-secondary:hover {
  background-color: hsl(190, 60%, 50%);
  box-shadow: var(--shadow-lg);
}

.btn-accent {
  background-color: var(--color-accent);
  color: var(--color-accent-fg);
}

.btn-accent:hover {
  background-color: hsl(25, 95%, 55%);
  box-shadow: var(--shadow-lg);
}

.btn-outline {
  background-color: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  color: white;
  border: 2px solid white;
}

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

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

.btn-block {
  width: 100%;
}

/* ========================================
   Navigation
   ======================================== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  transition: var(--transition);
}

.nav.scrolled {
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-lg);
}

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

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

.brand-name {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-foreground);
}

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

.nav-link {
  background: none;
  border: none;
  color: var(--color-foreground);
  font-weight: 500;
  font-size: 1rem;
  cursor: pointer;
  transition: color 0.2s;
  font-family: var(--font-sans);
}

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

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.btn-whatsapp-header {
  display: none;
}

.nav-menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  padding: 0.5rem;
  cursor: pointer;
  color: var(--color-foreground);
  transition: color 0.2s;
}

.nav-menu-toggle:hover {
  color: var(--color-primary);
}

.menu-icon,
.close-icon {
  width: 1.5rem;
  height: 1.5rem;
}

.hidden {
  display: none !important;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.4);
  border: none;
  color: white;
  font-size: 2rem;
  width: 55px;   /* 🔹 ancho fijo */
  height: 55px;  /* 🔹 alto fijo igual al ancho */
  border-radius: 50%; /* 🔹 círculo perfecto */
  cursor: pointer;
  z-index: 10;
  backdrop-filter: blur(4px); /* 🔹 efecto vidrio */
  transition: all 0.3s ease;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-btn:hover {
  background-color: rgba(255, 255, 255, 0.7);
  color: #000;
  transform: translateY(-50%) scale(1.1); /* 🔹 efecto de crecimiento */
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.6);
}

.carousel-btn.prev {
  left: 15px;
}

.carousel-btn.next {
  right: 15px;
}


/* Mobile Menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 40;
  background-color: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(16px);
}

.mobile-menu-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 1rem;
  gap: 2rem;
  position: relative;
}

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

.mobile-menu-header svg {
  width: 2.5rem;
  height: 2.5rem;
  color: var(--color-primary);
}

.mobile-menu-header span {
  font-size: 1.875rem;
  font-weight: 700;
  color: white;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.mobile-link {
  background: none;
  border: none;
  font-size: 1.5rem;
  color: white;
  font-weight: 600;
  cursor: pointer;
  transition: color 0.2s;
  font-family: var(--font-sans);
}

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

.mobile-whatsapp {
  margin-top: 2rem;
}

.mobile-stars {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  opacity: 0.2;
}

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

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

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.4), rgba(0,0,0,0.2), rgba(0,0,0,0.4));
}

.hero-stars {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

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

.hero-icon {
  display: flex;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.hero-icon svg {
  width: 4rem;
  height: 4rem;
  color: white;
  filter: drop-shadow(0 25px 25px rgba(0, 0, 0, 0.5));
}

.hero-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1rem;
  line-height: 1.2;
  filter: drop-shadow(0 25px 25px rgba(0, 0, 0, 0.5));
}

.hero-subtitle {
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 0.75rem;
  font-weight: 600;
  filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.3));
}

.hero-description {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2.5rem;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
  filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.3));
}

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

.hero-buttons .btn {
  box-shadow: var(--shadow-2xl);
}

.hero-buttons .btn:hover {
  transform: scale(1.05);
  box-shadow: 0 0 30px rgba(var(--color-primary), 0.5);
}

/* ========================================
   Home Secondary Section
   ======================================== */
.home-secondary {
  padding: 4rem 0;
  background: white;
}

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

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

.section-header-small h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-foreground);
}

.home-description {
  font-size: 1rem;
  color: var(--color-muted-fg);
  line-height: 1.75;
  margin-bottom: 1rem;
}

.home-quote {
  font-size: 1rem;
  color: var(--color-muted-fg);
  font-style: italic;
  line-height: 1.75;
}

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

.grid-image {
  width: 100%;
  height: 12rem;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  transition: var(--transition);
}

.grid-image:hover {
  box-shadow: var(--shadow-2xl);
}

/* ========================================
   Services Section
   ======================================== */
.services {
  position: relative;
  padding: 4rem 0;
  background: linear-gradient(to bottom, white, hsl(160, 100%, 97%), white);
  overflow: hidden;
}

.services-decor {
  position: absolute;
  opacity: 0.2;
}

.services-decor-1 {
  top: 2.5rem;
  left: 2.5rem;
}

.services-decor-2 {
  bottom: 2.5rem;
  right: 2.5rem;
}

.services-decor svg {
  width: 3rem;
  height: 3rem;
  color: var(--color-primary);
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

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

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

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

.section-header-light {
  color: white;
}

.section-header-light h2 {
  color: white;
}

.section-header-light p {
  color: rgba(255, 255, 255, 0.9);
}

.section-icon {
  display: flex;
  justify-content: center;
  margin-bottom: 1rem;
}

.section-icon svg {
  width: 3rem;
  height: 3rem;
  color: var(--color-primary);
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

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

.service-card {
  background: white;
  border: 2px solid hsl(200, 20%, 88%);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: all 0.3s ease;
}

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

.service-image {
  position: relative;
  height: 12rem;
  overflow: hidden;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.service-icon {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 3rem;
  height: 3rem;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
}

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

.service-icon-primary {
  background-color: var(--color-primary);
}

.service-icon-secondary {
  background-color: var(--color-secondary);
}

.service-icon-accent {
  background-color: var(--color-accent);
}

.service-content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.service-content h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-foreground);
}

.service-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.service-features li {
  font-size: 0.875rem;
  color: var(--color-muted-fg);
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.service-price {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-primary);
}

.service-price-secondary {
  color: var(--color-secondary);
}

.service-price-accent {
  color: var(--color-accent);
}

/* ========================================
   Experience Section
   ======================================== */
.experience {
  position: relative;
  padding: 4rem 0;
  background: linear-gradient(to bottom, hsl(215, 28%, 17%), hsl(215, 20%, 22%), hsl(215, 28%, 17%));
  color: white;
  overflow: hidden;
}

.experience-stars {
  position: absolute;
  inset: 0;
  opacity: 0.3;
}

.carousel-wrapper {
  margin-bottom: 3rem;
  max-width: 56rem;
  margin-left: auto;
  margin-right: auto;
}

.carousel {
  position: relative;
  height: 16rem;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-2xl);
}

.carousel-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s ease;
}

.carousel-image.active {
  opacity: 1;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: var(--radius-full);
  background-color: rgba(255, 255, 255, 0.4);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.dot:hover {
  background-color: rgba(255, 255, 255, 0.6);
}

.dot.active {
  background-color: var(--color-primary);
  width: 2rem;
}

.testimonials {
  display: grid;
  gap: 2rem;
}

.testimonial-card {
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-xl);
  padding: 1.5rem;
  transition: var(--transition);
}

.testimonial-card:hover {
  background-color: rgba(255, 255, 255, 0.15);
}

.testimonial-emoji {
  font-size: 2.5rem;
  margin-bottom: 0.75rem;
}

.testimonial-text {
  font-style: italic;
  margin-bottom: 1rem;
  font-size: 0.875rem;
  line-height: 1.6;
}

.testimonial-author {
  font-size: 0.75rem;
  color: var(--color-primary);
  font-weight: 600;
}

/* ========================================
   Contact Section
   ======================================== */
.contact {
  padding: 4rem 0;
  background: white;
}

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

.contact-map {
  height: 16rem;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

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

.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  border-radius: var(--radius-xl);
  border: 1px solid;
  transition: var(--transition);
}

.contact-card-primary {
  background: linear-gradient(135deg, rgba(20, 184, 166, 0.05), rgba(20, 184, 166, 0.1));
  border-color: rgba(20, 184, 166, 0.2);
}

.contact-card-primary:hover {
  border-color: rgba(20, 184, 166, 0.4);
}

.contact-card-secondary {
  background: linear-gradient(135deg, rgba(56, 189, 248, 0.05), rgba(56, 189, 248, 0.1));
  border-color: rgba(56, 189, 248, 0.2);
}

.contact-card-secondary:hover {
  border-color: rgba(56, 189, 248, 0.4);
}

.contact-card-accent {
  background: linear-gradient(135deg, rgba(251, 146, 60, 0.05), rgba(251, 146, 60, 0.1));
  border-color: rgba(251, 146, 60, 0.2);
}

.contact-card-accent:hover {
  border-color: rgba(251, 146, 60, 0.4);
}

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

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

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

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

.contact-icon-accent {
  background-color: var(--color-accent);
}

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

.contact-card a {
  color: var(--color-primary);
  text-decoration: none;
  font-size: 1rem;
  transition: all 0.2s;
}

.contact-card a:hover {
  text-decoration: underline;
}

.contact-card-secondary a {
  color: var(--color-secondary);
}

.contact-card p {
  color: var(--color-muted-fg);
  font-size: 1rem;
  line-height: 1.5;
}

/* ========================================
   Footer
   ======================================== */
.footer {
  position: relative;
  padding: 3rem 0;
  background: linear-gradient(to bottom, hsl(215, 28%, 17%), hsl(0, 0%, 0%));
  color: white;
  overflow: hidden;
}

.footer-stars {
  position: absolute;
  inset: 0;
  opacity: 0.2;
}

.footer-grid {
  position: relative;
  z-index: 10;
  display: grid;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.footer-logo svg {
  width: 2rem;
  height: 2rem;
  color: var(--color-primary);
}

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

.footer-brand p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.875rem;
  font-style: italic;
}

.footer h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.footer-links ul,
.footer-contact ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-links button {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.875rem;
  text-align: left;
  cursor: pointer;
  transition: color 0.2s;
  font-family: var(--font-sans);
  padding: 0;
}

.footer-links button:hover {
  color: var(--color-primary);
}

.footer-contact li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.875rem;
}

.footer-contact svg {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
}

.footer-contact a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.2s;
}

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

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

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-full);
  transition: var(--transition);
}

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

.social-links a:hover {
  background-color: var(--color-primary);
}

.social-links a:nth-child(2):hover {
  background-color: var(--color-accent);
}

.social-links a:nth-child(3):hover {
  background-color: var(--color-secondary);
}

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

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

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

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

@keyframes twinkle {
  0%, 100% {
    opacity: 0.3;
  }
  50% {
    opacity: 1;
  }
}

.rocket-bounce {
  animation: bounce 2s ease-in-out infinite;
}

.star {
  position: absolute;
  background-color: white;
  border-radius: var(--radius-full);
  animation: twinkle 2s ease-in-out infinite;
}

/* ========================================
   Responsive Design
   ======================================== */
@media (min-width: 640px) {
  .container {
    padding: 0 1.5rem;
  }
  
  .icon-brand {
    width: 2rem;
    height: 2rem;
  }
  
  .btn-whatsapp-header {
    display: inline-flex;
  }
  
  .brand-name {
    font-size: 1.5rem;
  }
  
  .hero-title {
    font-size: 3rem;
  }
  
  .hero-subtitle {
    font-size: 1.875rem;
  }
  
  .hero-description {
    font-size: 1.125rem;
  }
  
  .hero-buttons {
    flex-direction: row;
  }
  
  .hero-icon svg {
    width: 5rem;
    height: 5rem;
  }
  
  .section-header-small h2 {
    font-size: 1.875rem;
  }
  
  .home-description,
  .home-quote {
    font-size: 1.125rem;
  }
  
  .section-header h2 {
    font-size: 2.5rem;
  }
  
  .section-header p {
    font-size: 1.125rem;
  }
  
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .carousel {
    height: 20rem;
  }
  
  .dot {
    width: 0.75rem;
    height: 0.75rem;
  }
  
  .dot.active {
    width: 2.5rem;
  }
  
  .testimonial-text {
    font-size: 1rem;
  }
  
  .testimonial-author {
    font-size: 0.875rem;
  }
  
  .contact-map {
    height: 24rem;
  }
  
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
  }
}

@media (min-width: 768px) {
  .container {
    padding: 0 2rem;
  }
  
  .nav-content {
    height: 5rem;
  }
  
  .nav-links {
    display: flex;
  }
  
  .nav-menu-toggle {
    display: none;
  }
  
  .hero {
    min-height: 90vh;
  }
  
  .hero-title {
    font-size: 3.75rem;
  }
  
  .hero-subtitle {
    font-size: 2.25rem;
  }
  
  .hero-description {
    font-size: 1.25rem;
  }
  
  .hero-buttons .btn-lg {
    font-size: 1.125rem;
  }
  
  .home-secondary {
    padding: 6rem 0;
  }
  
  .home-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
  }
  
  .section-header-small h2 {
    font-size: 2.25rem;
  }
  
  .services {
    padding: 6rem 0;
  }
  
  .section-header h2 {
    font-size: 3rem;
  }
  
  .experience {
    padding: 6rem 0;
  }
  
  .carousel-wrapper {
    margin-bottom: 4rem;
  }
  
  .carousel {
    height: 24rem;
  }
  
  .testimonials {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .contact {
    padding: 6rem 0;
  }
  
  .contact-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
  }
  
  .footer {
    padding: 4rem 0;
  }
  
  .footer-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .footer-bottom p {
    font-size: 0.875rem;
  }
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: 4.5rem;
  }
  
  .section-header h2 {
    font-size: 3.75rem;
  }
  
  .section-header-small h2 {
    font-size: 2.5rem;
  }
  
  .services-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .service-content h3 {
    font-size: 1.5rem;
  }
  
  .service-features li {
    font-size: 1rem;
  }
  
  .service-price {
    font-size: 1.25rem;
  }
}

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