/* ==========================================================================
   DESIGN SYSTEM & CUSTOM PROPERTIES
   ========================================================================== */
:root {
  /* Color Palette - Premium Light Rose Theme */
  --bg-primary: #ffffff;
  --bg-secondary: #fdfafb;
  --bg-tertiary: #f3f4f6;
  
  --text-primary: #1e293b;
  --text-secondary: #475569;
  --text-muted: #64748b;
  
  /* Colores descriptivos reales */
  --color-coral-pink: #de689a;
  --color-rose-gold: #e4a09e;
  --color-burgundy: #b05662;
  --color-deep-rose: #a44858;
  
  /* Aliases de compatibilidad para evitar romper estilos actuales */
  --color-cyan: var(--color-coral-pink);
  --color-blue: var(--color-rose-gold);
  --color-violet: var(--color-burgundy);
  --color-magenta: var(--color-deep-rose);
  
  --gradient-primary: linear-gradient(135deg, var(--color-cyan) 0%, var(--color-violet) 100%);
  --gradient-accent: linear-gradient(135deg, var(--color-violet) 0%, var(--color-magenta) 100%);
  --gradient-dark: linear-gradient(135deg, #ffffff 0%, #fdfafb 100%);
  --gradient-glass: linear-gradient(135deg, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0.5) 100%);
  
  /* Glassmorphism Defaults */
  --glass-bg: rgba(255, 255, 255, 0.75);
  --glass-border: rgba(255, 117, 143, 0.15); /* Soft pinkish border */
  --glass-shadow: 0 8px 32px 0 rgba(255, 117, 143, 0.08);
  --glass-blur: blur(12px);

  /* Fonts */
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Quicksand', sans-serif;
  --font-accent: 'Satisfy', cursive;
  
  /* Layout */
  --max-width: 1200px;
  --header-height: 80px;
  --border-radius-sm: 8px;
  --border-radius-md: 16px;
  --border-radius-lg: 24px;
  
  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-body);
  overflow-x: hidden;
}

body {
  min-height: 100vh;
  line-height: 1.6;
  position: relative;
  overflow-x: hidden;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
  background: var(--bg-tertiary);
  border-radius: 5px;
  border: 2px solid var(--bg-primary);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--color-blue);
}

/* Typography Utility */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

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

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

button, input, select, textarea {
  font: inherit;
}

/* ==========================================================================
   BACKGROUND VISUAL BLOBS
   ========================================================================== */
.bg-blob {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.15;
  z-index: -1;
  pointer-events: none;
  animation: floatBlobs 20s infinite alternate ease-in-out;
}

.blob-1 {
  background: var(--color-cyan);
  top: 10%;
  left: -100px;
}

.blob-2 {
  background: var(--color-violet);
  top: 45%;
  right: -100px;
  animation-delay: -5s;
}

.blob-3 {
  background: var(--color-blue);
  bottom: 10%;
  left: 20%;
  animation-delay: -10s;
}

@keyframes floatBlobs {
  0% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(80px, 50px) scale(1.15);
  }
  100% {
    transform: translate(-40px, -80px) scale(0.9);
  }
}

/* ==========================================================================
   BUTTON & COMPONENT STYLES
   ========================================================================== */
.btn-primary {
  background: var(--gradient-primary);
  color: #0b0f19;
  font-weight: 700;
  border: none;
  padding: 12px 28px;
  border-radius: var(--border-radius-md);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 0 20px rgba(0, 242, 254, 0.2);
  transition: all var(--transition-fast);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(0, 242, 254, 0.4);
  color: #000;
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-primary);
  font-weight: 600;
  border: 1px solid var(--glass-border);
  padding: 12px 28px;
  border-radius: var(--border-radius-md);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all var(--transition-fast);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--color-cyan);
  transform: translateY(-2px);
}

.btn-large {
  padding: 16px 36px;
  font-size: 1.05rem;
  border-radius: var(--border-radius-md);
}

.btn-sm {
  padding: 8px 16px;
  font-size: 0.9rem;
  border-radius: var(--border-radius-sm);
}



.badge-premium {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: none;
  border: none;
  color: var(--color-cyan);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0;
  border-radius: 0;
  margin-bottom: 16px;
}

.badge-premium.accent {
  background: none;
  border: none;
  color: var(--color-violet);
}
.text-gradient {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

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

.font-script {
  font-family: var(--font-accent);
  font-size: 1.45em;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  display: inline-block;
  padding-left: 0.4em;
  padding-right: 0.25em;
  margin-left: -0.4em;
  margin-right: -0.25em;
}



.font-script.text-gradient {
  background: none;
  -webkit-background-clip: unset;
  -webkit-text-fill-color: var(--color-cyan);
}

/* ==========================================================================
   HEADER / NAVIGATION
   ========================================================================== */
.main-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 100;
  transition: all var(--transition-normal);
}

.main-header.scrolled {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border-bottom: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
  height: 70px;
}

.header-container {
  max-width: var(--max-width);
  height: 100%;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-size: 1.5rem;
  font-weight: 800;
  font-family: var(--font-heading);
  letter-spacing: -0.03em;
  display: flex;
  align-items: center;
}


.logo-img {
  height: 64px;
  width: auto;
  display: block;
  transition: all var(--transition-normal);
}

.main-header.scrolled .logo-img {
  height: 52px;
}

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

.footer-logo .logo-img {
  height: 120px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-secondary);
  position: relative;
  padding: 8px 0;
}

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

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

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

.btn-nav {
  font-size: 0.9rem;
  padding: 10px 20px;
}

.hamburger-menu {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 6px;
  width: 30px;
  height: 24px;
}

.hamburger-menu span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--text-primary);
  border-radius: 4px;
  transition: all var(--transition-fast);
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
  padding: calc(var(--header-height) + 60px) 0 80px 0;
  position: relative;
}

.hero-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 48px;
}

.hero-content {
  max-width: 600px;
}

.hero-title {
  font-size: 4rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 24px;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--text-secondary);
  margin-bottom: 40px;
  font-weight: 400;
}

.google-trust-badge {
  margin-bottom: 28px;
}

.google-trust-badge a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 10px 20px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.google-trust-badge a:hover {
  background: rgba(255, 255, 255, 0.22);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.google-trust-badge .stars {
  display: flex;
  gap: 2px;
}

.google-trust-badge .stars i {
  color: #FBBC04;
  font-size: 0.85rem;
}

.google-trust-badge .rating-text {
  font-size: 0.88rem;
  color: var(--text-secondary);
  font-weight: 500;
}

.google-trust-badge .rating-text strong {
  color: var(--text-primary);
  font-weight: 700;
}

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

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.visual-card {
  position: relative;
  width: 100%;
  max-width: 440px;
  aspect-ratio: 4/5;
  border-radius: var(--border-radius-lg);
  overflow: visible;
}

.visual-image-wrapper {
  width: 100%;
  height: 100%;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  border: 1px solid var(--glass-border);
  position: relative;
}

.visual-image-wrapper::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11,15,25,0.7) 0%, transparent 50%);
}

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

.visual-card:hover .hero-img {
  transform: scale(1.05);
}

/* Sparkles effect */
.sparkles-container {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 5;
}

.sparkle-icon {
  position: absolute;
  color: var(--color-cyan);
  text-shadow: 0 0 10px var(--color-cyan);
  font-size: 1.8rem;
  animation: sparkle-glow 3s infinite alternate ease-in-out;
}

.spec-1 {
  top: -15px;
  right: 20px;
  animation-delay: 0.5s;
}

.spec-2 {
  bottom: 30%;
  left: -20px;
  font-size: 1.4rem;
  animation-delay: 1.5s;
}

@keyframes sparkle-glow {
  0% {
    transform: scale(0.8) rotate(0deg);
    opacity: 0.5;
  }
  100% {
    transform: scale(1.2) rotate(15deg);
    opacity: 1;
  }
}

/* Glass info badges in hero */
.glass-info-badge {
  position: absolute;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: rgba(19, 27, 46, 0.75);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--border-radius-md);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  max-width: 280px;
  animation: badge-float 6s infinite alternate ease-in-out;
}

.badge-top {
  top: 15%;
  right: -40px;
  animation-delay: 0.5s;
}

.badge-bottom {
  bottom: 12%;
  left: -40px;
  animation-delay: 1.5s;
}

.badge-icon {
  color: var(--color-cyan);
  display: inline-flex;
  align-items: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.badge-text h4 {
  font-size: 0.95rem;
  font-weight: 600;
}

.badge-text p {
  font-size: 0.75rem;
  color: var(--text-secondary);
}

@keyframes badge-float {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-10px);
  }
}

/* ==========================================================================
   STATS SECTION
   ========================================================================== */
.stats-section {
  padding: 40px 0;
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
  background: var(--bg-secondary);
}

.stats-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  text-align: center;
}

.stat-card {
  position: relative;
}

.stat-card:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 0;
  height: 60%;
  width: 1px;
  background-color: var(--glass-border);
  transform: translateY(-50%);
}

.stat-number {
  font-size: 3rem;
  font-weight: 800;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.95rem;
  color: var(--text-secondary);
  font-weight: 500;
}

/* ==========================================================================
   SECTION COMMON STYLES
   ========================================================================== */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-tag {
  color: var(--color-cyan);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  display: block;
  margin-bottom: 12px;
}

.section-title {
  font-size: 2.75rem;
  font-weight: 800;
}

.section-title.text-left {
  text-align: left;
}

.section-line {
  width: 60px;
  height: 4px;
  background: var(--gradient-primary);
  margin: 16px auto 0 auto;
  border-radius: 10px;
}

/* ==========================================================================
   SERVICES SECTION
   ========================================================================== */
.services-section {
  padding: 100px 0;
  max-width: var(--max-width);
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}

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

.service-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--border-radius-lg);
  padding: 40px;
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 242, 254, 0.03) 0%, transparent 100%);
  opacity: 0;
  transition: opacity var(--transition-normal);
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 242, 254, 0.3);
  box-shadow: 0 15px 35px rgba(0, 242, 254, 0.08);
}

.service-card:hover::before {
  opacity: 1;
}

.service-icon-wrapper {
  color: var(--color-cyan);
  display: inline-flex;
  font-size: 2.8rem;
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
  transition: all var(--transition-fast);
}

.service-card:hover .service-icon-wrapper {
  color: var(--color-violet);
  transform: translateY(-2px);
}

.service-title {
  font-size: 1.5rem;
  margin-bottom: 16px;
  position: relative;
  z-index: 2;
}

.service-description {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-bottom: 24px;
  flex-grow: 1;
  position: relative;
  z-index: 2;
}

.service-list {
  list-style: none;
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  z-index: 2;
}

.service-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-primary);
}

.btn-card-action {
  background: transparent;
  border: none;
  color: var(--color-cyan);
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  position: relative;
  z-index: 2;
  transition: all var(--transition-fast);
  padding: 0;
  width: fit-content;
}

.btn-card-action i {
  transition: transform var(--transition-fast);
}

.btn-card-action:hover {
  color: var(--color-blue);
}

.btn-card-action:hover i {
  transform: translateX(4px);
}

/* ==========================================================================
   MAINTENANCE / ADDED VALUE SECTION
   ========================================================================== */
.maintenance-section {
  padding: 100px 0;
  background: radial-gradient(circle at 70% 30%, rgba(127, 0, 255, 0.05) 0%, transparent 60%);
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
}

.maintenance-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 60px;
}

.maintenance-title {
  font-size: 2.75rem;
  margin-bottom: 20px;
}

.maintenance-description {
  color: var(--text-secondary);
  margin-bottom: 32px;
}

.maintenance-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.maintenance-item {
  display: flex;
  gap: 16px;
}

.m-icon {
  color: var(--color-cyan);
  display: inline-flex;
  align-items: flex-start;
  font-size: 1.8rem;
  flex-shrink: 0;
  margin-top: 2px;
  transition: transform var(--transition-fast), color var(--transition-fast);
}

.m-text h4 {
  font-size: 1.1rem;
  margin-bottom: 4px;
}

.m-text p {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.maintenance-visual {
  position: relative;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  border: 1px solid var(--glass-border);
}

.maintenance-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11,15,25,0.4) 0%, transparent 50%);
}

.maintenance-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4/3;
  transition: transform var(--transition-slow);
}

.maintenance-visual:hover .maintenance-img {
  transform: scale(1.05);
}

.mt-4 {
  margin-top: 32px;
}

/* ==========================================================================
   LOCATIONS SERVED SECTION
   ========================================================================== */
.locations-section {
  padding: 100px 0;
  max-width: var(--max-width);
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
  text-align: center;
}

.locations-intro {
  color: var(--text-secondary);
  max-width: 600px;
  margin: -40px auto 48px auto;
  font-size: 1.05rem;
}

.locations-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.location-chip {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--border-radius-md);
  padding: 18px 24px;
  font-weight: 600;
  font-size: 1.05rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  transition: all var(--transition-fast);
}

.location-chip i {
  color: var(--color-cyan);
  transition: transform var(--transition-fast);
}

.location-chip:hover {
  transform: translateY(-3px);
  border-color: rgba(0, 242, 254, 0.4);
  background: rgba(0, 242, 254, 0.02);
  box-shadow: 0 10px 20px rgba(0, 242, 254, 0.05);
}

.location-chip:hover i {
  transform: scale(1.2);
}

.locations-cta {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.locations-cta a {
  color: var(--color-cyan);
  font-weight: 700;
  border-bottom: 1px dashed var(--color-cyan);
  padding-bottom: 2px;
}

.locations-cta a:hover {
  color: var(--color-blue);
  border-color: var(--color-blue);
}

/* ==========================================================================
   WHY CHOOSE US SECTION
   ========================================================================== */
.why-us-section {
  padding: 100px 0;
  border-top: 1px solid var(--glass-border);
  background: radial-gradient(circle at 10% 80%, rgba(0, 242, 254, 0.05) 0%, transparent 60%);
}

.why-us-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 60px;
}

.why-us-visual {
  position: relative;
}

.why-us-img {
  width: 100%;
  border-radius: var(--border-radius-lg);
  border: 1px solid var(--glass-border);
  box-shadow: 0 30px 60px rgba(0,0,0,0.4);
}

.floating-badge {
  position: absolute;
  top: -24px;
  left: -24px;
  background: var(--gradient-primary);
  color: #0b0f19;
  padding: 20px 24px;
  border-radius: var(--border-radius-md);
  text-align: center;
  box-shadow: 0 20px 40px rgba(0, 242, 254, 0.3);
  animation: badge-float 5s infinite alternate ease-in-out;
}

.floating-badge h3 {
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
}

.floating-badge p {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
}

.why-us-desc {
  color: var(--text-secondary);
  margin-top: 16px;
  margin-bottom: 40px;
}

.features-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.feature-card {
  display: flex;
  gap: 20px;
}

.feature-icon {
  color: var(--color-cyan);
  display: inline-flex;
  align-items: flex-start;
  font-size: 2.2rem;
  flex-shrink: 0;
  margin-top: 2px;
  transition: all var(--transition-fast);
}

.feature-card:hover .feature-icon {
  color: var(--color-violet);
  transform: scale(1.05);
}

.feature-info h4 {
  font-size: 1.2rem;
  margin-bottom: 6px;
}

.feature-info p {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

/* ==========================================================================
   FOOTER SECTION
   ========================================================================== */
.main-footer {
  background-color: var(--bg-secondary);
  border-top: 1px solid var(--glass-border);
  padding: 80px 0 20px 0;
}

.footer-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-desc {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

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

.social-links a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bg-tertiary);
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  transition: all var(--transition-fast);
}

.social-links a:hover {
  background: var(--gradient-primary);
  color: #0b0f19;
  border-color: transparent;
  transform: translateY(-2px);
}

.footer-links-group h4, .footer-contact-info h4 {
  font-size: 1.15rem;
  margin-bottom: 24px;
  position: relative;
  padding-bottom: 8px;
}

.footer-links-group h4::after, .footer-contact-info h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--gradient-primary);
}

.footer-links-group ul, .footer-contact-info ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-links-group a {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.footer-links-group a:hover {
  color: var(--color-cyan);
  padding-left: 4px;
}

.footer-contact-info ul li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--text-secondary);
}

.footer-ctas {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

.footer-email-link:hover {
  color: var(--color-cyan);
  text-decoration: underline;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 24px 24px 0 24px;
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ==========================================================================
   CONTACT MODAL (Frosted Glass / Glassmorphism)
   ========================================================================== */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(5, 7, 12, 0.6);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  display: flex;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-normal);
  padding: 40px 20px;
  overflow-y: auto;
}

.modal-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.modal-card {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--glass-border);
  border-radius: var(--border-radius-lg);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
  width: 100%;
  max-width: 600px;
  position: relative;
  padding: 40px;
  margin: auto;
  transform: scale(0.9);
  transition: transform var(--transition-normal);
  overflow: hidden;
}

.modal-overlay.open .modal-card {
  transform: scale(1);
}

.modal-close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  font-size: 2.2rem;
  color: var(--text-secondary);
  cursor: pointer;
  line-height: 0.5;
  transition: color var(--transition-fast);
}

.modal-close-btn:hover {
  color: var(--text-primary);
}

.modal-header {
  text-align: center;
  margin-bottom: 32px;
}

.modal-title-icon {
  font-size: 2rem;
  color: var(--color-cyan);
  margin-bottom: 12px;
  filter: drop-shadow(0 0 10px rgba(0, 242, 254, 0.4));
}

.modal-header h3 {
  font-size: 1.75rem;
  margin-bottom: 8px;
}

.modal-header p {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.form-label {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-secondary);
}

.input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.input-icon {
  position: absolute;
  left: 16px;
  color: var(--text-muted);
  pointer-events: none;
  font-size: 1.1rem;
  transition: color var(--transition-fast);
}

.form-control {
  width: 100%;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--glass-border);
  border-radius: var(--border-radius-sm);
  padding: 12px 16px 12px 44px;
  color: var(--text-primary);
  transition: all var(--transition-fast);
}

.form-control::placeholder {
  color: var(--text-muted);
}

.form-control:focus {
  outline: none;
  border-color: var(--color-cyan);
  background: #ffffff;
  box-shadow: 0 0 15px rgba(255, 117, 143, 0.15);
}

.form-control:focus + .input-icon {
  color: var(--color-cyan);
}

.select-control {
  appearance: none;
  cursor: pointer;
}

/* Custom Dropdown arrow */
.select-wrapper::after {
  content: '\f107';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  right: 16px;
  pointer-events: none;
  color: var(--text-secondary);
}

textarea.form-control {
  padding-left: 44px;
  resize: vertical;
}

.textarea-icon {
  top: 14px;
}

.btn-submit {
  width: 100%;
  justify-content: center;
  padding: 14px;
  margin-top: 10px;
}

.error-msg {
  font-size: 0.8rem;
  color: #ef4444;
  margin-top: 4px;
  display: none;
}

.form-group.has-error .error-msg {
  display: block;
}

.form-group.has-error .form-control {
  border-color: #ef4444;
  box-shadow: 0 0 10px rgba(239, 68, 68, 0.1);
}

/* Success Overlay */
.success-overlay {
  position: absolute;
  inset: 0;
  background: var(--bg-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  text-align: center;
  z-index: 10;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-normal);
}

.success-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.success-content {
  max-width: 400px;
}

.success-icon {
  font-size: 4rem;
  color: #25D366;
  margin-bottom: 20px;
  animation: pulse-green 2s infinite;
}

.success-content h3 {
  font-size: 1.8rem;
  margin-bottom: 12px;
}

.success-content p {
  color: var(--text-secondary);
  margin-bottom: 32px;
}

@keyframes pulse-green {
  0% {
    transform: scale(0.95);
    filter: drop-shadow(0 0 0 rgba(37, 211, 102, 0.7));
  }
  70% {
    transform: scale(1);
    filter: drop-shadow(0 0 15px rgba(37, 211, 102, 0));
  }
  100% {
    transform: scale(0.95);
    filter: drop-shadow(0 0 0 rgba(37, 211, 102, 0));
  }
}

/* ==========================================================================
   SCROLL TO TOP & EXTRA INTERACTIVITY
   ========================================================================== */
.scroll-to-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  color: var(--text-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all var(--transition-normal);
  z-index: 99;
}

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

.scroll-to-top:hover {
  background: var(--gradient-primary);
  color: #0b0f19;
  border-color: transparent;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 242, 254, 0.3);
}

/* ==========================================================================
   RESPONSIVE DESIGN (MEDIA QUERIES)
   ========================================================================== */

/* Tablet Layout (max-width: 1024px) */
@media screen and (max-width: 1024px) {
  .hero-title {
    font-size: 3.25rem;
  }
  
  .hero-container {
    gap: 32px;
  }
  
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .locations-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .footer-container {
    grid-template-columns: 1.2fr 0.8fr 1fr;
    gap: 32px;
  }
}

/* Mobile Portrait & Landscape (max-width: 768px) */
@media screen and (max-width: 768px) {
  /* Hamburger Navigation */
  .hamburger-menu {
    display: flex;
  }
  
  .nav-menu {
    position: fixed;
    top: var(--header-height);
    left: -100%;
    width: 100%;
    height: calc(100vh - var(--header-height));
    background: var(--bg-primary);
    border-top: 1px solid var(--glass-border);
    flex-direction: column;
    padding: 60px 40px;
    gap: 24px;
    transition: left var(--transition-normal);
    align-items: flex-start;
  }
  
  .nav-menu.open {
    left: 0;
  }
  
  .nav-link {
    font-size: 1.2rem;
    width: 100%;
  }
  
  .btn-nav {
    width: 100%;
    justify-content: center;
    padding: 14px;
    margin-top: 20px;
  }
  
  /* Hero section adjustments */
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 50px;
  }
  
  .hero-content {
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .hero-subtitle {
    margin-bottom: 24px;
  }
  
  .hero-buttons {
    width: 100%;
    justify-content: center;
  }
  
  .visual-card {
    max-width: 360px;
    margin: 0 auto;
  }
  
  .badge-top {
    right: -20px;
  }
  
  .badge-bottom {
    left: -20px;
  }
  
  /* Stats grid */
  .stats-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .stat-card:not(:last-child)::after {
    display: none;
  }
  
  /* Services section */
  .services-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .service-card {
    padding: 30px;
  }
  
  /* Maintenance section */
  .maintenance-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  /* Locations served */
  .locations-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  
  .location-chip {
    padding: 14px;
    font-size: 0.95rem;
  }
  
  /* Why Choose Us */
  .why-us-container {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  
  .why-us-visual {
    order: 2;
    max-width: 400px;
    margin: 0 auto;
  }
  
  /* Footer */
  .footer-container {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }
  
  .footer-links-group h4::after, .footer-contact-info h4::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .footer-contact-info ul li {
    justify-content: center;
  }
  
  .footer-ctas {
    justify-content: center;
  }
  
  /* Modal responsive */
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  
  .modal-card {
    padding: 30px 20px;
  }
}

/* Small mobile (max-width: 480px) */
@media screen and (max-width: 480px) {
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    gap: 12px;
  }
  
  .hero-buttons button, .hero-buttons a {
    width: 100%;
    justify-content: center;
  }
  
  .locations-grid {
    grid-template-columns: 1fr;
  }
  
  .badge-top, .badge-bottom {
    display: none; /* Hide floating badges on very small screens to avoid overflow */
  }
}
