/* ============================================
   SAAVY INTEGRATED SERVICES — Premium Design
   Palette: #15504e (Teal) + #d2911c (Gold) + Whites
   ============================================ */

:root {
  --teal: #15504e;
  --teal-dark: #0e3836;
  --teal-darker: #0a2625;
  --teal-light: #1d6b68;
  --teal-pale: #e6f0ef;
  --teal-ghost: #f2f8f7;
  --gold: #d2911c;
  --gold-dark: #b87c15;
  --gold-light: #e5a832;
  --gold-pale: #fdf5e6;
  --gold-glow: rgba(210, 145, 28, 0.15);
  --dark: #0a1a19;
  --dark-mid: #122e2c;
  --text: #2c3e3d;
  --text-light: #5a7270;
  --text-muted: #849a98;
  --white: #ffffff;
  --off-white: #f7fafa;
  --border: #d4e0df;
  --shadow-sm: 0 2px 12px rgba(21, 80, 78, 0.06);
  --shadow-md: 0 8px 30px rgba(21, 80, 78, 0.1);
  --shadow-lg: 0 12px 50px rgba(21, 80, 78, 0.14);
  --shadow-gold: 0 8px 30px rgba(210, 145, 28, 0.2);
  --radius: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.75;
  font-size: 1rem;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 0.5em;
}

h1 { font-size: 3rem; }
h2 { font-size: 2.3rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }
p { margin-bottom: 1rem; color: var(--text); }
a { color: var(--teal); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--gold); }
img { max-width: 100%; height: auto; }

/* ======= NAVBAR ======= */
.navbar-saavy {
  background: transparent;
  padding: 1rem 0;
  border-bottom: 1px solid transparent;
  transition: all 0.4s ease;
  z-index: 1050;
}

.navbar-saavy.scrolled {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  padding: 0.5rem 0;
}

.navbar-saavy .navbar-brand {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--white) !important;
  transition: var(--transition);
}

.navbar-saavy.scrolled .navbar-brand { color: var(--teal) !important; }

.navbar-saavy .navbar-brand .brand-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  margin-left: 2px;
  vertical-align: super;
}

.navbar-saavy .nav-link {
  font-size: 0.9rem;
  font-weight: 600;
  color: #000000 !important;
  padding: 0.5rem 1.1rem !important;
  position: relative;
  letter-spacing: 0.02em;
  transition: var(--transition);
}

.navbar-saavy.scrolled .nav-link { color: var(--text) !important; }

.navbar-saavy .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 1.1rem;
  right: 1.1rem;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s ease;
  border-radius: 2px;
}

.navbar-saavy .nav-link:hover::after,
.navbar-saavy .nav-link.active::after { transform: scaleX(1); transform-origin: left; }
.navbar-saavy .nav-link:hover,
.navbar-saavy .nav-link.active { color: var(--gold) !important; }

.navbar-saavy .dropdown-menu {
  border: none;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 0.75rem 0;
  margin-top: 0.75rem;
  min-width: 250px;
}

.navbar-saavy .dropdown-item {
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.65rem 1.5rem;
  color: var(--text);
  transition: var(--transition);
  border-left: 3px solid transparent;
}

.navbar-saavy .dropdown-item:hover,
.navbar-saavy .dropdown-item:focus { background: var(--teal-ghost); color: var(--teal); border-left-color: var(--gold); }

.navbar-toggler { border: none; padding: 0.25rem 0.5rem; color: var(--white); }
.navbar-saavy.scrolled .navbar-toggler { color: var(--teal); }
.navbar-toggler:focus { box-shadow: none; }

/* ======= BUTTONS ======= */
.btn-primary-saavy {
  background: var(--gold);
  color: var(--white);
  border: 2px solid var(--gold);
  padding: 0.75rem 2rem;
  font-weight: 700;
  font-size: 0.92rem;
  border-radius: 50px;
  transition: var(--transition);
  letter-spacing: 0.03em;
  text-transform: uppercase;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.btn-primary-saavy:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: var(--shadow-gold);
}

.btn-outline-saavy {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.5);
  padding: 0.75rem 2rem;
  font-weight: 700;
  font-size: 0.92rem;
  border-radius: 50px;
  transition: var(--transition);
  letter-spacing: 0.03em;
  text-transform: uppercase;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.btn-outline-saavy:hover {
  background: var(--white);
  color: var(--teal);
  border-color: var(--white);
  transform: translateY(-3px);
}

.btn-outline-saavy-dark {
  background: transparent;
  color: var(--teal);
  border: 2px solid var(--teal);
  padding: 0.75rem 2rem;
  font-weight: 700;
  font-size: 0.92rem;
  border-radius: 50px;
  transition: var(--transition);
  letter-spacing: 0.03em;
  text-transform: uppercase;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.btn-outline-saavy-dark:hover {
  background: var(--teal);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

/* ======= HERO SLIDER ======= */
.hero-slider {
  position: relative;
  max-height: 60vh;
  overflow: hidden;
  background: var(--teal-darker);
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  opacity: 0;
  transition: opacity 1.2s ease;
  pointer-events: none;
}

.hero-slide.active {
  opacity: 1;
  pointer-events: auto;
  position: relative;
  min-height: 60vh;
}

.hero-slide-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-slide:nth-child(1) .hero-slide-bg {
  background: linear-gradient(135deg, var(--teal-darker) 0%, var(--teal-dark) 40%, var(--teal) 100%);
}
.hero-slide:nth-child(2) .hero-slide-bg {
  background: linear-gradient(155deg, var(--dark) 0%, var(--teal-darker) 45%, var(--teal-dark) 100%);
}
.hero-slide:nth-child(3) .hero-slide-bg {
  background: linear-gradient(120deg, var(--teal-dark) 0%, #0c2d2b 50%, var(--dark) 100%);
}

/* Animated shapes */
.hero-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.06;
  pointer-events: none;
}

.hero-shape-1 {
  width: 650px; height: 650px;
  background: var(--gold);
  top: -200px; right: -100px;
  animation: floatShape 20s ease-in-out infinite;
}

.hero-shape-2 {
  width: 450px; height: 450px;
  background: var(--white);
  bottom: -120px; left: -120px;
  animation: floatShape 16s ease-in-out infinite reverse;
}

.hero-shape-3 {
  width: 220px; height: 220px;
  background: var(--gold);
  top: 35%; right: 15%;
  animation: floatShape 12s ease-in-out infinite 2s;
}

.hero-shape-4 {
  width: 180px; height: 180px;
  border: 2px solid rgba(210,145,28,0.15);
  background: transparent;
  top: 20%; left: 10%;
  animation: floatShape 14s ease-in-out infinite 1s;
}

@keyframes floatShape {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  25% { transform: translate(30px, -30px) rotate(5deg); }
  50% { transform: translate(-20px, 20px) rotate(-3deg); }
  75% { transform: translate(15px, 15px) rotate(2deg); }
}

.hero-accent-line {
  width: 60px; height: 4px;
  background: var(--gold);
  border-radius: 4px;
  margin-bottom: 1.5rem;
}

.hero-content { position: relative; z-index: 2; }

.hero-content h1 {
  color: var(--white);
  font-size: 4rem;
  margin-bottom: 1.25rem;
  font-weight: 700;
  line-height: 1.08;
}

.hero-content h1 .text-gold { color: var(--gold); }

.hero-content .lead {
  color: rgba(255,255,255,0.78);
  font-size: 1.15rem;
  max-width: 550px;
  line-height: 1.8;
}

.hero-slider-controls {
  position: absolute;
  bottom: 50px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 12px;
}

.hero-dot {
  width: 40px; height: 4px;
  border-radius: 4px;
  background: rgba(255,255,255,0.25);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  padding: 0;
}

.hero-dot.active { background: var(--gold); width: 60px; }
.hero-dot:hover { background: rgba(255,255,255,0.5); }

.hero-progress {
  position: absolute;
  bottom: 0; left: 0;
  height: 3px;
  background: var(--gold);
  z-index: 10;
  transition: width linear;
}

/* ======= PAGE HEADER ======= */
.page-header {
  background: linear-gradient(135deg, var(--teal-darker) 0%, var(--teal-dark) 50%, var(--teal) 100%);
  padding: 8rem 0 4rem;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  top: -30%; right: -10%;
  width: 500px; height: 500px;
  background: var(--gold);
  border-radius: 50%;
  opacity: 0.04;
}

.page-header::after {
  content: '';
  position: absolute;
  bottom: -50%; left: -10%;
  width: 400px; height: 400px;
  background: var(--white);
  border-radius: 50%;
  opacity: 0.03;
}

.page-header h1 { color: var(--white); font-size: 3rem; margin-bottom: 0.75rem; }
.page-header p { color: rgba(255,255,255,0.75); font-size: 1.1rem; max-width: 600px; }
.page-header .breadcrumb { background: none; margin-bottom: 0.5rem; }
.page-header .breadcrumb-item, .page-header .breadcrumb-item a { color: rgba(255,255,255,0.5); font-size: 0.85rem; }
.page-header .breadcrumb-item a:hover { color: var(--gold); }
.page-header .breadcrumb-item.active { color: rgba(255,255,255,0.9); }
.breadcrumb-item+.breadcrumb-item::before { color: rgba(255,255,255,0.3) !important; }

/* ======= SECTIONS ======= */
.section { padding: 6rem 0; }
.section-light { background: var(--off-white); }

.section-teal {
  background: linear-gradient(135deg, var(--teal-darker) 0%, var(--teal) 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.section-teal::before {
  content: '';
  position: absolute;
  top: -20%; right: -10%;
  width: 400px; height: 400px;
  background: var(--gold);
  border-radius: 50%;
  opacity: 0.05;
}

.section-teal h2, .section-teal h3, .section-teal h4 { color: var(--white); }
.section-teal p { color: rgba(255,255,255,0.8); }

.section-title { text-align: center; margin-bottom: 3.5rem; }

.section-title .overline {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.section-title h2 { margin-bottom: 1rem; }
.section-title p { color: var(--text-light); font-size: 1.05rem; max-width: 620px; margin: 0 auto; }

.section-title .title-bar {
  display: inline-block;
  width: 50px; height: 4px;
  background: var(--gold);
  border-radius: 4px;
  margin-top: 0.25rem;
}

/* ======= CARDS ======= */
.card-saavy {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  transition: var(--transition);
  height: 100%;
  position: relative;
  overflow: hidden;
}

.card-saavy::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--teal), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
}

.card-saavy:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.card-saavy:hover::after { transform: scaleX(1); }

.card-saavy .card-icon {
  width: 60px; height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--teal-pale), var(--gold-pale));
  border-radius: 14px;
  margin-bottom: 1.5rem;
  color: var(--teal);
  font-size: 1.5rem;
  transition: var(--transition);
}

.card-saavy:hover .card-icon {
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  color: var(--white);
  transform: scale(1.05);
}

.card-saavy h3 { font-size: 1.3rem; margin-bottom: 0.75rem; }
.card-saavy p { color: var(--text-light); font-size: 0.95rem; margin-bottom: 0; }

.card-saavy .card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 1.25rem;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.card-saavy .card-link:hover { gap: 12px; color: var(--gold-dark); }

/* ======= BADGE CARDS ======= */
.badge-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 2.5rem 2rem;
  text-align: center;
  transition: var(--transition);
  height: 100%;
  position: relative;
}

.badge-card::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, var(--teal), var(--gold));
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.badge-card:hover::before { opacity: 1; }
.badge-card:hover { border-color: transparent; transform: translateY(-6px); box-shadow: var(--shadow-lg); }

.badge-card .badge-icon {
  width: 72px; height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--teal-pale), var(--gold-pale));
  border-radius: 50%;
  margin: 0 auto 1.5rem;
  color: var(--teal);
  font-size: 1.7rem;
  transition: var(--transition);
}

.badge-card:hover .badge-icon {
  background: linear-gradient(135deg, var(--teal), var(--gold));
  color: var(--white);
  transform: scale(1.1) rotate(5deg);
}

.badge-card:hover h3 {
  color: var(--white);
}
.badge-card:hover p {
  color: var(--white);
}
.badge-card h3 { font-size: 1.15rem; margin-bottom: 0.5rem; }
.badge-card p { color: var(--text-light); font-size: 0.9rem; margin: 0; }

/* ======= CLIENT CAROUSEL ======= */
.client-carousel-wrap {
  position: relative;
  overflow: hidden;
  padding: 1rem 0;
}

.client-carousel-track {
  display: flex;
  gap: 1.5rem;
  animation: scrollCarousel 40s linear infinite;
  width: max-content;
}

.client-carousel-track:hover { animation-play-state: paused; }

.client-carousel-card {
  flex-shrink: 0;
  width: 260px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.25rem;
  text-align: center;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-light);
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 80px;
}

.client-carousel-card:hover { border-color: var(--gold); color: var(--teal); box-shadow: var(--shadow-sm); transform: translateY(-2px); }

@keyframes scrollCarousel {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.client-carousel-wrap::before,
.client-carousel-wrap::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 100px;
  z-index: 2;
  pointer-events: none;
}

.client-carousel-wrap::before { left: 0; background: linear-gradient(to right, var(--off-white), transparent); }
.client-carousel-wrap::after { right: 0; background: linear-gradient(to left, var(--off-white), transparent); }

/* ======= CTA ======= */
.cta-section {
  background: linear-gradient(135deg, var(--teal-darker) 0%, var(--teal) 50%, var(--teal-light) 100%);
  padding: 5.5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%; right: -20%;
  width: 600px; height: 600px;
  background: var(--gold);
  border-radius: 50%;
  opacity: 0.06;
}

.cta-section::after {
  content: '';
  position: absolute;
  bottom: -30%; left: -10%;
  width: 300px; height: 300px;
  background: var(--white);
  border-radius: 50%;
  opacity: 0.04;
}

.cta-section h2 { color: var(--white); margin-bottom: 0.75rem; font-size: 2.4rem; }
.cta-section p { color: rgba(255,255,255,0.8); font-size: 1.1rem; max-width: 550px; margin: 0 auto 2rem; }

/* ======= EDGE VALUE PROP ======= */
.edge-section {
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 5px solid var(--gold);
  padding: 2.5rem 3rem;
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  box-shadow: var(--shadow-sm);
}

.edge-section p {
  font-size: 1.15rem;
  font-style: italic;
  color: var(--text);
  margin: 0;
  font-family: 'Playfair Display', serif;
}

/* ======= VM CARDS ======= */
.vm-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 3rem;
  height: 100%;
  position: relative;
  transition: var(--transition);
  overflow: hidden;
}

.vm-card::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 150px; height: 150px;
  background: linear-gradient(135deg, var(--gold-pale), transparent);
  border-radius: 0 0 0 100%;
  opacity: 0.5;
  transition: var(--transition);
}

.vm-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.vm-card:hover::before { width: 200px; height: 200px; }

.vm-card .vm-label {
  display: inline-block;
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.35rem 1.25rem;
  border-radius: 50px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.vm-card h3 { font-size: 1.4rem; }
.vm-card p { color: var(--text-light); margin: 0; line-height: 1.8; }

/* ======= SERVICE DETAIL ======= */
.service-detail-content h2 {
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  position: relative;
  padding-bottom: 0.75rem;
}

.service-detail-content h2::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 40px; height: 3px;
  background: var(--gold);
  border-radius: 3px;
}

.service-detail-content h2:first-child { margin-top: 0; }

.service-detail-content ul { padding-left: 0; list-style: none; }

.service-detail-content ul li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 0.85rem;
  color: var(--text);
}

.service-detail-content ul li::before {
  content: '';
  position: absolute;
  left: 0; top: 10px;
  width: 10px; height: 10px;
  background: linear-gradient(135deg, var(--teal), var(--gold));
  border-radius: 50%;
}

/* ======= SIDEBAR ======= */
.sidebar-sticky { position: sticky; top: 100px; }

.sidebar-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
}

.sidebar-item { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 1.25rem; }

.sidebar-item .si-icon {
  width: 44px; height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--teal-pale), var(--gold-pale));
  border-radius: 12px;
  color: var(--teal);
  font-size: 1rem;
  flex-shrink: 0;
}

.sidebar-item strong { font-size: 0.92rem; display: block; color: var(--dark); }
.sidebar-item p { font-size: 0.85rem; margin: 0; color: var(--text-light); }

/* ======= STAT ITEMS ======= */
.stat-item { text-align: center; padding: 1.5rem 1rem; }

.stat-item .stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-item .stat-label { font-size: 0.9rem; color: rgba(255,255,255,0.7); font-weight: 500; }

/* ======= FOOTER ======= */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,0.75);
  padding: 5rem 0 0;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--teal), var(--gold), var(--teal));
}

.footer h5 { color: var(--white); font-size: 1.1rem; margin-bottom: 1.5rem; font-family: 'Playfair Display', serif; }
.footer p { color: rgba(255,255,255,0.6); font-size: 0.9rem; line-height: 1.7; }
.footer a { color: rgba(255,255,255,0.6); font-size: 0.9rem; transition: var(--transition); }
.footer a:hover { color: var(--gold); }

.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 0.65rem; }
.footer-links li a { display: inline-flex; align-items: center; gap: 8px; }

.footer-links li a::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
  transition: var(--transition);
}

.footer-links li a:hover::before { transform: scale(1.3); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 1.75rem 0;
  margin-top: 3.5rem;
}

.footer-bottom p { font-size: 0.85rem; margin: 0; color: rgba(255,255,255,0.4); }

.footer-contact-item { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 0.85rem; font-size: 0.9rem; }
.footer-contact-item i { color: var(--gold); margin-top: 3px; width: 16px; text-align: center; flex-shrink: 0; }

/* ======= CONTACT FORM ======= */
.contact-form .form-control,
.contact-form .form-select {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.8rem 1.1rem;
  font-size: 0.95rem;
  transition: var(--transition);
}

.contact-form .form-control:focus,
.contact-form .form-select:focus { border-color: var(--teal); box-shadow: 0 0 0 3px rgba(21,80,78,0.1); }
.contact-form label { font-weight: 600; font-size: 0.9rem; color: var(--text); margin-bottom: 0.4rem; }

.map-container {
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--border);
  height: 350px;
  background: var(--teal-pale);
  box-shadow: var(--shadow-sm);
}

.map-container iframe { width: 100%; height: 100%; border: 0; }

/* ======= ANIMATIONS ======= */
.fade-up { opacity: 0; transform: translateY(40px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-left { opacity: 0; transform: translateX(-40px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-left.visible { opacity: 1; transform: translateX(0); }

/* ======= RESPONSIVE ======= */
@media (max-width: 991.98px) {
  h1 { font-size: 2.3rem; }
  h2 { font-size: 1.9rem; }
  .hero-content h1 { font-size: 2.8rem; }
  .hero-slider { min-height: 90vh; }
  .page-header { padding: 6.5rem 0 3rem; }
  .page-header h1 { font-size: 2.3rem; }
  .section { padding: 4rem 0; }
  .navbar-saavy, .navbar-saavy:not(.scrolled) { background: rgba(10,26,25,0.95); }
  .navbar-saavy .navbar-collapse {
    background: var(--white);
    padding: 1.25rem;
    border-radius: var(--radius-lg);
    margin-top: 0.75rem;
    box-shadow: var(--shadow-lg);
  }
  .navbar-saavy .nav-link { color: var(--text) !important; }
}

@media (max-width: 575.98px) {
  .hero-content h1 { font-size: 2.1rem; }
  .hero-content .lead { font-size: 0.95rem; }
  .page-header h1 { font-size: 1.9rem; }
  .section { padding: 3rem 0; }
  .card-saavy { padding: 1.75rem; }
  .cta-section { padding: 3.5rem 0; }
  .cta-section h2 { font-size: 1.8rem; }
  .hero-slider { min-height: 85vh; }
  .edge-section { padding: 1.75rem; }
  .hero-slider-controls { bottom: 30px; }
  .stat-item .stat-number { font-size: 2.2rem; }
}

.navbar-brand img{
  max-width: 165px;
}
