/* =====================================================
   ELECTROMED NOA — Clinical Pulse Design System
   styles.css
   ===================================================== */

/* ---- Google Fonts ---- */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800;900&display=swap');

/* ---- CSS Variables ---- */
:root {
  --primary:    #312780;
  --secondary:  #009CE0;
  --tertiary:   #E8003D;
  --whatsapp:   #25D366;
  --bg:         #F4F7FA;
  --bg-white:   #FFFFFF;
  --text:       #1A1A2E;
  --text-muted: #64748B;
  --border:     #E2E8F0;
  --radius:     8px;
  --shadow-sm:  0 2px 8px rgba(45, 30, 120, 0.08);
  --shadow-md:  0 8px 24px rgba(45, 30, 120, 0.12);
  --shadow-lg:  0 20px 48px rgba(45, 30, 120, 0.16);
  --nav-h:      80px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  background-color: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

ul, ol { list-style: none; }

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

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

/* =====================================================
   NAVBAR
   ===================================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: #fff;
  display: flex;
  align-items: center;
  transition: box-shadow var(--transition);
}

.navbar.scrolled {
  box-shadow: 0 2px 20px rgba(45, 30, 120, 0.12);
}

.nav-inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.nav-logo img {
  height: 40px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-links a,
.nav-links button {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--primary);
  text-transform: none;
  letter-spacing: 0;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 4px;
  position: relative;
  transition: color var(--transition);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--secondary);
  transition: width var(--transition);
}

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

.nav-links a.active {
  color: var(--secondary);
}

.nav-links a.active::after {
  width: 100%;
}

.nav-links a:hover,
.nav-links button:hover {
  color: var(--secondary);
}

/* Dropdown */
.dropdown {
  position: relative;
}

.dropdown-toggle svg {
  transition: transform var(--transition);
}

.dropdown.open .dropdown-toggle svg {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  min-width: 240px;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  z-index: 1001;
}

.dropdown.open .dropdown-menu,
.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu a {
  display: block;
  padding: 0.75rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text);
  transition: background var(--transition), color var(--transition);
}

.dropdown-menu a:hover {
  background: var(--bg);
  color: var(--primary);
  padding-left: 1.5rem;
}

/* Chevron icon */
.chevron {
  width: 14px;
  height: 14px;
  transition: transform var(--transition);
  flex-shrink: 0;
}

.dropdown.open .chevron { transform: rotate(180deg); }

/* Split dropdown (label link + chevron button) */
.dropdown-split {
  display: flex;
  align-items: center;
  gap: 2px;
}

.dropdown-split-label {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
  transition: color var(--transition);
  white-space: nowrap;
}

.dropdown-split-label:hover,
.dropdown-split-label.active {
  color: var(--secondary);
}

.dropdown-split-label.active {
  border-bottom: 2px solid var(--secondary);
  padding-bottom: 2px;
}

.dropdown-chevron-btn {
  display: flex;
  align-items: center;
  background: none;
  border: none;
  cursor: pointer;
  padding: 2px;
  color: var(--primary);
  transition: color var(--transition);
}

.dropdown-chevron-btn:hover { color: var(--secondary); }
.dropdown.open .dropdown-chevron-btn .chevron { transform: rotate(180deg); }

/* Phone */
.nav-phone {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--primary);
  white-space: nowrap;
  transition: color var(--transition);
}
.nav-phone:hover { color: var(--secondary); }

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transition: var(--transition);
}

.nav-hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile menu */
.nav-mobile {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  z-index: 999;
  overflow-y: auto;
  padding: 1.5rem 2rem 3rem;
  flex-direction: column;
  gap: 0;
}

.nav-mobile.open { display: flex; }

.nav-mobile-link {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary);
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
  transition: color var(--transition);
}
.nav-mobile-link:hover { color: var(--secondary); }

.nav-mobile-section {
  border-bottom: 1px solid var(--border);
}

.nav-mobile-toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary);
  padding: 1rem 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.nav-mobile-sub {
  display: none;
  padding-bottom: 0.75rem;
  flex-direction: column;
  gap: 0;
}

.nav-mobile-sub.open { display: flex; }

.nav-mobile-sub a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  padding: 0.6rem 1rem;
  border-radius: var(--radius);
  transition: background var(--transition), color var(--transition);
}
.nav-mobile-sub a:hover {
  background: var(--bg);
  color: var(--primary);
}

.nav-mobile-phone {
  display: block;
  margin-top: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  font-size: 1.1rem;
}

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

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

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26, 26, 46, 0.2); /* Maximum 20% opacity as requested */
}

/* Force line breaks on desktop only */
.desktop-br {
  display: none;
}

@media (min-width: 1280px) {
  .desktop-br {
    display: block;
  }
}

.hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 5rem 2rem 4rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff; /* Switched to white */
  margin-bottom: 1.5rem;
  opacity: 0;
  transform: translateY(20px);
}

.hero-label .label-line {
  display: inline-block;
  width: 32px;
  height: 2px;
  background: var(--secondary);
  border-radius: 2px;
}

.hero h1 {
  font-size: clamp(2.4rem, 5.2vw, 4.2rem); /* Reduced to fit long segments in 3 lines */
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: #fff; /* Switched to white for better visibility on vivid image */
  max-width: 1000px;
  margin-bottom: 1.5rem;
  text-align: left;
  opacity: 0;
  transform: translateY(30px);
}

.hero-desc {
  font-size: 1.125rem;
  font-weight: 500;
  color: #fff; /* Pure white for best contrast */
  max-width: 520px;
  line-height: 1.7;
  margin-bottom: 2.5rem;
  text-align: left;
  opacity: 0;
  transform: translateY(20px);
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3rem;
  opacity: 0;
  transform: translateY(20px);
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  opacity: 0;
  transform: translateY(20px);
}

.badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 700;
  color: #fff; /* White badges */
}

.badge::before {
  content: '✓';
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  background: var(--secondary);
  color: white;
  border-radius: 50%;
  font-size: 0.7rem;
  font-weight: 900;
  flex-shrink: 0;
}

/* =====================================================
   BUTTONS
   ===================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0.875rem 1.75rem;
  border-radius: var(--radius);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  border: none;
  transition: transform 0.2s ease, brightness 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: scale(1.03) translateY(-1px);
  filter: brightness(1.06);
}

.btn:active { transform: scale(0.98); }

.btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  background: var(--secondary);
  color: #fff;
  box-shadow: var(--shadow-sm);
}

.btn-whatsapp {
  background: var(--whatsapp);
  color: #fff;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.35);
  animation: wasPulse 1.5s ease-in-out infinite;
}

.btn-danger {
  background: var(--tertiary);
  color: #fff;
  box-shadow: var(--shadow-sm);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}
.btn-outline:hover { background: var(--primary); color: #fff; }

/* WhatsApp pulse animation */
@keyframes wasPulse {
  0%, 100% { transform: scale(1); box-shadow: 0 4px 16px rgba(37, 211, 102, 0.35); }
  50% { transform: scale(1.04); box-shadow: 0 6px 24px rgba(37, 211, 102, 0.5); }
}

/* =====================================================
   SECTION LABELS
   ===================================================== */
.section-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: 1rem;
}

.section-label::before {
  content: '';
  display: block;
  width: 0;
  height: 2px;
  background: var(--tertiary);
  border-radius: 2px;
  transition: width 0.4s ease;
}

.section-label.line-drawn::before {
  width: 28px;
}

.section-title {
  font-size: clamp(1.875rem, 4vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--primary);
}

.section-desc {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 540px;
}

/* =====================================================
   SPECIALTIES SECTION
   ===================================================== */
.specialties {
  padding: 6rem 0;
  background: var(--bg-white);
}

.specialties-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 3.5rem;
}

.specialty-card {
  background: var(--bg-white);
  border-radius: calc(var(--radius) * 2);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: box-shadow var(--transition), transform var(--transition);
  cursor: pointer;
  height: 100%; /* ensures body's height:100% works within the grid cell */
  display: flex;
  flex-direction: column;
}

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

.specialty-card-img {
  aspect-ratio: 16/9;
  overflow: hidden;
}

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

.specialty-card:hover .specialty-card-img img {
  transform: scale(1.06);
}

.specialty-card-body {
  padding: 2rem 2.5rem 2.5rem;
}

.specialty-card-body h3 {
  font-size: 1.375rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}

.specialty-card-body p {
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--secondary);
  transition: gap var(--transition), color var(--transition);
}
.specialty-card:hover .card-link { gap: 10px; }

/* =====================================================
   REGIONAL DIFFERENTIATOR — dark indigo section
   ===================================================== */
.regional {
  padding: 6rem 0;
  background: var(--primary);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.regional::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: rgba(0, 150, 225, 0.07);
  pointer-events: none;
}

.regional-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.regional h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 3rem;
}

.regional-features {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.regional-feature {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
}

.regional-feature-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
}

.regional-feature-icon svg {
  width: 24px;
  height: 24px;
  fill: var(--secondary);
}

.regional-feature h4 {
  font-size: 1.0625rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.regional-feature p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.6;
}

/* Argentina SVG Map */
.regional-map-wrap {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.map-badge {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: var(--tertiary);
  color: #fff;
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow-lg);
  z-index: 2;
}
.map-badge .big { font-size: 2rem; font-weight: 900; line-height: 1; }
.map-badge .small { font-size: 0.65rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; margin-top: 2px; }

.map-provinces {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.25rem;
  justify-content: center;
}

.map-pill {
  padding: 0.25rem 0.75rem;
  background: rgba(255,255,255,0.1);
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
}

/* SVG map container */
.argentina-map-container {
  background: rgba(255,255,255,0.05);
  border-radius: calc(var(--radius)*2);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 1.5rem;
  width: 100%;
  max-width: 340px;
  backdrop-filter: blur(4px);
}

.argentina-map-container svg {
  width: 100%;
  height: auto;
}

/* =====================================================
   SERVICES SECTION (Lo que hacemos)
   ===================================================== */
.services {
  padding: 6rem 0;
  background: var(--bg);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3.5rem;
}

.service-card {
  padding: 2.5rem 2rem;
  background: var(--bg-white);
  border-radius: calc(var(--radius)*2);
  box-shadow: var(--shadow-sm);
  border-bottom: 3px solid transparent;
  transition: background var(--transition), color var(--transition), border-color var(--transition), transform var(--transition), box-shadow var(--transition);
  cursor: default;
}

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

.service-card:hover h3,
.service-card:hover p {
  color: #fff;
}

.service-card:hover .service-icon {
  background: rgba(255,255,255,0.15);
  color: var(--secondary);
}

.service-icon {
  width: 60px;
  height: 60px;
  border-radius: var(--radius);
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: background var(--transition), color var(--transition);
  position: relative;
}

.service-icon svg {
  width: 28px;
  height: 28px;
  fill: var(--primary);
  transition: fill var(--transition);
}

.service-card:hover .service-icon svg { fill: var(--secondary); }

.service-dot {
  position: absolute;
  top: 0;
  right: 0;
  width: 10px;
  height: 10px;
  background: var(--tertiary);
  border-radius: 50%;
  border: 2px solid var(--bg-white);
}

.service-card h3 {
  font-size: 1.1875rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
  transition: color var(--transition);
}

.service-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
  transition: color var(--transition);
}

/* =====================================================
   FEATURED EQUIPMENT
   ===================================================== */
.equipment {
  padding: 6rem 0;
  background: var(--bg-white);
}

.equipment-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3.5rem;
}

.equipment-card {
  background: var(--bg-white);
  border-radius: calc(var(--radius)*2);
  border: 1px solid var(--border);
  padding: 1.5rem;
  transition: transform var(--transition), box-shadow var(--transition), background-color 0.3s ease;
  cursor: default;
}

.equipment-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  background-color: #f5f5f5;
}

.equipment-card-img {
  aspect-ratio: 1;
  background: var(--bg);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  margin-bottom: 1.25rem;
}

.equipment-card-img img {
  max-height: 100%;
  object-fit: contain;
}

.equipment-tag {
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: 0.35rem;
}

.equipment-card h4 {
  font-size: 1.025rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}

.equipment-card p {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 1.25rem;
}

.equipment-btn {
  width: 100%;
  padding: 0.6875rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.825rem;
  font-weight: 700;
  color: var(--primary);
  cursor: pointer;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
}
.equipment-btn:hover {
  background: var(--secondary);
  color: #fff;
  border-color: var(--secondary);
}

/* =====================================================
   BRANDS / TRUST BAR
   ===================================================== */
.trust-bar {
  padding: 3rem 0;
  background: var(--bg);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.trust-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 3rem;
}

.brand-placeholder {
  height: 32px;
  background: #CBD5E1;
  border-radius: 4px;
  opacity: 0.45;
  filter: grayscale(1);
}

/* =====================================================
   URGENT CTA SECTION
   ===================================================== */
.urgent-cta {
  padding: 6rem 0;
  background: var(--tertiary);
  text-align: center;
}

.urgent-cta h2 {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #fff;
  max-width: 700px;
  margin: 0 auto 1rem;
  line-height: 1.15;
}

.urgent-cta p {
  font-size: 1.125rem;
  color: rgba(255,255,255,0.9);
  margin-bottom: 2.5rem;
}

/* =====================================================
   FOOTER
   ===================================================== */
.footer {
  background: var(--bg-white);
  padding: 5rem 0 2rem;
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(to right, var(--primary), var(--secondary));
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand img {
  height: 42px;
  width: auto;
  margin-bottom: 1.25rem;
}

.footer-brand p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.footer-socials {
  display: flex;
  gap: 0.75rem;
}

.social-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--radius);
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: all var(--transition);
  cursor: pointer;
}
.social-icon:hover { 
  background: var(--primary); 
  color: #fff; 
  transform: translateY(-2px);
}

/* Footer specific icon clarity */
footer .social-icon {
  background: rgba(255, 255, 255, 0.1) !important;
  color: #fff !important;
  opacity: 1 !important;
}
footer .social-icon:hover {
  background: var(--secondary) !important;
}

.social-icon svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.footer-col h5 {
  font-size: 0.875rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}

.footer-col ul { display: flex; flex-direction: column; gap: 0.625rem; }
.footer-col li a {
  font-size: 0.875rem;
  color: var(--text-muted);
  transition: color var(--transition);
}
.footer-col li a:hover { color: var(--secondary); }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}
.footer-contact-item svg {
  width: 14px;
  height: 14px;
  fill: var(--secondary);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-coverage {
  background: var(--bg);
  border-radius: var(--radius);
  padding: 1rem;
  border: 1px solid var(--border);
}

.footer-coverage-label {
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.footer-coverage p {
  font-size: 0.8rem;
  font-style: italic;
  color: var(--text-muted);
}

.footer-bottom {
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* =====================================================
   FLOATING WHATSAPP BUTTON
   ===================================================== */
.wa-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 999;
  width: 60px;
  height: 60px;
  background: var(--whatsapp);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4);
  animation: waFloat 1.5s ease-in-out infinite;
  transition: transform 0.2s ease;
}

.wa-float:hover {
  animation: none;
  transform: scale(1.12);
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.55);
}

.wa-float svg {
  width: 30px;
  height: 30px;
  fill: #fff;
}

@keyframes waFloat {
  0%, 100% { transform: scale(1.0); }
  50% { transform: scale(1.08); }
}

/* =====================================================
   SCROLL ANIMATIONS
   ===================================================== */
.animate-fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.animate-fade-up.in-view {
  opacity: 1;
  transform: translateY(0);
}

.animate-fade-in {
  opacity: 0;
  transition: opacity 0.6s ease;
}
.animate-fade-in.in-view { opacity: 1; }

/* Stagger children */
.stagger-children > * {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.stagger-children.in-view > * { opacity: 1; transform: translateY(0); }

/* Hero animations — triggered on load */
.hero-animate-1 { animation: heroEntry 0.8s ease forwards 0.2s; }
.hero-animate-2 { animation: heroEntry 0.8s ease forwards 0.4s; }
.hero-animate-3 { animation: heroEntry 0.8s ease forwards 0.6s; }
.hero-animate-4 { animation: heroEntry 0.8s ease forwards 0.8s; }
.hero-animate-5 { animation: heroEntry 0.8s ease forwards 1.0s; }

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

/* Count-up elements */
.count-up { font-variant-numeric: tabular-nums; }

/* =====================================================
   RESPONSIVE
   ===================================================== */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .equipment-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .regional-inner { grid-template-columns: 1fr; gap: 3rem; }
}

@media (max-width: 768px) {
  :root { --nav-h: 72px; }
  .nav-links, .nav-phone { display: none; }
  .nav-hamburger { display: flex; }
  .specialties-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .equipment-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: clamp(2.2rem, 8vw, 3.5rem); }
  .argentina-map-container { max-width: 280px; }
  .map-badge { bottom: -1rem; right: -0.5rem; }
}

@media (max-width: 480px) {
  .equipment-grid { grid-template-columns: 1fr; }
  .container { padding: 0 1.25rem; }
  .hero-content { padding: 4rem 1.25rem 3rem; }
}


/* =====================================================
   ESTÉTICA PAGE SPECIFIC STYLES
   ===================================================== */

/* Icons & Helpers */
.material-symbols-outlined {
  font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
  vertical-align: middle;
}

.icon-secondary {
  color: var(--secondary);
  font-size: 2rem;
}

.card-icon-wrap {
  width: 60px;
  height: 60px;
  background: var(--bg);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

/* Offering / Specialties updates for 4 columns */
@media (min-width: 1024px) {
  .specialties-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Equipment Filter Bar */
.filter-bar {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 0.6rem 1.25rem;
  border-radius: 100px;
  border: 1px solid var(--border);
  background: #fff;
  color: var(--text-muted);
  font-family: inherit;
  font-weight: 600;
  font-size: 0.875rem;
  cursor: pointer;
  transition: all var(--transition);
}

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

.filter-btn.active {
  background: var(--secondary);
  color: #fff;
  border-color: var(--secondary);
  box-shadow: 0 4px 12px rgba(0, 150, 225, 0.2);
}

/* Equipment Card Badges */
.equipment-card-img {
  position: relative;
}

.equipment-badges {
  position: absolute;
  top: 1rem;
  right: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.eq-badge {
  padding: 0.25rem 0.75rem;
  border-radius: 4px;
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  color: #fff;
}

.eq-badge.venta { background: var(--primary); }
.eq-badge.alquiler { background: var(--secondary); }

.section-note {
  text-align: center;
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-top: 2rem;
  font-style: italic;
  display: none; /* Hide old text, keeping class for any other use */
}

/* Equipment Section Catalog Button */
.equipment-footer-cta {
  margin-top: 4rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 1.5rem;
}

.btn-outline-catalog {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 1rem 2rem;
  border: 2px solid var(--secondary);
  border-radius: 100px;
  color: var(--secondary);
  font-weight: 700;
  text-decoration: none;
  transition: all var(--transition);
  background: transparent;
}

.btn-outline-catalog:hover {
  background: var(--secondary);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 150, 225, 0.2);
}

.btn-outline-catalog .material-symbols-outlined {
  font-size: 1.4rem;
}

.catalog-helper-text {
  font-size: 0.875rem;
  color: var(--text-muted);
  max-width: 400px;
  text-align: center;
  line-height: 1.5;
}

/* Consumibles Section */
.consumibles-section {
  padding: 6rem 0;
  background: var(--bg);
}

.consumibles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3.5rem;
}

.consumo-item {
  background: #fff;
  padding: 2.5rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition);
}

.consumo-item:hover { transform: translateY(-5px); }

.consumo-item span {
  font-size: 2.5rem;
  color: var(--secondary);
  margin-bottom: 1.5rem;
  display: block;
}

.consumo-item h4 {
  font-size: 1.25rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

.consumo-cta {
  margin-top: 4rem;
  background: var(--primary);
  color: #fff;
  padding: 3rem;
  border-radius: calc(var(--radius) * 2);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.consumo-cta .cta-text h5 { font-size: 1.5rem; margin-bottom: 0.5rem; }
.consumo-cta .cta-text p { opacity: 0.8; }

/* Capacitaciones Section */
.capacitaciones-section {
  padding: 6rem 0;
  background: #fff;
}

.capacitaciones-banner {
  margin: 3.5rem 0;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.12);
  background: #f8fafc; /* Placeholder light background while loading */
}

.capacitaciones-banner img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.capacitaciones-banner:hover img {
  transform: scale(1.02);
}

.capacitaciones-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
  margin-top: 3.5rem;
}

.cap-card {
  text-align: center;
  padding: 2rem;
}

.cap-card span {
  font-size: 3rem;
  color: var(--secondary);
  margin-bottom: 1.5rem;
  display: block;
}

.cap-card h4 { margin-bottom: 0.75rem; color: var(--primary); }
.cap-card p { font-size: 0.9rem; color: var(--text-muted); }

.cap-infostrip {
  margin-top: 4rem;
  display: flex;
  justify-content: center;
  gap: 3rem;
  padding: 2rem;
  background: var(--bg);
  border-radius: var(--radius);
  flex-wrap: wrap;
}

.info-tag {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 700;
  color: var(--primary);
}

.info-tag span { color: var(--secondary); }

.cap-final-cta {
  margin-top: 4rem;
  text-align: center;
}

.cap-final-cta p {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1.5rem;
}

/* Coverage Bar */
.coverage-bar {
  background: var(--primary);
  color: #fff;
  padding: 1.5rem 0;
}

.coverage-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  text-align: center;
}

.coverage-content span { color: var(--secondary); }
.coverage-content p { font-weight: 600; font-size: 0.9rem; }

/* Final CTA */
.final-cta {
  padding: 8rem 0;
  background: linear-gradient(135deg, #fff 0%, var(--bg) 100%);
  text-align: center;
}

.final-cta h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--primary);
  margin-bottom: 1.5rem;
}

.cta-btns {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin: 2.5rem 0;
  flex-wrap: wrap;
}

.btn-large {
  padding: 1.25rem 2.5rem;
  font-size: 1.1rem;
}

.cta-phone {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .regional-inner { grid-template-columns: 1fr; gap: 3rem; }
  .consumo-cta { text-align: center; justify-content: center; }
  .cap-infostrip { gap: 1.5rem; }
}


/* =====================================================
   SOPORTE TÉCNICO PAGE
   ===================================================== */

/* Process Steps Numbers */
.card-icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  aspect-ratio: 1/1;
  margin: 0 auto;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition);
}

.card-icon-wrap:hover {
  transform: scale(1.1);
}

/* Service Card Tweaks */
.specialty-card[style*="background: var(--primary)"] h3 {
  color: #fff !important;
}

/* Guarantee certificate specific */
.certificate-bg-icon {
  position: absolute;
  top: -20px;
  right: -20px;
  font-size: 15rem;
  color: #fff;
  opacity: 0.1;
  pointer-events: none;
}

/* Nefrología section specifics */
#nefrologia .section-title {
  color: var(--primary);
}

/* Urgencia card */
.btn-danger {
  background: var(--tertiary);
  color: #fff;
  border: none;
}

.btn-danger:hover {
  background: #c20033;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}


/* Ensure material symbols look good */
.material-symbols-outlined {
  font-family: 'Material Symbols Outlined';
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-feature-settings: 'liga';
  font-feature-settings: 'liga';
  -webkit-font-smoothing: antialiased;
  vertical-align: middle;
}

/* Small adjustments for anchor targets */
:target {
  scroll-margin-top: 100px;
}

/* =====================================================
   PREFERS REDUCED MOTION
   ===================================================== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* =====================================================
   NOSOTROS PAGE SPECIFIC STYLES
   ===================================================== */

/* Hero Section Nosotros adjusted to match standard hero */
/* Specific tweaks for Nosotros labels if needed */
.hero-content-layer h1 {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.hero-content-layer .hero-tagline {
  font-size: 1.25rem;
  color: #fff;
  font-weight: 500;
  max-width: 600px;
  text-shadow: 0 1px 4px rgba(0,0,0,0.3);
}

/* Stats Band / Numbers Strip */
.stats-band {
  background: var(--primary);
  color: #fff;
  padding: 5rem 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat-item .stat-number {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--secondary);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-item .stat-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}

/* Timeline Section */
.timeline-section {
  padding: 8rem 0;
  background: var(--bg);
}

.timeline-container {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
}

.timeline-header {
  position: sticky;
  top: 120px;
  height: fit-content;
}

.timeline-list {
  position: relative;
  padding-left: 2.5rem;
  border-left: 2px solid rgba(0, 150, 225, 0.2);
}

.timeline-item {
  position: relative;
  margin-bottom: 4rem;
}

.timeline-item:last-child { margin-bottom: 0; }

.timeline-marker {
  position: absolute;
  left: -2.5rem;
  top: 0.5rem;
  width: 16px;
  height: 16px;
  background: var(--tertiary);
  border: 4px solid var(--bg);
  border-radius: 50%;
  transform: translateX(-50%);
  z-index: 1;
}

.timeline-year {
  font-size: 2rem;
  font-weight: 800;
  color: var(--secondary);
  line-height: 1;
  margin-bottom: 0.75rem;
  display: block;
}

.timeline-content h4 {
  font-size: 1.25rem;
  color: var(--primary);
  margin-bottom: 0.75rem;
}

.timeline-content p {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* Featured Profile (Enzo Codevilla) */
.featured-profile {
  padding: 8rem 0;
  background: #fff;
}

.profile-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 5rem;
  align-items: center;
}

.profile-img-wrap {
  position: relative;
}

.profile-img-wrap img {
  border-radius: 24px;
  box-shadow: var(--shadow-lg);
  width: 100%;
}

.profile-info h3 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.profile-role {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--secondary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 2.5rem;
  display: block;
}

.profile-bio p {
  font-size: 1.125rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.profile-attributes {
  display: grid;
  gap: 1rem;
  margin-top: 3rem;
}

.attr-item {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.25rem;
  background: var(--bg);
  border-radius: 12px;
  transition: transform var(--transition);
}

.attr-item:hover { transform: translateX(8px); }

.attr-item span { color: var(--secondary); }
.attr-item p { font-weight: 700; color: var(--primary); }

/* Team professionals grid */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.team-card {
  background: #fff;
  padding: 2.5rem 2rem;
  border-radius: 20px;
  text-align: center;
  transition: all var(--transition);
  box-shadow: var(--shadow-sm);
}

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

.team-card-img {
  width: 120px;
  height: 120px;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid var(--bg);
}

.team-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-card h4 {
  font-size: 1.25rem;
  color: var(--primary);
  margin-bottom: 0.25rem;
}

.team-card .team-role {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--secondary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1.25rem;
  display: block;
}

.team-card p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Values High-Contrast Grid */
.values-nosotros {
  padding: 8rem 0;
  background: #fff;
}

.values-grid-alt {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.value-card-alt {
  padding: 3.5rem 3rem;
  border-radius: 24px;
  color: #fff;
  transition: transform 0.4s ease;
}

.value-card-alt:hover { transform: scale(1.02); }

.value-card-alt.indigo { background: var(--primary); }
.value-card-alt.cyan { background: var(--secondary); }

.value-card-alt span {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  color: #fff;
  display: block;
  opacity: 0.9;
}

.value-card-alt h4 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.value-card-alt p {
  font-size: 1.125rem;
  line-height: 1.7;
  opacity: 0.9;
}

/* Brands Section */
.brands-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

.brand-card {
  background: #fff;
  padding: 3rem 1.5rem 2rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(45, 30, 120, 0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  /* Fixed height area for logos ensures horizontal alignment of names below */
  min-height: 240px; 
}

.brand-card img {
  margin-top: auto;
  margin-bottom: auto;
  object-fit: contain;
  /* We let inline or utility classes handle max-height constraints */
}

.brand-name {
  margin-top: auto;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--primary);
  text-transform: uppercase;
  font-size: 0.8125rem;
}

.logo-box {
  width: 100%;
  height: 100px;
  background: #E5E8EB; /* GRIS OSCURO SOLICITADO */
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  padding: 1rem;
}

.logo-box img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.brand-name {
  font-family: 'Plus Jakarta Sans';
  font-weight: 800;
  font-size: 0.875rem;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0;
}

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

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

/* Mission Quote Section Refined */
.quote-section-refined {
  padding: 8rem 0;
  background: #fff;
  text-align: center;
}

.quote-container-refined {
  max-width: 800px;
  margin: 0 auto;
}

.quote-marks-refined {
  font-size: 5rem;
  font-weight: 800;
  color: #312780; /* Indigo Crítico */
  line-height: 1;
  margin-bottom: 1rem;
}

.quote-text-refined {
  font-size: 2.25rem;
  font-weight: 800;
  color: #312780; /* Indigo Crítico */
  line-height: 1.3;
  margin-bottom: 2.5rem;
}

.quote-desc-refined {
  font-size: 1.125rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 3rem;
}

/* Final CTA for Nosotros */
.nosotros-cta {
  padding: 8rem 0;
  background: var(--primary);
  color: #fff;
  text-align: center;
}

.nosotros-cta h2 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.nosotros-cta p {
  font-size: 1.25rem;
  opacity: 0.8;
  margin-bottom: 3.5rem;
}

@media (max-width: 1024px) {
  .profile-grid { grid-template-columns: 1fr; gap: 3rem; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .timeline-container { grid-template-columns: 1fr; }
  .timeline-header { position: relative; top: 0; margin-bottom: 3rem; }
  .values-grid-alt { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .certs-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .certs-grid { grid-template-columns: 1fr; }
}

/* =====================================================
   UTILITY CLASSES (Tailwind-like)
   ===================================================== */
.py-24 { padding-top: 6rem; padding-bottom: 6rem; }
.pb-24 { padding-bottom: 6rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-16 { margin-bottom: 4rem; }
.mt-12 { margin-top: 3rem; }
.mx-auto { margin-left: auto; margin-right: auto; }
.px-8 { padding-left: 2rem; padding-right: 2rem; }
.block { display: block; }
.w-12 { width: 3rem; }
.h-1 { height: 0.25rem; }

/* Brand Colors Utilities */
.text-brand-indigo { color: var(--primary); }
.text-brand-red { color: var(--tertiary); }
.bg-brand-red { background-color: var(--tertiary); }
.text-brand-cyan { color: var(--secondary); }

/* Badge style as requested */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--secondary);
  background: rgba(0, 150, 225, 0.1);
  padding: 0.4rem 1rem;
  border-radius: 100px;
  margin-bottom: 1.5rem;
}

/* =====================================================
   CONTACT PAGE STYLES
   ===================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 4rem;
  align-items: flex-start;
}

.form-card {
  background: #ffffff;
  padding: 3rem;
  border-radius: 20px;
  box-shadow: var(--shadow-md);
}

.form-group {
  margin-bottom: 2rem;
}

.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.form-input, 
.form-select, 
.form-textarea {
  width: 100%;
  padding: 1rem 1.25rem;
  background: #ffffff;
  border: 2px solid rgba(226, 232, 240, 0.2); /* outline-variant 20% opacity */
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 1rem;
  color: var(--text);
  transition: all var(--transition);
  outline: none;
}

.form-input:focus, 
.form-select:focus, 
.form-textarea:focus {
  border-color: var(--secondary);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(0, 150, 225, 0.1);
}

.form-input.error, 
.form-textarea.error,
.form-select.error {
  border-color: var(--tertiary) !important;
}

.field-error-msg {
  color: var(--tertiary);
  font-size: 0.75rem;
  font-weight: 600;
  margin-top: 0.5rem;
  display: none;
}

.ambient-shadow {
  box-shadow: 0 24px 40px -10px rgba(45, 30, 120, 0.08);
}

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

.info-card {
  background: #ffffff;
  padding: 2.5rem;
  border-radius: 16px;
  border-left: 4px solid var(--secondary);
}

.info-card h3 {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 1.5rem;
}

.info-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.info-item .material-symbols-outlined {
  color: var(--secondary);
  font-size: 1.5rem;
}

.info-item .content {
  font-size: 0.9375rem;
  color: var(--text-muted);
}

.info-item strong {
  display: block;
  color: var(--primary);
  margin-bottom: 2px;
}

/* Spinner for loading state */
.spinner {
  width: 20px;
  height: 20px;
  border: 3px solid rgba(255,255,255,0.3);
  border-radius: 50%;
  border-top-color: #fff;
  animation: spin 1s ease-in-out infinite;
  display: none;
}

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

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

@media (max-width: 768px) {
  .form-card, .info-card {
    padding: 2rem 1.5rem;
  }
}

/* =====================================================
   COOKIE BANNER
   ===================================================== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(12px);
  padding: 1.5rem;
  border-top: 1px solid var(--border);
  box-shadow: 0 -10px 40px rgba(45, 30, 120, 0.12);
  z-index: 10000;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  transform: translateY(100%);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.cookie-banner.show {
  transform: translateY(0);
}

.cookie-text {
  font-size: 0.875rem;
  color: var(--text-muted);
  text-align: center;
  max-width: 800px;
  line-height: 1.5;
}

.cookie-text a {
  color: var(--primary);
  font-weight: 700;
  text-decoration: underline;
}

.cookie-btns {
  display: flex;
  gap: 1rem;
}

@media (min-width: 768px) {
  .cookie-banner {
    flex-direction: row;
    justify-content: center;
    padding: 1.25rem 2rem;
    gap: 3rem;
  }
  .cookie-text {
    text-align: left;
  }
}

/* =====================================================
   FOOTER CREDITS
   ===================================================== */
.footer-credit-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 2.5rem;
  opacity: 0.4;
  font-size: 0.7rem;
  font-weight: 500;
  color: #fff !important;
  text-decoration: none;
  transition: opacity var(--transition), transform var(--transition);
}

.footer-credit-link:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

.footer-credit-img {
  height: 12px;
  width: auto;
}

