/* ==========================================================================
   CR Dental Wellness - Ultra Modern 2026 Redesign
   Premium Dental Clinic Experience
   ========================================================================== */

/* CSS Variables - Design System */
:root {
  /* Primary Colors - COBS Blue Theme */
  --primary: #1e88e5;
  --primary-dark: #1565c0;
  --primary-light: #42a5f5;
  --primary-gradient: linear-gradient(
    135deg,
    #1e88e5 0%,
    #42a5f5 50%,
    #64b5f6 100%
  );

  /* Secondary Colors - Dark Navy */
  --secondary: #0d2137;
  --secondary-light: #1a3a5c;
  --secondary-dark: #071525;

  /* Accent Colors */
  --accent: #f59e0b;
  --accent-light: #fbbf24;
  --success: #10b981;
  --success-light: #34d399;

  /* Neutral Colors */
  --white: #ffffff;
  --gray-50: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-300: #cbd5e1;
  --gray-400: #94a3b8;
  --gray-500: #64748b;
  --gray-600: #475569;
  --gray-700: #334155;
  --gray-800: #1e293b;
  --gray-900: #0f172a;

  /* Typography */
  --font-primary: "Poppins", sans-serif;
  --font-secondary: "Roboto", sans-serif;

  /* Spacing */
  --section-padding: 100px 0;
  --section-padding-sm: 60px 0;

  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 30px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1);
  --shadow-md: 0 10px 15px -3px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 20px 25px -5px rgb(0 0 0 / 0.1);
  --shadow-xl: 0 25px 50px -12px rgb(0 0 0 / 0.25);
  --shadow-glow: 0 0 40px rgba(30, 136, 229, 0.3);

  /* Transitions */
  --transition-fast: 0.15s ease;
  --transition: 0.3s ease;
  --transition-slow: 0.5s ease;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--font-primary);
  font-size: 16px;
  color: var(--gray-600);
  line-height: 1.7;
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

/* ============================================
   MODERN PRELOADER
   ============================================ */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #071525 0%, #0d2137 50%, #1a3a5c 100%);
  z-index: 99999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition:
    opacity 0.6s ease,
    visibility 0.6s ease;
}

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

.preloader-logo {
  width: 120px;
  height: auto;
  margin-bottom: 30px;
  animation: pulse-logo 2s ease-in-out infinite;
}

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

.preloader-spinner {
  position: relative;
  width: 80px;
  height: 80px;
}

.preloader-spinner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 4px solid rgba(30, 136, 229, 0.2);
  border-radius: 50%;
}

.preloader-spinner::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 4px solid transparent;
  border-top-color: var(--primary);
  border-right-color: var(--primary-light);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

.preloader-tooth {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 28px;
  color: var(--primary-light);
  animation: tooth-bounce 1s ease-in-out infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes tooth-bounce {
  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    transform: translate(-50%, -50%) scale(1.2);
  }
}

.preloader-text {
  margin-top: 25px;
  color: var(--white);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  animation: fade-text 1.5s ease-in-out infinite;
}

@keyframes fade-text {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

/* Preloader Progress Bar */
.preloader-progress {
  position: absolute;
  bottom: 60px;
  width: 200px;
  height: 3px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  overflow: hidden;
}

.preloader-progress-bar {
  height: 100%;
  background: var(--primary-gradient);
  border-radius: 10px;
  animation: progress 2s ease-in-out infinite;
}

@keyframes progress {
  0% {
    width: 0%;
  }
  50% {
    width: 70%;
  }
  100% {
    width: 100%;
  }
}

/* ============================================
   MODERN NAVBAR
   ============================================ */
.modern-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 15px 0;
  transition: var(--transition);
}

.modern-nav::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  opacity: 0;
  transition: var(--transition);
}

.modern-nav.scrolled::before {
  opacity: 1;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow-md);
}

.modern-nav.scrolled {
  background: var(--white);
  box-shadow: var(--shadow-md);
}

.modern-nav .nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 1;
}

.modern-nav .nav-logo img {
  height: 50px;
  width: auto;
  transition: var(--transition);
}

.modern-nav .nav-logo:hover img {
  transform: scale(1.05);
}

.modern-nav .nav-menu {
  display: flex;
  align-items: center;
  gap: 40px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.modern-nav .nav-menu > li > a {
  color: var(--white);
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  position: relative;
  padding: 8px 0;
  transition: var(--transition);
}

.modern-nav.scrolled .nav-menu > li > a {
  color: var(--gray-700);
}

.modern-nav .nav-menu > li > a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: var(--transition);
}

.modern-nav .nav-menu > li > a:hover::after {
  width: 100%;
}

.modern-nav .nav-menu > li > a:hover {
  color: var(--primary);
}

/* Nav Dropdown - .has-dropdown class */
.modern-nav .has-dropdown {
  position: relative;
}

.modern-nav .has-dropdown > .dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  min-width: 220px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 15px 0;
  display: block;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: var(--transition);
  list-style: none;
}

.modern-nav .has-dropdown:hover > .dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.modern-nav .nav-link {
  color: var(--white);
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  position: relative;
  padding: 8px 0;
  transition: var(--transition);
}

.modern-nav.scrolled .nav-link {
  color: var(--gray-700);
}

.modern-nav .nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: var(--transition);
}

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

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

/* Nav Dropdown */
.modern-nav .nav-dropdown {
  position: relative;
}

.modern-nav .nav-dropdown .dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  min-width: 220px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 15px 0;
  display: block;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: var(--transition);
  list-style: none;
}

.modern-nav .nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.modern-nav .dropdown-menu a {
  display: block;
  padding: 10px 25px;
  color: var(--gray-600);
  text-decoration: none;
  font-size: 14px;
  transition: var(--transition);
}

.modern-nav .dropdown-menu a:hover {
  background: var(--gray-50);
  color: var(--primary);
  padding-left: 30px;
}

/* Nav Actions */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--primary-gradient);
  color: var(--white);
  padding: 12px 24px;
  border-radius: var(--radius-full);
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: var(--transition);
  box-shadow: var(--shadow);
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg), var(--shadow-glow);
  color: var(--white);
}

.nav-cta i {
  font-size: 12px;
  transition: var(--transition);
}

.nav-cta:hover i {
  transform: translateX(4px);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  gap: 6px;
}

.mobile-menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

.modern-nav.scrolled .mobile-menu-toggle span {
  background: var(--gray-700);
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 400px;
  height: 100vh;
  background: var(--white);
  z-index: 2000;
  transition: right 0.4s ease;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-xl);
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 25px;
  border-bottom: 1px solid var(--gray-100);
}

.mobile-logo img {
  height: 40px;
  width: auto;
}

.mobile-menu-close {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gray-100);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  font-size: 18px;
  color: var(--gray-600);
  transition: var(--transition);
}

.mobile-menu-close:hover {
  background: var(--primary);
  color: var(--white);
}

.mobile-nav-links {
  list-style: none;
  padding: 20px 25px;
  margin: 0;
  flex: 1;
  overflow-y: auto;
}

.mobile-nav-links li {
  border-bottom: 1px solid var(--gray-100);
}

.mobile-nav-links a {
  display: block;
  padding: 16px 0;
  color: var(--gray-700);
  text-decoration: none;
  font-weight: 500;
  font-size: 16px;
  transition: var(--transition);
}

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

.mobile-menu-footer {
  padding: 20px 25px;
  border-top: 1px solid var(--gray-100);
}

.mobile-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--primary-gradient);
  color: var(--white);
  padding: 16px;
  border-radius: var(--radius-md);
  text-decoration: none;
  font-weight: 600;
}

.mobile-menu-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1999;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.mobile-menu-backdrop.active {
  opacity: 1;
  visibility: visible;
}

/* Responsive Nav */
@media (max-width: 991px) {
  .nav-menu {
    display: none !important;
  }

  .nav-cta {
    display: none;
  }

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

/* ===== Language Switcher ===== */
.lang-switcher {
  margin-left: 10px;
}

.lang-toggle {
  display: flex !important;
  align-items: center;
  gap: 8px;
}

.lang-flag {
  border-radius: 3px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
  flex-shrink: 0;
}

.lang-dropdown {
  min-width: 200px !important;
  padding: 0 !important;
  overflow: hidden;
}

.modern-nav .dropdown-menu.lang-dropdown .lang-dropdown-header,
.modern-nav .lang-dropdown li.lang-dropdown-header {
  display: block !important;
  padding: 12px 20px !important;
  background: var(--navy) !important;
  color: #6b6b6b !important;
  font-size: 12px !important;
  font-weight: 600 !important;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  pointer-events: none;
  margin: 0;
}

.modern-nav .dropdown-menu .lang-option {
  display: flex !important;
  align-items: center;
  gap: 12px;
  padding: 14px 20px !important;
  border-bottom: 1px solid var(--gray-100);
  color: var(--gray-700) !important;
  font-size: 14px;
  font-weight: 500;
}

.modern-nav .dropdown-menu .lang-option:last-child {
  border-bottom: none;
}

.modern-nav .dropdown-menu .lang-option .lang-check {
  margin-left: auto;
  color: var(--success);
  font-size: 12px;
  opacity: 0;
  transition: var(--transition);
}

.modern-nav .dropdown-menu .lang-option.active .lang-check {
  opacity: 1;
}

.modern-nav .dropdown-menu .lang-option.active {
  background: var(--gray-50);
  color: var(--primary) !important;
}

.modern-nav .dropdown-menu .lang-option:hover {
  padding-left: 24px !important;
  background: var(--gray-50);
  color: var(--primary) !important;
}

/* Mobile Language Switcher */
.mobile-lang-switcher {
  padding: 20px;
  margin-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-lang-header {
  display: block;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 15px;
}

.mobile-lang-options {
  display: flex;
  gap: 10px;
}

.mobile-lang-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  color: var(--white);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: var(--transition);
  flex: 1;
  justify-content: center;
}

.mobile-lang-btn:hover,
.mobile-lang-btn.active {
  background: var(--primary);
  color: var(--white);
}

.mobile-lang-btn .lang-flag {
  flex-shrink: 0;
}

/* Nav CTA Button */
.modern-nav .nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary-gradient);
  color: var(--white);
  padding: 12px 28px;
  border-radius: var(--radius-full);
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(30, 136, 229, 0.4);
}

.modern-nav .nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(30, 136, 229, 0.5);
}

/* Nav Contact Info */
.nav-contact {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
  font-size: 14px;
}

.modern-nav.scrolled .nav-contact-item {
  color: var(--gray-600);
}

.nav-contact-item i {
  color: var(--primary-light);
}

/* Mobile Nav Toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 10px;
  z-index: 100;
}

.nav-toggle span {
  width: 25px;
  height: 2px;
  background: var(--white);
  transition: var(--transition);
}

.modern-nav.scrolled .nav-toggle span {
  background: var(--gray-700);
}

/* ============================================
   HERO SECTION
   ============================================ */
.modern-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 80px;
  padding-bottom: 40px;
  background: linear-gradient(135deg, #071525 0%, #0d2137 40%, #1a3a5c 100%);
}

.modern-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("/images/hero-demo.jpg") center/cover no-repeat;
  opacity: 0.1;
}

.modern-hero::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(30, 136, 229, 0.15) 0%,
    rgba(66, 165, 245, 0.08) 100%
  );
}

/* Animated Background Shapes */
.hero-shapes {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

.hero-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.05;
  animation: float 15s infinite ease-in-out;
}

.hero-shape:nth-child(1) {
  width: 600px;
  height: 600px;
  background: var(--primary);
  top: -200px;
  right: -200px;
  animation-delay: 0s;
}

.hero-shape:nth-child(2) {
  width: 400px;
  height: 400px;
  background: var(--accent);
  bottom: -100px;
  left: -100px;
  animation-delay: 2s;
}

.hero-shape:nth-child(3) {
  width: 300px;
  height: 300px;
  background: var(--success);
  top: 50%;
  left: 30%;
  animation-delay: 4s;
}

@keyframes float {
  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
  }
  25% {
    transform: translate(20px, -20px) rotate(5deg);
  }
  50% {
    transform: translate(-10px, 20px) rotate(-5deg);
  }
  75% {
    transform: translate(15px, 15px) rotate(3deg);
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 30px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(30, 136, 229, 0.2);
  backdrop-filter: blur(10px);
  padding: 10px 20px;
  border-radius: var(--radius-full);
  margin-bottom: 18px;
  border: 1px solid rgba(30, 136, 229, 0.3);
}

.hero-badge i {
  color: var(--primary-light);
}

.hero-badge span {
  font-size: 14px;
  font-weight: 500;
  color: var(--primary-light);
}

.hero-title {
  font-size: clamp(34px, 4.2vw, 60px);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 18px;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

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

.hero-description {
  font-size: 16px;
  color: var(--gray-300);
  margin-bottom: 28px;
  max-width: 500px;
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

/* Modern Buttons */
.btn-modern {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: var(--transition);
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--primary-gradient);
  color: var(--white);
  box-shadow: 0 8px 30px rgba(30, 136, 229, 0.4);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(30, 136, 229, 0.5);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
}

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

/* Hero Stats */
.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.hero-stat-number {
  font-size: 34px;
  font-weight: 800;
  color: var(--white);
  display: block;
  line-height: 1;
}

.hero-stat-number span {
  color: var(--primary-light);
}

.hero-stat-label {
  font-size: 14px;
  color: var(--gray-400);
  margin-top: 8px;
}

/* Hero Image Side */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image-container {
  position: relative;
  width: 100%;
  max-width: 500px;
}

.hero-main-image {
  width: 100%;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  position: relative;
  z-index: 2;
}

.hero-floating-card {
  position: absolute;
  background: var(--white);
  padding: 20px 25px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 15px;
  animation: floatCard 5s infinite ease-in-out;
  z-index: 3;
}

.hero-floating-card:nth-child(1) {
  top: 10%;
  left: -40px;
  animation-delay: 0s;
}

.hero-floating-card:nth-child(2) {
  bottom: 15%;
  right: -40px;
  animation-delay: 2s;
}

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

.hero-floating-card .card-icon {
  width: 50px;
  height: 50px;
  background: var(--primary-gradient);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 22px;
}

.hero-floating-card .card-info h4 {
  font-size: 16px;
  color: var(--gray-800);
  font-weight: 600;
  margin-bottom: 2px;
}

.hero-floating-card .card-info p {
  font-size: 13px;
  color: var(--gray-500);
  margin: 0;
}

/* ============================================
   SECTION STYLES
   ============================================ */
.section {
  padding: var(--section-padding);
  position: relative;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(30, 136, 229, 0.1);
  padding: 8px 20px;
  border-radius: var(--radius-full);
  margin-bottom: 20px;
}

.section-badge i {
  color: var(--primary);
}

.section-badge span {
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.section-title {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  color: var(--gray-800);
  line-height: 1.2;
  margin-bottom: 20px;
}

.section-title span {
  color: var(--primary);
}

.section-description {
  font-size: 17px;
  color: var(--gray-500);
  line-height: 1.8;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 30px;
}

/* ============================================
   SERVICES SECTION
   ============================================ */
/* ============================================
   SERVICES SECTION V2 - ULTRA MODERN
   ============================================ */
.services-section-v2 {
  background: linear-gradient(180deg, #f8fafc 0%, #eef2f7 50%, #f8fafc 100%);
  position: relative;
  overflow: hidden;
  padding: 120px 0;
}

.services-bg-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
}

.services-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
  animation: blobFloat 20s ease-in-out infinite;
}

.services-blob-1 {
  width: 600px;
  height: 600px;
  background: linear-gradient(
    135deg,
    rgba(30, 136, 229, 0.15) 0%,
    rgba(66, 165, 245, 0.1) 100%
  );
  top: -200px;
  right: -150px;
  animation-delay: 0s;
}

.services-blob-2 {
  width: 400px;
  height: 400px;
  background: linear-gradient(
    135deg,
    rgba(0, 200, 150, 0.12) 0%,
    rgba(30, 136, 229, 0.08) 100%
  );
  bottom: -100px;
  left: -100px;
  animation-delay: -5s;
}

.services-blob-3 {
  width: 300px;
  height: 300px;
  background: linear-gradient(
    135deg,
    rgba(156, 39, 176, 0.08) 0%,
    rgba(30, 136, 229, 0.1) 100%
  );
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation-delay: -10s;
}

@keyframes blobFloat {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  25% {
    transform: translate(30px, -30px) scale(1.05);
  }
  50% {
    transform: translate(-20px, 20px) scale(0.95);
  }
  75% {
    transform: translate(20px, 10px) scale(1.02);
  }
}

.services-grid-v2 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  position: relative;
  z-index: 1;
}

.service-card-v2 {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 24px;
  padding: 40px 35px;
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow:
    0 4px 24px -1px rgba(0, 0, 0, 0.05),
    0 0 1px 0 rgba(0, 0, 0, 0.08),
    inset 0 1px 0 0 rgba(255, 255, 255, 0.6);
  text-decoration: none;
  display: block;
  cursor: pointer;
}

.service-card-glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle at 50% 0%,
    rgba(30, 136, 229, 0.15),
    transparent 60%
  );
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

.service-card-v2:hover .service-card-glow {
  opacity: 1;
}

.service-card-v2:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow:
    0 32px 64px -12px rgba(30, 136, 229, 0.25),
    0 0 1px 0 rgba(30, 136, 229, 0.2),
    inset 0 1px 0 0 rgba(255, 255, 255, 0.8);
  border-color: rgba(30, 136, 229, 0.3);
  background: rgba(255, 255, 255, 0.95);
}

.service-card-v2.featured {
  background: linear-gradient(
    135deg,
    rgba(30, 136, 229, 0.05) 0%,
    rgba(255, 255, 255, 0.9) 100%
  );
  border-color: rgba(30, 136, 229, 0.2);
}

.featured-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(135deg, #1e88e5 0%, #42a5f5 100%);
  color: white;
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 5px;
  box-shadow: 0 4px 15px rgba(30, 136, 229, 0.4);
}

.featured-badge i {
  font-size: 10px;
}

.service-icon-v2 {
  width: 80px;
  height: 80px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
}

.service-icon-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(30, 136, 229, 0.1) 0%,
    rgba(66, 165, 245, 0.15) 100%
  );
  border-radius: 20px;
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  transform: rotate(0deg);
}

.service-card-v2:hover .service-icon-bg {
  background: linear-gradient(135deg, #1e88e5 0%, #42a5f5 100%);
  transform: rotate(6deg) scale(1.1);
  box-shadow: 0 12px 30px rgba(30, 136, 229, 0.4);
}

.service-icon-v2 i {
  font-size: 36px;
  color: var(--primary);
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  position: relative;
  z-index: 1;
}

.service-card-v2:hover .service-icon-v2 i {
  color: white;
  transform: scale(1.1);
}

.service-content-v2 h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--gray-800);
  margin-bottom: 14px;
  transition: color 0.3s ease;
}

.service-card-v2:hover .service-content-v2 h3 {
  color: var(--primary);
}

.service-content-v2 p {
  color: var(--gray-500);
  margin-bottom: 24px;
  line-height: 1.7;
  font-size: 15px;
}

.service-link-v2 {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--primary);
  font-weight: 600;
  font-size: 15px;
  transition: all 0.3s ease;
}

.service-link-v2 i {
  transition: transform 0.3s ease;
  font-size: 12px;
}

.service-card-v2:hover .service-link-v2 {
  gap: 14px;
}

.service-card-v2:hover .service-link-v2 i {
  transform: translateX(4px);
}

.service-number {
  position: absolute;
  bottom: 20px;
  right: 25px;
  font-size: 64px;
  font-weight: 800;
  color: rgba(30, 136, 229, 0.06);
  line-height: 1;
  transition: all 0.5s ease;
  pointer-events: none;
}

.service-card-v2:hover .service-number {
  color: rgba(30, 136, 229, 0.12);
  transform: scale(1.1);
}

.services-cta-v2 {
  text-align: center;
  margin-top: 60px;
  position: relative;
  z-index: 1;
}

.btn-lg {
  padding: 18px 40px;
  font-size: 17px;
}

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

@media (max-width: 768px) {
  .services-section-v2 {
    padding: 80px 0;
  }

  .services-grid-v2 {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .service-card-v2 {
    padding: 30px 25px;
  }

  .service-icon-v2 {
    width: 70px;
    height: 70px;
  }

  .service-icon-v2 i {
    font-size: 30px;
  }

  .service-number {
    font-size: 48px;
  }

  .services-blob-1 {
    width: 300px;
    height: 300px;
  }

  .services-blob-2 {
    width: 200px;
    height: 200px;
  }
}

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

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-image-wrapper {
  position: relative;
}

.about-main-image {
  width: 100%;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
}

.about-experience-badge {
  position: absolute;
  bottom: -30px;
  right: -30px;
  background: var(--primary-gradient);
  color: var(--white);
  padding: 30px;
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow-lg);
}

.about-experience-badge .years {
  font-size: 48px;
  font-weight: 800;
  display: block;
  line-height: 1;
}

.about-experience-badge .text {
  font-size: 14px;
  margin-top: 5px;
}

.about-content .section-badge {
  margin-bottom: 20px;
}

.about-content .section-title {
  text-align: left;
  margin-bottom: 25px;
}

.about-text {
  color: var(--gray-500);
  line-height: 1.8;
  margin-bottom: 30px;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 35px;
}

.about-feature {
  display: flex;
  align-items: center;
  gap: 12px;
}

.about-feature i {
  width: 24px;
  height: 24px;
  background: rgba(16, 185, 129, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--success);
  font-size: 12px;
}

.about-feature span {
  color: var(--gray-700);
  font-weight: 500;
}

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

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.team-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  text-decoration: none;
}

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

.team-image-wrapper {
  position: relative;
  overflow: hidden;
}

.team-image-wrapper img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  object-position: top center;
  transition: var(--transition);
}

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

.team-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(30, 136, 229, 0.9), transparent);
  opacity: 0;
  transition: var(--transition);
  display: flex;
  align-items: flex-end;
  padding: 30px;
}

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

.team-social {
  display: flex;
  gap: 10px;
}

.team-social a {
  width: 40px;
  height: 40px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  text-decoration: none;
  transition: var(--transition);
}

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

.team-info {
  padding: 25px 30px;
  text-align: center;
}

.team-info h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--gray-800);
  margin-bottom: 5px;
}

.team-info p {
  color: var(--primary);
  font-size: 14px;
  margin: 0;
}

/* ============================================
   WHY CHOOSE US SECTION
   ============================================ */
.why-us-section {
  background: linear-gradient(
    135deg,
    var(--secondary-dark) 0%,
    var(--secondary) 100%
  );
  position: relative;
  overflow: hidden;
}

.why-us-section::before {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  background: var(--primary);
  opacity: 0.05;
  border-radius: 50%;
  top: -300px;
  right: -200px;
}

.why-us-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.why-us-text .section-badge {
  background: rgba(30, 136, 229, 0.2);
}

.why-us-text .section-badge span {
  color: var(--primary-light);
}

.why-us-text .section-title {
  color: var(--white);
  text-align: left;
}

.why-us-text .section-description {
  color: var(--gray-300);
  text-align: left;
  margin-bottom: 40px;
}

.why-us-features {
  display: grid;
  gap: 25px;
}

.why-us-feature {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.why-us-feature-icon {
  width: 60px;
  height: 60px;
  background: rgba(30, 136, 229, 0.15);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.why-us-feature-icon i {
  font-size: 24px;
  color: var(--primary-light);
}

.why-us-feature-text h4 {
  color: var(--white);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
}

.why-us-feature-text p {
  color: var(--gray-400);
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}

.why-us-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.stat-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 35px;
  text-align: center;
  transition: var(--transition);
}

.stat-card:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-5px);
}

.stat-card .stat-number {
  font-size: 48px;
  font-weight: 800;
  color: var(--white);
  display: block;
  line-height: 1;
}

.stat-card .stat-number span {
  color: var(--primary-light);
}

.stat-card .stat-label {
  color: var(--gray-400);
  font-size: 14px;
  margin-top: 10px;
}

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

.testimonials-slider {
  max-width: 900px;
  margin: 0 auto;
}

.testimonial-card {
  background: var(--gray-50);
  border-radius: var(--radius-xl);
  padding: 50px;
  text-align: center;
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 30px;
  left: 50px;
  font-size: 120px;
  color: var(--primary);
  opacity: 0.1;
  font-family: Georgia, serif;
  line-height: 1;
}

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

.testimonial-stars {
  display: flex;
  justify-content: center;
  gap: 5px;
  margin-bottom: 25px;
}

.testimonial-stars i {
  color: var(--accent);
  font-size: 20px;
}

.testimonial-text {
  font-size: 20px;
  color: var(--gray-700);
  line-height: 1.8;
  margin-bottom: 30px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.testimonial-author img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-author-info h5 {
  font-size: 18px;
  font-weight: 600;
  color: var(--gray-800);
  margin-bottom: 3px;
}

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

/* ============================================
   SCHEDULE SECTION
   ============================================ */
.schedule-section {
  background: linear-gradient(135deg, #071525 0%, #0d2137 50%, #1a3a5c 100%);
  position: relative;
  overflow: hidden;
}

.schedule-section::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  background: var(--primary);
  opacity: 0.05;
  border-radius: 50%;
  top: -200px;
  right: -150px;
}

.schedule-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.schedule-info .section-badge {
  background: rgba(30, 136, 229, 0.2);
}

.schedule-info .section-badge span {
  color: var(--primary-light);
}

.schedule-info .section-title {
  color: var(--white);
  text-align: left;
}

.schedule-info .section-description {
  color: var(--gray-300);
  text-align: left;
  margin-bottom: 40px;
}

.schedule-times {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 40px;
}

.schedule-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-md);
  border-left: 4px solid var(--primary);
  transition: var(--transition);
}

.schedule-item:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateX(5px);
}

.schedule-item.closed {
  border-left-color: var(--gray-500);
  opacity: 0.7;
}

.schedule-day {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  font-weight: 500;
}

.schedule-day i {
  color: var(--primary-light);
  font-size: 18px;
}

.schedule-hours {
  color: var(--primary-light);
  font-weight: 600;
  font-size: 18px;
}

.schedule-item.closed .schedule-hours {
  color: var(--gray-400);
}

.schedule-cta {
  width: 100%;
  justify-content: center;
  font-size: 18px;
  padding: 18px 35px;
}

.schedule-visual {
  display: flex;
  justify-content: center;
}

.schedule-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 50px 40px;
  text-align: center;
  max-width: 400px;
  box-shadow: var(--shadow-xl);
}

.schedule-card-header {
  margin-bottom: 20px;
}

.schedule-card-header i {
  font-size: 50px;
  color: var(--primary);
  margin-bottom: 15px;
  display: block;
}

.schedule-card-header h3 {
  font-size: 24px;
  font-weight: 700;
  color: var(--gray-800);
}

.schedule-card p {
  color: var(--gray-500);
  line-height: 1.7;
  margin-bottom: 30px;
}

.emergency-contact .btn-modern {
  width: 100%;
  justify-content: center;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
  background: var(--primary-gradient);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  top: -200px;
  left: -100px;
}

.cta-section::after {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  bottom: -150px;
  right: -50px;
}

.cta-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  position: relative;
  z-index: 1;
  flex-wrap: wrap;
}

.cta-text h2 {
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}

.cta-text p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.btn-white {
  background: var(--white);
  color: var(--primary);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.btn-white:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

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

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

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

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}

.blog-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  text-decoration: none;
}

.blog-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.blog-image-wrapper {
  position: relative;
  overflow: hidden;
}

.blog-image-wrapper img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  transition: var(--transition);
}

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

.blog-category {
  position: absolute;
  top: 20px;
  left: 20px;
  background: var(--primary);
  color: var(--white);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}

.blog-content {
  padding: 30px;
}

.blog-meta {
  display: flex;
  gap: 20px;
  margin-bottom: 15px;
}

.blog-meta span {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--gray-500);
}

.blog-meta i {
  color: var(--primary);
}

.blog-content h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--gray-800);
  margin-bottom: 12px;
  line-height: 1.4;
  transition: var(--transition);
}

.blog-card:hover .blog-content h3 {
  color: var(--primary);
}

.blog-content p {
  color: var(--gray-500);
  line-height: 1.7;
  margin-bottom: 20px;
}

.blog-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary);
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
}

.blog-link:hover {
  gap: 12px;
}

/* ============================================
   MODERN FOOTER
   ============================================ */
.modern-footer {
  background: var(--secondary-dark);
  color: var(--gray-300);
}

.footer-main {
  padding: 80px 0 60px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 60px;
}

.footer-brand .footer-logo {
  margin-bottom: 25px;
}

.footer-brand .footer-logo img {
  height: 50px;
  width: auto;
}

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

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-400);
  text-decoration: none;
  transition: var(--transition);
}

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

.footer-column h4 {
  color: var(--white);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 25px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: var(--gray-400);
  text-decoration: none;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer-links a:hover {
  color: var(--primary-light);
  padding-left: 5px;
}

.footer-contact-item {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
}

.footer-contact-item i {
  width: 44px;
  height: 44px;
  background: rgba(30, 136, 229, 0.1);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-light);
  flex-shrink: 0;
}

.footer-contact-item .info span {
  display: block;
  font-size: 13px;
  color: var(--gray-500);
  margin-bottom: 3px;
}

.footer-contact-item .info a,
.footer-contact-item .info p {
  color: var(--gray-300);
  text-decoration: none;
  margin: 0;
  transition: var(--transition);
}

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

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 25px 0;
}

.footer-bottom-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-bottom-content p {
  color: var(--gray-500);
  margin: 0;
  font-size: 14px;
}

.footer-bottom-links {
  display: flex;
  gap: 30px;
}

.footer-bottom-links a {
  color: var(--gray-500);
  text-decoration: none;
  font-size: 14px;
  transition: var(--transition);
}

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

/* ============================================
   WHATSAPP FLOATING BUTTON
   ============================================ */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 32px;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: var(--transition);
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
}

.whatsapp-float::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: #25d366;
  border-radius: 50%;
  animation: whatsapp-pulse 2s infinite;
  z-index: -1;
}

@keyframes whatsapp-pulse {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }
  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}

/* ============================================
   CALL FLOATING BUTTON
   ============================================ */
.call-float {
  position: fixed;
  bottom: 100px;
  right: 30px;
  width: 55px;
  height: 55px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 24px;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(30, 136, 229, 0.4);
  z-index: 999;
  transition: var(--transition);
}

.call-float:hover {
  transform: scale(1.1);
  background: var(--primary-dark);
  box-shadow: 0 6px 30px rgba(30, 136, 229, 0.5);
}

.call-float i {
  animation: phone-ring 1.5s ease-in-out infinite;
}

@keyframes phone-ring {
  0%,
  100% {
    transform: rotate(0deg);
  }
  10% {
    transform: rotate(15deg);
  }
  20% {
    transform: rotate(-15deg);
  }
  30% {
    transform: rotate(15deg);
  }
  40% {
    transform: rotate(-15deg);
  }
  50% {
    transform: rotate(0deg);
  }
}

/* ============================================
   SCROLL TO TOP
   ============================================ */
.scroll-top {
  position: fixed;
  bottom: 170px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 998;
  box-shadow: var(--shadow-md);
}

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

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

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1200px) {
  .hero-content {
    gap: 60px;
  }

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

@media (max-width: 992px) {
  .modern-nav .nav-menu,
  .modern-nav .nav-cta,
  .nav-contact {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-description {
    margin-left: auto;
    margin-right: auto;
  }

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

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

  .hero-visual {
    display: none;
  }

  .about-grid,
  .why-us-content {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .schedule-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .schedule-info .section-title,
  .schedule-info .section-badge,
  .schedule-info .section-description {
    text-align: center;
  }

  .about-content .section-title,
  .about-content .section-badge,
  .why-us-text .section-title,
  .why-us-text .section-description {
    text-align: center;
  }

  .about-experience-badge {
    bottom: 20px;
    right: 20px;
  }
}

@media (max-width: 720px) {
  .modern-hero::before {
    background: url("/images/hero-S.webp") center/cover no-repeat;
  }
}

@media (max-width: 768px) {
  :root {
    --section-padding: 60px 0;
  }

  .hero-stats {
    flex-direction: column;
    gap: 20px;
  }

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

  .btn-modern {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }

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

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

  .cta-content {
    flex-direction: column;
    text-align: center;
  }

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

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

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

  .footer-contact-item {
    justify-content: center;
  }

  .footer-bottom-content {
    flex-direction: column;
    text-align: center;
  }

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

@media (max-width: 480px) {
  .container {
    padding: 0 20px;
  }

  .service-card {
    padding: 30px 25px;
  }

  .testimonial-card {
    padding: 30px 25px;
  }

  .testimonial-text {
    font-size: 16px;
  }

  .stat-card .stat-number {
    font-size: 36px;
  }

  .whatsapp-float,
  .call-float,
  .scroll-top {
    right: 20px;
  }

  .whatsapp-float {
    bottom: 20px;
    width: 55px;
    height: 55px;
    font-size: 28px;
  }

  .call-float {
    bottom: 85px;
    width: 50px;
    height: 50px;
    font-size: 20px;
  }

  .scroll-top {
    bottom: 145px;
  }
}

/* Mobile Menu Styles */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background: var(--secondary-dark);
  z-index: 10000;
  transition: var(--transition);
  padding: 80px 30px 30px;
  overflow-y: auto;
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu-close {
  position: absolute;
  top: 25px;
  right: 25px;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  cursor: pointer;
  transition: var(--transition);
}

.mobile-menu-close:hover {
  background: var(--primary);
}

.mobile-nav-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-nav-links li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav-links a {
  display: block;
  padding: 15px 0;
  color: var(--gray-300);
  text-decoration: none;
  font-size: 16px;
  transition: var(--transition);
}

.mobile-nav-links a:hover {
  color: var(--primary-light);
  padding-left: 10px;
}

.mobile-menu-cta {
  margin-top: 30px;
}

.mobile-menu-cta .btn-modern {
  width: 100%;
  justify-content: center;
}

.mobile-menu-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.mobile-menu-backdrop.active {
  opacity: 1;
  visibility: visible;
}

/* Animation Classes */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}

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

.fade-in-left {
  opacity: 0;
  transform: translateX(-30px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}

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

.fade-in-right {
  opacity: 0;
  transform: translateX(30px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}

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

/* Stagger Animation Delays */
.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;
}
/* ============================================
   MODERN BLOG STYLES - V2 2026
   ============================================ */

/* Blog Hero Section */
.blog-hero {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: flex-end;
  padding: 0 0 60px 0;
  overflow: hidden;
}

.blog-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

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

.blog-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(13, 33, 55, 0.3) 0%,
    rgba(13, 33, 55, 0.85) 100%
  );
  z-index: 1;
}

.blog-hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
}

.blog-hero .blog-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
}

.blog-hero .blog-meta-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(0, 0, 0, 0.35);
  padding: 8px 16px;
  border-radius: var(--radius-full);
}

.blog-hero .blog-meta-item i {
  color: rgba(255, 255, 255, 0.8);
  font-size: 12px;
}

.blog-hero-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 24px;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

/* Reading Progress Bar */
.reading-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 4px;
  background: var(--primary-gradient);
  z-index: 9999;
  transition: width 0.1s ease;
}

/* Blog Content Section */
.blog-content-section {
  padding: 80px 0 100px;
  background: var(--gray-50);
}

.blog-content-wrapper {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 50px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Blog Article */
.blog-article {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 50px;
  box-shadow: var(--shadow-md);
}

.blog-article-content {
  font-size: 18px;
  line-height: 1.9;
  color: var(--gray-700);
}

.blog-article-content p {
  margin-bottom: 24px;
}

.blog-article-content h2,
.blog-article-content h3,
.blog-article-content h4 {
  color: var(--secondary);
  margin: 40px 0 20px;
  font-weight: 600;
}

.blog-article-content h2 {
  font-size: 28px;
}

.blog-article-content h3 {
  font-size: 24px;
}

.blog-article-content h4 {
  font-size: 20px;
}

.blog-article-content ul,
.blog-article-content ol {
  margin: 24px 0;
  padding-left: 0;
  list-style: none;
}

.blog-article-content ul li,
.blog-article-content ol li {
  position: relative;
  padding: 12px 0 12px 40px;
}

.blog-article-content ul li:last-child,
.blog-article-content ol li:last-child {
  padding-bottom: 0;
}

.blog-article-content ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  background: var(--primary-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog-article-content ul li::after {
  content: "✓";
  position: absolute;
  left: 6px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
}

.blog-article-content strong {
  color: var(--secondary);
  font-weight: 600;
}

.blog-article-content blockquote {
  background: linear-gradient(
    135deg,
    var(--primary) 0%,
    var(--primary-dark) 100%
  );
  color: var(--white);
  padding: 30px 40px;
  border-radius: var(--radius-md);
  margin: 40px 0;
  font-style: italic;
  font-size: 20px;
  line-height: 1.7;
  position: relative;
}

.blog-article-content blockquote::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: 20px;
  font-size: 80px;
  opacity: 0.3;
  font-family: Georgia, serif;
  line-height: 1;
}

/* Blog References */
.blog-references {
  margin-top: 50px;
  padding-top: 30px;
  border-top: 2px solid var(--gray-100);
}

.blog-references h5 {
  color: var(--secondary);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 16px;
}

.blog-references p {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.8;
}

/* Blog Share */
.blog-share {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 40px;
  padding-top: 30px;
  border-top: 2px solid var(--gray-100);
}

.blog-share-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--secondary);
}

.blog-share-links {
  display: flex;
  gap: 10px;
}

.blog-share-link {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 18px;
  transition: var(--transition);
}

.blog-share-link:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.blog-share-link.facebook {
  background: #1877f2;
}

.blog-share-link.twitter {
  background: #1da1f2;
}

.blog-share-link.whatsapp {
  background: #25d366;
}

.blog-share-link.linkedin {
  background: #0077b5;
}

/* Blog Sidebar */
.blog-sidebar {
  position: sticky;
  top: 120px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.sidebar-widget {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: var(--shadow-md);
}

.sidebar-widget-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--secondary);
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 2px solid var(--gray-100);
  position: relative;
}

.sidebar-widget-title::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 50px;
  height: 2px;
  background: var(--primary);
}

/* Table of Contents Widget */
.toc-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.toc-list li {
  margin-bottom: 12px;
}

.toc-list a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--gray-600);
  text-decoration: none;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  font-size: 14px;
}

.toc-list a:hover,
.toc-list a.active {
  background: var(--gray-50);
  color: var(--primary);
}

.toc-list a::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--gray-300);
  border-radius: 50%;
  transition: var(--transition);
}

.toc-list a:hover::before,
.toc-list a.active::before {
  background: var(--primary);
}

/* CTA Widget */
.sidebar-cta {
  background: var(--primary-gradient);
  text-align: center;
}

.sidebar-cta .sidebar-widget-title {
  color: var(--white);
  border-bottom-color: rgba(255, 255, 255, 0.2);
}

.sidebar-cta .sidebar-widget-title::after {
  background: var(--white);
}

.sidebar-cta-text {
  color: rgba(255, 255, 255, 0.9);
  font-size: 15px;
  margin-bottom: 20px;
}

.sidebar-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  color: var(--primary);
  padding: 14px 28px;
  border-radius: var(--radius-full);
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
}

.sidebar-cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  color: var(--primary-dark);
}

/* Related Posts Section */
.related-posts-section {
  padding: 80px 0;
  background: var(--white);
}

.related-posts-header {
  text-align: center;
  margin-bottom: 50px;
}

.related-posts-title {
  font-size: 36px;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 16px;
}

.related-posts-subtitle {
  color: var(--gray-500);
  font-size: 18px;
}

.related-posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.related-post-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

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

.related-post-img {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.related-post-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.related-post-card:hover .related-post-img img {
  transform: scale(1.1);
}

.related-post-content {
  padding: 24px;
}

.related-post-date {
  font-size: 13px;
  color: var(--primary);
  font-weight: 500;
  margin-bottom: 10px;
}

.related-post-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--secondary);
  line-height: 1.4;
  margin-bottom: 16px;
  transition: var(--transition);
}

.related-post-card:hover .related-post-title {
  color: var(--primary);
}

.related-post-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary);
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: var(--transition);
}

.related-post-link:hover {
  gap: 12px;
}

/* Blog Responsive */
@media (max-width: 1024px) {
  .blog-content-wrapper {
    grid-template-columns: 1fr;
  }

  .blog-sidebar {
    position: static;
    flex-direction: row;
    flex-wrap: wrap;
  }

  .sidebar-widget {
    flex: 1;
    min-width: 280px;
  }

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

@media (max-width: 768px) {
  .blog-hero {
    min-height: 50vh;
    padding-bottom: 40px;
  }

  .blog-hero-title {
    font-size: 1.8rem;
  }

  .blog-article {
    padding: 30px 20px;
  }

  .blog-article-content {
    font-size: 16px;
  }

  .blog-hero .blog-meta {
    gap: 8px;
  }

  .blog-hero .blog-meta-item {
    padding: 6px 12px;
    font-size: 12px;
  }

  .blog-share {
    flex-direction: column;
    align-items: flex-start;
  }

  .sidebar-widget {
    min-width: 100%;
  }

  .related-posts-grid {
    grid-template-columns: 1fr;
  }
}
/* ============================================
   SCROLL TO TOP BUTTON
   ============================================ */

.scroll-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--primary-gradient);
  color: var(--white);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: var(--transition);
  z-index: 999;
}

.scroll-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-to-top:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl), var(--shadow-glow);
}

/* Why Costa Rica Page Styles */
.why-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

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

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

.why-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(13, 33, 55, 0.85) 0%,
    rgba(30, 136, 229, 0.6) 100%
  );
  z-index: 1;
}

.why-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  padding: 0 20px;
}

.why-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  padding: 12px 24px;
  border-radius: var(--radius-full);
  margin-bottom: 30px;
  color: var(--white);
  font-weight: 500;
}

.why-hero-badge i {
  color: #ffd700;
}

.why-hero h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 25px;
  line-height: 1.1;
}

.why-hero h1 span {
  background: linear-gradient(135deg, #4fc3f7 0%, #81d4fa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.why-hero p {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 700px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.why-hero-stats {
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
  margin-top: 50px;
}

.why-hero-stat {
  text-align: center;
}

.why-hero-stat-number {
  font-size: 3rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}

.why-hero-stat-label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Benefits Section */
.benefits-section {
  padding: 120px 0;
  background: var(--white);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 60px;
}

.benefit-card {
  background: var(--gray-50);
  border-radius: var(--radius-xl);
  padding: 40px 30px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid transparent;
}

.benefit-card:hover {
  background: var(--white);
  border-color: var(--primary);
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.benefit-icon {
  width: 80px;
  height: 80px;
  background: var(--primary-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  font-size: 32px;
  color: var(--white);
}

.benefit-card h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--gray-800);
  margin-bottom: 15px;
}

.benefit-card p {
  color: var(--gray-600);
  line-height: 1.7;
  font-size: 15px;
}

/* Experience Section */
.experience-section {
  padding: 120px 0;
  background: linear-gradient(135deg, var(--secondary) 0%, #1a3a5c 100%);
  position: relative;
  overflow: hidden;
}

.experience-section::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(30, 136, 229, 0.3) 0%,
    transparent 70%
  );
  border-radius: 50%;
}

.experience-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.experience-content h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 25px;
  line-height: 1.2;
}

.experience-content p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 20px;
}

.experience-list {
  margin-top: 30px;
}

.experience-list-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
}

.experience-list-item i {
  width: 28px;
  height: 28px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 12px;
  flex-shrink: 0;
  margin-top: 3px;
}

.experience-list-item span {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
  line-height: 1.6;
}

.experience-images {
  position: relative;
}

.experience-img-main {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.experience-img-main img {
  width: 100%;
  height: auto;
  display: block;
}

.experience-img-float {
  position: absolute;
  bottom: -30px;
  left: -30px;
  width: 200px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 5px solid var(--white);
}

.experience-img-float img {
  width: 100%;
  height: auto;
  display: block;
}

/* Quality Section */
.quality-section {
  padding: 120px 0;
  background: var(--gray-50);
}

.quality-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.quality-image {
  position: relative;
}

.quality-image img {
  width: 100%;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}

.quality-badge {
  position: absolute;
  top: 30px;
  right: -20px;
  background: var(--primary);
  color: var(--white);
  padding: 20px 30px;
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow-lg);
}

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

.quality-badge-text {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 5px;
}

.quality-content h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--gray-800);
  margin-bottom: 25px;
  line-height: 1.2;
}

.quality-content p {
  color: var(--gray-600);
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 20px;
}

.quality-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 35px;
}

.quality-feature {
  display: flex;
  align-items: center;
  gap: 12px;
}

.quality-feature i {
  color: var(--primary);
  font-size: 20px;
}

.quality-feature span {
  color: var(--gray-700);
  font-weight: 500;
}

/* Destination Section */
.destination-section {
  padding: 120px 0;
  background: var(--white);
}

.destination-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  margin-top: 60px;
}

.destination-card {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer;
}

.destination-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

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

.destination-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.8) 0%, transparent 50%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 25px;
}

.destination-card h4 {
  color: var(--white);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 5px;
}

.destination-card span {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
}

/* Process Section */
.process-section {
  padding: 120px 0;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.process-timeline {
  display: flex;
  justify-content: space-between;
  margin-top: 80px;
  position: relative;
}

.process-timeline::before {
  content: "";
  position: absolute;
  top: 40px;
  left: 10%;
  right: 10%;
  height: 3px;
  background: var(--primary-gradient);
}

.process-step {
  text-align: center;
  flex: 1;
  position: relative;
  z-index: 1;
}

.process-step-number {
  width: 80px;
  height: 80px;
  background: var(--primary-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  margin: 0 auto 25px;
  box-shadow: 0 10px 30px rgba(30, 136, 229, 0.3);
}

.process-step h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--gray-800);
  margin-bottom: 10px;
}

.process-step p {
  color: var(--gray-600);
  font-size: 14px;
  max-width: 200px;
  margin: 0 auto;
  line-height: 1.6;
}

/* CTA Section */
.why-cta-section {
  padding: 100px 0;
  background: var(--primary-gradient);
  text-align: center;
}

.why-cta-content h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
}

.why-cta-content p {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 600px;
  margin: 0 auto 40px;
}

.why-cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.why-cta-buttons .btn-modern {
  padding: 18px 40px;
  font-size: 1rem;
}

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

.btn-white:hover {
  background: var(--gray-100);
  transform: translateY(-3px);
}

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

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

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

  .experience-grid,
  .quality-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

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

  .process-timeline {
    flex-direction: column;
    gap: 40px;
  }

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

@media (max-width: 768px) {
  .why-hero {
    min-height: 90vh;
  }

  .why-hero-stats {
    gap: 30px;
  }

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

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

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

  .experience-img-float {
    display: none;
  }
}

/* Services Page Styles */
.services-hero {
  position: relative;
  padding: 180px 0 120px;
  background: linear-gradient(135deg, var(--secondary) 0%, #1a3a5c 100%);
  overflow: hidden;
}

.services-hero::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 800px;
  height: 800px;
  background: radial-gradient(
    circle,
    rgba(30, 136, 229, 0.2) 0%,
    transparent 70%
  );
  border-radius: 50%;
}

.services-hero::after {
  content: "";
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(79, 195, 247, 0.15) 0%,
    transparent 70%
  );
  border-radius: 50%;
}

.services-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.services-hero .section-badge {
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
  margin-bottom: 25px;
}

.services-hero h1 {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.2;
}

.services-hero h1 span {
  background: linear-gradient(135deg, #4fc3f7 0%, #81d4fa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.services-hero p {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 600px;
  margin: 0 auto 30px;
  line-height: 1.7;
}

.services-hero nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
}

.services-hero nav a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s ease;
}

.services-hero nav a:hover {
  color: var(--white);
}

.services-hero nav span {
  color: var(--white);
}

/* Featured Services */
.featured-services {
  padding: 100px 0;
  background: var(--white);
}

.featured-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 60px;
}

.featured-card {
  position: relative;
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
}

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

.featured-card-image {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.featured-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

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

.featured-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(13, 33, 55, 0.8) 0%, transparent 60%);
}

.featured-card-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: var(--primary);
  color: var(--white);
  padding: 8px 16px;
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.featured-card-content {
  padding: 30px;
}

.featured-card-icon {
  width: 60px;
  height: 60px;
  background: var(--primary-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--white);
  margin-bottom: 20px;
  margin-top: -50px;
  position: relative;
  z-index: 2;
  box-shadow: var(--shadow-md);
}

.featured-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--gray-800);
  margin-bottom: 12px;
}

.featured-card p {
  color: var(--gray-600);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 20px;
}

.featured-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary);
  font-weight: 600;
  font-size: 14px;
  transition: gap 0.3s ease;
}

.featured-card:hover .featured-card-link {
  gap: 12px;
}

/* All Services Section */
.all-services {
  padding: 100px 0;
  background: var(--gray-50);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 60px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 40px 30px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid transparent;
  text-decoration: none;
  display: block;
}

.service-card:hover {
  border-color: var(--primary);
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.service-card-number {
  font-size: 3rem;
  font-weight: 800;
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.3;
  line-height: 1;
  margin-bottom: 15px;
}

.service-card-icon {
  width: 70px;
  height: 70px;
  background: var(--gray-100);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: var(--primary);
  margin: 0 auto 20px;
  transition: all 0.3s ease;
}

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

.service-card h4 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--gray-800);
  margin-bottom: 12px;
}

.service-card p {
  color: var(--gray-600);
  font-size: 14px;
  line-height: 1.7;
}

/* Before After Section */
.before-after-section {
  padding: 100px 0;
  background: var(--white);
}

.before-after-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 60px;
}

.before-after-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 1;
  text-decoration: none;
}

.before-after-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.before-after-card:hover img {
  transform: scale(1.1);
}

.before-after-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(13, 33, 55, 0.9) 0%, transparent 50%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.before-after-card:hover .before-after-card-overlay {
  opacity: 1;
}

.before-after-card h5 {
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 5px;
}

.before-after-card span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
}

/* CTA Section */
.services-cta {
  padding: 100px 0;
  background: var(--primary-gradient);
  text-align: center;
}

.services-cta h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
}

.services-cta p {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 600px;
  margin: 0 auto 40px;
}

.services-cta .btn-modern {
  padding: 18px 40px;
  font-size: 1rem;
}

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

.btn-white:hover {
  background: var(--gray-100);
  transform: translateY(-3px);
}

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

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

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

@media (max-width: 768px) {
  .services-hero {
    padding: 150px 0 100px;
  }

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

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

  .before-after-grid {
    grid-template-columns: repeat(2, 1fr);
  }
} /* Services Page Styles */
.services-hero {
  position: relative;
  padding: 180px 0 120px;
  background: linear-gradient(135deg, var(--secondary) 0%, #1a3a5c 100%);
  overflow: hidden;
}

.services-hero::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 800px;
  height: 800px;
  background: radial-gradient(
    circle,
    rgba(30, 136, 229, 0.2) 0%,
    transparent 70%
  );
  border-radius: 50%;
}

.services-hero::after {
  content: "";
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(79, 195, 247, 0.15) 0%,
    transparent 70%
  );
  border-radius: 50%;
}

.services-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.services-hero .section-badge {
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
  margin-bottom: 25px;
}

.services-hero h1 {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.2;
}

.services-hero h1 span {
  background: linear-gradient(135deg, #4fc3f7 0%, #81d4fa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.services-hero p {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 600px;
  margin: 0 auto 30px;
  line-height: 1.7;
}

.services-hero nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
}

.services-hero nav a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s ease;
}

.services-hero nav a:hover {
  color: var(--white);
}

.services-hero nav span {
  color: var(--white);
}

/* Featured Services */
.featured-services {
  padding: 100px 0;
  background: var(--white);
}

.featured-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 60px;
}

.featured-card {
  position: relative;
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
}

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

.featured-card-image {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.featured-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

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

.featured-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(13, 33, 55, 0.8) 0%, transparent 60%);
}

.featured-card-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: var(--primary);
  color: var(--white);
  padding: 8px 16px;
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.featured-card-content {
  padding: 30px;
}

.featured-card-icon {
  width: 60px;
  height: 60px;
  background: var(--primary-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--white);
  margin-bottom: 20px;
  margin-top: -50px;
  position: relative;
  z-index: 2;
  box-shadow: var(--shadow-md);
}

.featured-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--gray-800);
  margin-bottom: 12px;
}

.featured-card p {
  color: var(--gray-600);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 20px;
}

.featured-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary);
  font-weight: 600;
  font-size: 14px;
  transition: gap 0.3s ease;
}

.featured-card:hover .featured-card-link {
  gap: 12px;
}

/* All Services Section */
.all-services {
  padding: 100px 0;
  background: var(--gray-50);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 60px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 40px 30px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid transparent;
  text-decoration: none;
  display: block;
}

.service-card:hover {
  border-color: var(--primary);
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.service-card-number {
  font-size: 3rem;
  font-weight: 800;
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.3;
  line-height: 1;
  margin-bottom: 15px;
}

.service-card-icon {
  width: 70px;
  height: 70px;
  background: var(--gray-100);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: var(--primary);
  margin: 0 auto 20px;
  transition: all 0.3s ease;
}

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

.service-card h4 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--gray-800);
  margin-bottom: 12px;
}

.service-card p {
  color: var(--gray-600);
  font-size: 14px;
  line-height: 1.7;
}

/* Before After Section */
.before-after-section {
  padding: 100px 0;
  background: var(--white);
}

.before-after-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 60px;
}

.before-after-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 1;
  text-decoration: none;
}

.before-after-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.before-after-card:hover img {
  transform: scale(1.1);
}

.before-after-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(13, 33, 55, 0.9) 0%, transparent 50%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.before-after-card:hover .before-after-card-overlay {
  opacity: 1;
}

.before-after-card h5 {
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 5px;
}

.before-after-card span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
}

/* CTA Section */
.services-cta {
  padding: 100px 0;
  background: var(--primary-gradient);
  text-align: center;
}

.services-cta h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
}

.services-cta p {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 600px;
  margin: 0 auto 40px;
}

.services-cta .btn-modern {
  padding: 18px 40px;
  font-size: 1rem;
}

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

.btn-white:hover {
  background: var(--gray-100);
  transform: translateY(-3px);
}

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

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

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

@media (max-width: 768px) {
  .services-hero {
    padding: 150px 0 100px;
  }

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

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

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