/* ============================================
   ENJOY MANGALIA – Main Stylesheet
   Colors: Red #CC1122, Dark #1A1A2E, White #fff
   ============================================ */

:root {
  --red: #CC1122;
  --red-dark: #a00d1a;
  --red-light: #e8192c;
  --dark: #1A1A2E;
  --dark-2: #0f0f1a;
  --dark-3: #242438;
  --white: #ffffff;
  --gray-100: #f8f8f8;
  --gray-200: #f0f0f0;
  --gray-300: #e0e0e0;
  --gray-500: #888888;
  --gray-700: #444444;
  --text: #1a1a2e;
  --wa-green: #25D366;
  --wa-dark: #128C7E;
  --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
  --font-head: 'Oswald', 'Inter', sans-serif;
  --radius: 12px;
  --radius-sm: 8px;
  --shadow: 0 4px 24px rgba(0,0,0,0.10);
  --shadow-lg: 0 8px 48px rgba(0,0,0,0.16);
  --transition: all 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: var(--font-sans);
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-padding { padding: 80px 0; }

/* === SECTION HEADERS === */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}
.section-header h2 {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 12px;
  line-height: 1.2;
}
.section-header p {
  font-size: 1.05rem;
  color: var(--gray-700);
  max-width: 600px;
  margin: 0 auto;
}
.section-label {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 14px;
}
.section-header--light h2 { color: var(--white); }
.section-header--light p { color: rgba(255,255,255,0.75); }

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
  white-space: nowrap;
  cursor: pointer;
  border: 2px solid transparent;
  text-decoration: none;
}
.btn-primary {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}
.btn-primary:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(204,17,34,0.4);
}
.btn-wa {
  background: var(--wa-green);
  color: var(--white);
  border-color: var(--wa-green);
}
.btn-wa:hover {
  background: var(--wa-dark);
  border-color: var(--wa-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37,211,102,0.4);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--dark);
  border-color: var(--white);
}
.btn-sm { padding: 9px 20px; font-size: 0.88rem; }
.btn-lg { padding: 16px 36px; font-size: 1.05rem; }

/* === WHATSAPP FLOAT === */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 24px;
  width: 58px;
  height: 58px;
  background: var(--wa-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  z-index: 999;
  box-shadow: 0 4px 20px rgba(37,211,102,0.5);
  transition: var(--transition);
}
.whatsapp-float svg { width: 30px; height: 30px; }
.whatsapp-float:hover {
  background: var(--wa-dark);
  transform: scale(1.1);
}
.whatsapp-float.pulse {
  animation: waPulse 2s infinite;
}
@keyframes waPulse {
  0% { box-shadow: 0 0 0 0 rgba(37,211,102,0.6); }
  70% { box-shadow: 0 0 0 14px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

/* === BACK TO TOP === */
.back-to-top {
  position: fixed;
  bottom: 98px;
  right: 28px;
  width: 42px;
  height: 42px;
  background: var(--red);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 700;
  z-index: 998;
  opacity: 0;
  transform: translateY(20px);
  transition: var(--transition);
  box-shadow: 0 3px 12px rgba(204,17,34,0.4);
}
.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
}
.back-to-top:hover { background: var(--red-dark); transform: translateY(-3px); }

/* === HEADER === */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 16px 0;
  background: transparent;
  transition: var(--transition);
}
.site-header.scrolled {
  background: var(--dark);
  padding: 10px 0;
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.logo-img {
  width: 52px;
  height: 52px;
  object-fit: cover;
  border-radius: 50%;
  border: none;
  flex-shrink: 0;
}
.logo-text { display: none; }
.logo-text strong { display: none; }
.logo-text small { display: none; }

/* Nav */
.main-nav ul {
  display: flex;
  align-items: center;
  gap: 4px;
}
.main-nav ul li a {
  display: block;
  padding: 8px 14px;
  color: rgba(255,255,255,0.9);
  font-weight: 500;
  font-size: 0.93rem;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.main-nav ul li a:hover,
.main-nav ul li a.active {
  color: var(--white);
  background: rgba(255,255,255,0.12);
}
.nav-cta {
  background: var(--red) !important;
  color: var(--white) !important;
  font-weight: 700 !important;
  border-radius: var(--radius-sm) !important;
}
.nav-cta:hover {
  background: var(--red-dark) !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(204,17,34,0.4);
}

/* Dropdown */
.has-dropdown { position: relative; }
.dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--dark);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  min-width: 240px;
  padding: 8px;
  box-shadow: var(--shadow-lg);
  z-index: 50;
}
.dropdown li a {
  padding: 10px 14px !important;
  font-size: 0.9rem !important;
  border-radius: var(--radius-sm) !important;
  display: block;
}
.has-dropdown:hover .dropdown { display: block; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  z-index: 110;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* === HERO === */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,26,46,0.88) 0%, rgba(204,17,34,0.55) 60%, rgba(26,26,46,0.75) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding: 120px 0 60px;
}
.hero-badge {
  display: inline-block;
  background: rgba(204,17,34,0.9);
  color: white;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 20px;
  margin-bottom: 20px;
}
.hero h1 {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 6vw, 4rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.3);
}
.hero p {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: rgba(255,255,255,0.88);
  margin-bottom: 36px;
  max-width: 540px;
}
.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 36px;
}
.hero-contact-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  color: rgba(255,255,255,0.8);
  font-size: 0.9rem;
}
.hero-contact-strip a {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.85);
  transition: color 0.2s;
}
.hero-contact-strip a svg { width: 16px; height: 16px; }
.hero-contact-strip a:hover { color: white; }
.hero-contact-strip .separator { color: rgba(255,255,255,0.3); }

/* === STATS BAR === */
.stats-bar {
  background: var(--dark);
  padding: 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 3px solid var(--red);
}
.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 32px 20px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.stat-item:last-child { border-right: none; }
.stat-item strong {
  font-family: var(--font-head);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--red);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-item span {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* === SERVICES GRID === */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--white);
  border: 1.5px solid var(--gray-300);
  border-radius: var(--radius);
  padding: 32px 28px;
  text-decoration: none;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.service-card:hover {
  border-color: var(--red);
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(204,17,34,0.15);
}
.service-card--red {
  background: var(--red);
  border-color: var(--red);
  color: white;
}
.service-card--red:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
}
.service-icon {
  width: 60px;
  height: 60px;
  background: rgba(204,17,34,0.1);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  flex-shrink: 0;
}
.service-icon svg { width: 28px; height: 28px; }
.service-card--red .service-icon { background: rgba(255,255,255,0.2); color: white; }
.service-card h3 {
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 4px;
}
.service-card--red h3 { color: white; }
.service-card p {
  font-size: 0.9rem;
  color: var(--gray-700);
  line-height: 1.6;
  flex: 1;
}
.service-card--red p { color: rgba(255,255,255,0.85); }
.card-link {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--red);
  display: block;
  margin-top: auto;
}
.service-card--red .card-link { color: rgba(255,255,255,0.9); }
.service-card:hover .card-link { color: var(--red-dark); }
.service-card--red:hover .card-link { color: white; }

/* === ABOUT SECTION === */
.about-section {
  position: relative;
  background-size: cover;
  background-position: center;
  padding: 100px 0;
}
.about-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26,26,46,0.88);
}
.about-inner { position: relative; z-index: 2; }
.about-content {
  max-width: 640px;
}
.about-content h2 {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 700;
  color: var(--white);
  margin: 12px 0 20px;
  line-height: 1.2;
}
.about-content > p {
  color: rgba(255,255,255,0.82);
  font-size: 1.05rem;
  margin-bottom: 28px;
}
.about-features {
  list-style: none;
  margin-bottom: 36px;
}
.about-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.85);
  padding: 6px 0;
  font-size: 0.95rem;
}
.about-features li svg {
  width: 18px;
  height: 18px;
  color: var(--red);
  flex-shrink: 0;
}

/* === CTA SECTION === */
.cta-section { background: var(--gray-100); }
.cta-inner {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}
.cta-inner h2 {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 14px;
}
.cta-inner p {
  color: var(--gray-700);
  font-size: 1.05rem;
  margin-bottom: 36px;
}
.cta-btns {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

/* === PAGE HERO === */
.page-hero {
  position: relative;
  min-height: 380px;
  display: flex;
  align-items: flex-end;
  background-size: cover;
  background-position: center;
  background-color: var(--dark);
}
.page-hero--short { min-height: 280px; }
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(26,26,46,0.7) 0%, rgba(204,17,34,0.4) 50%, rgba(26,26,46,0.9) 100%);
}
.page-hero-content {
  position: relative;
  z-index: 2;
  padding: 100px 0 60px;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 16px;
}
.breadcrumb a { color: rgba(255,255,255,0.65); }
.breadcrumb a:hover { color: white; }
.breadcrumb span { color: rgba(255,255,255,0.4); }
.page-hero-content h1 {
  font-family: var(--font-head);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
  line-height: 1.2;
}
.page-hero-content p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.82);
  max-width: 580px;
}

/* === SERVICE DETAIL === */
.service-detail {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 48px;
  align-items: start;
  padding: 56px 0;
  border-bottom: 1px solid var(--gray-300);
}
.service-detail:last-child { border-bottom: none; }
.service-detail--reverse { grid-template-columns: 1fr 160px; }
.service-detail--reverse .service-detail-icon { order: 2; }
.service-detail--reverse .service-detail-content { order: 1; }
.service-detail-icon {
  width: 100%;
  aspect-ratio: 1;
  background: rgba(204,17,34,0.1);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  background-size: cover;
  background-position: center;
  position: relative;
}
.service-detail-icon::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(26,26,46,0.08);
  border-radius: var(--radius);
}
.service-detail-icon svg {
  width: 52px;
  height: 52px;
  position: relative;
  z-index: 1;
}
.service-detail-content h2 {
  font-family: var(--font-head);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 14px;
}
.service-detail-content p {
  color: var(--gray-700);
  font-size: 1.02rem;
  margin-bottom: 20px;
  line-height: 1.7;
}
.service-list {
  list-style: none;
  margin-bottom: 28px;
}
.service-list li {
  padding: 7px 0 7px 22px;
  position: relative;
  color: var(--gray-700);
  font-size: 0.95rem;
  border-bottom: 1px solid var(--gray-200);
}
.service-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--red);
  font-weight: 700;
}

/* === INSURANCE GRID === */
.insurance-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.insurance-card {
  background: var(--white);
  border: 1.5px solid var(--gray-300);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
}
.insurance-card:hover {
  border-color: var(--red);
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(204,17,34,0.15);
}
.insurance-card--highlight {
  background: var(--dark);
  border-color: var(--dark);
  color: white;
}
.insurance-icon {
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gray-100);
  color: var(--red);
}
.insurance-icon svg { width: 40px; height: 40px; }
.insurance-icon--red { background: var(--red); color: white; }
.insurance-icon--white { background: rgba(255,255,255,0.1); color: white; }
.insurance-body { padding: 24px; }
.insurance-body h3 {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 10px;
}
.insurance-card--highlight .insurance-body h3 { color: white; }
.insurance-body p {
  font-size: 0.9rem;
  color: var(--gray-700);
  margin-bottom: 14px;
  line-height: 1.6;
}
.insurance-card--highlight .insurance-body p { color: rgba(255,255,255,0.75); }
.insurance-body ul {
  margin-bottom: 20px;
}
.insurance-body ul li {
  padding: 5px 0 5px 16px;
  font-size: 0.88rem;
  color: var(--gray-700);
  position: relative;
}
.insurance-body ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--red);
  font-weight: 700;
}
.insurance-card--highlight .insurance-body ul li { color: rgba(255,255,255,0.8); }
.insurance-card--highlight .insurance-body ul li::before { color: var(--wa-green); }

/* === WHY US === */
.bg-dark { background: var(--dark); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.why-item {
  text-align: center;
  padding: 32px 20px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  transition: var(--transition);
}
.why-item:hover {
  border-color: rgba(204,17,34,0.5);
  background: rgba(204,17,34,0.05);
}
.why-icon { font-size: 2.5rem; margin-bottom: 14px; }
.why-item h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 8px;
}
.why-item p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
}

/* === CONTACT === */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.contact-info h2,
.contact-map-col h2 {
  font-family: var(--font-head);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 28px;
}
.contact-card {
  display: flex;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--gray-200);
}
.contact-card:last-of-type { border-bottom: none; }
.contact-card-icon {
  width: 44px;
  height: 44px;
  background: var(--red);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  flex-shrink: 0;
}
.contact-card-icon svg { width: 22px; height: 22px; }
.contact-card h4 {
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 4px;
}
.contact-card p, .contact-card a {
  color: var(--gray-700);
  font-size: 0.93rem;
  line-height: 1.5;
}
.contact-phone {
  font-size: 1.3rem !important;
  font-weight: 700 !important;
  color: var(--red) !important;
  display: block;
  margin-bottom: 10px;
}
.contact-action-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}
.link-red { color: var(--red); font-weight: 500; }
.link-red:hover { color: var(--red-dark); }
.wa-oferta-box {
  margin-top: 28px;
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-3) 100%);
  border-radius: var(--radius);
  padding: 28px;
  text-align: center;
}
.wa-oferta-box h3 {
  color: white;
  font-family: var(--font-head);
  font-size: 1.3rem;
  margin-bottom: 10px;
}
.wa-oferta-box p {
  color: rgba(255,255,255,0.7);
  font-size: 0.92rem;
  margin-bottom: 20px;
}
.map-wrapper { border-radius: var(--radius); overflow: hidden; margin-bottom: 16px; }
.map-address-box {
  display: flex;
  gap: 12px;
  padding: 16px;
  background: var(--gray-100);
  border-radius: var(--radius-sm);
  align-items: flex-start;
}
.map-address-box svg { width: 22px; height: 22px; color: var(--red); flex-shrink: 0; margin-top: 2px; }
.map-address-box strong { display: block; font-weight: 600; color: var(--dark); }
.map-address-box p { font-size: 0.9rem; color: var(--gray-700); margin: 2px 0 6px; }

/* === ABOUT PAGE === */
.about-page-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-page-text .section-label { margin-bottom: 12px; }
.about-page-text h2 {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 20px;
}
.about-page-text p {
  color: var(--gray-700);
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 16px;
}
.about-page-text h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--dark);
}
.about-img-stack { position: relative; }
.about-img { border-radius: var(--radius); }
.about-img-1 { width: 100%; }
.about-img-2 {
  width: 65%;
  position: absolute;
  bottom: -24px;
  right: -24px;
  border: 4px solid white;
  box-shadow: var(--shadow-lg);
}

/* === VALUES GRID === */
.bg-light-gray { background: var(--gray-100); }
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.value-card {
  background: white;
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.value-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.value-icon { font-size: 2.5rem; margin-bottom: 14px; }
.value-card h4 {
  font-weight: 600;
  font-size: 1rem;
  color: var(--dark);
  margin-bottom: 10px;
}
.value-card p { font-size: 0.9rem; color: var(--gray-700); line-height: 1.6; }

/* Stats Large */
.stats-section { background: var(--dark); }
.stats-grid-large {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat-large {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 48px 20px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.stat-large:last-child { border-right: none; }
.stat-large strong {
  font-family: var(--font-head);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--red);
  margin-bottom: 8px;
  line-height: 1;
}
.stat-large span {
  color: rgba(255,255,255,0.6);
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* === FOOTER === */
.site-footer { background: var(--dark-2); }
.footer-top { padding: 72px 0 48px; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 2fr;
  gap: 48px;
}
.footer-col h3 {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 600;
  color: white;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--red);
  display: inline-block;
}
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--red); }
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  text-decoration: none;
}
.footer-logo img {
  width: 52px;
  height: 52px;
  object-fit: cover;
  border-radius: 50%;
  border: none;
}
.footer-logo span {
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 700;
  color: white;
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.footer-logo small { font-size: 0.7rem; color: rgba(255,255,255,0.5); text-transform: uppercase; }
.footer-brand p {
  color: rgba(255,255,255,0.55);
  font-size: 0.88rem;
  line-height: 1.7;
  margin-bottom: 20px;
  max-width: 280px;
}
.footer-social {
  display: flex;
  gap: 10px;
}
.footer-social a {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.08);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  transition: var(--transition);
}
.footer-social a svg { width: 18px; height: 18px; }
.footer-social a:hover { background: var(--red); color: white; }
.contact-list { list-style: none; margin-bottom: 16px; }
.contact-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 7px 0;
  color: rgba(255,255,255,0.6);
  font-size: 0.88rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.contact-list li svg { width: 16px; height: 16px; color: var(--red); flex-shrink: 0; margin-top: 2px; }
.contact-list li a { color: rgba(255,255,255,0.6); }
.contact-list li a:hover { color: var(--red); }
.footer-cta-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}
.btn-footer-call, .btn-footer-wa {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 9px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 600;
  color: white;
  transition: var(--transition);
  text-decoration: none;
}
.btn-footer-call svg, .btn-footer-wa svg { width: 14px; height: 14px; }
.btn-footer-call { background: var(--red); }
.btn-footer-call:hover { background: var(--red-dark); }
.btn-footer-wa { background: var(--wa-green); }
.btn-footer-wa:hover { background: var(--wa-dark); }
.footer-bottom {
  background: rgba(0,0,0,0.35);
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-bottom p {
  color: rgba(255,255,255,0.4);
  font-size: 0.82rem;
}
.footer-links a {
  color: rgba(255,255,255,0.4);
  font-size: 0.82rem;
}
.footer-links a:hover { color: var(--red); }

/* === AOS ANIMATIONS === */
.aos-init {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.aos-animate {
  opacity: 1 !important;
  transform: translateY(0) !important;
}


/* === SERVICES NAV BAR === */
.services-nav-bar {
  background: var(--dark);
  border-bottom: 3px solid var(--red);
  position: sticky;
  top: 80px;
  z-index: 50;
}
.services-nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.services-nav-links a {
  display: inline-block;
  padding: 14px 20px;
  color: rgba(255,255,255,0.75);
  font-size: 0.88rem;
  font-weight: 500;
  white-space: nowrap;
  transition: var(--transition);
  border-right: 1px solid rgba(255,255,255,0.08);
  text-decoration: none;
}
.services-nav-links a:last-child { border-right: none; }
.services-nav-links a:hover {
  color: var(--white);
  background: rgba(204,17,34,0.2);
}


/* =============================================
   RESPONSIVE / MOBILE FIRST
   ============================================= */

/* Tablet ≤ 1100px */
@media (max-width: 1100px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .insurance-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid-large { grid-template-columns: repeat(2, 1fr); }
  .stat-large { border-right: 1px solid rgba(255,255,255,0.08); border-bottom: 1px solid rgba(255,255,255,0.08); }
}

/* Mobile ≤ 768px */
@media (max-width: 768px) {
  .services-nav-bar { top: 70px; }
  .services-nav-links a { padding: 12px 14px; font-size: 0.82rem; }

  .section-padding { padding: 56px 0; }
  .container { padding: 0 16px; }

  /* Header Mobile */
  .hamburger { display: flex; }
  .main-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(320px, 90vw);
    height: 100vh;
    background: var(--dark);
    z-index: 105;
    padding: 80px 20px 40px;
    transition: right 0.35s cubic-bezier(0.4,0,0.2,1);
    overflow-y: auto;
    box-shadow: -8px 0 32px rgba(0,0,0,0.4);
  }
  .main-nav.open { right: 0; }
  .main-nav ul { flex-direction: column; gap: 4px; }
  .main-nav ul li { width: 100%; }
  .main-nav ul li a {
    padding: 13px 16px;
    font-size: 1.05rem;
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }
  .dropdown {
    display: none;
    position: static;
    border: none;
    background: rgba(255,255,255,0.05);
    border-radius: var(--radius-sm);
    padding: 4px;
    margin-top: 4px;
  }
  .has-dropdown.open .dropdown { display: block; }
  .nav-cta { margin-top: 8px !important; }
  /* Logo pe mobil – circular 60px */
  .logo-img { width: 60px !important; height: 60px !important; object-fit: cover; border-radius: 50% !important; border: none !important; }

  /* Hero Mobile */
  .hero { min-height: 100svh; }
  .hero-content { padding: 100px 0 40px; }
  .hero h1 { font-size: clamp(1.8rem, 7vw, 2.8rem); }
  .hero-btns { flex-direction: column; }
  .hero-btns .btn { width: 100%; justify-content: center; }
  .hero-contact-strip { font-size: 0.82rem; flex-direction: column; align-items: flex-start; gap: 8px; }
  .hero-contact-strip .separator { display: none; }

  /* Stats */
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item { border-right: 1px solid rgba(255,255,255,0.08); }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(3) { border-top: 1px solid rgba(255,255,255,0.08); }

  /* Services */
  .services-grid { grid-template-columns: 1fr; gap: 16px; }
  .insurance-grid { grid-template-columns: 1fr; }

  /* Service Detail */
  .service-detail,
  .service-detail--reverse {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .service-detail--reverse .service-detail-icon { order: unset; }
  .service-detail--reverse .service-detail-content { order: unset; }
  .service-detail-icon { width: 80px; height: 80px; }

  /* Why Grid */
  .why-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .why-item { padding: 20px 14px; }

  /* Contact */
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-action-btns { flex-direction: column; }
  .contact-action-btns .btn { width: 100%; justify-content: center; }
  .cta-btns { flex-direction: column; align-items: center; }
  .cta-btns .btn { width: 100%; max-width: 320px; justify-content: center; }

  /* About Page */
  .about-page-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-img-2 { position: static; width: 100%; margin-top: 12px; }
  .about-img-stack { display: flex; flex-direction: column; gap: 12px; }

  /* Values */
  .values-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .value-card { padding: 20px 16px; }

  /* Stats Large */
  .stats-grid-large { grid-template-columns: 1fr 1fr; }
  .stat-large { padding: 32px 16px; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom .container { flex-direction: column; text-align: center; }
}

/* Small Mobile ≤ 480px */
@media (max-width: 480px) {
  .values-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .stats-grid-large { grid-template-columns: 1fr 1fr; }
  .wa-oferta-box { padding: 20px 16px; }
  .page-hero { min-height: 260px; }
  .page-hero-content { padding: 80px 0 40px; }
}

