/* ===== VARIABLES ===== */ 
:root {
  --primary: #1E3A5F;
  --secondary: #4A9B8C;
  --accent: #2EC4B6;
  --light: #F5F7FA;
  --dark: #0F172A;
  --radius: 12px;

  --shadow-soft: 0 10px 25px rgba(0,0,0,0.05);
  --shadow-medium: 0 15px 35px rgba(0,0,0,0.08);
  --shadow-strong: 0 20px 45px rgba(0,0,0,0.12);
}

/* ===== RESET ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ===== BASE ===== */
html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  font-family: 'Poppins', sans-serif;
  background: var(--light);
  color: var(--dark);
  line-height: 1.6;
  font-size: 15px;
  padding-top: 80px;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3 {
  font-weight: 700;
  color: var(--primary);
  line-height: 1.25;
  margin-bottom: 8px;
}

p {
  margin-bottom: 15px;
  color: #475569;
  font-size: 14.5px;
  max-width: 650px;
}

/* ===== LINKS ===== */
a {
  transition: 0.2s ease;
  text-decoration: none;
}

a:hover {
  opacity: 0.8;
}

/* ===== CONTAINER ===== */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== HEADER ===== */
header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255,255,255,0.75);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
}

/* ===== LOGO ===== */
.logo-container {
  display: flex;
  align-items: center;
  gap: 16px;
}

.logo-container img {
  height: 70px;
}

.brand-title {
  font-size: 16px;
  font-weight: 800;
  color: var(--primary);
}

/* ===== NAV ===== */
.nav-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
}

nav {
  display: flex;
  gap: 20px;
}

nav a {
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
}

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

/* ===== HAMBURGER ===== */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.hamburger span {
  height: 3px;
  width: 25px;
  background: var(--primary);
  margin: 4px 0;
  border-radius: 2px;
  transition: 0.3s;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translateY(8px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translateY(-8px);
}

/* ===== OVERLAY ===== */
.menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  opacity: 0;
  pointer-events: none;
  transition: 0.3s;
  z-index: 900;
}

.menu-overlay.active {
  opacity: 1;
  pointer-events: all;
}

/* ===== HERO ===== */
.hero {
  padding: 60px 0 60px;
}

.hero-content {
  margin-top: -10px;
}

/* ===== SECTIONS ===== */
section {
  padding-top: 35px;
  padding-bottom: 55px;
}

/* ===== SECTION TITLE ===== */
.section-title {
  text-align: center;
  margin-bottom: 20px;
}

.section-title h2 {
  display: inline-block;
  position: relative;
  padding-bottom: 6px;
  margin-bottom: 6px;
  margin-top: 0;
}

.section-title h2::after {
  content: "";
  width: 60%;
  height: 3px;
  background: var(--secondary);
  position: absolute;
  left: 20%;
  bottom: 0;
  border-radius: 2px;
}

/* ===== CARDS ===== */
.card {
  background: #ffffff;
  border-radius: var(--radius);
  padding: 22px;
  border: 1px solid #e2e8f0;
  transition: 0.25s ease;
}

.card:hover {
  border-color: var(--secondary);
  transform: translateY(-3px);
}

/* ===== IMAGES ===== */
img {
  max-width: 100%;
  display: block;
  border-radius: var(--radius);
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 12px 20px;
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  text-align: center;
  white-space: nowrap;
  transition: all 0.25s ease;
}

.btn-primary {
  background: linear-gradient(135deg, var(--secondary), var(--accent));
  color: white;
}

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

.btn-primary:hover,
.btn-dark:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
}

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

/* ===== NAV BUTTONS ===== */
.nav-buttons {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.nav-buttons .nav-btn {
  flex: 1 1 48%;
  text-align: center;
  font-weight: 700;
  padding: 12px 18px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff;
  box-shadow: var(--shadow-soft);
  transition: all 0.25s ease;
  min-width: 140px;
}

.nav-buttons .nav-btn:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, var(--secondary), var(--accent));
  box-shadow: var(--shadow-medium);
}

/* ===== CONTACT FORM PRO ===== */
.contact-box {
  max-width: 750px;
  margin: 0 auto;
  background: #ffffff;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.12);
  border: 1px solid rgba(0,0,0,0.05);
  position: relative;
  overflow: hidden;
  transition: 0.3s ease;
}

.contact-box:hover {
  transform: translateY(-3px);
  box-shadow: 0 30px 70px rgba(0,0,0,0.15);
}

.contact-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(135deg, var(--secondary), var(--accent));
}

.contact-box input,
.contact-box textarea,
.contact-box select {
  width: 100%;
  padding: 15px 16px;
  margin-bottom: 16px;
  border-radius: 10px;
  border: 1px solid #d1d9e6;
  font-size: 14px;
  background: #f9fbfd;
  transition: all 0.25s ease;
}
.contact-box input:focus,
.contact-box textarea:focus,
.contact-box select:focus {
  outline: none;
  border-color: var(--secondary);
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(74,155,140,0.2);
}

.contact-box textarea {
  min-height: 140px;
  resize: vertical;
}

.contact-box .btn {
  width: 100%;
  padding: 15px;
  font-size: 15px;
  font-weight: 700;
  background: linear-gradient(135deg, var(--secondary), var(--accent));
  box-shadow: 0 15px 35px rgba(46,196,182,0.35);
}

.contact-box .btn:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 20px 45px rgba(46,196,182,0.45);
}

/* ===== FLOAT BUTTONS ===== */
.float-container {
  position: fixed;
  bottom: 20px;
  right: 15px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 999;
}

.float-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.float-dark { background: var(--primary); }
.float-primary { background: linear-gradient(135deg, var(--secondary), var(--accent)); }
.float-whatsapp { background: #25D366; }

}


/* ===== TEXT CENTER FIX (ADDED) ===== */
body {
  text-align: center;
}

.container {
  text-align: center;
}

p {
  margin-left: auto;
  margin-right: auto;
}

nav {
  justify-content: center;
}
/* =========================================
   CONTACT FORM ALIGNMENT FIX
========================================= */

/* =========================================
   CONTACT FORM ALIGNMENT FIX
========================================= */

.contact-form {
  text-align: left;
}

.contact-form input,
.contact-form textarea,
.contact-form label,
.contact-form small,
.contact-form p {
  text-align: left;
}
/* ===== 🔥 INTERACTIVITY UPGRADE (SAFE PATCH) ===== */

/* Cards más dinámicas */
.card {
  transition: all 0.25s ease;
}

.card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 20px 45px rgba(0,0,0,0.12);
}

/* Botones más visibles */
.btn-primary {
  box-shadow: 0 10px 25px rgba(74,155,140,0.3);
}

.btn-primary:hover,
.btn-dark:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 20px 40px rgba(74,155,140,0.4);
}

/* Botones flotantes */
.float-btn {
  transition: transform 0.2s ease;
}

.float-btn:hover {
  transform: scale(1.1);
}

/* Links dentro de cards no cambian color */
.card a {
  color: inherit;
}
/* ===== SECTION BOX (CAJAS PRO) ===== */
.section-box {
  background: #ffffff;
  padding: 25px;
  border-radius: 16px;
  box-shadow: var(--shadow-soft);
  border: 1px solid #e2e8f0;
  transition: all 0.25s ease;
}

.section-box:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-medium);
}

/* Para imágenes dentro de caja */
.section-box img {
  border-radius: 12px;
}

/* CONTENEDOR */
.lang-switch {
  position: relative;
  display: flex;
  align-items: center;
  background: #e2e8f0;
  padding: 2px;
  border-radius: 20px;
  margin-left: 10px;
  overflow: hidden;
}

/* LINKS */
.lang-switch a {
  flex: 1;
  text-align: center;
  text-decoration: none;
  color: #64748b;
  padding: 4px 10px;
  font-size: 12px;
  font-weight: 600;
  z-index: 2;
  transition: color 0.3s ease;
}

/* ACTIVO */
.lang-switch a.active {
  color: #ffffff;
}

/* SLIDER */
.lang-switch::before {
  content: "";
  position: absolute;
  top: 2px;
  left: 2px;
  width: 50%;
  height: calc(100% - 4px);
  background: linear-gradient(135deg, #4A9B8C, #2f7c70);
  border-radius: 16px;
  transition: transform 0.3s ease;
  z-index: 1;
}

/* CUANDO ES FR */
.lang-switch.fr-active::before {
  transform: translateX(100%);
}

/* HOVER */
.lang-switch a:hover {
  color: #1E3A5F;
}

/* OCULTAR DIVIDER */
.lang-switch span {
  display: none;
}
/* ============================= */
/* 🔷 HERO PREMIUM CORPORATIVO */
/* ============================= */

.hero {
  position: relative;
  background: linear-gradient(180deg, #f8fafc 0%, #eef2f7 100%);
  padding: 100px 0 70px;
  overflow: hidden;
}

/* EFECTO DE PROFUNDIDAD */
.hero::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -120px;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(74,155,140,0.18), transparent 70%);
  z-index: 0;
}

/* CONTENIDO ENCIMA */
.hero .hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  margin: auto;
  animation: fadeUp 0.7s ease;
}

/* ============================= */
/* 🟢 HEADLINE (FORZADO) */
/* ============================= */

.hero .hero-content h1 {
  font-size: 46px !important;
  line-height: 1.2;
  font-weight: 700;
  color: #1E3A5F;
  margin-bottom: 18px;
  letter-spacing: -0.5px;
}

/* SUBTEXTO (FORZADO) */
.hero .hero-content .hero-sub {
  font-size: 18px !important;
  color: #475569;
  max-width: 720px;
  margin: 0 auto 20px;
  line-height: 1.6;
}

/* TEXTO DE CONFIANZA */
.hero .hero-content p {
  font-size: 15px !important;
  color: #334155;
  margin-top: 12px;
  letter-spacing: 0.3px;
}

/* ============================= */
/* 🔘 BOTONES PREMIUM */
/* ============================= */

.btn {
  border-radius: 10px;
  padding: 12px 22px;
  font-weight: 600;
  transition: all 0.25s ease;
}

/* BOTÓN PRINCIPAL */
.btn-primary {
  background: linear-gradient(135deg, #4A9B8C, #2f7c70);
  color: #fff;
  box-shadow: 0 12px 28px rgba(74,155,140,0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(74,155,140,0.45);
}

/* BOTÓN SECUNDARIO */
.btn-dark {
  background: #1E3A5F;
  color: #fff;
  box-shadow: 0 10px 25px rgba(30,58,95,0.3);
}

.btn-dark:hover {
  transform: translateY(-2px);
  background: #162c49;
}

/* ============================= */
/* ✨ DIVIDER */
/* ============================= */

.divider {
  width: 70px;
  height: 3px;
  background: linear-gradient(90deg, #4A9B8C, transparent);
  margin: 22px auto;
  border-radius: 2px;
}

/* ============================= */
/* 📦 IMAGEN HERO (FORZADA) */
/* ============================= */

.hero img,
.hero-image img {
  border-radius: 20px !important;
  box-shadow: 0 30px 60px rgba(0,0,0,0.2) !important;
  margin-top: 40px;
  transform: scale(1.02);
  transition: all 0.3s ease;
}

/* ============================= */
/* 🚀 FLOAT BUTTONS PREMIUM */
/* ============================= */

.float-container {
  right: 20px;
  bottom: 20px;
  gap: 12px;
}

.float-btn {
  box-shadow: 0 10px 25px rgba(0,0,0,0.25);
  transition: all 0.25s ease;
}

.float-btn:hover {
  transform: translateY(-3px);
}

/* ============================= */
/* 🎯 ANIMACIÓN */
/* ============================= */

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(25px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* ===== DROPDOWN FINAL ===== */

.dropdown {
  position: relative;
}

/* BASE */
.dropdown-menu {
  display: none;
  flex-direction: column;
}

/* DESKTOP */
@media (min-width: 769px) {

  .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
    padding: 10px 0;
    min-width: 220px;
    z-index: 1000;
  }

  .dropdown:hover .dropdown-menu {
    display: block;
  }

}

/* MOBILE */
@media (max-width: 768px) {

  .dropdown-menu {
    display: none;
    position: static;
    background: transparent;
    box-shadow: none;
    padding-left: 10px;
  }

  .dropdown-menu.open {
    display: flex !important;
  }

}
@media (max-width: 768px) {

  /* NAV CONTENEDOR */
  nav {
    position: fixed;
    top: 70px;
    right: -100%;
    width: 85%;
    max-width: 320px;
    height: calc(100vh - 70px);
    background: white;
    flex-direction: column;
    align-items: flex-start;
    padding: 25px;
    gap: 18px;
    transition: 0.3s ease;
    overflow-y: auto;
    z-index: 999;
  }

  nav.active {
    right: 0;
  }

  /* LINKS */
  nav a {
    width: 100%;
    text-align: left;
    font-size: 15px;
  }

  /* DROPDOWN */
  .dropdown {
    width: 100%;
  }

  .dropdown-menu {
    display: none;
    position: static;
    width: 100%;
    padding-left: 10px;
  }

  .dropdown-menu a {
    font-size: 14px;
    padding: 8px 0;
  }

  .dropdown-menu.open {
    display: flex;
  }

}
@media (max-width: 768px) {

  .hamburger {
    display: flex;
    flex-direction: column;
    cursor: pointer;
    z-index: 1001;
  }

}
/* ===== VARIABLES ===== */ 
:root {
  --primary: #1E3A5F;
  --secondary: #4A9B8C;
  --accent: #2EC4B6;
  --light: #F5F7FA;
  --dark: #0F172A;
  --radius: 12px;

  --shadow-soft: 0 10px 25px rgba(0,0,0,0.05);
  --shadow-medium: 0 15px 35px rgba(0,0,0,0.08);
  --shadow-strong: 0 20px 45px rgba(0,0,0,0.12);
}

/* ===== RESET ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ===== BASE ===== */
html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  font-family: 'Poppins', sans-serif;
  background: var(--light);
  color: var(--dark);
  line-height: 1.6;
  font-size: 15px;
  padding-top: 80px;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3 {
  font-weight: 700;
  color: var(--primary);
  line-height: 1.25;
  margin-bottom: 8px;
}

p {
  margin-bottom: 15px;
  color: #475569;
  font-size: 14.5px;
  max-width: 650px;
}

/* ===== LINKS ===== */
a {
  transition: 0.2s ease;
  text-decoration: none;
}

a:hover {
  opacity: 0.8;
}

/* ===== CONTAINER ===== */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== HEADER ===== */
header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255,255,255,0.75);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
}

/* ===== LOGO ===== */
.logo-container {
  display: flex;
  align-items: center;
  gap: 16px;
}

.logo-container img {
  height: 70px;
}

.brand-title {
  font-size: 16px;
  font-weight: 800;
  color: var(--primary);
}

/* ===== NAV ===== */
.nav-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
}

nav {
  display: flex;
  gap: 20px;
}

nav a {
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
}

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

/* ===== HAMBURGER ===== */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.hamburger span {
  height: 3px;
  width: 25px;
  background: var(--primary);
  margin: 4px 0;
  border-radius: 2px;
  transition: 0.3s;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translateY(8px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translateY(-8px);
}

/* ===== OVERLAY ===== */
.menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  opacity: 0;
  pointer-events: none;
  transition: 0.3s;
  z-index: 900;
}

.menu-overlay.active {
  opacity: 1;
  pointer-events: all;
}

/* ===== HERO ===== */
.hero {
  padding: 60px 0 60px;
}

.hero-content {
  margin-top: -10px;
}

/* ===== SECTIONS ===== */
section {
  padding-top: 35px;
  padding-bottom: 55px;
}

/* ===== SECTION TITLE ===== */
.section-title {
  text-align: center;
  margin-bottom: 20px;
}

.section-title h2 {
  display: inline-block;
  position: relative;
  padding-bottom: 6px;
  margin-bottom: 6px;
  margin-top: 0;
}

.section-title h2::after {
  content: "";
  width: 60%;
  height: 3px;
  background: var(--secondary);
  position: absolute;
  left: 20%;
  bottom: 0;
  border-radius: 2px;
}

/* ===== CARDS ===== */
.card {
  background: #ffffff;
  border-radius: var(--radius);
  padding: 22px;
  border: 1px solid #e2e8f0;
  transition: 0.25s ease;
}

.card:hover {
  border-color: var(--secondary);
  transform: translateY(-3px);
}

/* ===== IMAGES ===== */
img {
  max-width: 100%;
  display: block;
  border-radius: var(--radius);
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 12px 20px;
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  text-align: center;
  white-space: nowrap;
  transition: all 0.25s ease;
}

.btn-primary {
  background: linear-gradient(135deg, var(--secondary), var(--accent));
  color: white;
}

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

.btn-primary:hover,
.btn-dark:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
}

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

/* ===== NAV BUTTONS ===== */
.nav-buttons {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.nav-buttons .nav-btn {
  flex: 1 1 48%;
  text-align: center;
  font-weight: 700;
  padding: 12px 18px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff;
  box-shadow: var(--shadow-soft);
  transition: all 0.25s ease;
  min-width: 140px;
}

.nav-buttons .nav-btn:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, var(--secondary), var(--accent));
  box-shadow: var(--shadow-medium);
}

/* ===== CONTACT FORM PRO ===== */
.contact-box {
  max-width: 750px;
  margin: 0 auto;
  background: #ffffff;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.12);
  border: 1px solid rgba(0,0,0,0.05);
  position: relative;
  overflow: hidden;
  transition: 0.3s ease;
}

.contact-box:hover {
  transform: translateY(-3px);
  box-shadow: 0 30px 70px rgba(0,0,0,0.15);
}

.contact-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(135deg, var(--secondary), var(--accent));
}

.contact-box input,
.contact-box textarea {
  width: 100%;
  padding: 15px 16px;
  margin-bottom: 16px;
  border-radius: 10px;
  border: 1px solid #d1d9e6;
  font-size: 14px;
  background: #f9fbfd;
  transition: all 0.25s ease;
}

.contact-box input:focus,
.contact-box textarea:focus {
  outline: none;
  border-color: var(--secondary);
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(74,155,140,0.2);
}

.contact-box textarea {
  min-height: 140px;
  resize: vertical;
}

.contact-box .btn {
  width: 100%;
  padding: 15px;
  font-size: 15px;
  font-weight: 700;
  background: linear-gradient(135deg, var(--secondary), var(--accent));
  box-shadow: 0 15px 35px rgba(46,196,182,0.35);
}

.contact-box .btn:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 20px 45px rgba(46,196,182,0.45);
}

/* ===== FLOAT BUTTONS ===== */
.float-container {
  position: fixed;
  bottom: 20px;
  right: 15px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 999;
}

.float-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.float-dark { background: var(--primary); }
.float-primary { background: linear-gradient(135deg, var(--secondary), var(--accent)); }
.float-whatsapp { background: #25D366; }

}


/* ===== TEXT CENTER FIX (ADDED) ===== */
body {
  text-align: center;
}

.container {
  text-align: center;
}

p {
  margin-left: auto;
  margin-right: auto;
}

nav {
  justify-content: center;
}

/* ===== 🔥 INTERACTIVITY UPGRADE (SAFE PATCH) ===== */

/* Cards más dinámicas */
.card {
  transition: all 0.25s ease;
}

.card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 20px 45px rgba(0,0,0,0.12);
}

/* Botones más visibles */
.btn-primary {
  box-shadow: 0 10px 25px rgba(74,155,140,0.3);
}

.btn-primary:hover,
.btn-dark:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 20px 40px rgba(74,155,140,0.4);
}

/* Botones flotantes */
.float-btn {
  transition: transform 0.2s ease;
}

.float-btn:hover {
  transform: scale(1.1);
}

/* Links dentro de cards no cambian color */
.card a {
  color: inherit;
}
/* ===== SECTION BOX (CAJAS PRO) ===== */
.section-box {
  background: #ffffff;
  padding: 25px;
  border-radius: 16px;
  box-shadow: var(--shadow-soft);
  border: 1px solid #e2e8f0;
  transition: all 0.25s ease;
}

.section-box:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-medium);
}

/* Para imágenes dentro de caja */
.section-box img {
  border-radius: 12px;
}

/* CONTENEDOR */
.lang-switch {
  position: relative;
  display: flex;
  align-items: center;
  background: #e2e8f0;
  padding: 2px;
  border-radius: 20px;
  margin-left: 10px;
  overflow: hidden;
}

/* LINKS */
.lang-switch a {
  flex: 1;
  text-align: center;
  text-decoration: none;
  color: #64748b;
  padding: 4px 10px;
  font-size: 12px;
  font-weight: 600;
  z-index: 2;
  transition: color 0.3s ease;
}

/* ACTIVO */
.lang-switch a.active {
  color: #ffffff;
}

/* SLIDER */
.lang-switch::before {
  content: "";
  position: absolute;
  top: 2px;
  left: 2px;
  width: 50%;
  height: calc(100% - 4px);
  background: linear-gradient(135deg, #4A9B8C, #2f7c70);
  border-radius: 16px;
  transition: transform 0.3s ease;
  z-index: 1;
}

/* CUANDO ES FR */
.lang-switch.fr-active::before {
  transform: translateX(100%);
}

/* HOVER */
.lang-switch a:hover {
  color: #1E3A5F;
}

/* OCULTAR DIVIDER */
.lang-switch span {
  display: none;
}
/* ============================= */
/* 🔷 HERO PREMIUM CORPORATIVO */
/* ============================= */

.hero {
  position: relative;
  background: linear-gradient(180deg, #f8fafc 0%, #eef2f7 100%);
  padding: 100px 0 70px;
  overflow: hidden;
}

/* EFECTO DE PROFUNDIDAD */
.hero::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -120px;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(74,155,140,0.18), transparent 70%);
  z-index: 0;
}

/* CONTENIDO ENCIMA */
.hero .hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  margin: auto;
  animation: fadeUp 0.7s ease;
}

/* ============================= */
/* 🟢 HEADLINE (FORZADO) */
/* ============================= */

.hero .hero-content h1 {
  font-size: 46px !important;
  line-height: 1.2;
  font-weight: 700;
  color: #1E3A5F;
  margin-bottom: 18px;
  letter-spacing: -0.5px;
}

/* SUBTEXTO (FORZADO) */
.hero .hero-content .hero-sub {
  font-size: 18px !important;
  color: #475569;
  max-width: 720px;
  margin: 0 auto 20px;
  line-height: 1.6;
}

/* TEXTO DE CONFIANZA */
.hero .hero-content p {
  font-size: 15px !important;
  color: #334155;
  margin-top: 12px;
  letter-spacing: 0.3px;
}

/* ============================= */
/* 🔘 BOTONES PREMIUM */
/* ============================= */

.btn {
  border-radius: 10px;
  padding: 12px 22px;
  font-weight: 600;
  transition: all 0.25s ease;
}

/* BOTÓN PRINCIPAL */
.btn-primary {
  background: linear-gradient(135deg, #4A9B8C, #2f7c70);
  color: #fff;
  box-shadow: 0 12px 28px rgba(74,155,140,0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(74,155,140,0.45);
}

/* BOTÓN SECUNDARIO */
.btn-dark {
  background: #1E3A5F;
  color: #fff;
  box-shadow: 0 10px 25px rgba(30,58,95,0.3);
}

.btn-dark:hover {
  transform: translateY(-2px);
  background: #162c49;
}

/* ============================= */
/* ✨ DIVIDER */
/* ============================= */

.divider {
  width: 70px;
  height: 3px;
  background: linear-gradient(90deg, #4A9B8C, transparent);
  margin: 22px auto;
  border-radius: 2px;
}

/* ============================= */
/* 📦 IMAGEN HERO (FORZADA) */
/* ============================= */

.hero img,
.hero-image img {
  border-radius: 20px !important;
  box-shadow: 0 30px 60px rgba(0,0,0,0.2) !important;
  margin-top: 40px;
  transform: scale(1.02);
  transition: all 0.3s ease;
}

/* ============================= */
/* 🚀 FLOAT BUTTONS PREMIUM */
/* ============================= */

.float-container {
  right: 20px;
  bottom: 20px;
  gap: 12px;
}

.float-btn {
  box-shadow: 0 10px 25px rgba(0,0,0,0.25);
  transition: all 0.25s ease;
}

.float-btn:hover {
  transform: translateY(-3px);
}

/* ============================= */
/* 🎯 ANIMACIÓN */
/* ============================= */

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(25px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* ===== DROPDOWN FINAL (STABLE + CLEAN UX) ===== */

.dropdown {
  position: relative;
}

/* BASE */
.dropdown-menu {
  display: none;
  flex-direction: column;
}

/* DESKTOP */
@media (min-width: 769px) {

  .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
    padding: 10px 0;
    min-width: 220px;
    z-index: 1000;
  }

  .dropdown:hover .dropdown-menu {
    display: block;
  }

}
/* ===== MOBILE MENU ===== */
@media (max-width: 768px) {

  nav {
    position: fixed;
    top: 70px;
    right: -100%;
    width: 85%;
    max-width: 320px;
    height: calc(100vh - 70px);
    background: white;

    display: flex;
    flex-direction: column;
    align-items: flex-start;

    padding: 25px;
    gap: 18px;

    transition: right 0.3s ease;
    overflow-y: auto;

    z-index: 1000;
  }

  nav.active {
    right: 0;
  }

  nav a {
    width: 100%;
    text-align: left;
    font-size: 15px;
  }

  /* ===== DROPDOWN ===== */

  .dropdown {
    width: 100%;
  }

  .dropdown-menu {
    display: none;
    position: static;
    width: 100%;
    padding-left: 10px;
    background: transparent;
    box-shadow: none;
    flex-direction: column;
  }

  .dropdown-menu a {
    display: block;
    width: 100%;
    font-size: 14px;
    padding: 8px 0;
  }

  /* 🔥 APERTURA CON JS */
  .dropdown.open .dropdown-menu {
    display: flex;
  }

  /* HAMBURGER */
  .hamburger {
    display: flex;
    flex-direction: column;
    cursor: pointer;
    z-index: 1101;
  }

}

/* ===== HAMBURGER ICON ===== */
.hamburger span {
  width: 25px;
  height: 3px;
  background: #1E3A5F;
  margin: 4px 0;
  border-radius: 2px;
}

/* ===== OVERLAY ===== */
.menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 800;
  opacity: 0;
  pointer-events: none;
  transition: 0.3s ease;
}

.menu-overlay.active {
  opacity: 1;
  pointer-events: all;
}

/* ===================================== */
/* 🔥🔥 FIX DEFINITIVO DEL SCROLL 🔥🔥 */
/* ===================================== */

html, body {
  height: auto !important;
  min-height: 100%;
  overflow-x: hidden;
  overflow-y: auto !important;
}

/* 🔥 evita bloqueo por layouts */
body {
  position: relative;
}

/* 🔥 contenedor principal */
main {
  min-height: 100vh;
  height: auto;
}

/* 🔥 evita que se corte contenido */
section,
.hero,
.container {
  height: auto !important;
  min-height: unset !important;
}
@media (max-width: 768px) {

  /* Mostrar siempre el submenu */
  .dropdown .dropdown-menu {
    display: block !important;
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  /* Quitar interacción tipo dropdown */
  .dropdown {
    pointer-events: none;
  }

  /* Permitir clicks en links internos */
  .dropdown-menu a {
    pointer-events: auto;
  }

  /* Opcional: ocultar flecha */
  .arrow {
    display: none;
  }
}

/* ===== FOOTER MOBILE CENTER ===== */
@media (max-width: 768px) {

  footer {
    text-align: center;
    padding: 20px 15px;
  }

  footer .top-row {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
  }

  footer .nav {
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
  }

  footer .contact {
    text-align: center !important;
  }

  footer .bottom-row {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-align: center;
  }

  footer .bottom-links {
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
  }

  footer a {
    display: inline-block;
  }

}



/* ===== DROPDOWN MOBILE PREMIUM (FONDO CLARO) ===== */
@media (max-width: 768px) {

  .dropdown-menu {
    position: static;
    background: transparent;
    box-shadow: none;
    padding: 5px 0 10px;
  }

  .dropdown-menu a {
    display: block;
    padding: 12px 10px;
    font-size: 15px;
    color: #334155; /* gris oscuro profesional */
    text-decoration: none;
    border-radius: 8px;

    transition: all 0.2s ease;
  }

  /* HOVER / TOUCH EFFECT */
  .dropdown-menu a:hover {
    background: rgba(74,155,140,0.12);
    color: #1E3A5F;
    padding-left: 14px;
  }

  /* ACTIVO (OPCIONAL SI QUIERES RESALTAR) */
  .dropdown-menu a:active {
    background: rgba(74,155,140,0.2);
  }

}


/* ===== DROPDOWN DESKTOP PREMIUM ===== */
.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 120%;
  left: 0;
  min-width: 250px;

  background: #ffffff;
  border-radius: 12px;
  padding: 10px 0;

  box-shadow: 0 15px 40px rgba(0,0,0,0.12);

  opacity: 0;
  visibility: hidden;
  transform: translateY(12px) scale(0.98);

  transition: all 0.25s ease;
  z-index: 1000;
}

/* ACTIVACIÓN */
.dropdown:hover .dropdown-menu,
.dropdown.open .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

/* LINKS */
.dropdown-menu a {
  display: block;
  padding: 12px 18px;
  font-size: 14px;
  color: #1E293B;
  text-decoration: none;
  border-radius: 8px;

  transition: all 0.2s ease;
}

/* HOVER */
.dropdown-menu a:hover {
  background: rgba(74,155,140,0.12);
  color: #1E3A5F;
  padding-left: 22px;
}

/* LINEA INDICADORA */
.dropdown-menu a::before {
  content: "";
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);

  width: 0;
  height: 2px;
  background: #4A9B8C;

  transition: width 0.25s ease;
}

.dropdown-menu a:hover::before {
  width: 10px;
}




.modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.65);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.modal-box {
  background: white;
  padding: 30px;
  border-radius: 14px;
  max-width: 420px;
  text-align: center;
}

.highlight {
  font-weight: bold;
  color: #4A9B8C;
}

.wa-btn {
  display: inline-block;
  margin-top: 18px;
  padding: 12px 18px;
  background: #25D366;
  color: white;
  border-radius: 8px;
  text-decoration: none;
}

.close-btn {
  margin-top: 15px;
  background: none;
  border: none;
  cursor: pointer;
}
.modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.65);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.modal-box {
  background: white;
  padding: 30px;
  border-radius: 14px;
  max-width: 420px;
  text-align: center;
}

.highlight {
  font-weight: bold;
  color: #4A9B8C;
}

.wa-btn {
  display: inline-block;
  margin-top: 18px;
  padding: 12px 18px;
  background: #25D366;
  color: white;
  border-radius: 8px;
  text-decoration: none;
}

.close-btn {
  margin-top: 15px;
  background: none;
  border: none;
  cursor: pointer;
}


/* WRAPPER */
.custom-select {
  position: relative;
  width: 100%;
  margin-top: 12px;
}

/* SELECT BASE */
.custom-select select,
.form-group select {
  width: 100%;
  padding: 14px 16px;
  border-radius: 10px;
  border: 1px solid #e5e7eb;
  font-size: 14px;
  font-family: 'Poppins', sans-serif;
  color: #1e293b;
  background-color: #f9fafb;
  appearance: none;
  outline: none;
  transition: all 0.25s ease;
  cursor: pointer;
}

/* HOVER */
.custom-select select:hover,
.form-group select:hover {
  border-color: #4A9B8C;
}

/* FOCUS (MUY IMPORTANTE UX) */
.custom-select select:focus,
.form-group select:focus {
  border-color: #4A9B8C;
  background-color: #ffffff;
  box-shadow: 0 0 0 3px rgba(74,155,140,0.15);
}

/* FLECHA */
.custom-select::after {
  content: "▾";
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 14px;
  color: #64748b;
  pointer-events: none;
}

/* FORM GROUP */
.form-group {
  margin-top: 12px;
}

/* DAYS GRID (MEJORADO) */
.days-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-top: 10px;
}

/* DAYS BUTTON STYLE */
.days-grid label {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f1f5f9;
  padding: 10px;
  border-radius: 8px;
  font-size: 13px;
  cursor: pointer;
  transition: all 0.2s ease;
  border: 1px solid transparent;
}

/* HOVER DAYS */
.days-grid label:hover {
  background: #e2e8f0;
}

/* CHECKBOX */
.days-grid input {
  margin-right: 5px;
}

/* SELECTED STATE (🔥 IMPORTANTE) */
.days-grid input:checked + span,
.days-grid label:has(input:checked) {
  background: #4A9B8C;
  color: #ffffff;
  border-color: #4A9B8C;
}


/* ===== DAYS SELECT (MOBILE FIX PRO) ===== */

@media (max-width: 768px) {

  .days-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    width: 100%;
  }

  .day-option {
    position: relative;
    width: 100%;
  }

  .day-option input {
    display: none;
  }

  .day-option label {
    display: flex;
    align-items: center;
    justify-content: center;

    height: 50px;
    width: 100%;

    border-radius: 10px;
    border: 1px solid #e2e8f0;
    background: #f8fafc;

    font-size: 14px;
    color: #1E3A5F;

    cursor: pointer;
    transition: all 0.25s ease;
  }

  /* ESTADO ACTIVO */
  .day-option input:checked + label {
    background: #4A9B8C;
    color: white;
    border-color: #4A9B8C;
  }

}

/* ===== FORM UNIFICADO ===== */

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 10px;
  border: 1px solid #E2E8F0;
  background: #FFFFFF;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  color: #1E293B;
  transition: all 0.25s ease;
  box-shadow: 0 2px 6px rgba(0,0,0,0.03);
}

/* PLACEHOLDER */
.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #94A3B8;
  font-weight: 400;
}

/* FOCUS (cuando el usuario hace click) */
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #4A9B8C;
  box-shadow: 0 0 0 2px rgba(74,155,140,0.15);
}

/* SELECT STYLE */
.contact-form select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg fill='%231E3A5F' viewBox='0 0 20 20'%3E%3Cpath d='M5 7l5 5 5-5H5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 14px;
}

/* TEXTAREA */
.contact-form textarea {
  min-height: 120px;
  resize: vertical;
}

/* BUTTON */
.contact-form .btn {
  width: 100%;
  padding: 14px;
  font-weight: 600;
  border-radius: 12px;
  background: linear-gradient(135deg, #1E3A5F, #4A9B8C);
  color: white;
  border: none;
  transition: all 0.3s ease;
}

.contact-form .btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 14px rgba(30,58,95,0.2);
}
/* ===== DAYS GRID PREMIUM ===== */

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

/* cada botón */
.days-grid label {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 55px;
  border-radius: 12px;
  background: #F1F5F9;
  font-size: 14px;
  font-weight: 500;
  color: #1E293B;
  cursor: pointer;
  transition: all 0.25s ease;
  border: 1px solid transparent;
}

/* ocultar checkbox feo */
.days-grid input {
  display: none;
}

/* hover */
.days-grid label:hover {
  background: #E2E8F0;
}

/* estado seleccionado */
.days-grid input:checked + span {
  color: white;
}

.days-grid input:checked + span::before {
  background: linear-gradient(135deg, #1E3A5F, #4A9B8C);
}

/* fondo cuando está activo */
.days-grid input:checked + span {
  position: relative;
  z-index: 2;
}

.days-grid input:checked + span::before {
  content: "";
  position: absolute;
  inset: -14px;
  border-radius: 12px;
  z-index: -1;
}

/* texto */
.days-grid span {
  position: relative;
  z-index: 2;
}

/* ===== MOBILE MEJORADO ===== */
@media (max-width: 480px) {
  .days-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.discount-badge {
  position: absolute;
  top: -12px;
  right: -12px;
  background: linear-gradient(45deg, #ff6b6b, #ff3b3b);
  color: white;
  font-weight: bold;
  padding: 8px 14px;
  border-radius: 50px;
  font-size: 12px;
  letter-spacing: 0.5px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.25);
  animation: pulse 1.4s infinite;
}

/* =========================================
   PROMOTIONAL PRICING
========================================= */

.ncs-store-price-wrapper {
  margin-bottom: 30px;
}

.ncs-store-old-price {
  font-size: 18px;
  color: #94A3B8;
  text-decoration: line-through;
  margin-bottom: 10px;
}

.ncs-store-save {
  display: inline-block;
  margin-top: 14px;
  background: rgba(74,155,140,0.12);
  color: #4A9B8C;
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
}

/* ============================= */
/* GOOGLE BUSINESS INTEGRATION */
/* ============================= */

.google-trust{
  margin-top:30px;
  display:flex;
  flex-direction:column;
  gap:20px;
}

.google-rating{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:18px;
  flex-wrap:wrap;
}

.google-stars{
  font-size:28px;
  line-height:1;
}

.google-rating-info{
  display:flex;
  flex-direction:column;
  text-align:left;
}

.google-rating-info strong{
  color:#ffffff;
  font-size:18px;
  font-weight:700;
}

.google-rating-info span{
  color:#CBD5E1;
  font-size:14px;
  margin-top:4px;
}


/* ======================================== */
/* NORTH CRESCENT PREMIUM FAQ SECTION */
/* ======================================== */

.faq-section{
  position:relative;
  padding:100px 0;
  background:
    linear-gradient(
      180deg,
      #f8fafc 0%,
      #eef3f8 100%
    );
  overflow:hidden;
}

/* subtle background structure */

.faq-section::before{
  content:"";
  position:absolute;
  top:-120px;
  right:-120px;
  width:320px;
  height:320px;
  border-radius:50%;
  background:rgba(74,155,140,0.06);
  filter:blur(10px);
}

.faq-section::after{
  content:"";
  position:absolute;
  bottom:-140px;
  left:-120px;
  width:300px;
  height:300px;
  border-radius:50%;
  background:rgba(30,58,95,0.06);
  filter:blur(10px);
}

/* ======================================== */
/* SECTION TITLE */
/* ======================================== */

.faq-section .section-title{
  text-align:center;
  font-size:42px;
  line-height:1.2;
  font-weight:700;
  color:#1E3A5F;
  margin-bottom:18px;
  letter-spacing:-1px;
}

.faq-section .divider{
  margin:0 auto 60px auto;
}

/* ======================================== */
/* FAQ GRID */
/* ======================================== */

.faq-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(340px,1fr));
  gap:30px;
  position:relative;
  z-index:2;
}

/* ======================================== */
/* FAQ CARD */
/* ======================================== */

.faq-card{
  position:relative;
  background:rgba(255,255,255,0.82);
  backdrop-filter:blur(12px);
  border:1px solid rgba(255,255,255,0.5);
  border-radius:28px;
  padding:34px;
  overflow:hidden;

  box-shadow:
    0 10px 30px rgba(15,23,42,0.05),
    0 20px 60px rgba(15,23,42,0.08);

  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}

/* premium top accent */

.faq-card::before{
  content:"";
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:5px;

  background:
    linear-gradient(
      90deg,
      #1E3A5F 0%,
      #4A9B8C 100%
    );
}

/* hover */

.faq-card:hover{
  transform:translateY(-10px);

  border-color:rgba(74,155,140,0.35);

  box-shadow:
    0 25px 60px rgba(15,23,42,0.10),
    0 35px 80px rgba(15,23,42,0.12);
}


/* ======================================== */
/* FAQ ICON */
/* ======================================== */

.faq-card::after{
  content:"?";
  position:absolute;
  top:24px;
  right:24px;

  width:42px;
  height:42px;

  display:flex;
  align-items:center;
  justify-content:center;

  border-radius:50%;

  font-size:18px;
  font-weight:700;

  color:#4A9B8C;

  background:
    linear-gradient(
      180deg,
      rgba(74,155,140,0.12) 0%,
      rgba(74,155,140,0.04) 100%
    );

  border:1px solid rgba(74,155,140,0.15);

  transition:
    transform 0.35s ease,
    background 0.35s ease;
}

/* hover interaction */

.faq-card:hover::after{

  transform:scale(1.08);

  background:
    linear-gradient(
      180deg,
      rgba(74,155,140,0.18) 0%,
      rgba(74,155,140,0.08) 100%
    );
}
/* ======================================== */
/* QUESTION */
/* ======================================== */

.faq-card h3{
  font-size:22px;
  line-height:1.45;
  font-weight:700;
  color:#1E3A5F;
  margin-bottom:18px;
  letter-spacing:-0.3px;
}

/* ======================================== */
/* ANSWER */
/* ======================================== */

.faq-card p{
  font-size:15.5px;
  line-height:1.9;
  color:#475569;
  margin:0;
}

/* ======================================== */
/* subtle professional glow */
/* ======================================== */

.faq-card:hover h3{
  color:#16324f;
}

/* ======================================== */
/* MOBILE */
/* ======================================== */

@media (max-width:768px){

  .faq-section{
    padding:70px 0;
  }

  .faq-grid{
    grid-template-columns:1fr;
    gap:22px;
  }

  .faq-card{
    padding:28px;
    border-radius:24px;
  }

  .faq-card h3{
    font-size:20px;
  }

  .faq-section .section-title{
    font-size:32px;
  }

}
