/* =====================================================================
   SARAFARA INDIA PRIVATE LIMITED — Main Stylesheet
   Brand Colors: #2F3192 (primary) | #F15A00 (secondary) | #062A5E (dark navy)
   ===================================================================== */

/* ---------- Design Tokens ---------- */
:root {
  --primary: #2F3192;
  --primary-dark: #23256f;
  --primary-light: #4a4cb8;
  --secondary: #F15A00;
  --secondary-dark: #d14f00;
  --navy: #062A5E;
  --navy-dark: #041d42;
  --bg: #F8FAFC;
  --white: #FFFFFF;
  --text: #1e2433;
  --text-soft: #5b6478;
  --muted: #8b94a8;
  --border: #e6eaf2;
  --success: #16a34a;
  --warning: #f59e0b;
  --error: #dc2626;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(6, 42, 94, 0.06);
  --shadow: 0 8px 24px rgba(6, 42, 94, 0.08);
  --shadow-md: 0 12px 40px rgba(6, 42, 94, 0.12);
  --shadow-lg: 0 24px 60px rgba(6, 42, 94, 0.16);
  --shadow-primary: 0 12px 30px rgba(47, 49, 146, 0.3);
  --shadow-secondary: 0 12px 30px rgba(241, 90, 0, 0.3);

  /* Radii */
  --r-sm: 8px;
  --r: 16px;
  --r-lg: 24px;
  --r-pill: 100px;

  /* Transitions */
  --t: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --t-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);

  --header-h: 130px;
  --maxw: 1240px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: 'Poppins', system-ui, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  font-weight: 400;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, textarea { font-family: inherit; font-size: 1rem; }
svg { display: block; }

/* ---------- Layout Helpers ---------- */
.container { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

.text-accent { color: var(--secondary); }

.section__eyebrow {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: 14px;
  position: relative;
  padding-left: 40px;
}
.section__eyebrow::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  width: 30px; height: 2px;
  background: var(--secondary);
  transform: translateY(-50%);
}

.section__title {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--navy);
  margin-bottom: 18px;
}

.section__sub {
  font-size: 1.05rem;
  color: var(--text-soft);
  max-width: 640px;
}

.section__head {
  text-align: center;
  margin: 0 auto 56px;
  max-width: 720px;
}
.section__head .section__eyebrow { padding-left: 40px; }
.section__head .section__sub { margin: 0 auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--r-pill);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.3px;
  transition: all var(--t);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}
.btn--primary {
  background: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
  color: var(--white);
  box-shadow: var(--shadow-secondary);
}
.btn--primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(241, 90, 0, 0.4);
}
.btn--ghost {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(8px);
}
.btn--ghost:hover {
  background: var(--white);
  color: var(--primary);
  border-color: var(--white);
  transform: translateY(-3px);
}

/* Ripple Effect */
.ripple { position: relative; overflow: hidden; }
.ripple .rip {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
  transform: scale(0);
  animation: rip 0.65s ease-out;
  pointer-events: none;
}
@keyframes rip { to { transform: scale(4); opacity: 0; } }

/* ---------- Loader ---------- */
.loader {
  position: fixed; inset: 0;
  background: var(--white);
  z-index: 9999;
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
.loader.hide { opacity: 0; visibility: hidden; }
.loader__inner { text-align: center; }
.loader__truck { animation: truckBounce 1s ease-in-out infinite; }
@keyframes truckBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
.loader__road {
  width: 180px; height: 3px;
  background: var(--border);
  margin: 14px auto 16px;
  border-radius: 2px;
  overflow: hidden;
  position: relative;
}
.loader__road::after {
  content: '';
  position: absolute; inset: 0;
  width: 40%;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  animation: roadMove 1.1s ease-in-out infinite;
  border-radius: 2px;
}
@keyframes roadMove {
  0% { left: -40%; }
  100% { left: 100%; }
}
.loader__text {
  font-size: 0.9rem; font-weight: 700;
  letter-spacing: 4px;
  color: var(--primary);
  text-transform: uppercase;
}
.loader__bar {
  width: 160px; height: 4px;
  background: var(--border);
  border-radius: 2px;
  margin: 16px auto 0;
  overflow: hidden;
}
.loader__bar span {
  display: block; height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  animation: loadBar 1.6s ease forwards;
}
@keyframes loadBar { to { width: 100%; } }

/* ---------- Scroll Progress ---------- */
.scroll-progress {
  position: fixed; top: 0; left: 0;
  height: 3px; width: 0;
  background: linear-gradient(90deg, var(--secondary), var(--primary));
  z-index: 10000;
  transition: width 0.1s linear;
}

/* ---------- Header ---------- */
.header { position: fixed; top: 0; left: 0; width: 100%; z-index: 1000; transition: transform var(--t); }

.topbar {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.82rem;
  transition: all var(--t);
}
.topbar__inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 42px;
}
.topbar__contact { display: flex; gap: 28px; }
.topbar__item {
  display: inline-flex; align-items: center; gap: 7px;
  color: rgba(255, 255, 255, 0.8);
  transition: color var(--t);
}
.topbar__item:hover { color: var(--secondary); }
.topbar__right { display: flex; align-items: center; gap: 24px; }

.nav-wrap {
  background: transparent;
  transition: all var(--t);
  border-bottom: 1px solid transparent;
}
.nav__inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 80px;
}

.logo { display: inline-flex; align-items: center; }

.header:not(.scrolled) .logo__img {
  height: 46px;
  width: auto;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0px 0px 6px rgba(255, 255, 255, 0.95)) drop-shadow(0px 0px 2px rgba(255, 255, 255, 1));
  transition: filter var(--t), height var(--t);
}

.header.scrolled .logo__img {
  height: 40px;
  filter: none;
}

.nav { display: flex; gap: 4px; }
.nav__link {
  position: relative;
  padding: 10px 16px;
  font-weight: 500;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.9);
  transition: color var(--t);
}
.nav__link::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 50%;
  width: 0; height: 2px;
  background: var(--secondary);
  transition: all var(--t);
  transform: translateX(-50%);
}
.nav__link:hover, .nav__link.active { color: var(--white); }
.nav__link:hover::after, .nav__link.active::after { width: 24px; }

.nav__quote { padding: 12px 26px; }

.nav__quote.open-mobile { display: none !important; }

/* Mobile Toggle */
.nav__toggle { display: none; flex-direction: column; gap: 5px; padding: 8px; z-index: 1001; }
.nav__toggle span {
  width: 26px; height: 2.5px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--t);
}

/* Scrolled Header State */
.header.scrolled .topbar { height: 0; overflow: hidden; }
.header.scrolled .nav-wrap {
  background: var(--white);
  box-shadow: var(--shadow);
  border-bottom-color: var(--border);
}
.header.scrolled .nav__link { color: var(--text); }
.header.scrolled .nav__link:hover, .header.scrolled .nav__link.active { color: var(--primary); }
.header.scrolled .nav__toggle span { background: var(--navy); }

/* =====================================================================
   HERO SLIDER
   ===================================================================== */
.hero-slider-section {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background: var(--navy-dark);
}

.hero-slider {
  position: relative;
  width: 100%;
  height: 100vh;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.8s ease-in-out, visibility 0.8s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: var(--header-h);
  z-index: 1;
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  z-index: 2;
}

.hero-slide:not(.active) .hero__content,
.hero-slide:not(.active) * {
  opacity: 0 !important;
  visibility: hidden !important;
}

.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__img { width: 100%; height: 100%; object-fit: cover; }
.hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(120deg, rgba(6, 42, 94, 0.92) 0%, rgba(47, 49, 146, 0.78) 45%, rgba(241, 90, 0, 0.55) 100%);
}

.hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  box-sizing: border-box;
}

.hero__eyebrow {
  display: inline-block;
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.8px;
  color: #ffffff;
  margin-bottom: 20px;
  padding: 8px 20px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: var(--r-pill);
  backdrop-filter: blur(10px);
}

.hero__title {
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1.2;
  color: var(--white);
  margin-bottom: 20px;
  letter-spacing: -0.5px;
  max-width: 750px;
}

.hero__desc {
  font-size: 1.08rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 640px;
  margin-bottom: 32px;
  line-height: 1.7;
}

.hero__btns { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }

.hero-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px; height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: #fff;
  font-size: 1.2rem;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  z-index: 10;
  backdrop-filter: blur(8px);
  transition: all 0.3s ease;
}

.hero-nav-btn:hover { background: var(--secondary); border-color: var(--secondary); }
.hero-nav-btn.prev { left: 24px; }
.hero-nav-btn.next { right: 24px; }

.hero-dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex; gap: 10px;
  z-index: 10;
}

.hero-dot {
  width: 12px; height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: all 0.3s ease;
}

.hero-dot.active {
  width: 32px;
  border-radius: 6px;
  background: var(--secondary);
}

/* ---------- About ---------- */
.about { padding: 110px 0; background: var(--white); }
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.about__media { position: relative; }
.about__img {
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.about__badge {
  position: absolute;
  bottom: -28px; right: -28px;
  background: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
  color: var(--white);
  border-radius: var(--r);
  padding: 24px 28px;
  box-shadow: var(--shadow-secondary);
  text-align: center;
}
.about__badge-num { display: block; font-size: 2.4rem; font-weight: 800; line-height: 1; }
.about__badge-label { display: block; font-size: 0.82rem; margin-top: 6px; opacity: 0.95; }

.about__lead { font-size: 1.08rem; color: var(--text-soft); margin-bottom: 24px; }
.about__list { margin-bottom: 32px; }
.about__list li {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 0;
  font-weight: 500;
  color: var(--text);
}
.about__list li svg { flex-shrink: 0; }

/* ---------- Services Slider Carousel ---------- */
.services { padding: 110px 0; background: var(--bg); position: relative; }

.services-slider-wrap {
  position: relative;
  overflow: hidden;
  padding: 10px 0 20px;
}

.services-slider-track {
  display: flex;
  gap: 28px;
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.services-slider-track .slide-item {
  flex: 0 0 calc(33.333% - 19px);
  min-width: 310px;
}

.service-card {
  background: var(--white);
  border-radius: var(--r);
  padding: 38px 32px;
  box-shadow: var(--shadow-sm);
  transition: all var(--t);
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.service-card__media {
  margin: -38px -32px 24px -32px;
  height: 190px;
  overflow: hidden;
  border-top-left-radius: inherit;
  border-top-right-radius: inherit;
}
.service-card__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--t);
}
.service-card:hover .service-card__media img { transform: scale(1.08); }

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 4px;
  background: linear-gradient(90deg, var(--secondary), var(--secondary-dark));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t);
  z-index: 2;
}
.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}
.service-card:hover::before { transform: scaleX(1); }

.service-card__title { font-size: 1.3rem; font-weight: 700; color: var(--navy); margin-bottom: 12px; }
.service-card__desc { font-size: 0.95rem; color: var(--text-soft); flex-grow: 1; }

.slider-controls {
  display: flex; align-items: center; justify-content: center;
  gap: 20px; margin-top: 40px;
}

.slide-ctrl-btn {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  font-size: 1.2rem;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: all var(--t);
  box-shadow: 0 6px 16px rgba(6, 42, 94, 0.2);
}

.slide-ctrl-btn:hover {
  background: var(--secondary);
  transform: scale(1.1);
}

/* ---------- 5-Step Process Flow ---------- */
.process-flow-section { padding: 100px 0; background: var(--white); }

.flow-card-container {
  background: var(--bg);
  border-radius: var(--r-lg);
  padding: 60px 40px;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
}

.flow-steps-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  position: relative;
  z-index: 2;
}

.flow-step-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.flow-circle-wrap { position: relative; margin-bottom: 20px; }

.flow-number-badge {
  position: absolute;
  top: -6px; right: -6px;
  width: 32px; height: 32px;
  background: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
  color: var(--white);
  border-radius: 50%;
  font-weight: 700;
  font-size: 0.9rem;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-secondary);
  z-index: 3;
}

.flow-icon-circle {
  width: 96px; height: 96px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-sm);
  transition: all var(--t);
}

.flow-step-item:hover .flow-icon-circle {
  transform: translateY(-6px);
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
}

.flow-step-title { font-size: 1.02rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.flow-step-desc { font-size: 0.82rem; color: var(--text-soft); line-height: 1.4; max-width: 180px; }

/* ---------- Why Choose Us ---------- */
.why { padding: 110px 0; background: var(--bg); }
.why__grid {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: 64px;
  align-items: center;
}
.why__media { position: relative; }
.why__img {
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}
.why__stat {
  position: absolute;
  top: 28px; left: -28px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(14px);
  border-radius: var(--r);
  padding: 22px 26px;
  box-shadow: var(--shadow-md);
  text-align: center;
}
.why__stat-num { display: block; font-size: 2rem; font-weight: 800; color: var(--secondary); }
.why__stat-label { display: block; font-size: 0.8rem; color: var(--text-soft); margin-top: 2px; }

.why__features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin-top: 32px;
}
.why-feature {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 20px;
  border-radius: var(--r-sm);
  background: var(--white);
  transition: all var(--t);
  border: 1px solid var(--border);
}
.why-feature:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
.why-feature__icon {
  width: 44px; height: 44px;
  flex-shrink: 0;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--primary), var(--navy));
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
}
.why-feature h4 { font-size: 1rem; font-weight: 600; color: var(--navy); margin-bottom: 4px; }
.why-feature p { font-size: 0.88rem; color: var(--text-soft); }

/* ---------- Industries Section ---------- */
.industries {
  padding: 110px 0;
  background: var(--white);
}

.industries__grid {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 28px !important;
  width: 100% !important;
}

.industry {
  background: var(--bg);
  border-radius: var(--r);
  padding: 40px 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all var(--t);
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.industry::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--primary), var(--navy));
  opacity: 0;
  transition: opacity var(--t);
  z-index: 0;
}

.industry > * {
  position: relative;
  z-index: 1;
}

.industry:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}

.industry:hover::after {
  opacity: 1;
}

.industry:hover h3 {
  color: var(--white);
}

.industry:hover .industry__icon {
  background: var(--primary);
  transform: translateY(-4px);
}

.industry:hover .industry__icon svg {
  fill: #ffffff !important;
}

.industry__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(47, 49, 146, 0.1), rgba(241, 90, 0, 0.12));
  margin-bottom: 20px;
  transition: all var(--t);
  box-shadow: 0 4px 14px rgba(6, 42, 94, 0.08);
}

.industry__icon svg {
  width: 36px;
  height: 36px;
  display: block;
  transition: fill 0.3s ease;
}

.industry h3 {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--navy);
  transition: color var(--t);
}

/* ---------- Contact ---------- */
.contact { padding: 110px 0; background: var(--bg); }
.contact__grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 48px; align-items: start; }
.contact__info { display: flex; flex-direction: column; gap: 20px; }
.contact-card {
  display: flex; gap: 18px; align-items: flex-start;
  background: var(--white);
  border-radius: var(--r);
  padding: 24px 26px;
  box-shadow: var(--shadow-sm);
  transition: all var(--t);
}
.contact-card:hover { box-shadow: var(--shadow); transform: translateX(6px); }
.contact-card__icon {
  width: 52px; height: 52px;
  flex-shrink: 0;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--primary), var(--navy));
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
}
.contact-card h4 { font-size: 1.05rem; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.contact-card p { font-size: 0.92rem; color: var(--text-soft); }
.contact-card a { color: var(--text-soft); transition: color var(--t); }
.contact-card a:hover { color: var(--secondary); }

.contact__map { border-radius: var(--r); overflow: hidden; box-shadow: var(--shadow-sm); height: 200px; }
.contact__map iframe { width: 100%; height: 100%; border: 0; }

.contact__form-wrap {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
}
.contact-form h3 { font-size: 1.6rem; font-weight: 700; color: var(--navy); margin-bottom: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { position: relative; margin-bottom: 18px; }
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--r-sm);
  background: var(--bg);
  color: var(--text);
  transition: all var(--t);
  resize: vertical;
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(47, 49, 146, 0.1);
}
.form-group label {
  position: absolute;
  left: 14px; top: 14px;
  font-size: 0.95rem;
  color: var(--muted);
  pointer-events: none;
  transition: all var(--t);
  background: linear-gradient(var(--white), var(--white)) padding-box;
  padding: 0 4px;
}
.form-group input:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group textarea:focus + label,
.form-group textarea:not(:placeholder-shown) + label {
  top: -8px;
  font-size: 0.78rem;
  color: var(--primary);
  font-weight: 500;
}
.form-group input:not(:placeholder-shown) + label,
.form-group input:focus + label { background: var(--bg); }
.form-group input:focus + label { background: var(--white); }
.form-group textarea:focus + label,
.form-group textarea:not(:placeholder-shown) + label { background: var(--bg); }
.form-group textarea:focus + label { background: var(--white); }

.form-submit { width: 100%; margin-top: 8px; }
.form-status { margin-top: 14px; font-size: 0.9rem; font-weight: 500; min-height: 20px; }
.form-status.success { color: var(--success); }
.form-status.error { color: var(--error); }

/* ---------- Footer ---------- */
.footer {
  background: var(--navy-dark);
  color: rgba(255, 255, 255, 0.75);
  padding-top: 72px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 48px;
  justify-content: space-between;
  padding-bottom: 48px;
}

.footer-logo-img {
  height: 52px;
  width: auto;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0px 0px 8px rgba(255, 255, 255, 0.95)) brightness(1.1);
}

.footer__about {
  font-size: 0.92rem;
  line-height: 1.7;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.8);
  max-width: 380px;
}

.footer__col--links {
  justify-self: center;
}

.footer__col--contact {
  justify-self: end;
}

.footer__title {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 22px;
  position: relative;
  padding-bottom: 12px;
}

.footer__title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 36px;
  height: 3px;
  background: var(--secondary);
  border-radius: 2px;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__links li a {
  font-size: 0.93rem;
  color: rgba(255, 255, 255, 0.85);
  transition: all var(--t);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer__links li a::before {
  content: '›';
  color: var(--secondary);
  font-size: 1.2rem;
  font-weight: bold;
  line-height: 1;
}

.footer__links li a:hover {
  color: var(--secondary);
  transform: translateX(5px);
}

.footer__contact {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer__contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.93rem;
  color: rgba(255, 255, 255, 0.88);
}

.footer__contact-item svg {
  flex-shrink: 0;
  color: var(--secondary);
}

.footer__contact-item a {
  color: rgba(255, 255, 255, 0.88);
  transition: color var(--t);
}

.footer__contact-item a:hover {
  color: var(--secondary);
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 22px 0;
}

.footer__bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
}

/* WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  bottom: 28px; left: 28px;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: #25D366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
  z-index: 900;
  transition: all var(--t);
  animation: waPulse 2.4s ease infinite;
}
.whatsapp-float:hover { transform: scale(1.1); }
@keyframes waPulse {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
  70% { box-shadow: 0 0 0 16px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* Reveal Animations */
.reveal { opacity: 0; transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.4, 0, 0.2, 1); will-change: opacity, transform; }
.reveal.fade-up { transform: translateY(40px); }
.reveal.fade-left { transform: translateX(-50px); }
.reveal.fade-right { transform: translateX(50px); }
.reveal.zoom-in { transform: scale(0.92); }
.reveal.slide-up { transform: translateY(60px); }
.reveal.visible { opacity: 1; transform: none; }