/* ================================================
   PLANET ENGLISH AMRITSAR - MODERN PREMIUM DESIGN
   Premium, Aesthetic, Clean, Modern, Bright, Interactive
   ================================================ */

/* ==================== NEW COLOR PALETTE ==================== */
:root {
  /* Primary - Vibrant Indigo/Purple */
  --primary: #4f46e5;
  --primary-light: #6366f1;
  --primary-lighter: #818cf8;
  --primary-dark: #3730a3;
  --primary-50: #eef2ff;
  --primary-100: #e0e7ff;

  /* Secondary - Warm Coral/Pink */
  --secondary: #f472b6;
  --secondary-light: #f9a8d4;
  --secondary-dark: #ec4899;

  /* Accent - Golden Yellow */
  --accent: #fbbf24;
  --accent-light: #fcd34d;
  --accent-dark: #f59e0b;

  /* Success - Emerald */
  --success: #10b981;
  --success-light: #34d399;

  /* Neutral */
  --white: #ffffff;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;

  /* Gradients */
  --gradient-primary: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  --gradient-secondary: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-light) 100%);
  --gradient-accent: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
  --gradient-hero: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
  --gradient-card: linear-gradient(180deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 100%);
  --gradient-text: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  --gradient-warm: linear-gradient(135deg, #f97316 0%, #fbbf24 50%, #f472b6 100%);

  /* Shadows with color */
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
  --shadow-2xl: 0 25px 50px -12px rgb(0 0 0 / 0.25);
  --shadow-primary: 0 10px 40px -10px rgba(79, 70, 229, 0.4);
  --shadow-secondary: 0 10px 40px -10px rgba(244, 114, 182, 0.4);
  --shadow-accent: 0 10px 40px -10px rgba(251, 191, 36, 0.4);

  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;
  --space-5xl: 8rem;

  /* Border Radius */
  --radius-sm: 0.5rem;
  --radius-md: 1rem;
  --radius-lg: 1.5rem;
  --radius-xl: 2rem;
  --radius-2xl: 3rem;
  --radius-full: 9999px;

  /* Transitions */
  --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 300ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 500ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: 500ms cubic-bezier(0.68, -0.55, 0.265, 1.55);

  /* Z-Index */
  --z-dropdown: 100;
  --z-sticky: 200;
  --z-fixed: 300;
  --z-modal: 400;
  --z-tooltip: 500;
  --z-whatsapp: 600;

  /* Container */
  --container-max: 1400px;
  --container-padding: 1.5rem;
}

/* ==================== RESET & BASE ==================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.7;
  color: var(--gray-700);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

ul, ol {
  list-style: none;
}

input, textarea, select {
  font-family: inherit;
  font-size: inherit;
}

/* ==================== TYPOGRAPHY ==================== */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  color: var(--gray-900);
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: clamp(1.25rem, 2vw, 1.5rem); }

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

p {
  margin-bottom: var(--space-md);
}

/* ==================== UTILITY CLASSES ==================== */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.section {
  padding: var(--space-5xl) 0;
  position: relative;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  background: var(--primary-100);
  color: var(--primary);
  padding: var(--space-sm) var(--space-lg);
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: var(--space-lg);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.section-title {
  text-align: center;
  margin-bottom: var(--space-3xl);
}

.section-title h2 {
  margin-bottom: var(--space-md);
}

.section-title p {
  color: var(--gray-500);
  font-size: 1.125rem;
  max-width: 600px;
  margin: 0 auto;
}

/* ==================== BUTTONS ==================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--radius-lg);
  transition: all var(--transition-base);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(white transparent);
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.btn:hover::before {
  opacity: 0.1;
}

.btn-primary {
  background: var(--gradient-primary);
  color: var(--white);
  box-shadow: var(--shadow-primary);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 40px -10px rgba(79, 70, 229, 0.5);
}

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

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

.btn-accent {
  background: var(--gradient-accent);
  color: var(--gray-900);
  box-shadow: var(--shadow-accent);
}

.btn-accent:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 40px -10px rgba(251, 191, 36, 0.5);
}

.btn-ghost {
  background: transparent;
  color: var(--gray-700);
  border: 2px solid var(--gray-200);
}

.btn-ghost:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.btn-white {
  background: var(--white);
  color: var(--primary);
  box-shadow: var(--shadow-lg);
}

.btn-white:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-xl);
}

.btn-lg {
  padding: 1.25rem 2.5rem;
  font-size: 1.125rem;
}

.btn-sm {
  padding: 0.75rem 1.5rem;
  font-size: 0.875rem;
}

/* ==================== GLASS MORPHISM ==================== */
.glass {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.glass-dark {
  background: rgba(15, 23, 42, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* ==================== NAVIGATION ==================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--z-fixed);
  transition: all var(--transition-base);
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: var(--shadow-md);
}

.navbar-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-md) var(--container-padding);
  max-width: var(--container-max);
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.logo-icon {
  width: 50px;
  height: 50px;
  background: var(--gradient-primary);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  box-shadow: var(--shadow-primary);
  transition: transform var(--transition-bounce);
}

.logo:hover .logo-icon {
  transform: rotate(10deg) scale(1.05);
}

.logo-text {
  font-size: 1.5rem;
  font-weight: 800;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.logo-text span {
  display: block;
  font-size: 0.7rem;
  font-weight: 500;
  background: var(--gray-500);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
}

.nav-link {
  position: relative;
  font-weight: 500;
  color: var(--gray-600);
  transition: color var(--transition-fast);
  padding: var(--space-sm) 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-primary);
  transition: width var(--transition-base);
  border-radius: var(--radius-full);
}

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

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-cta {
  margin-left: var(--space-lg);
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  padding: var(--space-sm);
  z-index: var(--z-fixed);
}

.mobile-toggle span {
  display: block;
  width: 28px;
  height: 3px;
  background: var(--primary);
  border-radius: var(--radius-full);
  transition: all var(--transition-base);
}

@media (max-width: 1024px) {
  .mobile-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    padding: 6rem var(--space-2xl) var(--space-2xl);
    gap: var(--space-lg);
    box-shadow: var(--shadow-2xl);
    transition: right var(--transition-slow);
    z-index: var(--z-fixed);
  }

  .nav-links.active {
    right: 0;
  }

  .nav-cta {
    margin-left: 0;
    margin-top: var(--space-md);
    width: 100%;
  }

  .mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
  }

  .mobile-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
  }

  .mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
  }
}

/* ==================== HERO SECTION ==================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 80px;
  overflow: hidden;
  background: var(--gray-900);
}

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

.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 50% -20%, rgba(79, 70, 229, 0.4) 0%, transparent 50%),
    radial-gradient(ellipse 60% 40% at 80% 60%, rgba(244, 114, 182, 0.3) 0%, transparent 50%),
    radial-gradient(ellipse 50% 30% at 20% 80%, rgba(251, 191, 36, 0.2) 0%, transparent 50%);
  z-index: 1;
}

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

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: var(--space-4xl);
  align-items: center;
  width: 100%;
}

.hero-text {
  color: var(--white);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  background: rgba(79, 70, 229, 0.3);
  backdrop-filter: blur(10px);
  padding: var(--space-sm) var(--space-lg);
  border-radius: var(--radius-full);
  margin-bottom: var(--space-xl);
  font-size: 0.875rem;
  font-weight: 500;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-badge svg {
  color: var(--accent);
}

.hero h1 {
  color: var(--white);
  margin-bottom: var(--space-xl);
  font-weight: 800;
  line-height: 1.1;
}

.hero h1 span {
  display: block;
  background: var(--gradient-warm);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-description {
  font-size: 1.25rem;
  color: var(--gray-300);
  margin-bottom: var(--space-2xl);
  max-width: 550px;
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
  margin-bottom: var(--space-3xl);
}

.hero-stats {
  display: flex;
  gap: var(--space-3xl);
  padding-top: var(--space-2xl);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.stat-number {
  font-size: 3rem;
  font-weight: 800;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.stat-label {
  font-size: 0.95rem;
  color: var(--gray-400);
  margin-top: var(--space-sm);
}

.hero-visual {
  position: relative;
}

.hero-cards {
  position: relative;
  height: 500px;
}

.hero-card-float {
  position: absolute;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  padding: var(--space-lg);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  display: flex;
  align-items: center;
  gap: var(--space-md);
  animation: float 6s ease-in-out infinite;
}

.hero-card-float:nth-child(1) {
  top: 20%;
  left: 0;
  animation-delay: 0s;
}

.hero-card-float:nth-child(2) {
  top: 50%;
  right: 0;
  animation-delay: 2s;
}

.hero-card-float:nth-child(3) {
  bottom: 10%;
  left: 10%;
  animation-delay: 4s;
}

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

.hero-card-icon {
  width: 60px;
  height: 60px;
  background: var(--gradient-primary);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  flex-shrink: 0;
}

.hero-card-content h4 {
  font-size: 1.125rem;
  margin-bottom: 4px;
}

.hero-card-content p {
  font-size: 0.875rem;
  color: var(--gray-500);
  margin: 0;
}

.hero-main-image {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 350px;
  height: 450px;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-2xl);
  border: 4px solid rgba(255, 255, 255, 0.2);
}

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

@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: var(--space-3xl);
  }

  .hero-description {
    margin: 0 auto var(--space-2xl);
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
    gap: var(--space-2xl);
  }

  .hero-visual {
    display: none;
  }
}

/* ==================== MARQUEE BARS ==================== */
.marquee-wrapper {
  background: var(--white);
  padding: var(--space-lg) 0;
  overflow: hidden;
  border-top: 1px solid var(--gray-100);
  border-bottom: 1px solid var(--gray-100);
}

.marquee-wrapper.accent-bg {
  background: var(--gradient-warm);
}

.marquee-wrapper.accent-bg .marquee-item {
  color: var(--white);
}

.marquee-wrapper.brand-bg {
  background: var(--gray-900);
}

.marquee-wrapper.brand-bg .marquee-item {
  color: var(--gray-300);
}

.marquee-wrapper.brand-bg .marquee-item strong {
  color: var(--white);
}

.marquee {
  display: flex;
  animation: marquee 40s linear infinite;
}

.marquee-content {
  display: flex;
  align-items: center;
  gap: var(--space-4xl);
  padding-right: var(--space-4xl);
}

.marquee-item {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-weight: 600;
  color: var(--gray-700);
  white-space: nowrap;
  font-size: 1rem;
}

.marquee-item svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ==================== ABOUT SECTION ==================== */
.about-section {
  background: var(--white);
  overflow: hidden;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4xl);
  align-items: center;
}

.about-images {
  position: relative;
}

.about-image-stack {
  position: relative;
  height: 600px;
}

.about-image-main {
  position: absolute;
  width: 80%;
  height: 80%;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-2xl);
}

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

.about-image-secondary {
  position: absolute;
  width: 50%;
  height: 50%;
  bottom: 0;
  right: 0;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 6px solid var(--white);
}

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

.about-badge-float {
  position: absolute;
  top: 20%;
  right: -20px;
  background: var(--gradient-primary);
  color: var(--white);
  padding: var(--space-xl);
  border-radius: var(--radius-xl);
  text-align: center;
  box-shadow: var(--shadow-2xl);
  animation: pulse-badge 3s ease-in-out infinite;
}

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

.about-badge-number {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1;
}

.about-badge-text {
  font-size: 0.875rem;
  opacity: 0.9;
  margin-top: var(--space-xs);
}

.about-content h2 {
  margin-bottom: var(--space-lg);
}

.about-content > p {
  color: var(--gray-600);
  font-size: 1.125rem;
  margin-bottom: var(--space-xl);
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  margin: var(--space-2xl) 0;
}

.about-feature {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  padding: var(--space-lg);
  background: var(--gray-50);
  border-radius: var(--radius-lg);
  transition: all var(--transition-base);
}

.about-feature:hover {
  background: var(--primary-50);
  transform: translateY(-3px);
}

.about-feature-icon {
  width: 50px;
  height: 50px;
  background: var(--gradient-primary);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  flex-shrink: 0;
}

.about-feature h4 {
  font-size: 1rem;
  margin-bottom: 4px;
}

.about-feature p {
  font-size: 0.875rem;
  color: var(--gray-500);
  margin: 0;
}

@media (max-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: var(--space-3xl);
  }

  .about-images {
    order: 2;
  }

  .about-features {
    grid-template-columns: 1fr;
  }
}

/* ==================== SERVICES/CARDS SECTION ==================== */
.services-section {
  background: var(--gray-50);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: var(--space-xl);
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-2xl);
  padding: var(--space-2xl);
  box-shadow: var(--shadow-md);
  transition: all var(--transition-slow);
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-base);
}

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

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card-header {
  display: flex;
  align-items: flex-start;
  gap: var(--space-lg);
  margin-bottom: var(--space-lg);
}

.service-icon {
  width: 80px;
  height: 80px;
  background: var(--primary-50);
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all var(--transition-base);
}

.service-icon svg {
  width: 40px;
  height: 40px;
  color: var(--primary);
  transition: color var(--transition-base);
}

.service-card:hover .service-icon {
  background: var(--gradient-primary);
}

.service-card:hover .service-icon svg {
  color: var(--white);
}

.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: var(--space-sm);
}

.service-card > p {
  color: var(--gray-500);
  margin-bottom: var(--space-lg);
  font-size: 1rem;
  line-height: 1.7;
}

.service-features {
  margin-bottom: var(--space-lg);
}

.service-features li {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  color: var(--gray-600);
  margin-bottom: var(--space-sm);
  font-size: 0.95rem;
}

.service-features li svg {
  width: 20px;
  height: 20px;
  color: var(--success);
  flex-shrink: 0;
}

.service-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--space-lg);
  border-top: 1px solid var(--gray-100);
}

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

.service-price span {
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--gray-400);
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  color: var(--primary);
  font-weight: 600;
  transition: gap var(--transition-fast);
}

.service-link:hover {
  gap: var(--space-md);
}

.service-link svg {
  width: 20px;
  height: 20px;
}

/* ==================== BENTO GRID ==================== */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 300px);
  gap: var(--space-lg);
}

.bento-item {
  background: var(--white);
  border-radius: var(--radius-2xl);
  padding: var(--space-xl);
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
  overflow: hidden;
  position: relative;
}

.bento-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
}

.bento-item.large {
  grid-column: span 2;
}

.bento-item.tall {
  grid-row: span 2;
}

.bento-icon {
  width: 60px;
  height: 60px;
  background: var(--primary-50);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-lg);
}

.bento-icon svg {
  width: 30px;
  height: 30px;
  color: var(--primary);
}

.bento-item h3 {
  font-size: 1.5rem;
  margin-bottom: var(--space-sm);
}

.bento-item p {
  color: var(--gray-500);
  margin: 0;
}

.bento-image {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 60%;
  height: 60%;
  opacity: 0.1;
}

@media (max-width: 1024px) {
  .bento-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }

  .bento-item {
    grid-column: span 1;
    grid-row: span 1;
  }

  .bento-item.large {
    grid-column: span 2;
  }
}

/* ==================== WHY CHOOSE US ==================== */
.why-us-section {
  background: var(--gray-900);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.why-us-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 50% at 20% 50%, rgba(79, 70, 229, 0.3) 0%, transparent 50%),
    radial-gradient(ellipse 40% 40% at 80% 50%, rgba(244, 114, 182, 0.2) 0%, transparent 50%);
}

.why-us-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-xl);
  position: relative;
  z-index: 1;
}

.why-us-card {
  text-align: center;
  padding: var(--space-2xl);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-2xl);
  backdrop-filter: blur(10px);
  transition: all var(--transition-base);
}

.why-us-card:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-5px);
  border-color: var(--primary);
}

.why-us-icon {
  width: 100px;
  height: 100px;
  background: var(--gradient-primary);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-xl);
  box-shadow: var(--shadow-primary);
}

.why-us-icon svg {
  width: 50px;
  height: 50px;
  color: var(--white);
}

.why-us-card h3 {
  color: var(--white);
  margin-bottom: var(--space-md);
  font-size: 1.5rem;
}

.why-us-card p {
  color: var(--gray-400);
  font-size: 1rem;
  margin: 0;
}

/* ==================== VIDEOS SECTION ==================== */
.videos-section {
  background: var(--white);
}

.videos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  gap: var(--space-xl);
}

.video-card {
  background: var(--white);
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-slow);
  border: 1px solid var(--gray-100);
}

.video-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-2xl);
}

.video-thumbnail {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
}

.video-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.video-card:hover .video-thumbnail img {
  transform: scale(1.05);
}

.video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 50%);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition-base);
}

.video-card:hover .video-overlay {
  opacity: 1;
}

.video-play-btn {
  width: 80px;
  height: 80px;
  background: var(--white);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-xl);
  transition: all var(--transition-bounce);
  cursor: pointer;
}

.video-play-btn:hover {
  transform: scale(1.1);
}

.video-play-btn svg {
  width: 32px;
  height: 32px;
  color: var(--primary);
  margin-left: 4px;
}

.video-duration {
  position: absolute;
  bottom: var(--space-md);
  right: var(--space-md);
  background: rgba(0, 0, 0, 0.8);
  color: var(--white);
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  font-weight: 500;
}

.video-content {
  padding: var(--space-xl);
}

.video-content h3 {
  font-size: 1.25rem;
  margin-bottom: var(--space-md);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.video-meta {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  color: var(--gray-500);
  font-size: 0.875rem;
}

.video-meta span {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
}

.video-meta svg {
  width: 18px;
  height: 18px;
}

/* ==================== TESTIMONIALS SECTION ==================== */
.testimonials-section {
  background: var(--gray-50);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  gap: var(--space-xl);
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-2xl);
  padding: var(--space-2xl);
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
  position: relative;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
}

.testimonial-quote {
  position: absolute;
  top: var(--space-lg);
  right: var(--space-lg);
  width: 60px;
  height: 60px;
  opacity: 0.1;
}

.testimonial-content {
  margin-bottom: var(--space-xl);
}

.testimonial-content p {
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--gray-600);
  font-style: italic;
}

.testimonial-rating {
  display: flex;
  gap: var(--space-xs);
  margin-bottom: var(--space-lg);
}

.testimonial-rating svg {
  width: 24px;
  height: 24px;
  color: var(--accent);
  fill: var(--accent);
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.testimonial-avatar {
  width: 70px;
  height: 70px;
  border-radius: var(--radius-full);
  overflow: hidden;
  border: 4px solid var(--primary-100);
}

.testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-author-info h4 {
  font-size: 1.125rem;
  margin-bottom: 4px;
}

.testimonial-author-info p {
  font-size: 0.95rem;
  color: var(--gray-500);
  margin: 0;
}

.testimonial-badge {
  position: absolute;
  top: var(--space-lg);
  left: var(--space-lg);
  background: var(--gradient-primary);
  color: var(--white);
  padding: var(--space-xs) var(--space-md);
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
}

/* ==================== CTA SECTION ==================== */
.cta-section {
  background: var(--white);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 50%, rgba(79, 70, 229, 0.1) 0%, transparent 50%);
}

.cta-box {
  position: relative;
  background: var(--gray-900);
  border-radius: var(--radius-3xl);
  padding: var(--space-4xl);
  text-align: center;
  overflow: hidden;
}

.cta-box::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 50% at 20% 50%, rgba(79, 70, 229, 0.4) 0%, transparent 50%),
    radial-gradient(ellipse 40% 40% at 80% 50%, rgba(244, 114, 182, 0.3) 0%, transparent 50%);
}

.cta-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}

.cta-content h2 {
  color: var(--white);
  margin-bottom: var(--space-lg);
}

.cta-content p {
  color: var(--gray-400);
  font-size: 1.25rem;
  margin-bottom: var(--space-2xl);
}

.cta-buttons {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
  flex-wrap: wrap;
}

/* ==================== CONTACT/BOOK SECTION ==================== */
.contact-section {
  background: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--space-3xl);
}

.contact-info {
  background: var(--gradient-primary);
  border-radius: var(--radius-2xl);
  padding: var(--space-3xl);
  color: var(--white);
}

.contact-info h3 {
  color: var(--white);
  font-size: 2rem;
  margin-bottom: var(--space-md);
}

.contact-info > p {
  opacity: 0.9;
  margin-bottom: var(--space-2xl);
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
}

.contact-item-icon {
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-item-icon svg {
  width: 28px;
  height: 28px;
}

.contact-item h4 {
  color: var(--white);
  font-size: 1.125rem;
  margin-bottom: var(--space-xs);
}

.contact-item p {
  opacity: 0.9;
  margin: 0;
  font-size: 1rem;
}

.contact-social {
  display: flex;
  gap: var(--space-md);
  margin-top: var(--space-2xl);
  padding-top: var(--space-2xl);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.social-link {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: all var(--transition-base);
}

.social-link:hover {
  background: var(--white);
  color: var(--primary);
  transform: translateY(-3px);
}

.social-link svg {
  width: 24px;
  height: 24px;
}

/* ==================== FORM STYLES ==================== */
.contact-form {
  background: var(--gray-50);
  border-radius: var(--radius-2xl);
  padding: var(--space-3xl);
}

.contact-form h3 {
  font-size: 1.75rem;
  margin-bottom: var(--space-xl);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
}

.form-group {
  margin-bottom: var(--space-lg);
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: var(--space-sm);
  color: var(--gray-700);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 1rem var(--space-lg);
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-lg);
  background: var(--white);
  transition: all var(--transition-fast);
  font-size: 1rem;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(79, 70, 229, 0.1);
}

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

.form-submit {
  display: flex;
  gap: var(--space-md);
  align-items: center;
}

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

  .form-row {
    grid-template-columns: 1fr;
  }
}

/* ==================== FOOTER ==================== */
.footer {
  background: var(--gray-900);
  color: var(--white);
  padding-top: var(--space-4xl);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: var(--space-3xl);
  padding-bottom: var(--space-3xl);
  border-bottom: 1px solid var(--gray-800);
}

.footer-brand .logo-icon {
  background: var(--gradient-primary);
  margin-bottom: var(--space-lg);
}

.footer-brand .logo-text {
  color: var(--white);
}

.footer-brand p {
  color: var(--gray-400);
  margin-bottom: var(--space-xl);
  line-height: 1.8;
}

.footer-column h4 {
  color: var(--white);
  margin-bottom: var(--space-xl);
  font-size: 1.125rem;
}

.footer-links li {
  margin-bottom: var(--space-md);
}

.footer-links a {
  color: var(--gray-400);
  transition: all var(--transition-fast);
  font-size: 1rem;
}

.footer-links a:hover {
  color: var(--white);
  padding-left: var(--space-sm);
}

.footer-newsletter p {
  color: var(--gray-400);
  margin-bottom: var(--space-lg);
}

.newsletter-form {
  display: flex;
  gap: var(--space-sm);
}

.newsletter-form input {
  flex: 1;
  padding: 1rem var(--space-lg);
  border: 2px solid var(--gray-700);
  border-radius: var(--radius-lg);
  background: var(--gray-800);
  color: var(--white);
  font-size: 1rem;
}

.newsletter-form input::placeholder {
  color: var(--gray-500);
}

.newsletter-form button {
  padding: 1rem var(--space-xl);
  background: var(--gradient-primary);
  color: var(--white);
  border-radius: var(--radius-lg);
  font-weight: 600;
  transition: all var(--transition-base);
}

.newsletter-form button:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-primary);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-2xl) 0;
}

.footer-bottom p {
  color: var(--gray-500);
  margin: 0;
}

.footer-bottom-links {
  display: flex;
  gap: var(--space-xl);
}

.footer-bottom-links a {
  color: var(--gray-500);
  font-size: 0.95rem;
  transition: color var(--transition-fast);
}

.footer-bottom-links a:hover {
  color: var(--white);
}

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

  .footer-bottom {
    flex-direction: column;
    gap: var(--space-lg);
    text-align: center;
  }
}

@media (max-width: 600px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

/* ==================== WHATSAPP BUTTON ==================== */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: var(--z-whatsapp);
}

.whatsapp-btn {
  width: 65px;
  height: 65px;
  background: #25D366;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
  transition: all var(--transition-base);
  animation: whatsappPulse 2s ease-in-out infinite;
}

.whatsapp-btn svg {
  width: 38px;
  height: 38px;
  color: var(--white);
}

.whatsapp-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 15px 40px rgba(37, 211, 102, 0.5);
}

@keyframes whatsappPulse {
  0%, 100% { box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 10px 30px rgba(37, 211, 102, 0.6), 0 0 0 20px rgba(37, 211, 102, 0.1); }
}

/* ==================== CHATBOT ==================== */
.chatbot-container {
  position: fixed;
  bottom: 110px;
  right: 30px;
  z-index: var(--z-modal);
  width: 400px;
  max-height: 550px;
  background: var(--white);
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-2xl);
  display: none;
  flex-direction: column;
  overflow: hidden;
  animation: slideUp 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.chatbot-container.active {
  display: flex;
}

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

.chatbot-header {
  background: var(--gradient-primary);
  color: var(--white);
  padding: var(--space-xl);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.chatbot-header-info {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.chatbot-avatar {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
}

.chatbot-avatar svg {
  width: 30px;
  height: 30px;
}

.chatbot-header-info h4 {
  color: var(--white);
  font-size: 1.125rem;
}

.chatbot-header-info p {
  font-size: 0.8rem;
  opacity: 0.9;
  margin: 0;
}

.chatbot-close {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: all var(--transition-fast);
}

.chatbot-close:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: rotate(90deg);
}

.chatbot-close svg {
  width: 24px;
  height: 24px;
}

.chatbot-messages {
  flex: 1;
  padding: var(--space-xl);
  overflow-y: auto;
  background: var(--gray-50);
}

.chat-message {
  margin-bottom: var(--space-md);
  display: flex;
  gap: var(--space-sm);
  animation: messageIn 0.3s ease;
}

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

.chat-message.bot {
  justify-content: flex-start;
}

.chat-message.user {
  justify-content: flex-end;
}

.chat-message-content {
  max-width: 85%;
  padding: var(--space-md) var(--space-lg);
  border-radius: var(--radius-xl);
  font-size: 0.95rem;
  line-height: 1.6;
}

.chat-message.bot .chat-message-content {
  background: var(--white);
  color: var(--gray-700);
  border-bottom-left-radius: var(--radius-sm);
  box-shadow: var(--shadow-md);
}

.chat-message.user .chat-message-content {
  background: var(--gradient-primary);
  color: var(--white);
  border-bottom-right-radius: var(--radius-sm);
}

.quick-replies {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin-top: var(--space-sm);
}

.quick-reply {
  background: var(--white);
  border: 2px solid var(--primary);
  color: var(--primary);
  padding: var(--space-sm) var(--space-lg);
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.quick-reply:hover {
  background: var(--primary);
  color: var(--white);
}

.chatbot-input {
  padding: var(--space-lg);
  border-top: 1px solid var(--gray-100);
  display: flex;
  gap: var(--space-sm);
  background: var(--white);
}

.chatbot-input input {
  flex: 1;
  padding: 1rem var(--space-lg);
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-full);
  font-size: 0.95rem;
  transition: border-color var(--transition-fast);
}

.chatbot-input input:focus {
  outline: none;
  border-color: var(--primary);
}

.chatbot-input button {
  width: 50px;
  height: 50px;
  background: var(--gradient-primary);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: all var(--transition-base);
}

.chatbot-input button:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow-primary);
}

.chatbot-input button svg {
  width: 22px;
  height: 22px;
}

@media (max-width: 480px) {
  .chatbot-container {
    width: calc(100vw - 30px);
    right: 15px;
    bottom: 100px;
  }

  .whatsapp-float {
    right: 15px;
    bottom: 20px;
  }
}

/* ==================== PAGE SPECIFIC ==================== */
.page-header {
  background: var(--gray-900);
  padding: 8rem var(--container-padding) 5rem;
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 50% at 50% 0%, rgba(79, 70, 229, 0.4) 0%, transparent 50%),
    radial-gradient(ellipse 40% 40% at 80% 80%, rgba(244, 114, 182, 0.3) 0%, transparent 50%);
}

.page-header-content {
  position: relative;
  z-index: 1;
}

.page-header h1 {
  color: var(--white);
  margin-bottom: var(--space-lg);
}

.page-header p {
  opacity: 0.8;
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.25rem;
}

.breadcrumb {
  display: flex;
  justify-content: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-xl);
  font-size: 0.95rem;
  opacity: 0.7;
}

.breadcrumb a:hover {
  opacity: 1;
}

/* ==================== ANIMATIONS ==================== */
.fade-in {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }
.stagger-5 { transition-delay: 0.5s; }
.stagger-6 { transition-delay: 0.6s; }
.stagger-7 { transition-delay: 0.7s; }
.stagger-8 { transition-delay: 0.8s; }

/* ==================== PAGE TRANSITIONS ==================== */
.page {
  display: none;
  animation: fadeIn 0.5s ease;
}

.page.active {
  display: block;
}

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


/* ==================== SCROLL TO TOP ==================== */
.scroll-top {
  position: fixed;
  bottom: 110px;
  left: 30px;
  z-index: var(--z-whatsapp);
  width: 50px;
  height: 50px;
  background: var(--gray-900);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-base);
}

.scroll-top.visible {
  opacity: 1;
  visibility: visible;
}

.scroll-top:hover {
  background: var(--primary);
  transform: translateY(-3px);
}

.scroll-top svg {
  width: 24px;
  height: 24px;
}

/* ==================== TEAM CARDS ==================== */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-xl);
}

.team-card {
  background: var(--white);
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-slow);
}

.team-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-2xl);
}

.team-image {
  height: 300px;
  overflow: hidden;
}

.team-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.team-card:hover .team-image img {
  transform: scale(1.05);
}

.team-content {
  padding: var(--space-xl);
  text-align: center;
}

.team-content h4 {
  font-size: 1.25rem;
  margin-bottom: var(--space-xs);
}

.team-content p {
  color: var(--primary);
  font-weight: 500;
  margin: 0;
}

.team-social {
  display: flex;
  justify-content: center;
  gap: var(--space-sm);
  margin-top: var(--space-md);
}

.team-social a {
  width: 40px;
  height: 40px;
  background: var(--gray-100);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-600);
  transition: all var(--transition-fast);
}

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

/* ==================== FAQ ACCORDION ==================== */
.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
  gap: var(--space-lg);
}

.faq-item {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  box-shadow: var(--shadow-md);
  cursor: pointer;
  transition: all var(--transition-base);
}

.faq-item:hover {
  box-shadow: var(--shadow-lg);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-md);
}

.faq-question h4 {
  font-size: 1.125rem;
}

.faq-icon {
  width: 40px;
  height: 40px;
  background: var(--primary-50);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  transition: all var(--transition-base);
  flex-shrink: 0;
}

.faq-item.active .faq-icon {
  background: var(--primary);
  color: var(--white);
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-slow);
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding-top: var(--space-lg);
}

.faq-answer p {
  color: var(--gray-600);
  margin: 0;
}

/* ==================== STATS SECTION ==================== */
.stats-section {
  background: var(--gradient-primary);
  position: relative;
  overflow: hidden;
}

.stats-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 50% at 20% 50%, rgba(244, 114, 182, 0.3) 0%, transparent 50%),
    radial-gradient(ellipse 40% 40% at 80% 50%, rgba(251, 191, 36, 0.2) 0%, transparent 50%);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-2xl);
  position: relative;
  z-index: 1;
}

.stat-card {
  text-align: center;
  padding: var(--space-2xl);
}

.stat-card-number {
  font-size: 4rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  margin-bottom: var(--space-md);
}

.stat-card-label {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.9);
}

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

  .stat-card-number {
    font-size: 3rem;
  }
}

/* ==================== PROCESS STEPS ==================== */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-xl);
  position: relative;
}

.process-grid::before {
  content: '';
  position: absolute;
  top: 50px;
  left: 12.5%;
  right: 12.5%;
  height: 4px;
  background: var(--gray-200);
  border-radius: var(--radius-full);
}

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

.process-number {
  width: 100px;
  height: 100px;
  background: var(--gradient-primary);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-xl);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--white);
  box-shadow: var(--shadow-primary);
  position: relative;
  z-index: 1;
}

.process-step h4 {
  font-size: 1.25rem;
  margin-bottom: var(--space-sm);
}

.process-step p {
  color: var(--gray-500);
  margin: 0;
}

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

  .process-grid::before {
    display: none;
  }
}

@media (max-width: 600px) {
  .process-grid {
    grid-template-columns: 1fr;
  }
}

/* ==================== PRICING CARDS ==================== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: var(--space-xl);
}

.pricing-card {
  background: var(--white);
  border-radius: var(--radius-2xl);
  padding: var(--space-2xl);
  box-shadow: var(--shadow-md);
  transition: all var(--transition-slow);
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.pricing-card.featured {
  border-color: var(--primary);
  transform: scale(1.05);
}

.pricing-card.featured::before {
  content: 'Most Popular';
  position: absolute;
  top: 20px;
  right: -35px;
  background: var(--gradient-accent);
  color: var(--gray-900);
  padding: var(--space-xs) var(--space-2xl);
  font-size: 0.75rem;
  font-weight: 700;
  transform: rotate(45deg);
}

.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-2xl);
}

.pricing-card.featured:hover {
  transform: scale(1.05) translateY(-10px);
}

.pricing-header {
  text-align: center;
  padding-bottom: var(--space-xl);
  border-bottom: 1px solid var(--gray-100);
  margin-bottom: var(--space-xl);
}

.pricing-header h3 {
  font-size: 1.5rem;
  margin-bottom: var(--space-md);
}

.pricing-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: var(--space-xs);
}

.pricing-price .currency {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--gray-500);
}

.pricing-price .amount {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
}

.pricing-price .period {
  font-size: 1rem;
  color: var(--gray-400);
}

.pricing-features {
  margin-bottom: var(--space-xl);
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
  color: var(--gray-600);
}

.pricing-features li svg {
  width: 22px;
  height: 22px;
  color: var(--success);
  flex-shrink: 0;
}

.pricing-features li.disabled {
  color: var(--gray-400);
}

.pricing-features li.disabled svg {
  color: var(--gray-300);
}

.pricing-card .btn {
  width: 100%;
}

/* ==================== MAP SECTION ==================== */
.map-section {
  background: var(--gray-100);
  padding: 0;
  height: 450px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.map-placeholder {
  text-align: center;
}

.map-placeholder svg {
  width: 80px;
  height: 80px;
  color: var(--gray-400);
  margin-bottom: var(--space-lg);
}

.map-placeholder h4 {
  margin-bottom: var(--space-sm);
}

.map-placeholder p {
  color: var(--gray-500);
  margin-bottom: var(--space-lg);
}

/* ==================== INSTAGRAM/GALLERY FEED ==================== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: var(--space-sm);
}

.gallery-item {
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: var(--radius-lg);
  position: relative;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(79, 70, 229, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition-base);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay svg {
  width: 30px;
  height: 30px;
  color: var(--white);
}

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

/* ==================== CATEGORIES/TABS ==================== */
.categories-tabs {
  display: flex;
  justify-content: center;
  gap: var(--space-md);
  margin-bottom: var(--space-3xl);
  flex-wrap: wrap;
}

.category-tab {
  padding: var(--space-md) var(--space-xl);
  background: var(--white);
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-full);
  font-weight: 600;
  color: var(--gray-600);
  transition: all var(--transition-base);
  cursor: pointer;
}

.category-tab:hover,
.category-tab.active {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
  box-shadow: var(--shadow-primary);
}

/* ==================== COMPREHENSIVE RESPONSIVE STYLES ==================== */

/* Tablet - 768px */
@media (max-width: 768px) {
  :root {
    --container-padding: 1rem;
  }

  h1 { font-size: clamp(2rem, 8vw, 3rem); }
  h2 { font-size: clamp(1.75rem, 6vw, 2.5rem); }
  h3 { font-size: clamp(1.25rem, 4vw, 1.75rem); }

  .section {
    padding: var(--space-4xl) 0;
  }

  .section-title p {
    font-size: 1rem;
  }

  .hero {
    min-height: auto;
    padding: 100px 0 var(--space-3xl);
  }

  .hero-description {
    font-size: 1.1rem;
  }

  .hero-stats {
    flex-direction: column;
    gap: var(--space-lg);
    align-items: center;
  }

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

  .stat-number {
    font-size: 2.5rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .hero-buttons .btn {
    width: 100%;
    max-width: 300px;
  }

  .about-image-stack {
    height: 400px;
  }

  .about-badge-float {
    right: 0;
    padding: var(--space-lg);
  }

  .about-badge-number {
    font-size: 2rem;
  }

  .about-features {
    grid-template-columns: 1fr;
  }

  .services-grid,
  .videos-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .faq-grid {
    grid-template-columns: 1fr;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .pricing-card.featured {
    transform: none;
  }

  .pricing-card.featured:hover {
    transform: translateY(-10px);
  }

  .bento-grid {
    grid-template-columns: 1fr;
  }

  .bento-item.large,
  .bento-item.tall {
    grid-column: span 1;
    grid-row: span 1;
  }

  .page-header {
    padding: 6rem 1rem 3rem;
  }

  .page-header p {
    font-size: 1rem;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-info {
    padding: var(--space-2xl);
  }

  .contact-form {
    padding: var(--space-2xl);
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .cta-box {
    padding: var(--space-3xl) var(--space-xl);
  }

  .cta-content p {
    font-size: 1rem;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .cta-buttons .btn {
    width: 100%;
    max-width: 300px;
  }

  .team-grid {
    grid-template-columns: 1fr;
  }

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

  .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: var(--space-md);
  }

  .newsletter-form {
    flex-direction: column;
  }

  .newsletter-form input,
  .newsletter-form button {
    width: 100%;
  }

  .whatsapp-float {
    bottom: 20px;
    right: 20px;
  }

  .whatsapp-btn {
    width: 55px;
    height: 55px;
  }

  .whatsapp-btn svg {
    width: 30px;
    height: 30px;
  }

  .scroll-top {
    bottom: 90px;
    left: 20px;
    width: 45px;
    height: 45px;
  }

  .chatbot-container {
    width: calc(100vw - 30px);
    right: 15px;
    bottom: 95px;
    max-height: 70vh;
  }

  .service-card {
    padding: var(--space-xl);
  }

  .service-icon {
    width: 60px;
    height: 60px;
  }

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

  .video-card {
    margin-bottom: var(--space-md);
  }

  .video-play-btn {
    width: 60px;
    height: 60px;
  }

  .video-play-btn svg {
    width: 24px;
    height: 24px;
  }

  .testimonial-card {
    padding: var(--space-xl);
  }

  .testimonial-content p {
    font-size: 1rem;
  }

  .testimonial-avatar {
    width: 50px;
    height: 50px;
  }

  .why-us-grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .why-us-card {
    padding: var(--space-xl);
  }

  .why-us-icon {
    width: 80px;
    height: 80px;
  }

  .why-us-icon svg {
    width: 40px;
    height: 40px;
  }

  .process-grid {
    grid-template-columns: 1fr 1fr;
  }

  .process-number {
    width: 70px;
    height: 70px;
    font-size: 1.75rem;
  }

  .faq-item {
    padding: var(--space-lg);
  }

  .faq-question h4 {
    font-size: 1rem;
  }

  .faq-answer p {
    font-size: 0.95rem;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
  }

  .stat-card {
    padding: var(--space-xl);
  }

  .stat-card-number {
    font-size: 2.5rem;
  }

  .stat-card-label {
    font-size: 0.95rem;
  }

  .map-section {
    height: 300px;
  }
}

/* Mobile - 480px */
@media (max-width: 480px) {
  :root {
    --container-padding: 0.875rem;
  }

  h1 { font-size: clamp(1.75rem, 9vw, 2.5rem); }
  h2 { font-size: clamp(1.5rem, 7vw, 2rem); }
  h3 { font-size: clamp(1.125rem, 5vw, 1.5rem); }

  .section {
    padding: var(--space-3xl) 0;
  }

  .btn {
    padding: 0.875rem 1.5rem;
    font-size: 0.95rem;
  }

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

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

  .logo-icon {
    width: 42px;
    height: 42px;
  }

  .hero {
    padding: 90px 0 var(--space-2xl);
  }

  .hero-badge {
    font-size: 0.75rem;
    padding: var(--space-xs) var(--space-md);
  }

  .hero-description {
    font-size: 1rem;
    margin-bottom: var(--space-xl);
  }

  .hero-stats {
    padding-top: var(--space-xl);
  }

  .stat-number {
    font-size: 2rem;
  }

  .stat-label {
    font-size: 0.85rem;
  }

  .about-image-stack {
    height: 300px;
  }

  .about-image-main {
    width: 85%;
    height: 75%;
  }

  .about-image-secondary {
    width: 55%;
    height: 45%;
  }

  .about-badge-float {
    top: 10%;
    padding: var(--space-md);
  }

  .about-badge-number {
    font-size: 1.5rem;
  }

  .about-badge-text {
    font-size: 0.75rem;
  }

  .about-content h2 {
    margin-bottom: var(--space-md);
  }

  .about-content > p {
    font-size: 1rem;
  }

  .about-feature {
    padding: var(--space-md);
  }

  .about-feature-icon {
    width: 42px;
    height: 42px;
  }

  .about-feature h4 {
    font-size: 0.95rem;
  }

  .about-feature p {
    font-size: 0.85rem;
  }

  .services-grid,
  .videos-grid,
  .testimonials-grid,
  .faq-grid {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }

  .service-card {
    padding: var(--space-lg);
  }

  .service-card-header {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-md);
  }

  .service-icon {
    width: 55px;
    height: 55px;
  }

  .service-card h3 {
    font-size: 1.25rem;
  }

  .service-card > p {
    font-size: 0.9rem;
  }

  .service-features li {
    font-size: 0.85rem;
  }

  .service-price {
    font-size: 1.5rem;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .pricing-card {
    padding: var(--space-xl);
  }

  .pricing-price .amount {
    font-size: 3rem;
  }

  .pricing-features li {
    font-size: 0.9rem;
  }

  .bento-grid {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }

  .bento-item {
    padding: var(--space-lg);
  }

  .bento-icon {
    width: 50px;
    height: 50px;
    margin-bottom: var(--space-md);
  }

  .page-header {
    padding: 5rem 0.875rem 2.5rem;
  }

  .page-header h1 {
    margin-bottom: var(--space-md);
  }

  .page-header p {
    font-size: 0.9rem;
  }

  .contact-info {
    padding: var(--space-xl);
  }

  .contact-info h3 {
    font-size: 1.5rem;
  }

  .contact-item {
    margin-bottom: var(--space-lg);
  }

  .contact-item-icon {
    width: 50px;
    height: 50px;
  }

  .contact-item-icon svg {
    width: 24px;
    height: 24px;
  }

  .contact-form {
    padding: var(--space-xl);
  }

  .contact-form h3 {
    font-size: 1.5rem;
  }

  .form-group {
    margin-bottom: var(--space-md);
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 0.875rem var(--space-md);
    font-size: 0.95rem;
  }

  .form-group textarea {
    min-height: 120px;
  }

  .cta-box {
    padding: var(--space-2xl) var(--space-lg);
    border-radius: var(--space-xl);
  }

  .cta-content h2 {
    font-size: 1.5rem;
  }

  .cta-content p {
    font-size: 0.95rem;
    margin-bottom: var(--space-xl);
  }

  .team-grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .team-image {
    height: 250px;
  }

  .team-content {
    padding: var(--space-lg);
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xs);
  }

  .footer {
    padding-top: var(--space-3xl);
  }

  .footer-grid {
    gap: var(--space-xl);
  }

  .footer-column h4 {
    margin-bottom: var(--space-lg);
  }

  .footer-links li {
    margin-bottom: var(--space-sm);
  }

  .footer-links a {
    font-size: 0.9rem;
  }

  .footer-newsletter p {
    font-size: 0.9rem;
  }

  .footer-bottom {
    padding: var(--space-xl) 0;
  }

  .footer-bottom p {
    font-size: 0.85rem;
  }

  .footer-bottom-links {
    gap: var(--space-lg);
  }

  .footer-bottom-links a {
    font-size: 0.85rem;
  }

  .whatsapp-btn {
    width: 50px;
    height: 50px;
  }

  .whatsapp-btn svg {
    width: 26px;
    height: 26px;
  }

  .scroll-top {
    bottom: 80px;
    left: 15px;
    width: 42px;
    height: 42px;
  }

  .chatbot-container {
    width: calc(100vw - 20px);
    right: 10px;
    bottom: 85px;
    max-height: 60vh;
    border-radius: var(--radius-xl);
  }

  .chatbot-header {
    padding: var(--space-md);
  }

  .chatbot-avatar {
    width: 40px;
    height: 40px;
  }

  .chatbot-header-info h4 {
    font-size: 1rem;
  }

  .chatbot-messages {
    padding: var(--space-md);
  }

  .chat-message-content {
    padding: var(--space-sm) var(--space-md);
    font-size: 0.9rem;
  }

  .chatbot-input {
    padding: var(--space-md);
  }

  .quick-reply {
    padding: var(--space-xs) var(--space-md);
    font-size: 0.8rem;
  }

  .video-card {
    margin-bottom: var(--space-md);
  }

  .video-thumbnail {
    aspect-ratio: 16/11;
  }

  .video-content {
    padding: var(--space-md);
  }

  .video-content h3 {
    font-size: 1rem;
    margin-bottom: var(--space-sm);
  }

  .video-meta {
    font-size: 0.8rem;
    gap: var(--space-md);
  }

  .testimonial-card {
    padding: var(--space-lg);
  }

  .testimonial-quote {
    width: 40px;
    height: 40px;
    top: var(--space-md);
    right: var(--space-md);
  }

  .testimonial-content {
    margin-bottom: var(--space-lg);
  }

  .testimonial-content p {
    font-size: 0.95rem;
    line-height: 1.7;
  }

  .testimonial-rating svg {
    width: 18px;
    height: 18px;
  }

  .testimonial-avatar {
    width: 45px;
    height: 45px;
  }

  .testimonial-author-info h4 {
    font-size: 1rem;
  }

  .testimonial-author-info p {
    font-size: 0.85rem;
  }

  .why-us-grid {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }

  .why-us-card {
    padding: var(--space-xl) var(--space-lg);
  }

  .why-us-icon {
    width: 70px;
    height: 70px;
    margin-bottom: var(--space-lg);
  }

  .why-us-icon svg {
    width: 35px;
    height: 35px;
  }

  .why-us-card h3 {
    font-size: 1.25rem;
    margin-bottom: var(--space-sm);
  }

  .why-us-card p {
    font-size: 0.9rem;
  }

  .process-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
  }

  .process-number {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
    margin-bottom: var(--space-md);
  }

  .process-step h4 {
    font-size: 1rem;
  }

  .process-step p {
    font-size: 0.85rem;
  }

  .faq-item {
    padding: var(--space-md);
  }

  .faq-question {
    gap: var(--space-sm);
  }

  .faq-question h4 {
    font-size: 0.95rem;
  }

  .faq-icon {
    width: 35px;
    height: 35px;
    flex-shrink: 0;
  }

  .faq-icon svg {
    width: 18px;
    height: 18px;
  }

  .faq-answer p {
    font-size: 0.9rem;
  }

  .faq-item.active .faq-answer {
    max-height: 300px;
    padding-top: var(--space-md);
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
  }

  .stat-card {
    padding: var(--space-lg);
  }

  .stat-card-number {
    font-size: 2rem;
  }

  .stat-card-label {
    font-size: 0.85rem;
  }

  .map-section {
    height: 250px;
  }

  .categories-tabs {
    gap: var(--space-sm);
    margin-bottom: var(--space-2xl);
  }

  .category-tab {
    padding: var(--space-sm) var(--space-lg);
    font-size: 0.9rem;
  }

  .section-label {
    font-size: 0.75rem;
    padding: var(--space-xs) var(--space-md);
  }
}

/* Small Mobile - 320px */
@media (max-width: 320px) {
  :root {
    --container-padding: 0.75rem;
  }

  h1 { font-size: 1.5rem; }
  h2 { font-size: 1.25rem; }
  h3 { font-size: 1.1rem; }

  .section {
    padding: var(--space-2xl) 0;
  }

  .btn {
    padding: 0.75rem 1.25rem;
    font-size: 0.9rem;
    width: 100%;
  }

  .btn-lg {
    padding: 0.875rem 1.5rem;
  }

  .logo-text {
    font-size: 1.1rem;
  }

  .logo-icon {
    width: 38px;
    height: 38px;
  }

  .hero {
    padding: 80px 0 var(--space-xl);
  }

  .hero-badge {
    font-size: 0.7rem;
  }

  .hero-description {
    font-size: 0.9rem;
  }

  .stat-number {
    font-size: 1.75rem;
  }

  .about-image-stack {
    height: 250px;
  }

  .about-badge-float {
    top: 5%;
    padding: var(--space-sm);
  }

  .about-badge-number {
    font-size: 1.25rem;
  }

  .about-badge-text {
    font-size: 0.65rem;
  }

  .service-card {
    padding: var(--space-md);
  }

  .service-icon {
    width: 50px;
    height: 50px;
  }

  .service-card h3 {
    font-size: 1.1rem;
  }

  .pricing-card {
    padding: var(--space-lg);
  }

  .pricing-price .amount {
    font-size: 2.5rem;
  }

  .page-header {
    padding: 4rem 0.75rem 2rem;
  }

  .contact-info,
  .contact-form {
    padding: var(--space-lg);
  }

  .cta-box {
    padding: var(--space-xl) var(--space-md);
  }

  .cta-content h2 {
    font-size: 1.25rem;
  }

  .team-image {
    height: 200px;
  }

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

  .footer-grid {
    gap: var(--space-lg);
  }

  .whatsapp-btn {
    width: 45px;
    height: 45px;
  }

  .whatsapp-btn svg {
    width: 24px;
    height: 24px;
  }

  .chatbot-container {
    max-height: 55vh;
  }

  .process-grid {
    grid-template-columns: 1fr;
  }

  .why-us-icon {
    width: 60px;
    height: 60px;
  }

  .why-us-icon svg {
    width: 30px;
    height: 30px;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }
}

/* Landscape mode on mobile */
@media (max-width: 768px) and (orientation: landscape) {
  .hero {
    min-height: auto;
    padding: 80px 0 var(--space-2xl);
  }

  .hero-visual {
    display: none;
  }

  .chatbot-container {
    max-height: 70vh;
  }
}

/* High DPI / Retina displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .hero-bg img {
    image-rendering: -webkit-optimize-contrast;
  }
}

/* Reduced motion preference */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .hero-card-float {
    animation: none;
  }

  .marquee {
    animation: none;
  }

  .whatsapp-btn {
    animation: none;
  }
}
