/* ===== BENGAL LAW FIRM — PROFESSIONAL DESIGN SYSTEM =====
   Green (#00B852) / White / Dark Blue theme
   Inter
   ================================================ */

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

img {
  max-width: 100%;
  height: auto;
}

:root {
  --primary: #bf0603;
  --secondary: #708d81;
  --accent: #f4d58d;
  --red: #bf0603;
  --red-dark: #8d0801;
  --red-light: #ff3b38;
  --red-pale: #fff5f5;
  --black: #001427;
  --dark: #001a33;
  --dark-mid: #002244;
  --gray-900: #1c2b3a;
  --gray-700: #4b5e73;
  --gray-500: #8898aa;
  --gray-300: #d3dce6;
  --gray-100: #f5f7f5;
  --white: #ffffff;
  --text: #001427;
  --text-muted: #4f6377;

  --border: rgba(0, 20, 39, 0.08);
  --shadow: 0 8px 40px rgba(0, 20, 39, 0.08);
  --shadow-lg: 0 20px 60px rgba(0, 20, 39, 0.12);
  --shadow-red: 0 8px 24px rgba(191, 6, 3, 0.25);
  --font-display: "PT Serif", serif;
  --font-body: "PT Serif", serif;
  --font-hero: "PT Serif", serif;
  --radius: 6px;
  --radius-lg: 12px;
  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
}

html,
body {
  overflow-x: hidden;
  width: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ===== UTILITY ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.section {
  padding: 100px 0;
}

.label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 16px;
}
.label::before {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--black);
  line-height: 1.15;
  margin-bottom: 16px;
}
.section-title em {
  font-style: italic;
  color: var(--primary);
}

.section-sub {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 540px;
  line-height: 1.7;
}

/* ===== TOP BAR ===== */
.top-bar {
  background: var(--black);
  padding: 8px 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  border-bottom: 2px solid var(--red);
}
.top-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.top-bar-left {
  display: flex;
  align-items: center;
  gap: 24px;
}
.top-bar-left a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}
.top-bar-left a:hover {
  color: var(--white);
}
.top-bar-left i {
  color: var(--red);
  font-size: 12px;
}
.top-bar-right {
  display: flex;
  align-items: center;
  gap: 12px;
}
.top-bar-right a {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 12px;
  transition: var(--transition);
}
.top-bar-right a:hover {
  background: var(--red);
  color: var(--white);
}

/* ===== NAVBAR ===== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 0;
  background: var(--white);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
  transition: var(--transition);
}
.navbar.scrolled {
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.logo-img {
  height: 50px;
  width: auto;
  display: block;
  transition: var(--transition);
}
.logo-img:hover {
  transform: scale(1.05);
}
.nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}
.nav-link {
  padding: 10px 16px;
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-700);
  text-decoration: none;
  transition: var(--transition);
  border-radius: var(--radius);
  position: relative;
}
.nav-link:hover {
  color: var(--red);
}
.nav-link.active {
  color: var(--red);
  font-weight: 600;
}
.nav-link.active::after {
  content: "";
  position: absolute;
  bottom: 2px;
  left: 16px;
  right: 16px;
  height: 2px;
  background: var(--red);
  border-radius: 2px;
}

.nav-link.btn-nav {
  background: var(--red);
  color: var(--white);

  font-weight: 400;
  padding: 10px 10px;
  border-radius: var(--radius);
}
.nav-link.btn-nav:hover {
  background: var(--red-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-red);
}
.nav-link.btn-nav::after {
  display: none;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--black);
  transition: var(--transition);
}
.nav-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}
.nav-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  border-radius: var(--radius);
  transition: var(--transition);
}
.btn-primary {
  background: var(--black);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.4);
}
.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--white);
}
.btn-outline-dark {
  background: transparent;
  color: var(--black);
  border: 2px solid rgba(0, 0, 0, 0.2);
}
.btn-outline-dark:hover {
  background: var(--black);
  color: var(--white);
}
.btn-sm {
  font-size: 13px;
  padding: 10px 18px;
}

/* ===== TICKER ===== */
.ticker {
  background: var(--black);
  padding: 10px 0;
  overflow: hidden;
}
.ticker-track {
  display: flex;
  width: max-content;
  animation: ticker 35s linear infinite;
}
.ticker-track:hover {
  animation-play-state: paused;
}
.ticker-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 40px;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  white-space: nowrap;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.ticker-item .dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  flex-shrink: 0;
}
@keyframes ticker {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* ===== HERO ===== */
.hero {
  background: var(--black);
  position: relative;
  overflow: hidden;
  padding: 100px 0 80px;
  min-height: 92vh;
  display: flex;
  align-items: center;
}
/* Ambient glow effects */
.hero-glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}
.hero-glow-1 {
  width: 700px;
  height: 700px;
  top: -10%;
  right: -5%;
  background: radial-gradient(circle, rgba(191, 6, 3, 0.1) 0%, transparent 65%);
}
.hero-glow-2 {
  width: 500px;
  height: 500px;
  bottom: -15%;
  left: -5%;
  background: radial-gradient(
    circle,
    rgba(40, 40, 40, 0.6) 0%,
    transparent 60%
  );
}
.hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(191, 6, 3, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(191, 6, 3, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  z-index: 0;
}
.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
/* Badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px 6px 8px;
  background: rgba(191, 6, 3, 0.12);
  border: 1px solid rgba(191, 6, 3, 0.3);
  border-radius: 40px;
  font-size: 12px;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 28px;
}
.hero-badge-dot {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  color: var(--white);
  font-weight: 700;
}
/* Title — serif display */
.hero-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 600;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 24px;
}
.hero-title em {
  font-style: italic;
  font-weight: 800;
  color: var(--primary);
}
/* Description */
.hero-desc {
  font-size: 13px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 40px;
  max-width: 460px;
}
/* Action buttons */
.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid var(--primary);
  cursor: pointer;
  border-radius: var(--radius);
  color: var(--white);
  background: linear-gradient(90deg, var(--white) 50%, var(--primary) 50%);
  background-size: 200% 100%;
  background-position: right center;
  transition:
    background-position 0.4s ease,
    color 0.3s ease,
    transform 0.3s ease,
    box-shadow 0.3s ease;
}
.btn-hero-primary:hover {
  background-position: left center;
  color: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 255, 255, 0.15);
}
.btn-hero-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  border-radius: var(--radius);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: linear-gradient(90deg, var(--primary) 50%, transparent 50%);
  background-size: 200% 100%;
  background-position: right center;
  transition:
    background-position 0.4s ease,
    border-color 0.3s ease,
    color 0.3s ease,
    transform 0.3s ease;
}
.btn-hero-outline:hover {
  background-position: left center;
  border-color: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}
/* Trust strip */
.hero-trust {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 48px;
  padding-top: 36px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.trust-stat {
  text-align: left;
}
.trust-stat-num {
  font-family: "Cormorant Garamond", serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
}
.trust-stat-label {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 4px;
}
.trust-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
}

/* HERO CARD — white solid */
.hero-card {
  background: var(--white);
  border: none;
  border-radius: 16px;
  padding: 40px 36px 36px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
  margin-top: -50px;
}
.hero-card-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 4px;
}
.hero-card-sub {
  font-size: 12px;
  color: var(--primary);
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 600;
}

/* HERO CARD FORM FIELDS — light theme */
.hero-card .form-field label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.hero-card .form-field input,
.hero-card .form-field select {
  width: 100%;
  padding: 12px 16px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 14px;
  outline: none;
  transition: var(--transition);
  appearance: none;
}
.hero-card .form-field input::placeholder {
  color: var(--gray-500);
}
.hero-card .form-field input:focus,
.hero-card .form-field select:focus {
  border-color: var(--primary);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(191, 6, 3, 0.12);
}
.hero-card .form-field select option {
  background: var(--white);
  color: var(--text);
}
.hero-card .form-field select optgroup {
  background: var(--gray-100);
  color: var(--text-muted);
}
.hero-card .form-field select optgroup option {
  color: var(--text);
}

/* Hero card submit button */
.btn-hero-submit {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid var(--primary);
  cursor: pointer;
  border-radius: var(--radius);
  color: var(--white);
  background: linear-gradient(90deg, var(--white) 50%, var(--primary) 50%);
  background-size: 200% 100%;
  background-position: right center;
  transition:
    background-position 0.4s ease,
    color 0.3s ease,
    transform 0.3s ease,
    box-shadow 0.3s ease;
}
.btn-hero-submit:hover {
  background-position: left center;
  color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(191, 6, 3, 0.25);
}

/* ===== FORM FIELDS (GLOBAL) ===== */
.form-field {
  margin-bottom: 14px;
}
.form-field label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 5px;
}
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 12px 16px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 14px;
  outline: none;
  transition: var(--transition);
  appearance: none;
}
.form-field input::placeholder,
.form-field textarea::placeholder {
  color: var(--gray-500);
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--red);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(191, 6, 3, 0.15);
}
.form-field select option {
  background: var(--white);
  color: var(--text);
}
.form-field select optgroup {
  background: var(--gray-100);
  color: var(--text-muted);
  font-style: normal;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 8px 0 4px;
}
.form-field select optgroup option {
  font-weight: 400;
  font-size: 14px;
  text-transform: none;
  letter-spacing: 0;
  color: var(--text);
  padding: 6px 12px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.form-error {
  display: block;
  font-size: 12px;
  color: #ef4444;
  margin-top: 4px;
}
.form-field.has-error input,
.form-field.has-error select {
  border-color: #ef4444;
}

/* Light form fields (for modals on light bg) */
.modal .form-field label {
  color: var(--text-muted);
}

/* ===== TRUST BAR ===== */
.trust-bar {
  background: var(--gray-100);
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
}
.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 1;
  min-width: 160px;
}
.trust-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
  color: var(--white);
}
.trust-text strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--black);
}
.trust-text span {
  font-size: 12px;
  color: var(--text-muted);
}
.trust-divider-v {
  width: 1px;
  height: 44px;
  background: var(--border);
  flex-shrink: 0;
}

/* ===== ABOUT ===== */
.about {
  background: var(--white);
}
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-img-wrap {
  position: relative;
}
.about-img {
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--gray-100);
}
.about-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Vertical Video Styling */
.about-video-vertical {
  width: 100%;
  border-radius: 0;
  overflow: hidden;
  aspect-ratio: 9/16;
  background: var(--black);
  max-width: 320px;
  margin: 0 auto;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
  position: relative;
  border-radius: 10px;
}
.about-video-vertical video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-img-badge {
  position: absolute;
  bottom: 0;
  right: -15px;
  transform: translateY(50%);
  background: #000;
  color: var(--white);
  padding: 14px 22px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  z-index: 5;
}
.about-img-badge strong {
  display: block;
  color: var(--primary);
  font-family: var(--font-hero);
  font-size: 32px;
  font-weight: 800;
  line-height: 1;
}
.about-img-badge span {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 32px;
}
.about-feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px;
  background: var(--gray-100);
  border-radius: var(--radius-lg);
  border: 1px solid transparent;
  transition: var(--transition);
}
.about-feature:hover {
  border-color: var(--black);
  box-shadow: var(--shadow);
  background: var(--white);
}
.about-feature-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  background: var(--red-pale);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}
.about-feature-text strong {
  display: block;
  font-size: 15px;
  color: var(--black);
  margin-bottom: 4px;
}
.about-feature-text span {
  font-size: 13px;
  color: var(--text-muted);
}

/* ===== HOW IT WORKS — SEQUENTIAL CONNECTED STEPS ===== */
.how {
  background: var(--black);
  position: relative;
  overflow: hidden;
}
.how::before {
  content: "";
  position: absolute;
  top: -150px;
  right: -150px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.05);
}
.how-label {
  color: var(--primary);
}
.how-label::before {
  background: var(--primary);
}
.how-title {
  color: var(--white);
}
.how-title em {
  color: var(--primary);
}
.how-sub {
  color: rgba(255, 255, 255, 0.5);
}

.how-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.how-content {
  max-width: 540px;
}

.how-content .step-cta {
  margin-top: 48px;
}

.how-content .step-cta p {
  margin-bottom: 16px;
}

.steps-vertical {
  margin-top: 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 600px;
}

.step-v {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 24px;
  border-radius: var(--radius-lg);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.step-v::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 4px;
  background: var(--primary);
  transform: scaleY(0);
  transform-origin: top;
  transition: var(--transition);
}

.step-v:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateX(10px);
}

.step-v:hover::before {
  transform: scaleY(1);
}

.step-v-num {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  border-radius: 50%;
  background: rgba(191, 6, 3, 0.15);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 700;
  border: 2px solid rgba(191, 6, 3, 0.3);
  transition: var(--transition);
}

.step-v:hover .step-v-num {
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(191, 6, 3, 0.4);
}

.step-v-text {
  flex-grow: 1;
}

.step-v-title {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.step-v-desc {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
}

.step-cta {
  margin-top: 56px;
  text-align: left;
}
.step-cta p {
  color: rgba(255, 255, 255, 0.45);
  font-size: 14px;
  margin-bottom: 20px;
}

/* ===== SERVICES ===== */
.services {
  background: var(--gray-100);
}
.services-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 48px;
}

.service-tabs {
  display: flex;
  gap: 8px;
  border: none;
  border-radius: 0;
  overflow: visible;
  margin-bottom: 48px;
  background: transparent;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--border);
}

.service-tab {
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-600);
  background: transparent;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
  font-family: var(--font-body);
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
}
.service-tab i {
  font-size: 16px;
  opacity: 0.7;
  transition: var(--transition);
}
.service-tab::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--red);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}
.service-tab.active {
  color: var(--black);
}
.service-tab.active i {
  color: var(--red);
  opacity: 1;
}
.service-tab.active::after {
  transform: scaleX(1);
}
.service-tab:hover:not(.active) {
  color: var(--black);
}
.service-tab:hover i {
  opacity: 1;
}

@media (max-width: 768px) {
  .service-tabs-container {
    margin-bottom: 40px;
  }

  .hero-title {
    padding: 0 20px;
  }

  .hero-desc {
    padding: 0 20px;
  }
  .service-tabs-container::after {
    display: none;
  }
  .service-tabs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    border-bottom: none;
    margin-bottom: 24px;
  }
  .service-tab {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 12px 10px;
    justify-content: center;
    font-size: 12px;
    flex: none;
    width: 100%;
    text-align: center;
  }
  .service-tab::after {
    display: none;
  }
  .service-tab.active {
    background: var(--red);
    color: var(--white);
    border-color: var(--red);
  }
  .service-tab.active i {
    color: var(--white);
  }
}

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

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  background: var(--white);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--black);
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}
.service-card:hover {
  border-color: var(--black);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.service-card:hover::before {
  transform: scaleX(1);
}
.service-card.featured {
  background: var(--black);
  border-color: var(--black);
}
.service-card.featured::before {
  background: var(--primary);
  transform: scaleX(1);
}
.service-badge {
  display: inline-block;
  padding: 4px 12px;
  background: var(--black);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: 20px;
  margin-bottom: 16px;
}
.service-card.featured .service-badge {
  background: rgba(0, 0, 0, 0.3);
  color: var(--white);
}
.service-icon {
  width: 50px;
  height: 50px;
  border-radius: 10px;
  background: var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 20px;
  transition: var(--transition);
  color: var(--primary);
}
.service-card.featured .service-icon {
  background: rgba(0, 0, 0, 0.25);
  color: var(--primary);
}
.service-card:hover .service-icon {
  transform: scale(1.1);
}
.service-name {
  font-size: 17px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 10px;
}
.service-card.featured .service-name {
  color: var(--white);
}
.service-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 20px;
}
.service-card.featured .service-desc {
  color: rgba(255, 255, 255, 0.7);
}
.service-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
}
.service-list li {
  font-size: 13px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 8px;
}
.service-list a {
  text-decoration: none;
  color: var(--text-muted);
  font-weight: 600;
}
.service-card.featured .service-list li {
  color: rgba(255, 255, 255, 0.55);
}
.service-list li::before {
  font-family: "Font Awesome 5 Free";
  content: "\f00c";
  font-size: 11px;
  font-weight: 900;
  color: var(--black);
  flex-shrink: 0;
}
.service-card.featured .service-list li::before {
  color: var(--primary);
}
.service-link {
  font-size: 13px;
  font-weight: 700;
  color: var(--black);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}
.service-card.featured .service-link {
  color: var(--primary);
}
.service-link:hover {
  gap: 12px;
}

/* ===== STATS ===== */
.stats {
  background: var(--black);
  padding: 64px 0;
}
.stats-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  text-align: left;
}
.stat-item {
  padding: 0 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}
.stat-item:last-child {
  border-right: none;
}
.stat-num {
  font-family: var(--font-body);
  font-size: clamp(3rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}
.stat-label {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 8px;
}

/* ===== TESTIMONIALS — AUTO-SCROLL CAROUSEL ===== */
.testimonials {
  background: var(--white);
  overflow: hidden;
}
.testimonials-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 48px;
}
.testimonials-google {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 24px;
  background: var(--gray-100);
  border-radius: 60px;
  border: 1px solid var(--border);
}
.google-logo-img {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.google-logo-img svg {
  display: block;
}
.google-rating-wrap {
  display: flex;
  flex-direction: column;
}
.google-rating-text {
  font-size: 11px;
  font-weight: 600;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  line-height: 1;
}
.google-rating-row {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 3px;
}
.google-rating {
  font-size: 16px;
  font-weight: 800;
  color: var(--black);
  line-height: 1;
}
.google-stars {
  color: #fbbc04;
  font-size: 14px;
  letter-spacing: 1px;
  line-height: 1;
}

/* Carousel Wrapper */
.testimonials-carousel {
  position: relative;

  padding: 10px 0 20px;
}
.testimonials-track {
  display: flex;
  gap: 24px;
  animation: scrollReviews 40s linear infinite;
  width: max-content;
}
.testimonials-track:hover {
  animation-play-state: paused;
}
@keyframes scrollReviews {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.review-card {
  background: var(--black);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-lg);
  padding: 32px;
  min-width: 380px;
  max-width: 380px;
  flex-shrink: 0;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.review-card::before {
  content: "\f10e"; /* FontAwesome quote right */
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 80px;
  color: rgba(255, 255, 255, 0.03);
  z-index: 0;
}
.review-card:hover {
  border-color: var(--primary);
  box-shadow: 0 12px 40px rgba(191, 6, 3, 0.12);
  transform: translateY(-4px);
}
.review-header,
.review-stars,
.review-text,
.review-google-badge {
  position: relative;
  z-index: 1;
}
.review-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}
.review-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-hero);
  font-weight: 800;
  font-size: 18px;
  color: var(--white);
  flex-shrink: 0;
}
.review-name {
  font-weight: 700;
  font-size: 16px;
  color: var(--white);
}
.review-loc {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
}
.review-stars {
  color: #fbbc04;
  font-size: 14px;
  margin-bottom: 14px;
  letter-spacing: 2px;
}
.review-text {
  font-size: 14.5px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.75);
}
.review-google-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 11px;
  color: rgba(255, 255, 255, 0.4);
}
.review-google-badge i {
  color: #4285f4;
  font-size: 14px;
}

/* ===== CONSULTATION ===== */
.consultation {
  background: var(--black);
  position: relative;
  overflow: hidden;
}
.consultation::before {
  content: "";
  position: absolute;
  bottom: -200px;
  left: -200px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(191, 6, 3, 0.1) 0%, transparent 70%);
}
.consultation-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.consultation-title {
  color: var(--white);
}
.consultation-title em {
  color: var(--primary);
}
.consultation-sub {
  color: rgba(255, 255, 255, 0.5);
  margin-top: 16px;
  font-size: 16px;
}
.consultation-features {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 32px;
}
.consultation-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
}
.consultation-feature-check {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: var(--white);
  flex-shrink: 0;
}
.consultation-form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-lg);
}
.form-title {
  font-family: var(--font-hero);
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 24px;
}

/* ===== CONTACT ===== */
.contact-section {
  background: var(--gray-100);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 40px;
  align-items: start;
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.contact-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 18px 22px;
  transition: var(--transition);
}
.contact-card:hover {
  border-color: var(--red);
  box-shadow: var(--shadow);
}
.contact-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  background: var(--red-pale);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}
.contact-card strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 2px;
}
.contact-card span {
  font-size: 13px;
  color: var(--text-muted);
}
.contact-card a {
  color: var(--text-muted);
  text-decoration: none;
}
.contact-card a:hover {
  color: var(--red);
}
.contact-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  margin-top: 52px; /* Shifts map down slightly to align beneath titles */
}

/* ===== FOOTER ===== */
.footer {
  background: var(--black);
  padding: 64px 0 0;
  position: relative;
}
.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--red), var(--red-dark), var(--red));
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 48px;
}
.footer-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  margin-bottom: 24px;
}
.footer-col p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.7;
}
.footer-col h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 12px;
}
.footer-col h4::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 28px;
  height: 2px;
  background: var(--red);
}
.footer-col ul {
  list-style: none;
}
.footer-col ul li {
  margin-bottom: 10px;
}
.footer-col ul li a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
  transition: var(--transition);
}
.footer-col ul li a:hover {
  color: var(--red-light);
  padding-left: 4px;
}
.footer-contact li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.45);
}
.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}
.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: var(--transition);
  font-size: 14px;
}
.footer-social a:hover {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}
.footer-bottom {
  margin-top: 48px;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  text-align: left;
}
.footer-bottom p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.35);
}

/* ===== MODALS ===== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(6px);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.modal-overlay.active {
  display: flex;
}
.modal {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  width: 100%;
  max-width: 520px;
  position: relative;
  animation: modalIn 0.4s ease;
  max-height: 90vh;
  overflow-y: auto;
}
@keyframes modalIn {
  from {
    opacity: 0;
    transform: translateY(30px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
.modal-close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 28px;
  cursor: pointer;
  transition: var(--transition);
  line-height: 1;
}
.modal-close:hover {
  color: var(--red);
}
.modal-header {
  margin-bottom: 24px;
}
.modal-header h2 {
  font-family: var(--font-hero);
  font-size: 24px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}
.modal-header p {
  font-size: 14px;
  color: var(--text-muted);
}

.modal-success {
  text-align: center;
  max-width: 420px;
}
.success-checkmark {
  font-size: 64px;
  color: #22c55e;
  margin-bottom: 20px;
  animation: successPop 0.5s ease;
}
@keyframes successPop {
  0% {
    transform: scale(0);
  }
  60% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}
.modal-success h2 {
  font-family: var(--font-hero);
  font-size: 28px;
  color: var(--text);
  margin-bottom: 8px;
}
.modal-success p {
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 24px;
}

/* WhatsApp float removed */

/* ===== SCROLL TO TOP ===== */
.scroll-top {
  position: fixed;
  bottom: 120px;
  right: 32px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  box-shadow: 0 6px 24px rgba(191, 6, 3, 0.35);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.35s ease;
  z-index: 999;
}
.scroll-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.scroll-top:hover {
  background: var(--red-dark);
  transform: translateY(-3px);
  box-shadow: 0 10px 32px rgba(191, 6, 3, 0.45);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(60px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-60px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(60px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.85);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.fade-in {
  animation: fadeInUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.fade-in-2 {
  animation: fadeInUp 0.9s 0.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  opacity: 0;
}
.fade-in-3 {
  animation: fadeInUp 0.9s 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  opacity: 0;
}
.fade-in-4 {
  animation: fadeInUp 0.9s 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  opacity: 0;
}

.reveal {
  opacity: 0;
  transform: translateY(60px);
  transition:
    opacity 1s cubic-bezier(0.16, 1, 0.3, 1),
    transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-60px);
  transition:
    opacity 1s cubic-bezier(0.16, 1, 0.3, 1),
    transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(60px);
  transition:
    opacity 1s cubic-bezier(0.16, 1, 0.3, 1),
    transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.85);
  transition:
    opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-scale.visible {
  opacity: 1;
  transform: scale(1);
}

.counter {
  display: inline-block;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }
  .hero-actions {
    justify-content: center;
  }
  .hero-trust {
    justify-content: center;
  }
  .hero-desc {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-glow-1 {
    width: 400px;
    height: 400px;
  }
  .hero-glow-2 {
    width: 300px;
    height: 300px;
  }
  .hero-card {
    margin-top: 0;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
  }
  .about-inner {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: left;
  }
  .about-video-vertical {
    max-width: 280px;
    margin: 0 auto;
  }
  .how-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .how-content {
    max-width: 100%;
    text-align: left;
  }
  .how-content .step-cta {
    margin-top: 32px;
    text-align: left;
  }
  .consultation-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .about-img-badge {
    right: -12px;
    bottom: 0;
    transform: translateY(50%);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .contact-map {
    margin-top: 0;
  }
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .top-bar {
    display: none;
  }
  .review-card {
    min-width: 320px;
    max-width: 320px;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 64px 0;
  }
  .hero {
    padding: 60px 0 48px;
    min-height: auto;
  }
  .hero-card {
    padding: 28px 24px 24px;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .stats-inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
  .stat-item {
    border-right: none;
    padding: 16px;
  }
  .stat-item:nth-child(1),
  .stat-item:nth-child(2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 32px;
  }
  .trust-bar-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .trust-divider-v {
    display: none;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .services-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .steps {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .hero-trust {
    flex-wrap: wrap;
    gap: 20px;
  }
  .blog-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .footer-bottom {
    padding-bottom: 80px;
  } /* Ensure copyright is above sticky CTA */
  .sticky-cta-bar {
    display: flex;
  }

  .testimonials-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .review-card {
    min-width: 300px;
    max-width: 300px;
  }

  .nav-toggle {
    display: flex;
    position: relative;
    z-index: 101;
  }
  .nav-menu {
    position: fixed;
    inset: 0;
    background: var(--white);
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 40px 20px;
    gap: 8px;
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .nav-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  .nav-menu li {
    width: 100%;
    list-style: none;
  }
  .nav-link {
    padding: 14px 20px;
    width: 100%;
    font-size: 18px;
    color: var(--black);
    text-align: left;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    box-sizing: border-box;
  }

  /* Mobile Dropdown */
  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border-top: none;
    padding: 0 0 0 20px;
    display: none;
    width: 100%;
    background: transparent;
  }
  .nav-item.active .dropdown-menu {
    display: block;
  }
  .dropdown-item {
    font-size: 16px;
    padding: 10px 20px;
    color: var(--gray-600);
  }
  .nav-link.active::after {
    display: none;
  }
  .nav-link.btn-nav {
    display: none !important;
  }
  .nav-link.btn-nav:hover {
    background: var(--red-dark);
  }

  .scroll-top {
    bottom: 80px; /* Stay above sticky CTA bar */
    right: 20px;
    width: 44px;
    height: 44px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .btn,
  .btn-hero-primary,
  .btn-hero-outline,
  .btn-hero-submit {
    justify-content: center;
    padding: 14px 24px;
    font-size: 13px;
    width: 100%;
    text-align: center;
  }
  .service-tab {
    padding: 8px 14px;
    font-size: 12px;
  }
  .hero-card {
    padding: 24px;
  }
  .modal {
    padding: 28px;
  }
}

/* ===== FLOATING STATS & IMAGE EDGE ===== */
.animated-image-edge {
  position: relative;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
  border-radius: 12px;
}
.animated-image-edge img {
  border-radius: 12px;
  display: block;
}

.floating-stat {
  position: absolute;
  background: #c8102e; /* vibrant red */
  padding: 18px 36px;
  border-radius: 12px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}
.floating-stat .stat-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}
.floating-stat .stat-info strong {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  font-weight: 800;
  color: #ffffff; /* white */
  line-height: 1;
  letter-spacing: -1px;
}
.floating-stat .stat-info span {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #ffffff;
  margin-top: 8px;
}

.float-2 {
  bottom: 30px;
  right: 0;
  animation: float-anim-2 5s ease-in-out infinite;
}

@keyframes float-anim-2 {
  0%,
  100% {
    transform: translate(30%, 0);
  }
  50% {
    transform: translate(30%, -12px);
  }
}

@media (max-width: 900px) {
  .floating-stat {
    padding: 12px 24px;
    border-radius: 8px;
  }
  .floating-stat .stat-info strong {
    font-size: 24px;
  }
  .floating-stat .stat-info span {
    font-size: 10px;
    margin-top: 4px;
  }
  .float-2 {
    right: 10px;
    bottom: 10px;
    animation: float-anim-mobile 4s ease-in-out infinite;
  }
}

@keyframes float-anim-mobile {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

.whtsapp {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background-color: #25d366;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.45);
  text-decoration: none;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.whtsapp:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 22px rgba(37, 211, 102, 0.55);
}

.whtsapp:active {
  transform: scale(0.96);
}

.whtsapp img {
  width: 30px;
  height: 30px;
}

/* Pulse animation */
.whtsapp::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.4);
  animation: wp-pulse 2s ease-out infinite;
}

@keyframes wp-pulse {
  0% {
    transform: scale(1);
    opacity: 0.7;
  }
  70% {
    transform: scale(1.6);
    opacity: 0;
  }
  100% {
    transform: scale(1.6);
    opacity: 0;
  }
}

/* Mobile friendly */
@media (max-width: 480px) {
  .whtsapp {
    bottom: 16px;
    right: 16px;
    width: 52px;
    height: 52px;
  }
}

.team-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 980px;
  margin: 0 auto;
  padding: 40px 20px;
}

.card {
  background: #001427;
  border: 1px solid #001427;
  border-radius: 12px;
  overflow: hidden;
  text-align: center;
  padding-bottom: 16px;
  max-width: 220px;
  margin: 0 auto;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgb(191, 6, 3, 0.35);
}

.card-image {
  width: 100%;
  aspect-ratio: 1 / 1;
  padding: 12px;
  overflow: hidden;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

.card-title {
  font-size: 15px;
  font-weight: 400;
  margin: 14px 12px 4px;
  color: #5a7280;
}

.card-role {
  font-size: 13px;
  font-weight: 400;
  color: #5a7280;
  margin: 0 12px;
  margin-bottom: 12px;
}

/* Tablet — 2 per row */
@media (max-width: 1024px) {
  .team-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile — 1 per row */
@media (max-width: 600px) {
  .team-container {
    grid-template-columns: 1fr;
  }
}

.card-social i {
  font-size: 14px;
  font-weight: 600;
  color: #001427;
  padding: 10px 12px;
  background-color: #fff;
  border: 2px solid #001427;
  border-radius: 50%;
}
