/* ═══════════════════════════════════════════════════════
   BUFFEL ON EARTH PEST CONTROL — styles.css
   Polokwane, Limpopo, South Africa
   buffelpestcontrol.co.za
═══════════════════════════════════════════════════════ */

/* ── RESET & ROOT ──────────────────────────────────── */
:root {
  --navy:    #0a1628;
  --navy2:   #112240;
  --blue:    #1565c0;
  --blue-lt: #1e88e5;
  --red:     #e53935;
  --red-dk:  #b71c1c;
  --white:   #f8fafc;
  --gray:    #94a3b8;
  --gray-lt: #e2e8f0;
  --green:   #16a34a;
  --gold:    #f59e0b;

  --shadow-sm:  0 2px 12px rgba(0,0,0,.07);
  --shadow-md:  0 8px 32px rgba(0,0,0,.11);
  --shadow-lg:  0 16px 56px rgba(0,0,0,.16);
  --radius:     10px;
  --transition: .3s cubic-bezier(.4,0,.2,1);
}

*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; font-size:16px; }

body {
  font-family: 'Nunito', sans-serif;
  background: var(--white);
  color: var(--navy);
  overflow-x: hidden;
  line-height: 1.6;
}

/* ── LOADER ────────────────────────────────────────── */
#page-loader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--navy);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 20px;
  transition: opacity .5s, visibility .5s;
}
#page-loader.hidden { opacity: 0; visibility: hidden; }
.loader-logo { width: 100px; animation: loaderPulse 1s ease-in-out infinite; }
@keyframes loaderPulse { 0%,100%{transform:scale(1)} 50%{transform:scale(1.08)} }
.loader-bar {
  width: 200px; height: 3px;
  background: rgba(255,255,255,.12);
  border-radius: 999px; overflow: hidden;
}
.loader-fill {
  height: 100%; background: var(--red);
  border-radius: 999px;
  animation: loaderGrow 1.4s ease forwards;
}
@keyframes loaderGrow { from{width:0} to{width:100%} }
.loader-text {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 14px; letter-spacing: .25em;
  color: rgba(255,255,255,.4);
}

/* ── BACK TO TOP ───────────────────────────────────── */
#back-to-top {
  position: fixed; bottom: 28px; right: 28px; z-index: 800;
  width: 48px; height: 48px;
  background: var(--red); color: #fff;
  border: none; border-radius: 50%;
  font-size: 20px; cursor: pointer;
  box-shadow: 0 4px 18px rgba(229,57,53,.45);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden;
  transition: var(--transition);
  transform: translateY(10px);
}
#back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
#back-to-top:hover { background: var(--red-dk); transform: translateY(-3px); }

/* ── NAV ───────────────────────────────────────────── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(10,22,40,.95);
  backdrop-filter: blur(14px);
  border-bottom: 2px solid var(--red);
  transition: var(--transition);
}
nav.scrolled {
  background: rgba(10,22,40,.99);
  box-shadow: 0 4px 24px rgba(0,0,0,.35);
}
.nav-inner {
  max-width: 1200px; margin: 0 auto;
  padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between;
  height: 70px;
}
.nav-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.nav-logo img {
  height: 52px; width: auto;
  filter: drop-shadow(0 2px 8px rgba(229,57,53,.3));
  transition: transform .3s;
}
.nav-logo:hover img { transform: scale(1.05); }
.nav-brand { line-height: 1.1; }
.nav-brand-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 20px; color: #fff; letter-spacing: .08em;
}
.nav-brand-sub {
  font-size: 9.5px; letter-spacing: .22em;
  text-transform: uppercase; color: var(--red);
}
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-link {
  background: none; border: none;
  color: rgba(255,255,255,.8);
  font-family: 'Nunito', sans-serif;
  font-size: 13.5px; font-weight: 700;
  letter-spacing: .05em; padding: 8px 14px;
  cursor: pointer; border-radius: 6px;
  transition: var(--transition);
  text-transform: uppercase;
  text-decoration: none; display: inline-block;
  position: relative;
}
.nav-link::after {
  content: ''; position: absolute;
  bottom: 4px; left: 14px; right: 14px;
  height: 2px; background: var(--red);
  transform: scaleX(0); transition: transform .25s;
  border-radius: 2px;
}
.nav-link:hover::after,
.nav-link.active::after { transform: scaleX(1); }
.nav-link:hover, .nav-link.active { color: #fff; }
.nav-cta {
  background: var(--red) !important;
  color: #fff !important; border-radius: 6px;
  padding: 9px 20px !important;
  box-shadow: 0 3px 14px rgba(229,57,53,.35);
}
.nav-cta::after { display: none; }
.nav-cta:hover { background: var(--red-dk) !important; transform: translateY(-1px); box-shadow: 0 6px 20px rgba(229,57,53,.45); }

/* Hamburger */
.nav-hamburger {
  display: none; flex-direction: column;
  gap: 5px; cursor: pointer;
  background: none; border: none; padding: 6px;
}
.nav-hamburger span {
  display: block; width: 26px; height: 2.5px;
  background: #fff; border-radius: 2px;
  transition: var(--transition);
}
.nav-hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* Mobile menu */
.mobile-menu {
  position: fixed; top: 70px; left: 0; right: 0;
  background: rgba(8,18,34,.98);
  backdrop-filter: blur(18px);
  border-bottom: 2px solid var(--red);
  padding: 20px 24px 28px;
  display: flex; flex-direction: column; gap: 6px;
  transform: translateY(-110%);
  transition: transform .35s cubic-bezier(.4,0,.2,1);
  z-index: 999;
}
.mobile-menu.open { transform: translateY(0); }
.mobile-menu .nav-link { width: 100%; text-align: left; padding: 12px 16px; border-radius: 8px; }
.mobile-menu .nav-cta { margin-top: 8px; text-align: center; }

/* ── HERO ──────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy2) 55%, #0d2137 100%);
  display: flex; align-items: center;
  position: relative; overflow: hidden;
  padding: 100px 24px 70px;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 70% 50%, rgba(21,101,192,.22) 0%, transparent 62%);
}
.hero-particles {
  position: absolute; inset: 0; pointer-events: none;
}
.hero-particle {
  position: absolute;
  background: rgba(229,57,53,.18);
  border-radius: 50%;
  animation: floatParticle linear infinite;
}
@keyframes floatParticle {
  0% { transform: translateY(100vh) scale(0); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { transform: translateY(-10vh) scale(1); opacity: 0; }
}
.hero-dots {
  position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 32px 32px;
}
.hero-content {
  max-width: 1200px; margin: 0 auto; width: 100%;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
  position: relative; z-index: 1;
}
.hero-location {
  display: inline-flex; align-items: center; gap: 6px;
  color: rgba(255,255,255,.5); font-size: 13px;
  margin-bottom: 14px;
  animation: heroFadeUp 1s .1s both;
}
.hero-location::before { content: '📍'; font-size: 14px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(229,57,53,.1); border: 1px solid rgba(229,57,53,.28);
  border-radius: 50px; padding: 6px 16px;
  font-size: 11.5px; letter-spacing: .2em; text-transform: uppercase;
  color: var(--red); margin-bottom: 22px;
  animation: heroFadeUp 1s .2s both;
}
.hero-badge::before { content: '●'; font-size: 8px; animation: blink 1.5s ease infinite; }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:.25} }

.hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(50px,7.5vw,92px);
  line-height: .9; color: #fff;
  margin-bottom: 22px;
  animation: heroFadeUp 1s .35s both;
}
.hero-title .accent { color: var(--red); display: block; }
.hero-title .typed-cursor {
  color: var(--red); animation: blink 1s step-end infinite;
}
.hero-desc {
  font-size: 17px; line-height: 1.78;
  color: rgba(255,255,255,.68);
  max-width: 500px; margin-bottom: 38px;
  animation: heroFadeUp 1s .5s both;
}
.hero-btns {
  display: flex; gap: 14px; flex-wrap: wrap;
  animation: heroFadeUp 1s .65s both;
}
.hero-phone {
  display: flex; align-items: center; gap: 8px;
  color: rgba(255,255,255,.55); font-size: 13px;
  margin-top: 18px;
  animation: heroFadeUp 1s .78s both;
}
.hero-phone a { color: rgba(255,255,255,.8); text-decoration: none; font-weight:700; }
.hero-phone a:hover { color: var(--red); }

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

/* Hero visual */
.hero-visual {
  display: flex; justify-content: center; align-items: center;
  position: relative;
  animation: heroFadeUp 1s .4s both;
}
.hero-ring {
  position: absolute; border-radius: 50%;
  border: 1px solid rgba(21,101,192,.2);
  animation: heroRing 3s ease-in-out infinite;
}
.hero-ring-1 { width: 380px; height: 380px; animation-delay: 0s; }
.hero-ring-2 { width: 460px; height: 460px; animation-delay: 1s; border-color: rgba(229,57,53,.1); }
.hero-ring-3 { width: 540px; height: 540px; animation-delay: 2s; border-color: rgba(21,101,192,.07); }
@keyframes heroRing { 0%,100%{opacity:.4;transform:scale(1)} 50%{opacity:.9;transform:scale(1.025)} }
.hero-logo-wrap { animation: float 4.5s ease-in-out infinite; position: relative; z-index: 1; }
@keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-18px)} }
.hero-logo-wrap img {
  width: 310px; height: auto;
  filter: drop-shadow(0 24px 64px rgba(21,101,192,.5));
}

/* ── AREA STRIP ────────────────────────────────────── */
.area-strip {
  background: var(--navy2);
  border-top: 1px solid rgba(255,255,255,.05);
  border-bottom: 1px solid rgba(255,255,255,.05);
  padding: 16px 24px;
  overflow: hidden;
}
.area-ticker {
  display: flex; gap: 24px; align-items: center;
  white-space: nowrap;
  animation: ticker 22s linear infinite;
}
.area-ticker:hover { animation-play-state: paused; }
@keyframes ticker { from{transform:translateX(0)} to{transform:translateX(-50%)} }
.area-chip {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 50px; padding: 4px 14px;
  font-size: 11.5px; color: rgba(255,255,255,.6);
  letter-spacing: .08em; white-space: nowrap; flex-shrink: 0;
}
.area-chip.main {
  background: rgba(229,57,53,.13);
  border-color: rgba(229,57,53,.28);
  color: rgba(229,57,53,.9);
}

/* ── STATS ─────────────────────────────────────────── */
.stats { background: var(--navy); padding: 56px 24px; }
.stats-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4,1fr); gap: 30px;
}
.stat-item { text-align: center; position: relative; }
.stat-item:not(:last-child)::after {
  content: ''; position: absolute;
  right: 0; top: 10%; bottom: 10%;
  width: 1px; background: rgba(255,255,255,.08);
}
.stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(42px,5vw,60px);
  color: var(--red); line-height: 1;
  margin-bottom: 6px;
  text-shadow: 0 0 30px rgba(229,57,53,.25);
}
.stat-label {
  font-size: 12px; color: rgba(255,255,255,.55);
  letter-spacing: .14em; text-transform: uppercase;
}

/* ── SECTION COMMON ────────────────────────────────── */
.section-eyebrow {
  font-size: 11.5px; letter-spacing: .3em;
  text-transform: uppercase; color: var(--red);
  font-weight: 800; margin-bottom: 10px;
}
.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(34px,5vw,56px);
  color: var(--navy); margin-bottom: 16px; line-height: 1;
}
.section-title.white { color: #fff; }
.section-desc {
  font-size: 16px; color: var(--gray);
  max-width: 600px; margin-bottom: 50px; line-height: 1.75;
}
.section-inner { max-width: 1200px; margin: 0 auto; }

/* ── BUTTONS ───────────────────────────────────────── */
.btn-primary {
  background: var(--red); color: #fff;
  border: none; padding: 14px 32px;
  font-family: 'Nunito', sans-serif;
  font-size: 15px; font-weight: 800;
  letter-spacing: .05em; cursor: pointer;
  border-radius: 6px; transition: var(--transition);
  text-transform: uppercase; text-decoration: none;
  display: inline-block; position: relative; overflow: hidden;
}
.btn-primary::after {
  content: ''; position: absolute; inset: 0;
  background: rgba(255,255,255,.12);
  transform: translateX(-100%);
  transition: transform .35s;
}
.btn-primary:hover::after { transform: translateX(0); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(229,57,53,.42); }
.btn-primary:active { transform: translateY(0); }

.btn-outline {
  background: transparent; color: #fff;
  border: 2px solid rgba(255,255,255,.3);
  padding: 13px 28px;
  font-family: 'Nunito', sans-serif;
  font-size: 15px; font-weight: 700;
  cursor: pointer; border-radius: 6px;
  transition: var(--transition); text-transform: uppercase;
  text-decoration: none; display: inline-block;
}
.btn-outline:hover { border-color: #fff; background: rgba(255,255,255,.07); transform: translateY(-2px); }

.btn-white {
  background: #fff; color: var(--red);
  border: none; padding: 14px 36px;
  font-family: 'Nunito', sans-serif;
  font-size: 15px; font-weight: 800;
  cursor: pointer; border-radius: 6px;
  transition: var(--transition); text-transform: uppercase;
  text-decoration: none; display: inline-block;
}
.btn-white:hover { background: var(--navy); color: #fff; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,.25); }

/* ── SERVICE CARDS ─────────────────────────────────── */
.services-section { padding: 86px 24px; background: #fff; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr); gap: 28px;
}
.service-card {
  background: #fff;
  border: 1px solid var(--gray-lt);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
  cursor: pointer; text-decoration: none;
  display: block; color: inherit;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(229,57,53,.2);
}
.service-img {
  width: 100%; height: 190px;
  overflow: hidden; position: relative;
}
.service-img img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform .5s cubic-bezier(.4,0,.2,1);
}
.service-card:hover .service-img img { transform: scale(1.08); }
.service-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(10,22,40,.6) 100%);
  opacity: 0; transition: var(--transition);
}
.service-card:hover .service-img-overlay { opacity: 1; }
.service-badge {
  position: absolute; top: 12px; right: 12px;
  background: var(--red); color: #fff;
  font-size: 10px; font-weight: 800;
  letter-spacing: .1em; text-transform: uppercase;
  padding: 4px 10px; border-radius: 4px;
  opacity: 0; transform: translateY(-4px);
  transition: var(--transition);
}
.service-card:hover .service-badge { opacity: 1; transform: translateY(0); }
.service-body { padding: 24px; }
.service-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px; color: var(--navy);
  margin-bottom: 8px; letter-spacing: .02em;
}
.service-text { font-size: 13.5px; color: var(--gray); line-height: 1.65; }
.service-footer {
  display: flex; align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  border-top: 1px solid var(--gray-lt);
}
.service-link-text {
  font-size: 12px; font-weight: 800;
  text-transform: uppercase; letter-spacing: .08em;
  color: var(--blue); transition: color .2s;
}
.service-card:hover .service-link-text { color: var(--red); }
.service-arrow { color: var(--blue); font-size: 16px; transition: var(--transition); }
.service-card:hover .service-arrow { transform: translateX(4px); color: var(--red); }

/* ── WHY US ────────────────────────────────────────── */
.why-section {
  padding: 86px 24px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy2) 100%);
  position: relative; overflow: hidden;
}
.why-section::before {
  content: ''; position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 60%, rgba(21,101,192,.15) 0%, transparent 55%);
}
.why-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 70px; align-items: center;
  position: relative; z-index: 1;
}
.why-item { display: flex; gap: 18px; margin-bottom: 26px; }
.why-item:last-child { margin-bottom: 0; }
.why-icon {
  width: 50px; height: 50px; min-width: 50px;
  background: rgba(229,57,53,.12);
  border: 1px solid rgba(229,57,53,.2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 21px; margin-top: 2px;
  transition: var(--transition);
}
.why-item:hover .why-icon { background: var(--red); transform: scale(1.08); }
.why-item-title { font-weight: 800; color: #fff; margin-bottom: 5px; font-size: 15px; }
.why-item-text { font-size: 13.5px; color: rgba(255,255,255,.58); line-height: 1.68; }

/* ── CTA BANNER ────────────────────────────────────── */
.cta-banner {
  background: var(--red); padding: 70px 24px;
  text-align: center; position: relative; overflow: hidden;
}
.cta-banner::before {
  content: ''; position: absolute; inset: 0;
  background: repeating-linear-gradient(
    45deg, rgba(255,255,255,.04) 0px,
    rgba(255,255,255,.04) 1px, transparent 1px, transparent 40px
  );
}
.cta-banner-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(30px,5vw,52px);
  color: #fff; margin-bottom: 12px;
  position: relative;
}
.cta-banner-sub {
  font-size: 16px; color: rgba(255,255,255,.84);
  margin-bottom: 30px; position: relative;
}

/* ── PAGE HERO (inner pages) ───────────────────────── */
.page-hero {
  background: linear-gradient(135deg, var(--navy), var(--navy2));
  padding: 120px 24px 70px; text-align: center;
  position: relative; overflow: hidden;
}
.page-hero::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 80%, rgba(229,57,53,.08) 0%, transparent 60%);
}
.page-hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(42px,7vw,74px);
  color: #fff; margin-bottom: 12px;
  position: relative; z-index: 1;
}
.page-hero-breadcrumb {
  font-size: 12.5px; color: rgba(255,255,255,.45);
  letter-spacing: .1em; position: relative; z-index: 1;
}
.page-hero-breadcrumb a { color: rgba(255,255,255,.45); text-decoration: none; }
.page-hero-breadcrumb a:hover { color: var(--red); }
.page-hero-breadcrumb span { color: var(--red); }

/* ── ABOUT ─────────────────────────────────────────── */
.about-story { padding: 86px 24px; background: #fff; }
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 70px; align-items: center;
}
.about-img-wrap {
  background: linear-gradient(135deg, var(--navy), var(--blue));
  border-radius: 14px; padding: 56px 40px;
  text-align: center; color: #fff;
  position: relative; overflow: hidden;
}
.about-img-wrap::before {
  content: ''; position: absolute;
  bottom: -60px; right: -60px;
  width: 200px; height: 200px;
  background: rgba(229,57,53,.08); border-radius: 50%;
}
.about-img-wrap img { width: 190px; height: auto; margin-bottom: 18px; position: relative; z-index: 1; }
.about-img-wrap p { font-size: 14px; color: rgba(255,255,255,.68); line-height: 1.75; position: relative; z-index: 1; }
.about-text .label {
  font-size: 11.5px; letter-spacing: .25em;
  text-transform: uppercase; color: var(--red);
  font-weight: 800; margin-bottom: 10px;
}
.about-text h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 42px; color: var(--navy);
  margin-bottom: 20px; line-height: 1;
}
.about-text p { font-size: 15px; color: #475569; line-height: 1.82; margin-bottom: 16px; }

/* Values */
.values-section { padding: 80px 24px; background: var(--gray-lt); }
.values-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 24px; margin-top: 44px;
}
.value-card {
  background: #fff; border-radius: var(--radius);
  padding: 32px; border-top: 4px solid var(--blue);
  box-shadow: var(--shadow-sm); transition: var(--transition);
}
.value-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.value-icon { font-size: 34px; margin-bottom: 14px; }
.value-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px; color: var(--navy); margin-bottom: 8px;
}
.value-text { font-size: 14px; color: var(--gray); line-height: 1.68; }

/* Team */
.team-section { padding: 86px 24px; background: #fff; text-align: center; }
.team-grid {
  display: grid; grid-template-columns: repeat(2,1fr);
  gap: 32px; max-width: 800px; margin: 44px auto 0;
}
.team-card {
  background: linear-gradient(135deg, var(--navy), var(--navy2));
  border-radius: 14px; padding: 38px;
  color: #fff; position: relative; overflow: hidden;
  transition: var(--transition);
}
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.team-card::before {
  content: ''; position: absolute;
  top: -50px; right: -50px;
  width: 160px; height: 160px;
  background: rgba(229,57,53,.07); border-radius: 50%;
}
.team-avatar {
  width: 82px; height: 82px;
  background: linear-gradient(135deg, var(--blue), var(--red));
  border-radius: 50%; display: flex; align-items: center;
  justify-content: center; font-family: 'Bebas Neue', sans-serif;
  font-size: 30px; color: #fff; margin: 0 auto 18px;
  position: relative; z-index: 1;
}
.team-name { font-family: 'Bebas Neue', sans-serif; font-size: 24px; margin-bottom: 4px; }
.team-role { font-size: 11px; letter-spacing: .2em; text-transform: uppercase; color: var(--red); margin-bottom: 18px; }
.team-contact { font-size: 13.5px; color: rgba(255,255,255,.7); line-height: 2; }
.team-contact a { color: rgba(255,255,255,.88); text-decoration: none; }
.team-contact a:hover { color: var(--red); }

/* ── SERVICES FULL PAGE ────────────────────────────── */
.services-full { padding: 86px 24px; background: #fff; }
.services-full-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 28px; margin-top: 44px;
}
.svc-card {
  border: 1px solid var(--gray-lt);
  border-radius: 12px; overflow: hidden;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}
.svc-card:hover { border-color: var(--blue); box-shadow: var(--shadow-lg); transform: translateY(-6px); }
.svc-card-img { width: 100%; height: 170px; object-fit: cover; display: block; transition: transform .5s; }
.svc-card:hover .svc-card-img { transform: scale(1.06); }
.svc-img-wrap { overflow: hidden; height: 170px; }
.svc-card-body { padding: 28px; }
.svc-name { font-family: 'Bebas Neue', sans-serif; font-size: 25px; color: var(--navy); margin-bottom: 10px; }
.svc-desc { font-size: 13.5px; color: var(--gray); line-height: 1.72; margin-bottom: 20px; }
.svc-features { list-style: none; }
.svc-features li {
  font-size: 13px; color: #475569;
  padding: 4px 0; display: flex; align-items: center; gap: 9px;
}
.svc-features li::before { content: '✓'; color: var(--green); font-weight: 900; font-size: 14px; }

/* SVG placeholder for services without photos */
.svc-svg-placeholder {
  width: 100%; height: 170px;
  display: flex; align-items: center; justify-content: center;
  font-size: 60px;
}

/* ── CONTACT ───────────────────────────────────────── */
.contact-section { padding: 86px 24px; background: #fff; }
.contact-grid {
  display: grid; grid-template-columns: 1fr 1.25fr;
  gap: 60px; align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: 22px; }
.contact-card {
  background: linear-gradient(135deg, var(--navy), var(--navy2));
  border-radius: 12px; padding: 28px; color: #fff;
  transition: var(--transition);
}
.contact-card:hover { transform: translateX(4px); box-shadow: var(--shadow-md); }
.contact-card-role {
  font-size: 10.5px; letter-spacing: .2em;
  text-transform: uppercase; color: var(--red);
  margin-bottom: 7px; font-weight: 800;
}
.contact-card-name { font-family: 'Bebas Neue', sans-serif; font-size: 24px; margin-bottom: 14px; }
.contact-detail { display: flex; align-items: center; gap: 11px; font-size: 14px; color: rgba(255,255,255,.8); margin-bottom: 9px; }
.contact-detail a { color: rgba(255,255,255,.9); text-decoration: none; }
.contact-detail a:hover { color: var(--red); }
.contact-icon { width: 32px; height: 32px; background: rgba(229,57,53,.18); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 14px; min-width: 32px; }
.contact-general { background: var(--gray-lt); border-radius: 12px; padding: 28px; }
.contact-general-title { font-family: 'Bebas Neue', sans-serif; font-size: 22px; color: var(--navy); margin-bottom: 14px; }
.contact-general p { font-size: 13px; color: var(--gray); line-height: 1.9; }
.contact-general strong { color: var(--navy); }

/* Form */
.contact-form {
  background: #fff; border: 1px solid var(--gray-lt);
  border-radius: 14px; padding: 38px;
  box-shadow: var(--shadow-md);
}
.form-title { font-family: 'Bebas Neue', sans-serif; font-size: 30px; color: var(--navy); margin-bottom: 6px; }
.form-subtitle { font-size: 14px; color: var(--gray); margin-bottom: 28px; line-height: 1.65; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 16px; }
.form-group label {
  display: block; font-size: 11.5px; font-weight: 800;
  color: var(--navy); margin-bottom: 7px;
  text-transform: uppercase; letter-spacing: .07em;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; border: 1.5px solid var(--gray-lt);
  border-radius: 7px; padding: 12px 15px;
  font-family: 'Nunito', sans-serif;
  font-size: 14px; color: var(--navy);
  background: #fff; outline: none;
  transition: border-color .2s, box-shadow .2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(21,101,192,.09);
}
.form-group input.error,
.form-group select.error,
.form-group textarea.error {
  border-color: var(--red);
  box-shadow: 0 0 0 4px rgba(229,57,53,.09);
}
.form-group textarea { resize: vertical; min-height: 110px; }
.form-submit {
  width: 100%; background: var(--red); color: #fff;
  border: none; padding: 15px;
  font-family: 'Nunito', sans-serif;
  font-size: 15px; font-weight: 800; cursor: pointer;
  border-radius: 8px; transition: var(--transition);
  text-transform: uppercase; letter-spacing: .08em;
  display: flex; align-items: center; justify-content: center; gap: 10px;
}
.form-submit:hover:not(:disabled) { background: var(--red-dk); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(229,57,53,.38); }
.form-submit:disabled { opacity: .65; cursor: not-allowed; transform: none; }
.spinner { width: 18px; height: 18px; border: 2px solid rgba(255,255,255,.4); border-top-color: #fff; border-radius: 50%; animation: spin .7s linear infinite; display: none; }
@keyframes spin { to{transform:rotate(360deg)} }
.form-submit.loading .spinner { display: block; }
.form-submit.loading .btn-text { display: none; }
.form-alert {
  border-radius: 8px; padding: 14px 18px;
  font-size: 14px; font-weight: 700;
  margin-top: 16px; display: none;
  align-items: center; gap: 10px; line-height: 1.5;
}
.form-alert.success { background: rgba(22,163,74,.08); border: 1.5px solid rgba(22,163,74,.35); color: #15803d; }
.form-alert.error-alert { background: rgba(229,57,53,.07); border: 1.5px solid rgba(229,57,53,.25); color: var(--red-dk); }
.form-alert.show { display: flex; }

/* ── FOOTER ────────────────────────────────────────── */
footer {
  background: var(--navy);
  border-top: 2px solid var(--red);
  padding: 56px 24px 24px;
}
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr;
  gap: 44px; margin-bottom: 44px;
}
.footer-brand img { height: 66px; margin-bottom: 14px; display: block; }
.footer-brand p { font-size: 13px; color: rgba(255,255,255,.48); line-height: 1.75; max-width: 280px; }
.footer-col-title { font-family: 'Bebas Neue', sans-serif; font-size: 18px; color: #fff; margin-bottom: 18px; letter-spacing: .06em; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 9px; }
.footer-links a { color: rgba(255,255,255,.5); font-size: 13.5px; text-decoration: none; transition: color .2s; }
.footer-links a:hover { color: var(--red); }
.footer-contact-item { display: flex; align-items: center; gap: 9px; color: rgba(255,255,255,.5); font-size: 13.5px; margin-bottom: 10px; }
.footer-contact-item a { color: rgba(255,255,255,.5); text-decoration: none; }
.footer-contact-item a:hover { color: var(--red); }
.footer-seo { font-size: 10.5px; color: rgba(255,255,255,.15); line-height: 1.9; padding-bottom: 20px; border-bottom: 1px solid rgba(255,255,255,.06); }
.footer-bottom {
  padding-top: 20px; display: flex;
  justify-content: space-between; align-items: center;
  font-size: 12px; color: rgba(255,255,255,.28);
  flex-wrap: wrap; gap: 8px;
}

/* ── SCROLL REVEAL ─────────────────────────────────── */
.reveal { opacity:0; transform:translateY(32px); transition:opacity .7s ease, transform .7s ease; }
.reveal.from-left { transform:translateX(-32px); }
.reveal.from-right { transform:translateX(32px); }
.reveal.scale-in { transform:scale(.94); }
.reveal.visible { opacity:1; transform:none; }

/* ── TOOLTIP ───────────────────────────────────────── */
[data-tooltip] { position: relative; cursor: pointer; }
[data-tooltip]::before {
  content: attr(data-tooltip);
  position: absolute; bottom: calc(100% + 8px);
  left: 50%; transform: translateX(-50%);
  background: var(--navy); color: #fff;
  font-size: 12px; white-space: nowrap;
  padding: 6px 12px; border-radius: 5px;
  opacity: 0; pointer-events: none;
  transition: opacity .2s; z-index: 100;
}
[data-tooltip]:hover::before { opacity: 1; }

/* ── NOTIFICATION TOAST ────────────────────────────── */
.toast {
  position: fixed; bottom: 90px; left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--navy); color: #fff;
  padding: 14px 24px; border-radius: 8px;
  font-size: 14px; font-weight: 600;
  box-shadow: 0 8px 30px rgba(0,0,0,.25);
  z-index: 2000; opacity: 0;
  transition: all .35s cubic-bezier(.4,0,.2,1);
  border-left: 4px solid var(--green);
  max-width: 90vw; text-align: center;
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }
.toast.error-toast { border-color: var(--red); }

/* ── MOBILE ────────────────────────────────────────── */
@media(max-width:900px) {
  .services-grid, .services-full-grid, .values-grid { grid-template-columns: repeat(2,1fr); }
}
@media(max-width:768px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .hero-content { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .stats-inner { grid-template-columns: repeat(2,1fr); }
  .services-grid, .services-full-grid,
  .values-grid, .why-grid,
  .about-grid, .contact-grid,
  .footer-grid, .team-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero-logo-wrap img { width: 200px; }
}
@media(max-width:480px) {
  .services-grid, .services-full-grid { grid-template-columns: 1fr; }
  .hero-title { font-size: 48px; }
}
