/* ================================================
   Karataş Vidanjör - Modern Design System
   ================================================ */

/* CSS Variables */
:root {
  /* Primary Colors */
  --primary: #0ea5e9;
  --primary-dark: #0284c7;
  --primary-light: #38bdf8;
  --primary-50: #f0f9ff;
  --primary-100: #e0f2fe;
  
  /* Secondary Colors */
  --secondary: #6366f1;
  --accent: #f59e0b;
  
  /* Neutral Colors */
  --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;
  
  /* Semantic Colors */
  --success: #10b981;
  --warning: #f59e0b;
  --error: #ef4444;
  
  /* Typography */
  --font-primary: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-secondary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  
  /* Spacing */
  --spacing-xs: 0.25rem;
  --spacing-sm: 0.5rem;
  --spacing-md: 1rem;
  --spacing-lg: 1.5rem;
  --spacing-xl: 2rem;
  --spacing-2xl: 3rem;
  --spacing-3xl: 4rem;
  
  /* Border Radius */
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-2xl: 1.5rem;
  --radius-full: 9999px;
  
  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  --shadow-primary: 0 10px 40px -10px rgba(14, 165, 233, 0.4);
  
  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
  --transition-slow: 350ms ease;
  
  /* Z-Index */
  --z-dropdown: 100;
  --z-sticky: 200;
  --z-fixed: 300;
  --z-modal: 400;
  --z-tooltip: 500;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-secondary);
  font-size: 16px;
  line-height: 1.6;
  color: var(--gray-700);
  background-color: var(--white);
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

ul, ol {
  list-style: none;
}

/* Container */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

@media (min-width: 768px) {
  .container {
    padding: 0 2rem;
  }
}

/* ================================================
   Preloader
   ================================================ */
.preloader {
  position: fixed;
  inset: 0;
  background: var(--white);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

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

.preloader-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.preloader-icon {
  width: 50px;
  height: 50px;
  border: 3px solid var(--gray-200);
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

.preloader-inner span {
  font-weight: 500;
  color: var(--gray-600);
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ================================================
   Typography
   ================================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-primary);
  font-weight: 700;
  line-height: 1.2;
  color: var(--gray-900);
}

.text-gradient {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-primary {
  color: var(--primary);
}

/* Section Styles */
.section-label {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.section-label.center {
  justify-content: center;
}

.section-label span:not(.label-line) {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.label-line {
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
  border-radius: var(--radius-full);
}

.section-heading {
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 1rem;
}

.section-heading.center {
  text-align: center;
}

.section-description {
  font-size: 1.125rem;
  color: var(--gray-600);
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

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

/* ================================================
   Buttons
   ================================================ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  padding: 0.875rem 1.75rem;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--white);
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 0.9375rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-primary);
  transition: var(--transition-base);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 45px -10px rgba(14, 165, 233, 0.5);
}

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

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  padding: 0.875rem 1.75rem;
  background: var(--gray-900);
  color: var(--white);
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 0.9375rem;
  border-radius: var(--radius-lg);
  transition: var(--transition-base);
}

.btn-secondary:hover {
  background: var(--gray-800);
  transform: translateY(-2px);
}

.btn-outline-light {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  padding: 0.875rem 1.75rem;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 0.9375rem;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(10px);
  transition: var(--transition-base);
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
}

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

/* ================================================
   Header (Redesigned)
   ================================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--z-fixed);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.header.scrolled {
  /* no change needed */
}

.header-wrapper {
  width: 100%;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.6rem 1rem;
  background: rgba(15, 23, 42, 0.9);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

@media (min-width: 768px) {
  .header-container {
    padding: 0.6rem 1.5rem;
    gap: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .header-container {
    padding: 0.6rem 2rem;
    gap: 2rem;
  }
}

@media (min-width: 1400px) {
  .header-container {
    padding: 0.6rem 3rem;
  }
}

.header.scrolled .header-container {
  background: rgba(255, 255, 255, 0.95);
  border-bottom-color: rgba(0, 0, 0, 0.06);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

/* Header Logo */
.header-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.logo-img {
  height: 55px;
  width: auto;
  transition: var(--transition-base);
}

@media (min-width: 768px) {
  .logo-img {
    height: 65px;
  }
}

@media (min-width: 1024px) {
  .logo-img {
    height: 75px;
  }
}

.header-logo:hover .logo-img {
  transform: scale(1.03);
}

/* Header Navigation */
.header-nav {
  display: none;
  align-items: center;
}

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

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.25rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-lg);
}

.header.scrolled .nav-links {
  background: rgba(0, 0, 0, 0.03);
}

.nav-link {
  position: relative;
  padding: 0.4rem 0.65rem;
  font-family: var(--font-primary);
  font-size: 0.8125rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  border-radius: var(--radius-md);
  transition: all 0.3s ease;
  white-space: nowrap;
}

.nav-link:hover {
  color: white;
  background: rgba(255, 255, 255, 0.1);
}

.nav-link.active {
  color: white;
  background: linear-gradient(135deg, #38bdf8 0%, #0ea5e9 100%);
}

.header.scrolled .nav-link {
  color: var(--gray-600);
}

.header.scrolled .nav-link:hover {
  color: var(--gray-900);
  background: rgba(0, 0, 0, 0.05);
}

.header.scrolled .nav-link.active {
  color: white;
  background: linear-gradient(135deg, #38bdf8 0%, #0ea5e9 100%);
}

.nav-link-text {
  position: relative;
  z-index: 1;
}

/* Header Right */
.header-right {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.header-badge {
  display: none;
  align-items: center;
  gap: 0.25rem;
  padding: 0.25rem 0.5rem;
  background: rgba(34, 197, 94, 0.15);
  border: 1px solid rgba(34, 197, 94, 0.2);
  border-radius: var(--radius-full);
}

@media (min-width: 900px) {
  .header-badge {
    display: flex;
  }
}

.badge-dot {
  width: 5px;
  height: 5px;
  background: #22c55e;
  border-radius: 50%;
  animation: pulse-badge 2s infinite;
}

.badge-text {
  font-size: 0.6875rem;
}

@keyframes pulse-badge {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.5); }
  50% { opacity: 0.8; box-shadow: 0 0 0 3px rgba(34, 197, 94, 0); }
}

.badge-text {
  font-size: 0.75rem;
  font-weight: 700;
  color: #22c55e;
}

.header.scrolled .header-badge {
  background: rgba(34, 197, 94, 0.1);
}

/* Header CTA */
.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.3rem 0.5rem;
  background: transparent;
  border: 1px solid rgba(34, 197, 94, 0.3);
  color: #22c55e;
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 0.6875rem;
  border-radius: 4px;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.header-cta:hover {
  background: rgba(34, 197, 94, 0.1);
  border-color: #22c55e;
}

.header.scrolled .header-cta {
  border-color: rgba(34, 197, 94, 0.4);
}

.cta-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #22c55e;
}

.cta-icon svg {
  width: 11px !important;
  height: 11px !important;
}

.cta-text {
  display: block;
}

@media (min-width: 768px) {
  .header-cta {
    padding: 0.3rem 0.6rem;
    font-size: 0.75rem;
  }
  
  .cta-icon svg {
    width: 12px !important;
    height: 12px !important;
  }
}

/* Hamburger */
.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  gap: 4px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  transition: var(--transition-base);
  z-index: calc(var(--z-modal) + 10);
}

@media (min-width: 1024px) {
  .hamburger {
    display: none;
  }
}

.hamburger:hover {
  background: rgba(255, 255, 255, 0.15);
}

.header.scrolled .hamburger {
  background: rgba(0, 0, 0, 0.05);
}

.header.scrolled .hamburger:hover {
  background: rgba(0, 0, 0, 0.1);
}

.hamburger-line {
  display: block;
  width: 18px;
  height: 2px;
  background: white;
  border-radius: var(--radius-full);
  transition: all 0.3s ease;
}

.header.scrolled .hamburger-line {
  background: var(--gray-700);
}

.hamburger.active .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(4px, 4px);
}

.hamburger.active .hamburger-line:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hamburger.active .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(4px, -4px);
}

/* Mobile Navigation */
.mobile-nav {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 380px;
  height: 100vh;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: var(--z-modal);
  overflow-y: auto;
}

.mobile-nav.active {
  transform: translateX(0);
}

.mobile-nav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

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

.mobile-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-lg);
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition-base);
}

.mobile-close:hover {
  background: rgba(255, 255, 255, 0.1);
  color: white;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  padding: 1rem;
  gap: 0.25rem;
}

.mobile-link {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  color: rgba(255, 255, 255, 0.8);
  font-family: var(--font-primary);
  font-size: 1rem;
  font-weight: 500;
  border-radius: var(--radius-xl);
  transition: all 0.3s ease;
}

.mobile-link:hover {
  color: white;
  background: rgba(255, 255, 255, 0.05);
}

.mobile-link svg {
  flex-shrink: 0;
  color: rgba(255, 255, 255, 0.4);
  transition: var(--transition-base);
}

.mobile-link:hover svg {
  color: #38bdf8;
}

.mobile-nav-footer {
  margin-top: auto;
  padding: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-cta {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: linear-gradient(135deg, #38bdf8 0%, #0ea5e9 100%);
  border-radius: var(--radius-xl);
  transition: all 0.3s ease;
}

.mobile-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(14, 165, 233, 0.3);
}

.mobile-cta-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-lg);
  color: white;
  flex-shrink: 0;
}

.mobile-cta-content {
  display: flex;
  flex-direction: column;
}

.mobile-cta-label {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.8);
}

.mobile-cta-number {
  font-family: var(--font-primary);
  font-size: 1.125rem;
  font-weight: 700;
  color: white;
}

.mobile-info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 1.25rem;
}

.mobile-info-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.5);
}

.mobile-info-item svg {
  color: rgba(255, 255, 255, 0.3);
}

/* Mobile Overlay */
.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: calc(var(--z-modal) - 1);
}

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

/* ================================================
   Hero Section
   ================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  overflow: hidden;
}

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

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(15, 23, 42, 0.92) 0%,
    rgba(30, 41, 59, 0.85) 50%,
    rgba(15, 23, 42, 0.90) 100%
  );
}

.hero-overlay::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(14, 165, 233, 0.15) 0%,
    transparent 50%
  );
}

.hero-overlay::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(to top, rgba(14, 165, 233, 0.1), transparent);
}

.hero-particles {
  position: absolute;
  inset: 0;
  background-image: 
    radial-gradient(circle at 20% 80%, rgba(14, 165, 233, 0.2) 0%, transparent 40%),
    radial-gradient(circle at 80% 20%, rgba(6, 182, 212, 0.15) 0%, transparent 40%),
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.03) 0%, transparent 60%);
}

.hero-content {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.25rem;
  display: grid;
  gap: 3rem;
}

@media (min-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr auto;
    align-items: center;
    padding: 0 2rem;
  }
}

.hero-text {
  max-width: 700px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1.25rem;
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.2) 0%, rgba(6, 182, 212, 0.15) 100%);
  border: 1px solid rgba(56, 189, 248, 0.4);
  border-radius: var(--radius-full);
  backdrop-filter: blur(10px);
  color: var(--white);
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 15px rgba(14, 165, 233, 0.2);
}

.badge-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(14, 165, 233, 0.4);
}

.hero-title {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.hero-title .text-gradient {
  background: linear-gradient(135deg, #38bdf8 0%, #22d3ee 50%, #67e8f9 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 2px 4px rgba(56, 189, 248, 0.3));
}

.hero-description {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.8;
  margin-bottom: 2rem;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.hero-features {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.hero-feature {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  color: var(--white);
  font-size: 0.9375rem;
  font-weight: 600;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.feature-check {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.4) 0%, rgba(34, 197, 94, 0.3) 100%);
  border-radius: 50%;
  color: #4ade80;
  border: 1px solid rgba(74, 222, 128, 0.4);
}

/* Hero Stats */
.hero-stats {
  display: none;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 1024px) {
  .hero-stats {
    display: flex;
  }
}

.stat-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.06) 100%);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-xl);
  backdrop-filter: blur(20px);
  min-width: 220px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  transition: var(--transition-base);
}

.stat-card:hover {
  transform: translateY(-4px);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.18) 0%, rgba(255, 255, 255, 0.1) 100%);
  border-color: rgba(56, 189, 248, 0.3);
}

.stat-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  border-radius: var(--radius-lg);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(14, 165, 233, 0.4);
}

.stat-info {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-family: var(--font-primary);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

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

/* Hero Scroll */
.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}

.scroll-indicator {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.scroll-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(8px); }
  60% { transform: translateY(4px); }
}

/* Animations */
.animate-fade-in {
  animation: fadeIn 0.8s ease forwards;
}

.animate-fade-in-up {
  animation: fadeInUp 0.8s ease forwards;
}

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

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

/* ================================================
   About Section (Redesigned)
   ================================================ */
.about {
  position: relative;
  padding: 5rem 0;
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 50%, #f8fafc 100%);
  overflow: hidden;
}

@media (min-width: 768px) {
  .about {
    padding: 7rem 0;
  }
}

.about-bg {
  position: absolute;
  inset: 0;
  background-image: 
    radial-gradient(circle at 0% 50%, rgba(14, 165, 233, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 100% 50%, rgba(6, 182, 212, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.about-layout {
  display: grid;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

@media (min-width: 1024px) {
  .about-layout {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

/* About Gallery */
.about-gallery {
  position: relative;
}

.gallery-main {
  position: relative;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
}

.gallery-main img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.gallery-main:hover img {
  transform: scale(1.05);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(15, 23, 42, 0.6) 100%);
}

.gallery-badge {
  position: absolute;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 2;
}

@media (min-width: 1024px) {
  .gallery-badge {
    bottom: auto;
    top: 50%;
    right: -60px;
    transform: translateY(-50%);
  }
}

.badge-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 110px;
  height: 110px;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  border-radius: 50%;
  color: white;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.3);
  border: 3px solid rgba(56, 189, 248, 0.3);
}

.badge-number {
  font-family: var(--font-primary);
  font-size: 2.25rem;
  font-weight: 800;
  color: #38bdf8;
  line-height: 1;
}

.badge-label {
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 0.25rem;
}

.gallery-secondary {
  display: none;
  position: absolute;
  bottom: -30px;
  left: -30px;
  width: 180px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
  border: 4px solid white;
}

@media (min-width: 1024px) {
  .gallery-secondary {
    display: block;
  }
}

.gallery-secondary img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.gallery-accent {
  display: none;
  position: absolute;
  top: -20px;
  left: 40px;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #38bdf8 0%, #22d3ee 100%);
  border-radius: var(--radius-xl);
  opacity: 0.2;
}

@media (min-width: 1024px) {
  .gallery-accent {
    display: block;
  }
}

/* About Content */
.about-content {
  padding-top: 2rem;
}

@media (min-width: 1024px) {
  .about-content {
    padding-top: 0;
    padding-left: 2rem;
  }
}

.about-header {
  margin-bottom: 1.5rem;
}

.about-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: var(--gray-900);
  line-height: 1.2;
}

.text-gradient {
  background: linear-gradient(135deg, #0ea5e9 0%, #06b6d4 50%, #0ea5e9 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about-desc {
  margin-bottom: 2rem;
}

.about-desc p {
  font-size: 1.0625rem;
  color: var(--gray-600);
  line-height: 1.8;
}

.about-desc strong {
  color: var(--gray-900);
  font-weight: 600;
}

/* About Highlights */
.about-highlights {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 2rem;
}

@media (min-width: 480px) {
  .about-highlights {
    grid-template-columns: 1fr 1fr;
  }
}

.highlight-item {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
  padding: 1rem;
  background: white;
  border-radius: var(--radius-xl);
  border: 1px solid var(--gray-100);
  transition: all 0.3s ease;
}

.highlight-item:hover {
  border-color: var(--primary);
  box-shadow: 0 10px 25px rgba(14, 165, 233, 0.1);
  transform: translateY(-2px);
}

.highlight-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.1) 0%, rgba(6, 182, 212, 0.05) 100%);
  border: 1px solid rgba(14, 165, 233, 0.2);
  border-radius: var(--radius-lg);
  color: #0ea5e9;
  flex-shrink: 0;
}

.highlight-icon.green {
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.1) 0%, rgba(74, 222, 128, 0.05) 100%);
  border-color: rgba(34, 197, 94, 0.2);
  color: #22c55e;
}

.highlight-icon.orange {
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.1) 0%, rgba(251, 146, 60, 0.05) 100%);
  border-color: rgba(249, 115, 22, 0.2);
  color: #f97316;
}

.highlight-text h4 {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 0.125rem;
}

.highlight-text p {
  font-size: 0.8125rem;
  color: var(--gray-500);
}

/* About CTA */
.about-cta {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .about-cta {
    flex-direction: row;
    align-items: center;
  }
}

.about-cta-btn {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.875rem 1.5rem;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  border-radius: var(--radius-xl);
  color: white;
  transition: all 0.3s ease;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.2);
}

.about-cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(15, 23, 42, 0.3);
}

.cta-icon-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, #38bdf8 0%, #22d3ee 100%);
  border-radius: 50%;
  flex-shrink: 0;
}

.cta-text-wrapper {
  display: flex;
  flex-direction: column;
}

.cta-label {
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
}

.cta-number {
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}

/* Trust Section */
.about-trust {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.trust-avatars {
  display: flex;
}

.trust-avatars .avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: var(--gray-100);
  border-radius: 50%;
  border: 2px solid white;
  font-size: 0.875rem;
  margin-left: -8px;
}

.trust-avatars .avatar:first-child {
  margin-left: 0;
}

.trust-text {
  font-size: 0.8125rem;
  color: var(--gray-600);
  font-weight: 500;
}

/* ================================================
   Services Section (Redesigned)
   ================================================ */
.services {
  position: relative;
  padding: 5rem 0;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
  overflow: hidden;
}

@media (min-width: 768px) {
  .services {
    padding: 7rem 0;
  }
}

.services-bg {
  position: absolute;
  inset: 0;
  background-image: 
    radial-gradient(circle at 20% 30%, rgba(14, 165, 233, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(6, 182, 212, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

/* Featured Service Card */
.service-featured {
  display: grid;
  gap: 0;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-2xl);
  overflow: hidden;
  margin-bottom: 2rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  z-index: 1;
}

@media (min-width: 768px) {
  .service-featured {
    grid-template-columns: 1fr 1fr;
    margin-bottom: 2.5rem;
  }
}

.service-featured:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(56, 189, 248, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3), 0 0 40px rgba(56, 189, 248, 0.1);
}

.service-featured-image {
  position: relative;
  height: 250px;
  overflow: hidden;
}

@media (min-width: 768px) {
  .service-featured-image {
    height: 100%;
    min-height: 350px;
  }
}

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

.service-featured:hover .service-featured-image img {
  transform: scale(1.08);
}

.service-featured-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.3) 0%, rgba(15, 23, 42, 0.7) 100%);
}

.service-featured-content {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media (min-width: 768px) {
  .service-featured-content {
    padding: 2.5rem;
  }
}

.service-featured-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: linear-gradient(135deg, rgba(234, 179, 8, 0.2) 0%, rgba(234, 179, 8, 0.1) 100%);
  border: 1px solid rgba(234, 179, 8, 0.3);
  border-radius: var(--radius-full);
  color: #fbbf24;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1.25rem;
  width: fit-content;
}

.service-featured-content h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: white;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.service-featured-content p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.service-featured-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.feature-item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(56, 189, 248, 0.1);
  border: 1px solid rgba(56, 189, 248, 0.2);
  border-radius: var(--radius-lg);
  color: #38bdf8;
  font-size: 0.8125rem;
  font-weight: 500;
}

.feature-item svg {
  color: #4ade80;
}

.service-featured-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #38bdf8;
  font-weight: 600;
  font-size: 0.9375rem;
  transition: all 0.3s ease;
}

.service-featured:hover .service-featured-link {
  gap: 0.75rem;
}

.service-featured-link svg {
  transition: transform 0.3s ease;
}

.service-featured:hover .service-featured-link svg {
  transform: translateX(4px);
}

/* Services Grid - New Design */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  position: relative;
  z-index: 1;
}

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

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

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

/* Service Card - New Design */
.service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(56, 189, 248, 0.3);
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 30px rgba(56, 189, 248, 0.1);
}

.service-card-icon {
  position: absolute;
  top: 1rem;
  left: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, rgba(56, 189, 248, 0.2) 0%, rgba(34, 211, 238, 0.1) 100%);
  border: 1px solid rgba(56, 189, 248, 0.3);
  border-radius: var(--radius-lg);
  color: #38bdf8;
  z-index: 2;
  transition: all 0.3s ease;
}

.service-card:hover .service-card-icon {
  background: linear-gradient(135deg, #38bdf8 0%, #22d3ee 100%);
  color: white;
  transform: scale(1.1) rotate(-5deg);
  box-shadow: 0 8px 25px rgba(56, 189, 248, 0.4);
}

.service-card-image {
  position: relative;
  height: 140px;
  overflow: hidden;
}

.service-card-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.2) 0%, rgba(15, 23, 42, 0.8) 100%);
  transition: all 0.3s ease;
}

.service-card:hover .service-card-image::after {
  background: linear-gradient(180deg, rgba(56, 189, 248, 0.1) 0%, rgba(15, 23, 42, 0.9) 100%);
}

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

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

.service-card-content {
  padding: 1.25rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-card-content h4 {
  font-size: 1rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.5rem;
  transition: color 0.3s ease;
}

.service-card:hover .service-card-content h4 {
  color: #38bdf8;
}

.service-card-content p {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
  flex: 1;
}

.service-card-arrow {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: rgba(56, 189, 248, 0.1);
  border: 1px solid rgba(56, 189, 248, 0.2);
  border-radius: 50%;
  color: #38bdf8;
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.3s ease;
}

.service-card:hover .service-card-arrow {
  opacity: 1;
  transform: translateX(0);
}

/* Services CTA - New Design */
.services-cta {
  margin-top: 3rem;
  position: relative;
  z-index: 1;
}

.services-cta-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-2xl);
  text-align: center;
}

@media (min-width: 768px) {
  .services-cta-content {
    flex-direction: row;
    text-align: left;
    padding: 1.5rem 2rem;
  }
}

.cta-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, rgba(56, 189, 248, 0.2) 0%, rgba(34, 211, 238, 0.1) 100%);
  border: 1px solid rgba(56, 189, 248, 0.2);
  border-radius: var(--radius-xl);
  color: #38bdf8;
  flex-shrink: 0;
}

.cta-text {
  flex: 1;
}

.cta-text span {
  display: block;
  font-size: 1rem;
  font-weight: 600;
  color: white;
  margin-bottom: 0.25rem;
}

.cta-text p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
}

.services-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  background: linear-gradient(135deg, #38bdf8 0%, #22d3ee 100%);
  border-radius: var(--radius-lg);
  color: white;
  font-weight: 600;
  font-size: 0.9375rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(56, 189, 248, 0.3);
  flex-shrink: 0;
}

.services-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(56, 189, 248, 0.4);
}

/* ================================================
   Process Section - How We Work (Redesigned)
   ================================================ */
.process {
  position: relative;
  padding: 5rem 0;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
  overflow: hidden;
}

@media (min-width: 768px) {
  .process {
    padding: 7rem 0;
  }
}

.process-bg {
  position: absolute;
  inset: 0;
  background-image: 
    radial-gradient(circle at 20% 50%, rgba(14, 165, 233, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(6, 182, 212, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

.section-label.light span:not(.label-line) {
  color: rgba(255, 255, 255, 0.7);
}

.section-label.light .label-line {
  background: rgba(56, 189, 248, 0.5);
}

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

.text-gradient-light {
  background: linear-gradient(135deg, #38bdf8 0%, #22d3ee 50%, #67e8f9 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-desc {
  max-width: 600px;
  margin: 1rem auto 0;
  font-size: 1.0625rem;
  line-height: 1.7;
}

.section-desc.light {
  color: rgba(255, 255, 255, 0.7);
}

.process-steps {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 3.5rem;
}

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

@media (min-width: 1024px) {
  .process-steps {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
  }
}

/* Connector Line */
.process-connector {
  display: none;
}

@media (min-width: 1024px) {
  .process-connector {
    display: block;
    position: absolute;
    top: 70px;
    left: 12%;
    right: 12%;
    height: 3px;
    z-index: 0;
  }

  .connector-line {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, #38bdf8, #22d3ee, #38bdf8, #22d3ee);
    border-radius: 10px;
    opacity: 0.3;
  }

  .connector-dot {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 12px;
    background: #38bdf8;
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(56, 189, 248, 0.6);
  }

  .connector-dot.dot-1 { left: 0; }
  .connector-dot.dot-2 { left: 33.33%; }
  .connector-dot.dot-3 { left: 66.66%; }
  .connector-dot.dot-4 { right: 0; }
}

/* Process Card */
.process-card {
  position: relative;
  z-index: 1;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-2xl);
  padding: 2rem 1.5rem 1.5rem;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.process-card:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(56, 189, 248, 0.3);
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 30px rgba(56, 189, 248, 0.1);
}

.process-card-number {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  border: 2px solid #38bdf8;
  border-radius: 50%;
  box-shadow: 0 4px 20px rgba(56, 189, 248, 0.3);
}

.process-card-number span {
  font-family: var(--font-primary);
  font-size: 1rem;
  font-weight: 800;
  color: #38bdf8;
}

.process-card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, rgba(56, 189, 248, 0.15) 0%, rgba(34, 211, 238, 0.1) 100%);
  border: 1px solid rgba(56, 189, 248, 0.2);
  border-radius: 50%;
  color: #38bdf8;
  margin: 0.5rem auto 1.25rem;
  transition: var(--transition-base);
}

.process-card:hover .process-card-icon {
  transform: scale(1.1);
  background: linear-gradient(135deg, rgba(56, 189, 248, 0.25) 0%, rgba(34, 211, 238, 0.15) 100%);
  border-color: rgba(56, 189, 248, 0.4);
  box-shadow: 0 0 30px rgba(56, 189, 248, 0.3);
}

.process-card-content h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.5rem;
}

.process-card-content p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.process-card-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.375rem 0.875rem;
  background: rgba(56, 189, 248, 0.1);
  border: 1px solid rgba(56, 189, 248, 0.2);
  border-radius: var(--radius-full);
  color: #38bdf8;
  font-size: 0.75rem;
  font-weight: 600;
}

.process-card-badge.success {
  background: rgba(34, 197, 94, 0.1);
  border-color: rgba(34, 197, 94, 0.2);
  color: #4ade80;
}

.process-card-badge svg {
  width: 14px;
  height: 14px;
}

/* ================================================
   Testimonials Section (Redesigned)
   ================================================ */
.testimonials {
  position: relative;
  padding: 5rem 0;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
  overflow: hidden;
}

@media (min-width: 768px) {
  .testimonials {
    padding: 7rem 0;
  }
}

.testimonials-bg {
  position: absolute;
  inset: 0;
  background-image: 
    radial-gradient(circle at 10% 30%, rgba(14, 165, 233, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 90% 70%, rgba(6, 182, 212, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

.testimonials-layout {
  display: grid;
  gap: 3rem;
  position: relative;
  z-index: 1;
}

@media (min-width: 1024px) {
  .testimonials-layout {
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: start;
  }
}

/* Testimonials Header Side */
.testimonials-header-side {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

@media (min-width: 1024px) {
  .testimonials-header-side {
    position: sticky;
    top: 120px;
  }
}

.testimonials-title {
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 800;
  color: white;
  line-height: 1.2;
}

.testimonials-desc {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
}

/* Testimonials Stats */
.testimonials-stats {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1rem;
}

.t-stat {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-xl);
}

.t-stat-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, rgba(56, 189, 248, 0.2) 0%, rgba(34, 211, 238, 0.1) 100%);
  border: 1px solid rgba(56, 189, 248, 0.2);
  border-radius: var(--radius-lg);
  color: #38bdf8;
  flex-shrink: 0;
}

.t-stat-icon.green {
  background: linear-gradient(135deg, rgba(250, 204, 21, 0.2) 0%, rgba(234, 179, 8, 0.1) 100%);
  border-color: rgba(250, 204, 21, 0.2);
  color: #facc15;
}

.t-stat-content {
  display: flex;
  flex-direction: column;
}

.t-stat-number {
  font-family: var(--font-primary);
  font-size: 1.5rem;
  font-weight: 800;
  color: white;
  line-height: 1;
}

.t-stat-label {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 0.25rem;
}

/* Testimonials Cards */
.testimonials-cards {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

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

@media (min-width: 1024px) {
  .testimonials-cards {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

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

/* Review Card */
.review-card {
  position: relative;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-xl);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.review-card:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(56, 189, 248, 0.3);
  transform: translateY(-4px);
}

.review-card.featured {
  background: rgba(56, 189, 248, 0.05);
  border-color: rgba(56, 189, 248, 0.2);
}

@media (min-width: 640px) {
  .review-card.featured {
    grid-column: span 2;
  }
}

@media (min-width: 1024px) {
  .review-card.featured {
    grid-column: span 1;
  }
}

@media (min-width: 1200px) {
  .review-card.featured {
    grid-column: span 2;
  }
}

.review-quote {
  position: absolute;
  top: 1rem;
  right: 1rem;
  color: rgba(56, 189, 248, 0.15);
}

.review-rating {
  display: flex;
  gap: 0.25rem;
  color: #facc15;
  margin-bottom: 1rem;
}

.review-text {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 1.25rem;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.review-avatar {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, #38bdf8 0%, #22d3ee 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 0.875rem;
  flex-shrink: 0;
}

.review-info {
  flex: 1;
}

.review-info h4 {
  font-size: 0.9375rem;
  font-weight: 600;
  color: white;
  margin-bottom: 0.125rem;
}

.review-info span {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.5);
}

.review-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.25rem 0.625rem;
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.2);
  border-radius: var(--radius-full);
  color: #4ade80;
  font-size: 0.6875rem;
  font-weight: 600;
}

/* ================================================
   Why Us Section (Redesigned)
   ================================================ */
.why-us {
  position: relative;
  padding: 5rem 0;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
  overflow: hidden;
}

@media (min-width: 768px) {
  .why-us {
    padding: 7rem 0;
  }
}

.why-us-bg {
  position: absolute;
  inset: 0;
  background-image: 
    radial-gradient(circle at 30% 70%, rgba(14, 165, 233, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 70% 30%, rgba(6, 182, 212, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

/* Why Us Grid Layout */
.why-us-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  position: relative;
  z-index: 1;
}

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

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

/* Stats Card - Main Highlight */
.why-stats-card {
  position: relative;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  min-height: 320px;
}

@media (min-width: 640px) {
  .why-stats-card {
    grid-column: span 2;
  }
}

@media (min-width: 1024px) {
  .why-stats-card {
    grid-column: span 1;
    grid-row: span 2;
    min-height: 100%;
  }
}

.why-stats-image {
  position: absolute;
  inset: 0;
}

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

.why-stats-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.3) 0%, rgba(15, 23, 42, 0.9) 100%);
}

.why-stats-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  gap: 0.5rem;
  padding: 1.5rem;
}

.stat-box {
  flex: 1;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-lg);
  text-align: center;
}

.stat-number {
  display: block;
  font-family: var(--font-primary);
  font-size: 1.5rem;
  font-weight: 800;
  color: #38bdf8;
  line-height: 1;
  margin-bottom: 0.25rem;
}

.stat-text {
  font-size: 0.6875rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Feature Cards */
.why-feature-card {
  display: flex;
  flex-direction: column;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-xl);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.why-feature-card:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(56, 189, 248, 0.3);
  transform: translateY(-6px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3), 0 0 20px rgba(56, 189, 248, 0.1);
}

.why-feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, rgba(56, 189, 248, 0.15) 0%, rgba(34, 211, 238, 0.1) 100%);
  border: 1px solid rgba(56, 189, 248, 0.2);
  border-radius: var(--radius-xl);
  color: #38bdf8;
  margin-bottom: 1.25rem;
  transition: all 0.3s ease;
}

.why-feature-icon.green {
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.15) 0%, rgba(74, 222, 128, 0.1) 100%);
  border-color: rgba(34, 197, 94, 0.2);
  color: #4ade80;
}

.why-feature-card:hover .why-feature-icon {
  transform: scale(1.1) rotate(-5deg);
  background: linear-gradient(135deg, #38bdf8 0%, #22d3ee 100%);
  border-color: transparent;
  color: white;
  box-shadow: 0 8px 25px rgba(56, 189, 248, 0.4);
}

.why-feature-card:hover .why-feature-icon.green {
  background: linear-gradient(135deg, #22c55e 0%, #4ade80 100%);
  box-shadow: 0 8px 25px rgba(34, 197, 94, 0.4);
}

.why-feature-card h4 {
  font-size: 1.0625rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.5rem;
}

.why-feature-card p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
  flex: 1;
  margin-bottom: 1rem;
}

.why-feature-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.375rem 0.75rem;
  background: rgba(56, 189, 248, 0.1);
  border: 1px solid rgba(56, 189, 248, 0.2);
  border-radius: var(--radius-full);
  color: #38bdf8;
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  width: fit-content;
}

.why-feature-badge.green {
  background: rgba(34, 197, 94, 0.1);
  border-color: rgba(34, 197, 94, 0.2);
  color: #4ade80;
}

/* ================================================
   FAQ Section (Redesigned)
   ================================================ */
.faq {
  position: relative;
  padding: 5rem 0;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
  overflow: hidden;
}

@media (min-width: 768px) {
  .faq {
    padding: 7rem 0;
  }
}

.faq-bg {
  position: absolute;
  inset: 0;
  background-image: 
    radial-gradient(circle at 80% 20%, rgba(14, 165, 233, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 20% 80%, rgba(6, 182, 212, 0.06) 0%, transparent 50%);
  pointer-events: none;
}

.faq-layout {
  display: grid;
  gap: 3rem;
}

@media (min-width: 1024px) {
  .faq-layout {
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: start;
  }
}

/* FAQ Header Side */
.faq-header-side {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .faq-header-side {
    position: sticky;
    top: 120px;
  }
}

.faq-header-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: white;
  line-height: 1.2;
}

.faq-subtitle {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  max-width: 400px;
}

/* FAQ Contact Card */
.faq-contact-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-2xl);
}

.faq-contact-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, rgba(56, 189, 248, 0.2) 0%, rgba(34, 211, 238, 0.1) 100%);
  border: 1px solid rgba(56, 189, 248, 0.2);
  border-radius: var(--radius-xl);
  color: #38bdf8;
}

.faq-contact-content h4 {
  font-size: 1rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.25rem;
}

.faq-contact-content p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
}

.faq-contact-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.5rem;
  background: linear-gradient(135deg, #38bdf8 0%, #22d3ee 100%);
  border-radius: var(--radius-lg);
  color: white;
  font-weight: 600;
  font-size: 0.9375rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(56, 189, 248, 0.3);
}

.faq-contact-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(56, 189, 248, 0.4);
}

/* FAQ Items Side */
.faq-items-side {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(56, 189, 248, 0.2);
}

.faq-item.active {
  background: rgba(56, 189, 248, 0.05);
  border-color: rgba(56, 189, 248, 0.3);
}

.faq-question {
  display: flex;
  align-items: center;
  gap: 1rem;
  width: 100%;
  padding: 1.25rem 1.5rem;
  text-align: left;
  transition: var(--transition-base);
}

.faq-q-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(56, 189, 248, 0.1);
  border: 1px solid rgba(56, 189, 248, 0.2);
  border-radius: var(--radius-lg);
  color: #38bdf8;
  flex-shrink: 0;
  transition: var(--transition-base);
}

.faq-item.active .faq-q-icon,
.faq-question:hover .faq-q-icon {
  background: linear-gradient(135deg, #38bdf8 0%, #22d3ee 100%);
  border-color: transparent;
  color: white;
}

.faq-question span {
  flex: 1;
  font-family: var(--font-primary);
  font-size: 0.9375rem;
  font-weight: 600;
  color: white;
}

.faq-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  color: rgba(255, 255, 255, 0.5);
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.faq-item.active .faq-toggle {
  color: #38bdf8;
  transform: rotate(180deg);
}

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

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

.faq-answer p {
  padding: 0 1.5rem 1.5rem 4.5rem;
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
}

.faq-answer strong {
  color: #38bdf8;
  font-weight: 600;
}

/* ================================================
   Contact Section (Redesigned)
   ================================================ */
.contact {
  position: relative;
  padding: 5rem 0;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
  overflow: hidden;
}

@media (min-width: 768px) {
  .contact {
    padding: 7rem 0;
  }
}

.contact-bg {
  position: absolute;
  inset: 0;
  background-image: 
    radial-gradient(circle at 10% 20%, rgba(14, 165, 233, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 90% 80%, rgba(6, 182, 212, 0.06) 0%, transparent 50%);
  pointer-events: none;
}

/* Hero CTA - Main Call Button */
.contact-hero-cta {
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
  padding: 0 0.5rem;
}

@media (min-width: 768px) {
  .contact-hero-cta {
    margin-bottom: 3rem;
    padding: 0;
  }
}

.contact-call-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  background: linear-gradient(135deg, rgba(56, 189, 248, 0.15) 0%, rgba(34, 211, 238, 0.1) 100%);
  border: 2px solid rgba(56, 189, 248, 0.3);
  border-radius: var(--radius-xl);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  width: 100%;
  max-width: 320px;
  text-align: center;
}

@media (min-width: 480px) {
  .contact-call-btn {
    flex-direction: row;
    gap: 1rem;
    padding: 1rem 1.5rem;
    width: auto;
    max-width: none;
    text-align: left;
    border-radius: var(--radius-2xl);
  }
}

@media (min-width: 768px) {
  .contact-call-btn {
    gap: 1.25rem;
    padding: 1rem 2rem;
  }
}

.contact-call-btn:hover {
  background: linear-gradient(135deg, rgba(56, 189, 248, 0.25) 0%, rgba(34, 211, 238, 0.15) 100%);
  border-color: rgba(56, 189, 248, 0.5);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 40px rgba(56, 189, 248, 0.2);
}

.call-btn-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #38bdf8 0%, #22d3ee 100%);
  border-radius: 50%;
  color: white;
  box-shadow: 0 8px 25px rgba(56, 189, 248, 0.4);
  animation: pulse 2s ease-in-out infinite;
  flex-shrink: 0;
}

@media (min-width: 480px) {
  .call-btn-icon {
    width: 52px;
    height: 52px;
  }
}

@media (min-width: 768px) {
  .call-btn-icon {
    width: 60px;
    height: 60px;
  }
}

.call-btn-icon svg {
  width: 22px;
  height: 22px;
}

@media (min-width: 768px) {
  .call-btn-icon svg {
    width: 26px;
    height: 26px;
  }
}

.call-btn-content {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
}

@media (min-width: 480px) {
  .call-btn-content {
    gap: 0.25rem;
  }
}

.call-btn-label {
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
}

@media (min-width: 768px) {
  .call-btn-label {
    font-size: 0.875rem;
  }
}

.call-btn-number {
  font-size: 1.125rem;
  font-weight: 800;
  color: white;
  letter-spacing: 0.5px;
}

@media (min-width: 480px) {
  .call-btn-number {
    font-size: 1.25rem;
  }
}

@media (min-width: 768px) {
  .call-btn-number {
    font-size: 1.5rem;
  }
}

.call-btn-badge {
  padding: 0.375rem 0.75rem;
  background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
  border-radius: var(--radius-full);
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
  box-shadow: 0 4px 15px rgba(34, 197, 94, 0.4);
}

@media (min-width: 480px) {
  .call-btn-badge {
    padding: 0.4rem 0.875rem;
    font-size: 0.8125rem;
  }
}

@media (min-width: 768px) {
  .call-btn-badge {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
  }
}

/* Contact Grid */
.contact-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1fr 1.5fr;
    gap: 2.5rem;
  }
}

/* Contact Info Cards */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-info-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-xl);
  transition: all 0.3s ease;
}

.contact-info-card:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(56, 189, 248, 0.3);
}

.info-card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, rgba(56, 189, 248, 0.2) 0%, rgba(34, 211, 238, 0.1) 100%);
  border: 1px solid rgba(56, 189, 248, 0.2);
  border-radius: var(--radius-lg);
  color: #38bdf8;
  flex-shrink: 0;
}

.info-card-content {
  flex: 1;
}

.info-card-content h4 {
  font-size: 0.75rem;
  font-weight: 600;
  color: #38bdf8;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}

.info-card-content a {
  display: block;
  font-size: 0.9375rem;
  font-weight: 500;
  color: white;
  transition: color 0.3s ease;
}

.info-card-content a:hover {
  color: #38bdf8;
}

.info-card-content p {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

/* Hours Info */
.hours-info {
  display: flex;
  gap: 1.5rem;
}

.hours-item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.hours-item span {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.6);
}

.hours-item strong {
  font-size: 0.9375rem;
  font-weight: 700;
  color: #4ade80;
}

/* Map Container */
.contact-map-container {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-2xl);
  overflow: hidden;
}

.map-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.map-header-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, rgba(56, 189, 248, 0.2) 0%, rgba(34, 211, 238, 0.1) 100%);
  border-radius: 50%;
  color: #38bdf8;
}

.map-header span {
  font-size: 0.9375rem;
  font-weight: 600;
  color: white;
}

.map-wrapper {
  height: 280px;
}

@media (min-width: 768px) {
  .map-wrapper {
    height: 320px;
  }
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;
  filter: grayscale(20%) contrast(1.1);
}

.map-directions-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 1rem;
  background: linear-gradient(135deg, #38bdf8 0%, #22d3ee 100%);
  color: white;
  font-weight: 600;
  font-size: 0.9375rem;
  transition: all 0.3s ease;
}

.map-directions-btn:hover {
  background: linear-gradient(135deg, #0ea5e9 0%, #06b6d4 100%);
}

/* ================================================
   CTA Section
   ================================================ */
.cta-section {
  padding: 3rem 0;
  background: linear-gradient(135deg, var(--gray-900) 0%, var(--gray-800) 100%);
}

@media (min-width: 768px) {
  .cta-section {
    padding: 4rem 0;
  }
}

.cta-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  text-align: center;
}

@media (min-width: 768px) {
  .cta-wrapper {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

.cta-content h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.5rem;
}

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

.cta-content p {
  color: var(--gray-400);
  font-size: 1rem;
}

.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--white);
  font-family: var(--font-primary);
  font-size: 1.125rem;
  font-weight: 700;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-primary);
  transition: var(--transition-base);
}

.btn-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 50px -10px rgba(14, 165, 233, 0.5);
}

/* ================================================
   Footer
   ================================================ */
.footer {
  background: var(--gray-900);
  color: var(--white);
  padding: 2.5rem 0 1.5rem;
}

@media (min-width: 768px) {
  .footer {
    padding: 3.5rem 0 2rem;
  }
}

.footer-main {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .footer-main {
    flex-direction: row;
    gap: 3rem;
    margin-bottom: 2.5rem;
  }
}

@media (min-width: 1024px) {
  .footer-main {
    gap: 4rem;
  }
}

.footer-brand {
  text-align: center;
}

@media (min-width: 768px) {
  .footer-brand {
    text-align: left;
    flex: 0 0 280px;
  }
}

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

.footer-logo-img {
  height: 60px;
  width: auto;
  transition: var(--transition-base);
}

@media (min-width: 768px) {
  .footer-logo-img {
    height: 70px;
  }
}

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

.footer-logo-text {
  display: flex;
  flex-direction: column;
}

.footer-logo-title {
  font-family: var(--font-primary);
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.1;
}

@media (min-width: 768px) {
  .footer-logo-title {
    font-size: 1.25rem;
  }
}

.footer-logo-subtitle {
  font-size: 0.6875rem;
  font-weight: 500;
  color: var(--primary-light);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.footer-description {
  font-size: 0.875rem;
  color: var(--gray-400);
  line-height: 1.7;
  margin-bottom: 1.25rem;
  max-width: 300px;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 768px) {
  .footer-description {
    font-size: 0.9375rem;
    margin-left: 0;
    margin-right: 0;
  }
}

.footer-social {
  display: flex;
  justify-content: center;
  gap: 0.625rem;
}

@media (min-width: 768px) {
  .footer-social {
    justify-content: flex-start;
  }
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: var(--gray-800);
  border-radius: var(--radius-md);
  color: var(--gray-400);
  transition: var(--transition-base);
}

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

@media (min-width: 768px) {
  .social-link {
    width: 42px;
    height: 42px;
    border-radius: var(--radius-lg);
  }
  
  .social-link svg {
    width: 20px;
    height: 20px;
  }
}

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

.footer-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  flex: 1;
}

@media (min-width: 640px) {
  .footer-links {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .footer-links {
    gap: 2rem;
  }
}

.footer-col h4 {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

@media (min-width: 768px) {
  .footer-col h4 {
    font-size: 0.9375rem;
    margin-bottom: 1rem;
  }
}

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

@media (min-width: 768px) {
  .footer-col ul {
    gap: 0.625rem;
  }
}

.footer-col ul li a {
  font-size: 0.8125rem;
  color: var(--gray-400);
  transition: var(--transition-base);
  display: inline-block;
}

@media (min-width: 768px) {
  .footer-col ul li a {
    font-size: 0.875rem;
  }
}

.footer-col ul li a:hover {
  color: var(--primary-light);
  padding-left: 0.25rem;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  color: var(--gray-400);
  font-size: 0.75rem;
  word-break: break-word;
}

@media (min-width: 768px) {
  .footer-contact li {
    font-size: 0.8125rem;
    gap: 0.625rem;
  }
}

.footer-contact svg {
  flex-shrink: 0;
  margin-top: 0.125rem;
  color: var(--primary-light);
  width: 14px;
  height: 14px;
}

@media (min-width: 768px) {
  .footer-contact svg {
    width: 16px;
    height: 16px;
  }
}

.footer-contact a,
.footer-contact span {
  font-size: inherit;
}

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

.footer-bottom {
  padding-top: 1.5rem;
  border-top: 1px solid var(--gray-800);
  text-align: center;
}

@media (min-width: 768px) {
  .footer-bottom {
    padding-top: 2rem;
  }
}

.footer-bottom p {
  font-size: 0.75rem;
  color: var(--gray-500);
}

@media (min-width: 768px) {
  .footer-bottom p {
    font-size: 0.8125rem;
  }
}

/* ================================================
   Floating Buttons
   ================================================ */
.floating-btn {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: var(--z-fixed);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--white);
  border-radius: 50%;
  box-shadow: var(--shadow-primary);
  transition: var(--transition-base);
}

.floating-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 15px 45px -10px rgba(14, 165, 233, 0.6);
}

.floating-btn-pulse {
  position: absolute;
  inset: -4px;
  border: 2px solid var(--primary);
  border-radius: 50%;
  animation: pulse-ring 1.5s infinite;
}

@keyframes pulse-ring {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(1.3);
    opacity: 0;
  }
}

.back-to-top {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  z-index: var(--z-fixed);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: var(--white);
  color: var(--gray-700);
  border-radius: 50%;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-base);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: var(--gray-900);
  color: var(--white);
  transform: translateY(-3px);
}

/* ================================================
   Responsive Adjustments
   ================================================ */
@media (max-width: 767px) {
  .hero-cta {
    flex-direction: column;
  }
  
  .hero-cta .btn-primary,
  .hero-cta .btn-outline-light {
    width: 100%;
  }
  
  .hero-features {
    flex-direction: column;
    gap: 1rem;
  }
}

/* Smooth scrolling for reduced motion preference */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
