/* ============================================================
   Chhavi Logistics — main stylesheet
   ============================================================ */

:root {
  --orange: #f0701c;
  --orange-dark: #d15c10;
  --orange-light: #fff1e6;
  --navy: #1b2530;
  --navy-light: #2c3a4a;
  --text: #333d47;
  --muted: #6b7684;
  --border: #e7e2db;
  --bg-soft: #faf7f3;
  --white: #ffffff;
  --shadow: 0 10px 30px rgba(27, 37, 48, 0.08);
  --radius: 10px;
  --container: 1180px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
}

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

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

ul { margin: 0; padding: 0; list-style: none; }

h1, h2, h3, h4 { font-family: "Segoe UI Semibold", "Segoe UI", Roboto, sans-serif; color: var(--navy); margin: 0 0 .6em; line-height: 1.25; }

p { margin: 0 0 1em; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 72px 0; }
.section-soft { background: var(--bg-soft); }

.section-head { text-align: center; max-width: 680px; margin: 0 auto 46px; }
.section-head .eyebrow {
  display: inline-block;
  color: var(--orange);
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-size: .78rem;
  margin-bottom: 10px;
}
.section-head h2 { font-size: 2rem; }
.section-head p { color: var(--muted); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 50px;
  font-weight: 600;
  font-size: .95rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .2s ease, color .2s ease;
}
.btn-primary { background: var(--orange); color: var(--white); }
.btn-primary:hover { background: var(--orange-dark); transform: translateY(-2px); box-shadow: 0 10px 20px rgba(240,112,28,.3); }
.btn-outline { background: transparent; color: var(--white); border-color: rgba(255,255,255,.7); }
.btn-outline:hover { background: rgba(255,255,255,.15); transform: translateY(-2px); }
.btn-dark { background: var(--navy); color: var(--white); }
.btn-dark:hover { background: var(--navy-light); transform: translateY(-2px); }
.btn-block { width: 100%; justify-content: center; }

/* ---------- Top bar ---------- */
.topbar {
  background: var(--navy);
  color: #cfd6dd;
  font-size: .85rem;
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  padding-top: 8px;
  padding-bottom: 8px;
}
.topbar-left { display: flex; gap: 22px; flex-wrap: wrap; }
.topbar a { color: #cfd6dd; }
.topbar a:hover { color: var(--orange); }
.topbar-left span, .topbar-left a { display: inline-flex; align-items: center; gap: 6px; }
.topbar-right { display: flex; gap: 16px; align-items: center; }
.topbar-right a { color: #cfd6dd; }
.topbar-right a:hover { color: var(--orange); }

/* ---------- Header / nav ---------- */
header.site-header {
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 14px rgba(0,0,0,.06);
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}
.logo { display: flex; align-items: center; gap: 12px; }
.logo-mark {
  width: 92px; height: 50px;
  flex-shrink: 0;
}
.logo-text .name {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: .2px;
}
.logo-text .name span { color: var(--orange); }
.logo-text .tag {
  font-size: .72rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .1em;
  font-weight: 600;
}

nav.main-nav ul { display: flex; gap: 6px; align-items: center; }
nav.main-nav a {
  padding: 10px 16px;
  font-weight: 600;
  color: var(--navy);
  border-radius: 6px;
  font-size: .95rem;
}
nav.main-nav a:hover, nav.main-nav a.active { color: var(--orange); }

.nav-cta { display: flex; align-items: center; gap: 12px; }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span { width: 26px; height: 3px; background: var(--navy); border-radius: 2px; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  color: var(--white);
  min-height: 560px;
  display: flex;
  align-items: center;
  background: linear-gradient(120deg, rgba(20,26,33,.86), rgba(27,37,48,.65)), var(--hero-img) center/cover no-repeat;
}
.hero .container { position: relative; z-index: 2; }
.hero-content { max-width: 640px; }
.hero-content .eyebrow {
  display: inline-block;
  background: rgba(240,112,28,.15);
  border: 1px solid var(--orange);
  color: #ffb37a;
  padding: 6px 16px;
  border-radius: 50px;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.hero h1 { color: var(--white); font-size: 2.9rem; margin-bottom: 18px; }
.hero h1 span { color: var(--orange); }
.hero p { color: #dfe4e9; font-size: 1.08rem; max-width: 560px; }
.hero-actions { display: flex; gap: 14px; margin-top: 30px; flex-wrap: wrap; }

/* ---------- Hero slider (homepage) ---------- */
.hero-slider {
  position: relative;
  overflow: hidden;
  min-height: 580px;
  color: var(--white);
  background: var(--navy);
}
.hero-slider .slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1s ease;
  display: flex;
  align-items: center;
}
.hero-slider .slide.active { opacity: 1; visibility: visible; z-index: 2; }
.hero-slider .slide-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.hero-slider .slide-illustration { position: absolute; inset: 0; z-index: 0; line-height: 0; }
.hero-slider .slide-illustration svg { width: 100%; height: 100%; display: block; }
.hero-slider .slide-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(120deg, rgba(20,26,33,.87), rgba(27,37,48,.5));
}
.hero-slider .slide > .container { position: relative; z-index: 2; }
.hero-slider .slide-content { max-width: 640px; }
.hero-slider .slide-content .eyebrow {
  display: inline-block;
  background: rgba(240,112,28,.15);
  border: 1px solid var(--orange);
  color: #ffb37a;
  padding: 6px 16px;
  border-radius: 50px;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.hero-slider .slide-content h1 { color: var(--white); font-size: 2.8rem; margin-bottom: 18px; }
.hero-slider .slide-content h1 span { color: var(--orange); }
.hero-slider .slide-content p { color: #dfe4e9; font-size: 1.06rem; max-width: 560px; }
.hero-slider .slide-actions { display: flex; gap: 14px; margin-top: 28px; flex-wrap: wrap; }

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.35);
  color: var(--white);
  font-size: 1.7rem;
  line-height: 1;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  z-index: 5;
  transition: background .2s ease, border-color .2s ease;
}
.slider-arrow:hover { background: var(--orange); border-color: var(--orange); }
.slider-arrow.prev { left: 22px; }
.slider-arrow.next { right: 22px; }

.slider-dots {
  position: absolute;
  bottom: 26px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 5;
}
.slider-dots .dot {
  width: 11px; height: 11px;
  border-radius: 50%;
  background: rgba(255,255,255,.4);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background .2s ease, transform .2s ease;
}
.slider-dots .dot.active { background: var(--orange); transform: scale(1.3); }

/* Page (inner) banner — abstract animated background */
.page-banner {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  color: var(--white);
  padding: 96px 0 64px;
  text-align: center;
  background: linear-gradient(135deg, #10151b 0%, #1b2530 48%, #23303f 100%);
}
.page-banner-fx { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.page-banner-fx .fx-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(64px);
}
.page-banner-fx .fx-blob-1 {
  width: 440px; height: 440px; left: -12%; top: -35%;
  background: radial-gradient(circle, rgba(240,112,28,.65), transparent 70%);
  animation: fxBlob1 13s ease-in-out infinite;
}
.page-banner-fx .fx-blob-2 {
  width: 380px; height: 380px; right: -10%; bottom: -45%;
  background: radial-gradient(circle, rgba(61,107,143,.65), transparent 70%);
  animation: fxBlob2 16s ease-in-out infinite;
}
.page-banner-fx .fx-blob-3 {
  width: 260px; height: 260px; left: 46%; top: 10%;
  background: radial-gradient(circle, rgba(255,179,122,.45), transparent 70%);
  animation: fxBlob3 19s ease-in-out infinite;
}
@keyframes fxBlob1 { 0%, 100% { transform: translate(0,0) scale(1); } 50% { transform: translate(80px, 50px) scale(1.18); } }
@keyframes fxBlob2 { 0%, 100% { transform: translate(0,0) scale(1); } 50% { transform: translate(-60px, -40px) scale(1.12); } }
@keyframes fxBlob3 { 0%, 100% { transform: translate(0,0) scale(1); } 50% { transform: translate(-50px, 35px) scale(1.25); } }
.page-banner-fx .fx-lines {
  position: absolute;
  inset: -20% -15%;
  background-image: repeating-linear-gradient(115deg, rgba(255,255,255,.06) 0 2px, transparent 2px 46px);
  animation: fxLinesRun 22s linear infinite;
}
@keyframes fxLinesRun { 0% { transform: translateX(0); } 100% { transform: translateX(180px); } }
.page-banner-fx .fx-streak {
  position: absolute;
  top: 0; left: -30%;
  width: 18%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,.18), transparent);
  transform: skewX(-20deg);
  animation: fxStreakRun 5.5s ease-in-out infinite;
}
@keyframes fxStreakRun { 0% { left: -30%; } 55% { left: 120%; } 100% { left: 120%; } }
.page-banner > .container { position: relative; z-index: 2; }
.page-banner-icon {
  position: relative;
  width: 68px; height: 68px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: rgba(240,112,28,.18);
  border: 1px solid rgba(240,112,28,.6);
  color: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
}
.page-banner-icon::before,
.page-banner-icon::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(240,112,28,.55);
  animation: fxIconPing 2.6s ease-out infinite;
}
.page-banner-icon::after { animation-delay: 1.3s; }
@keyframes fxIconPing {
  0% { transform: scale(1); opacity: .8; }
  100% { transform: scale(1.9); opacity: 0; }
}
.page-banner-icon svg { width: 30px; height: 30px; }
.page-banner h1 { color: var(--white); font-size: 2.4rem; margin-bottom: 10px; }
@media (prefers-reduced-motion: reduce) {
  .page-banner-fx .fx-blob, .page-banner-fx .fx-lines, .page-banner-fx .fx-streak,
  .page-banner-icon::before, .page-banner-icon::after { animation: none; }
  .page-banner-fx .fx-streak { display: none; }
}
.breadcrumb { color: #dfe4e9; font-size: .95rem; }
.breadcrumb a { color: var(--orange); font-weight: 600; }

/* ---------- Stats strip ---------- */
.stats-strip {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: linear-gradient(135deg, #ff9550 0%, var(--orange) 45%, var(--orange-dark) 100%);
  color: var(--white);
}
.stats-strip::before {
  content: "";
  position: absolute;
  inset: -20% -15%;
  z-index: 0;
  background-image: repeating-linear-gradient(115deg, rgba(255,255,255,.08) 0 2px, transparent 2px 34px);
  animation: statStripeDrift 16s linear infinite;
}
.stats-strip::after {
  content: "";
  position: absolute;
  top: -55%; right: -6%;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,.18), transparent 70%);
  z-index: 0;
}
@keyframes statStripeDrift {
  0% { transform: translateX(0); }
  100% { transform: translateX(136px); }
}
.stats-strip .container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding-top: 48px;
  padding-bottom: 48px;
}
.stats-strip .stat {
  position: relative;
  text-align: center;
  padding: 0 16px;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}
.stats-strip .stat.in-view { opacity: 1; transform: translateY(0); }
.stats-strip .stat:nth-child(1) { transition-delay: .05s; }
.stats-strip .stat:nth-child(2) { transition-delay: .16s; }
.stats-strip .stat:nth-child(3) { transition-delay: .27s; }
.stats-strip .stat:nth-child(4) { transition-delay: .38s; }
@media (min-width: 992px) {
  .stats-strip .stat + .stat::before {
    content: "";
    position: absolute;
    left: 0; top: 6px; bottom: 6px;
    width: 1px;
    background: rgba(255,255,255,.3);
  }
}
.stats-strip .stat-icon {
  width: 58px; height: 58px;
  margin: 0 auto 14px;
  border-radius: 50%;
  background: rgba(255,255,255,.16);
  border: 1px solid rgba(255,255,255,.4);
  display: flex; align-items: center; justify-content: center;
  transition: transform .3s ease, background .3s ease;
}
.stats-strip .stat-icon svg { width: 26px; height: 26px; }
.stats-strip .stat:hover .stat-icon { transform: translateY(-5px) scale(1.08); background: rgba(255,255,255,.28); }
.stats-strip .num { font-size: 2.3rem; font-weight: 800; text-shadow: 0 2px 12px rgba(0,0,0,.12); }
.stats-strip .label { font-size: .82rem; letter-spacing: .06em; text-transform: uppercase; opacity: .92; margin-top: 4px; }

/* ---------- About preview / split ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.split-media { position: relative; }
.split-media img { border-radius: var(--radius); box-shadow: var(--shadow); }
.split-media .badge {
  position: absolute;
  bottom: -22px;
  right: -22px;
  background: var(--navy);
  color: var(--white);
  padding: 18px 22px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.split-media .badge .num { color: var(--orange); font-size: 1.6rem; font-weight: 800; display: block; }
.split-media .badge .label { font-size: .78rem; text-transform: uppercase; letter-spacing: .05em; }

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
}
.check-list li .ico {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--orange-light);
  color: var(--orange);
  display: flex; align-items: center; justify-content: center;
  font-weight: 900;
  flex-shrink: 0;
  font-size: .8rem;
}

/* ---------- Cards grid ---------- */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 26px;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .6s ease var(--card-delay, 0s),
              transform .6s cubic-bezier(.22,.85,.32,1.15) var(--card-delay, 0s),
              box-shadow .25s ease, border-color .25s ease;
}
.card.in-view { opacity: 1; transform: translateY(0); }
.card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
  border-color: transparent;
  transition: transform .3s ease, box-shadow .25s ease, border-color .25s ease;
}
.card .icon {
  width: 56px; height: 56px;
  border-radius: 12px;
  background: var(--orange-light);
  color: var(--orange);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
  transition: transform .4s ease, background .3s ease, color .3s ease;
}
.card .icon svg { width: 28px; height: 28px; }
.card:hover .icon { transform: translateY(-4px) rotate(-6deg) scale(1.08); background: var(--orange); color: #fff; }
.card h3 { font-size: 1.15rem; }
.card p { color: var(--muted); margin-bottom: 0; font-size: .95rem; }

/* Service card variant with number */
.service-card { position: relative; }
.service-card .num {
  position: absolute; top: 22px; right: 24px;
  font-size: 1.6rem; font-weight: 800; color: var(--border);
  transition: color .3s ease, transform .3s ease;
}
.service-card:hover .num { color: var(--orange-light); transform: scale(1.15); }

@media (prefers-reduced-motion: reduce) {
  .card { opacity: 1; transform: none; transition: box-shadow .2s ease, border-color .2s ease; }
  .card:hover { transform: none; }
  .card .icon, .service-card .num, .stats-strip .stat, .stats-strip::before { transition: none; animation: none; }
  .stats-strip .stat { opacity: 1; transform: none; }
}

/* ---------- Why choose us ---------- */
.why-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.why-item { display: flex; gap: 16px; padding: 22px; background: var(--white); border-radius: var(--radius); border: 1px solid var(--border); }
.why-item .icon { width: 48px; height: 48px; border-radius: 10px; background: var(--navy); color: var(--orange); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.why-item .icon svg { width: 24px; height: 24px; }
.why-item h4 { margin-bottom: 6px; font-size: 1.02rem; }
.why-item p { color: var(--muted); font-size: .92rem; margin: 0; }

/* ---------- Founder section ---------- */
.founder-banner { margin-bottom: 32px; }
.founder-banner img {
  width: 100%;
  display: block;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.founder-bio { max-width: 760px; margin: 0 auto; text-align: center; }
.founder-bio p { color: var(--text); font-size: 1.03rem; }
.founder-badges { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-top: 18px; }
.founder-badges .pill {
  background: var(--orange-light);
  color: var(--orange-dark);
  font-weight: 700;
  font-size: .8rem;
  padding: 8px 16px;
  border-radius: 50px;
  border: 1px solid rgba(240,112,28,.35);
}

/* ---------- Clients marquee ---------- */
.clients-marquee { position: relative; overflow: hidden; }
.clients-marquee::before, .clients-marquee::after {
  content: "";
  position: absolute;
  top: 0; bottom: 0;
  width: 90px;
  z-index: 2;
  pointer-events: none;
}
.clients-marquee::before { left: 0; background: linear-gradient(90deg, var(--bg-soft), transparent); }
.clients-marquee::after { right: 0; background: linear-gradient(270deg, var(--bg-soft), transparent); }
.clients-track {
  display: flex;
  align-items: center;
  gap: 32px;
  width: max-content;
  animation: clientsScroll 34s linear infinite;
}
.clients-marquee:hover .clients-track { animation-play-state: paused; }
.client-logo {
  flex: 0 0 auto;
  width: 170px;
  height: 104px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  box-shadow: 0 4px 14px rgba(27,37,48,.05);
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.client-logo img { max-width: 100%; max-height: 100%; object-fit: contain; }
.client-logo:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: transparent; }
@keyframes clientsScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .clients-track { animation: none; }
}
@media (max-width: 767px) {
  .client-logo { width: 130px; height: 84px; padding: 12px; }
  .clients-marquee::before, .clients-marquee::after { width: 40px; }
}

/* ---------- Fleet gallery ---------- */
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.gallery-grid figure { margin: 0; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); position: relative; }
.gallery-grid img { height: 230px; width: 100%; object-fit: cover; transition: transform .35s ease; }
.gallery-grid figure:hover img { transform: scale(1.07); }

/* ---------- Branches ---------- */
.branch-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.branch-card.ho { border: 2px solid var(--orange); background: var(--orange-light); }
.branch-card .pin {
  width: 46px; height: 46px;
  border-radius: 10px;
  background: var(--orange);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.branch-card .pin svg { width: 22px; height: 22px; }
.branch-card h3 { font-size: 1.05rem; margin-bottom: 4px; }
.branch-card .state { color: var(--orange); font-size: .8rem; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; margin-bottom: 8px; }
.branch-card p { color: var(--muted); font-size: .92rem; margin: 0; }
.tag-ho {
  display: inline-block;
  background: var(--orange);
  color: var(--white);
  font-size: .68rem;
  font-weight: 800;
  padding: 3px 10px;
  border-radius: 50px;
  letter-spacing: .06em;
  margin-bottom: 8px;
}

/* ---------- CTA strip ---------- */
.cta-strip {
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius);
  padding: 46px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.cta-strip h2 { color: var(--white); margin-bottom: 6px; font-size: 1.6rem; }
.cta-strip p { color: #c4ccd4; margin: 0; }
.cta-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ---------- Contact page ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.contact-info-card {
  display: flex;
  gap: 16px;
  padding: 22px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 18px;
}
.contact-info-card .icon {
  width: 48px; height: 48px; border-radius: 10px;
  background: var(--orange-light); color: var(--orange);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.contact-info-card h4 { margin-bottom: 4px; font-size: 1rem; }
.contact-info-card p { margin: 0; color: var(--muted); font-size: .93rem; }
.contact-info-card a { color: var(--muted); }
.contact-info-card a:hover { color: var(--orange); }

form.contact-form { background: var(--bg-soft); padding: 34px; border-radius: var(--radius); border: 1px solid var(--border); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-weight: 600; font-size: .88rem; margin-bottom: 6px; color: var(--navy); }
.form-group input, .form-group textarea, .form-group select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 6px;
  font-family: inherit;
  font-size: .95rem;
  background: var(--white);
}
.form-group input:focus, .form-group textarea:focus { outline: 2px solid var(--orange); border-color: var(--orange); }

.map-wrap { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); border: 1px solid var(--border); }
.map-wrap iframe { width: 100%; height: 380px; border: 0; display: block; }

/* ---------- Footer ---------- */
footer.site-footer { background: var(--navy); color: #b9c2cb; }
.footer-top { padding: 60px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.3fr; gap: 36px; }
.footer-grid h4 { color: var(--white); font-size: 1rem; margin-bottom: 18px; }
.footer-about .logo-text .name { color: var(--white); }
.footer-about p { color: #9aa5af; font-size: .92rem; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: #b9c2cb; font-size: .92rem; }
.footer-links a:hover { color: var(--orange); }
.footer-contact li { display: flex; gap: 10px; margin-bottom: 14px; font-size: .9rem; color: #b9c2cb; }
.footer-contact svg { width: 18px; height: 18px; flex-shrink: 0; color: var(--orange); margin-top: 2px; }
.social-row { display: flex; gap: 10px; margin-top: 18px; }
.social-row a {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,.08);
  display: flex; align-items: center; justify-content: center;
}
.social-row a:hover { background: var(--orange); }
.social-row svg { width: 18px; height: 18px; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 20px 0;
  font-size: .85rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-bottom a:hover { color: var(--orange); }

/* ---------- Floating WhatsApp ---------- */
.float-whatsapp {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: #25d366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 22px rgba(0,0,0,.25);
  z-index: 200;
  animation: pulse 2.2s infinite;
}
.float-whatsapp svg { width: 30px; height: 30px; color: var(--white); }
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(37,211,102,.5); }
  70% { box-shadow: 0 0 0 14px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

/* ---------- Misc ---------- */
.text-center { text-align: center; }
.mt-40 { margin-top: 40px; }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 991px) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .split { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .hero { min-height: 480px; }
}

@media (max-width: 767px) {
  nav.main-nav {
    position: fixed;
    top: 0; right: -100%;
    height: 100vh;
    width: 78%;
    max-width: 320px;
    background: var(--navy);
    padding: 90px 26px 26px;
    transition: right .3s ease;
    z-index: 150;
  }
  nav.main-nav.open { right: 0; }
  nav.main-nav ul { flex-direction: column; align-items: flex-start; gap: 4px; width: 100%; }
  nav.main-nav a { color: var(--white); width: 100%; }
  nav.main-nav a:hover, nav.main-nav a.active { color: var(--orange); }
  .nav-toggle { display: flex; }
  .topbar-left { display: none; }
  .nav-cta .btn span.btn-text { display: none; }
  .grid-3, .grid-4, .grid-2 { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-strip .container { grid-template-columns: repeat(2, 1fr); row-gap: 32px; padding-top: 38px; padding-bottom: 38px; }
  .hero h1 { font-size: 2.1rem; }
  .hero { min-height: 420px; text-align: left; }
  .hero-slider { min-height: 460px; }
  .hero-slider .slide-content h1 { font-size: 1.9rem; }
  .slider-arrow { width: 38px; height: 38px; font-size: 1.3rem; }
  .slider-arrow.prev { left: 10px; }
  .slider-arrow.next { right: 10px; }
  .cta-strip { flex-direction: column; text-align: center; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; justify-content: center; }
  .form-row { grid-template-columns: 1fr; }
  .section { padding: 52px 0; }
}
