/* ════════════════════════════════════════════
   POPULAR TRACTORS — MASTER STYLESHEET
   ════════════════════════════════════════════ */

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --charcoal: #1e1e1e;
  --charcoal-soft: #2a2a2a;
  --charcoal-softer: #333333;
  --red: #e31e24;
  --red-light: #ff4d4d;
  --red-dark: #b3151a;
  --red-pale: #fff0f0;
  --green: #1e8449;
  --cream: #f4f4f4;
  --off-white: #fafafa;
  --text-dark: #1e1e1e;
  --text-mid: #444444;
  --text-muted: #777777;
  --white: #ffffff;
  --border: rgba(30, 30, 30, 0.1);
  --border-red: rgba(227, 30, 36, 0.18);
  --shadow-sm: 0 2px 12px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 8px 28px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.14);
  --radius: 8px;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: "Barlow", sans-serif;
  background: var(--off-white);
  color: var(--text-dark);
  overflow-x: hidden;
  font-size: 16px;
  line-height: 1.5;
}

img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
}
ul {
  list-style: none;
}

::selection {
  background: var(--red);
  color: white;
}

/* ── UTILITY ── */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 5%;
}
.text-center {
  text-align: center;
}

/* ════════════════════════════════════════════
   TOP UTILITY BAR
   ════════════════════════════════════════════ */
.topbar {
  background: var(--charcoal);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 7px 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12.5px;
}
.topbar-left {
  display: flex;
  gap: 22px;
  color: rgba(255, 255, 255, 0.55);
}
.topbar-left a,
.topbar-left span {
  display: flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.55);
  transition: color 0.2s;
}
.topbar-left a:hover {
  color: var(--red-light);
}
.topbar-right {
  display: flex;
  align-items: center;
  gap: 16px;
}
.topbar-tag {
  background: rgba(227, 30, 36, 0.18);
  border: 1px solid rgba(227, 30, 36, 0.4);
  color: #ff8585;
  padding: 3px 10px;
  border-radius: 2px;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.lang-toggle {
  display: flex;
  gap: 2px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 14px;
  padding: 2px;
}
.lang-toggle button {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: rgba(255, 255, 255, 0.45);
  padding: 4px 10px;
  border-radius: 12px;
  font-family: "Barlow", sans-serif;
  transition: all 0.2s;
}
.lang-toggle button.active {
  background: var(--red);
  color: white;
}

/* ════════════════════════════════════════════
   MAIN NAVIGATION
   ════════════════════════════════════════════ */
.navbar {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 5%;
  max-width: 1280px;
  margin: 0 auto;
}
.nav-logo-link {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.nav-logo-link img {
  height: 52px;
  width: auto;
}
.nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-menu > li {
  position: relative;
}
.nav-menu > li > a {
  display: flex;
  align-items: center;
  gap: 4px;
  text-decoration: none;
  color: var(--text-dark);
  font-size: 14.5px;
  font-weight: 600;
  padding: 10px 16px;
  border-radius: 4px;
  transition:
    background 0.2s,
    color 0.2s;
}
.nav-menu > li > a:hover,
.nav-menu > li > a.active {
  color: var(--red);
  background: var(--red-pale);
}
.nav-menu .caret {
  font-size: 9px;
  opacity: 0.5;
  margin-left: 1px;
}

.nav-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: white;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  min-width: 230px;
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition:
    opacity 0.2s,
    transform 0.2s,
    visibility 0.2s;
  z-index: 50;
}
.nav-menu > li:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-dropdown a {
  display: block;
  padding: 9px 14px;
  border-radius: 5px;
  text-decoration: none;
  color: var(--text-mid);
  font-size: 13.5px;
  font-weight: 500;
  transition:
    background 0.15s,
    color 0.15s;
}
.nav-dropdown a:hover {
  background: var(--red-pale);
  color: var(--red);
}

.nav-cta-btn {
  background: var(--red);
  color: white !important;
  padding: 10px 22px !important;
  border-radius: 5px;
  font-weight: 700 !important;
}
.nav-cta-btn:hover {
  background: var(--red-dark) !important;
  color: white !important;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
}

@media (max-width: 1024px) {
  .nav-menu {
    display: none;
  }
  .nav-toggle {
    display: block;
  }
  .topbar-left span:not(:first-child) {
    display: none;
  }
}

/* Mobile navigation: open state */
.nav-menu.mobile-open {
  display: block;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--white);
  border-top: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
  padding: 14px 5%;
  z-index: 150;
}
.nav-menu.mobile-open > li {
  margin-bottom: 8px;
}
.nav-menu.mobile-open > li > a {
  display: block;
  padding: 12px 14px;
  border-radius: 6px;
  font-size: 15.5px;
}
.nav-menu.mobile-open .nav-dropdown {
  position: static;
  opacity: 1;
  visibility: visible;
  transform: none;
  display: block;
  background: transparent;
  border: none;
  box-shadow: none;
  min-width: 100%;
  padding: 6px 0 6px 16px;
  margin: 0;
}
.nav-menu.mobile-open .nav-dropdown a {
  padding: 10px 14px;
  margin: 4px 0;
  font-size: 14px;
  border-left: 3px solid #e31e24;
  background: #fafafa;
  border-radius: 4px;
}

/* Prevent background scroll when mobile menu is open */
.no-scroll {
  overflow: hidden;
}

/* ════════════════════════════════════════════
   PAGE HERO BANNER (interior pages)
   ════════════════════════════════════════════ */
.page-hero {
  background: var(--charcoal);
  background-image: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 38px,
    rgba(255, 255, 255, 0.015) 38px,
    rgba(255, 255, 255, 0.015) 76px
  );
  padding: 56px 5% 44px;
  position: relative;
  border-bottom: 3px solid var(--red);
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 14px;
}
.breadcrumb a {
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
}
.breadcrumb a:hover {
  color: var(--red-light);
}
.page-hero h1 {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(36px, 5vw, 56px);
  color: white;
  letter-spacing: 1px;
  line-height: 1;
}
.page-hero p {
  color: rgba(255, 255, 255, 0.55);
  font-size: 15.5px;
  margin-top: 10px;
  max-width: 560px;
}

/* ════════════════════════════════════════════
   SECTION COMMON
   ════════════════════════════════════════════ */
section {
  padding: 72px 5%;
  overflow-x: hidden;
}
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 12px;
}
.section-eyebrow::before {
  content: "";
  width: 18px;
  height: 2px;
  background: var(--red);
}
.section-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(32px, 4.2vw, 52px);
  line-height: 1.02;
  letter-spacing: 0.5px;
  color: var(--text-dark);
  margin-bottom: 14px;
}
.section-title.on-dark {
  color: white;
}
.section-desc {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 600px;
  margin-bottom: 40px;
}
.section-desc.on-dark {
  color: rgba(255, 255, 255, 0.55);
}
.section-head-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

/* ════════════════════════════════════════════
   STAT COUNTER STRIP
   ════════════════════════════════════════════ */
.stat-strip {
  background: var(--charcoal);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.stat-strip-item {
  padding: 36px 20px;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.07);
}
.stat-strip-item:last-child {
  border-right: none;
}
.stat-strip-num {
  font-family: "Bebas Neue", sans-serif;
  font-size: 44px;
  color: var(--red-light);
  line-height: 1;
}
.stat-strip-label {
  font-size: 11.5px;
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-top: 8px;
}
@media (max-width: 800px) {
  .stat-strip {
    grid-template-columns: repeat(2, 1fr);
  }
  .stat-strip-item:nth-child(2) {
    border-right: none;
  }
}

/* ════════════════════════════════════════════
   BUTTONS
   ════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 13px 26px;
  border-radius: 5px;
  font-weight: 700;
  font-size: 14.5px;
  text-decoration: none;
  letter-spacing: 0.3px;
  border: none;
  cursor: pointer;
  transition:
    background 0.2s,
    transform 0.15s,
    box-shadow 0.2s;
  font-family: "Barlow", sans-serif;
}
.btn-red {
  background: var(--red);
  color: white;
}
.btn-red:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn-outline-dark {
  background: transparent;
  color: var(--charcoal);
  border: 1.5px solid var(--charcoal);
}
.btn-outline-dark:hover {
  background: var(--charcoal);
  color: white;
  transform: translateY(-2px);
}
.btn-outline-light {
  background: transparent;
  color: white;
  border: 1.5px solid rgba(255, 255, 255, 0.3);
}
.btn-outline-light:hover {
  border-color: var(--red);
  color: var(--red-light);
  transform: translateY(-2px);
}
.btn-wa {
  background: #25d366;
  color: white;
}
.btn-wa:hover {
  background: #1ea952;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn-block {
  width: 100%;
  justify-content: center;
}
.btn-sm {
  padding: 9px 18px;
  font-size: 13px;
}

/* ════════════════════════════════════════════
   CARDS — generic
   ════════════════════════════════════════════ */
.card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition:
    transform 0.2s,
    box-shadow 0.2s,
    border-color 0.2s;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--border-red);
}

/* ════════════════════════════════════════════
   GRID HELPERS
   ════════════════════════════════════════════ */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.grid-5 {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 22px;
}
.grid-auto {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 22px;
}
@media (max-width: 900px) {
  .grid-2,
  .grid-3,
  .grid-4,
  .grid-5 {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 600px) {
  .grid-2,
  .grid-3,
  .grid-4,
  .grid-5 {
    grid-template-columns: 1fr;
  }
}

/* ════════════════════════════════════════════
   HOMEPAGE HERO
   ════════════════════════════════════════════ */
.hero {
  background: var(--charcoal);
  background-image: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 40px,
    rgba(255, 255, 255, 0.012) 40px,
    rgba(255, 255, 255, 0.012) 80px
  );
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  padding: 64px 5% 56px;
  gap: 40px;
  min-height: 86vh;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(227, 30, 36, 0.15);
  border: 1px solid rgba(227, 30, 36, 0.4);
  border-radius: 2px;
  padding: 6px 14px;
  margin-bottom: 22px;
}
.hero-badge-dot {
  width: 7px;
  height: 7px;
  background: var(--red);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(0.8);
  }
}
.hero-badge span {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #ff8585;
}
.hero h1 {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(46px, 5.6vw, 78px);
  color: white;
  line-height: 0.95;
  letter-spacing: 1px;
  margin-bottom: 10px;
}
.hero h1 span {
  color: var(--red);
}
.hero-subtitle {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 22px;
}
.hero-desc {
  font-size: 16.5px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 32px;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.hero-right {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.hero-brand-strip {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  padding: 20px;
}
.hero-brand-strip-label {
  font-size: 10.5px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 12px;
  font-weight: 700;
}
.hero-brand-logos {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}
.hero-brand-chip {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  padding: 10px 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.72);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.hero-brand-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  color: white;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.18);
}
.hero-brand-icon.mahindra {
  background: linear-gradient(135deg, #d8242a, #8d1115);
}
.hero-brand-icon.eicher {
  background: linear-gradient(135deg, #0f6fb4, #0a3e65);
}
.hero-brand-icon.dowty {
  background: linear-gradient(135deg, #f0b429, #b57c10);
}
.hero-brand-icon.dana {
  background: linear-gradient(135deg, #1f6f45, #124f31);
}
.hero-brand-icon.bosch {
  background: linear-gradient(135deg, #2e7d32, #185a20);
}
.hero-vertical-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  padding: 22px;
}
.hero-vertical-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 9px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  font-weight: 500;
}
.hero-vertical-row:last-child {
  border-bottom: none;
}
.hero-vertical-icon {
  width: 30px;
  height: 30px;
  background: rgba(227, 30, 36, 0.18);
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  flex-shrink: 0;
}

@media (max-width: 1024px) {
  .hero {
    grid-template-columns: 1fr;
    padding-top: 90px;
    min-height: auto;
  }
  .hero-brand-logos {
    grid-template-columns: repeat(5, 1fr);
  }
}
@media (max-width: 600px) {
  .hero-brand-logos {
    grid-template-columns: repeat(2, 1fr);
  }
  .hero-brand-chip {
    justify-content: flex-start;
  }
}

/* ════════════════════════════════════════════
   BRAND LOGO MARQUEE / GRID
   ════════════════════════════════════════════ */
.brands-strip-section {
  background: white;
  border-bottom: 1px solid var(--border);
  padding: 44px 5%;
}
.brands-strip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: 1100px;
  margin: 0 auto;
}
@media (max-width: 800px) {
  .brands-strip-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .brands-strip-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 900px) {
  .why-choose-grid {
    grid-template-columns: 1fr 1fr;
  }
  .recognition-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 600px) {
  .why-choose-grid {
    grid-template-columns: 1fr;
  }
}
/* ════════════════════════════════════════════
   BRANDS WITH LOGOS
   ════════════════════════════════════════════ */
.brand-logo-box {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 14px;
  text-align: center;
  transition:
    border-color 0.2s,
    transform 0.2s,
    box-shadow 0.2s;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.brand-logo-box:hover {
  border-color: var(--red);
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
}
.brand-logo-mark {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #fff4f4, #f7f7f7);
  border: 1px solid rgba(30, 30, 30, 0.08);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.35);
  padding: 6px;
}
.brand-logo-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.brand-logo-mark svg {
  width: 100%;
  height: 100%;
}
.brand-logo-box .bname {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  font-size: 17px;
  color: var(--text-dark);
  letter-spacing: 0.5px;
}
.brand-logo-box .btag {
  font-size: 10px;
  color: var(--text-muted);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 3px;
}

/* ════════════════════════════════════════════
   WHY CHOOSE US
   ════════════════════════════════════════════ */
.why-choose-section {
  background: linear-gradient(180deg, #fff8f8 0%, #ffffff 100%);
  border-top: 1px solid var(--border);
}
.why-choose-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

/* Prevent horizontal overflow on narrow screens caused by grid/flex children
   Ensure items can shrink and hide any accidental overflow inside this section */
.why-choose-section {
  overflow-x: hidden;
}
.why-choose-grid,
.why-choose-grid > * {
  box-sizing: border-box;
  min-width: 0;
}
.why-choose-card {
  min-width: 0;
}
.section-head-row > * {
  min-width: 0;
}
.why-choose-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px 24px;
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--red);
}
.why-choose-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--red-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 16px;
}
.why-choose-card h3 {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
}
.why-choose-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

.what-we-deal-section {
  background: linear-gradient(180deg, #ffffff 0%, #fcf7f7 100%);
}
.what-we-deal-section .vertical-card {
  border-top: 4px solid var(--red);
  box-shadow: var(--shadow-sm);
}

.product-range-section {
  background: linear-gradient(180deg, #f7f3eb 0%, #ffffff 100%);
}
.product-range-section .product-cat-card {
  border-top: 4px solid var(--red);
  box-shadow: var(--shadow-sm);
}
.product-range-section .product-cat-head {
  background: linear-gradient(135deg, #1e1e1e 0%, #333333 100%);
}

/* ════════════════════════════════════════════
   RECOGNITION OF EXCELLENCE
   ════════════════════════════════════════════ */
.recognition-section {
  background: var(--charcoal);
  padding: 76px 5%;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.recognition-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.recognition-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}
.recognition-visual {
  background: rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  padding: 10px;
  margin-bottom: 16px;
  border: 1px solid rgba(255, 255, 255, 0.06);
}
.recognition-visual svg {
  width: 100%;
  height: auto;
  max-height: 190px;
  display: block;
  object-fit: cover;
}
.recognition-date {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.7px;
  text-transform: uppercase;
  color: #ffb8b8;
  margin-bottom: 8px;
}
.recognition-card h3 {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 20px;
  color: white;
  margin-bottom: 8px;
}
.recognition-card p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
}

/* ════════════════════════════════════════════
   SERVICE / VERTICAL ICON CARDS (homepage 4-up)
   ════════════════════════════════════════════ */
.vertical-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px 26px;
  transition:
    transform 0.2s,
    box-shadow 0.2s,
    border-color 0.2s;
}
.vertical-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--border-red);
}
.vertical-card-icon {
  width: 52px;
  height: 52px;
  background: var(--red-pale);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 18px;
}
.vertical-card h3 {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: 0.3px;
}
.vertical-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ════════════════════════════════════════════
   PRODUCT CATEGORY CARDS
   ════════════════════════════════════════════ */
.product-cat-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition:
    transform 0.2s,
    box-shadow 0.2s,
    border-color 0.2s;
}
.product-cat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--border-red);
}
.product-cat-head {
  background: var(--charcoal);
  padding: 28px 24px 22px;
  position: relative;
}
.product-cat-icon {
  font-size: 36px;
  margin-bottom: 8px;
}
.product-cat-head h3 {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 21px;
  font-weight: 700;
  color: white;
  letter-spacing: 0.3px;
}
.product-cat-body {
  padding: 20px 24px 24px;
}
.product-cat-body ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.product-cat-body li {
  font-size: 13.5px;
  color: var(--text-mid);
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 5px 0;
  border-bottom: 1px dashed var(--border);
}
.product-cat-body li:last-child {
  border-bottom: none;
}
.product-cat-body li::before {
  content: "—";
  color: var(--red);
  font-weight: 700;
}

/* ════════════════════════════════════════════
   SERVICE DETAIL CARDS (dark section)
   ════════════════════════════════════════════ */
.service-block-section {
  background: var(--charcoal);
}
.service-detail-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  padding: 30px;
  transition:
    background 0.2s,
    border-color 0.2s;
}
.service-detail-card:hover {
  background: rgba(227, 30, 36, 0.07);
  border-color: rgba(227, 30, 36, 0.4);
}
.service-detail-icon {
  font-size: 30px;
  margin-bottom: 14px;
}
.service-detail-card h3 {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 21px;
  color: white;
  font-weight: 700;
  margin-bottom: 10px;
}
.service-detail-card p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.65;
  margin-bottom: 16px;
}
.service-detail-card ul {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.service-detail-card li {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
  display: flex;
  align-items: center;
  gap: 8px;
}
.service-detail-card li::before {
  content: "✓";
  color: var(--red-light);
  font-weight: 700;
}

/* ════════════════════════════════════════════
   BRANCH / OUTLET CARDS
   ════════════════════════════════════════════ */
.branch-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}
.branch-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.branch-card-head {
  background: var(--charcoal);
  padding: 18px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.branch-card-head h3 {
  font-family: "Bebas Neue", sans-serif;
  font-size: 24px;
  color: white;
  letter-spacing: 1.5px;
}
.branch-type-tag {
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 2px;
}
.tag-ho {
  background: var(--red);
  color: white;
}
.tag-branch {
  background: rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.75);
}
.branch-card-body {
  padding: 20px 22px;
}
.branch-address {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 14px;
}
.branch-meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-mid);
  margin-bottom: 6px;
}
.branch-meta-icon {
  color: var(--red);
}

/* ════════════════════════════════════════════
   DSP CARDS (compact)
   ════════════════════════════════════════════ */
.dsp-card {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.dsp-icon {
  width: 40px;
  height: 40px;
  background: var(--red-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  flex-shrink: 0;
}
.dsp-card h4 {
  font-size: 15px;
  font-weight: 700;
}
.dsp-card span {
  font-size: 12px;
  color: var(--text-muted);
}

/* ════════════════════════════════════════════
   COVERAGE AREA TAGS
   ════════════════════════════════════════════ */
.coverage-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.coverage-tag {
  background: white;
  border: 1.5px solid var(--border-red);
  color: var(--text-dark);
  padding: 9px 18px;
  border-radius: 30px;
  font-size: 13.5px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 7px;
  transition:
    background 0.2s,
    color 0.2s,
    border-color 0.2s;
}
.coverage-tag:hover {
  background: var(--red);
  color: white;
  border-color: var(--red);
}
.coverage-tag .pin {
  color: var(--red);
}
.coverage-tag:hover .pin {
  color: white;
}

/* ════════════════════════════════════════════
   TESTIMONIALS
   ════════════════════════════════════════════ */
.testimonial-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
}
.testimonial-card:hover {
  border-color: var(--border-red);
  box-shadow: var(--shadow-md);
}
.t-stars {
  color: #f5a623;
  font-size: 15px;
  margin-bottom: 14px;
  letter-spacing: 1px;
}
.t-text {
  font-size: 14.5px;
  color: var(--text-mid);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 18px;
}
.t-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
}
.t-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--red-pale);
  border: 1.5px solid var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Bebas Neue", sans-serif;
  font-size: 15px;
  color: var(--red);
  flex-shrink: 0;
}
.t-name {
  font-size: 13.5px;
  font-weight: 700;
}
.t-role {
  font-size: 11.5px;
  color: var(--text-muted);
}

/* ════════════════════════════════════════════
   FORM ELEMENTS
   ════════════════════════════════════════════ */
.form-card {
  background: var(--charcoal);
  border-radius: var(--radius);
  padding: 34px;
}
.form-card h3 {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 21px;
  color: white;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 22px;
  text-transform: uppercase;
}
.form-row {
  margin-bottom: 16px;
}
.form-row label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 6px;
}
.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 4px;
  padding: 12px 14px;
  font-family: "Barlow", sans-serif;
  font-size: 15px;
  color: white;
  outline: none;
  transition: border-color 0.2s;
}
.form-row input::placeholder,
.form-row textarea::placeholder {
  color: rgba(255, 255, 255, 0.25);
}
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  border-color: var(--red);
}
.form-row select option {
  background: var(--charcoal);
}
.form-row textarea {
  resize: none;
  height: 90px;
}
.form-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.wa-note {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(37, 211, 102, 0.12);
  border: 1px solid rgba(37, 211, 102, 0.3);
  border-radius: 4px;
  padding: 10px 14px;
  margin-bottom: 18px;
}
.wa-note span {
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.7);
}

/* ════════════════════════════════════════════
   CTA STRIP
   ════════════════════════════════════════════ */
.cta-strip {
  background: var(--red);
  padding: 56px 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}
.cta-strip h2 {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(28px, 3.4vw, 42px);
  color: var(--charcoal);
  letter-spacing: 0.5px;
  line-height: 1.05;
}
.cta-strip-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.btn-cta-dark {
  background: var(--charcoal);
  color: white;
}
.btn-cta-dark:hover {
  background: #000;
}
.btn-cta-outline {
  background: transparent;
  border: 1.5px solid var(--charcoal);
  color: var(--charcoal);
}
.btn-cta-outline:hover {
  background: var(--charcoal);
  color: white;
}

/* ════════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════════ */
footer {
  background: #121212;
  padding: 56px 5% 24px;
  border-top: 3px solid var(--red);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr 1fr;
  gap: 36px;
  margin-bottom: 40px;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
}
.footer-logo img {
  height: 46px;
  margin-bottom: 14px;
}
.footer-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.65;
  max-width: 260px;
  margin-bottom: 16px;
}
.footer-social {
  display: flex;
  gap: 10px;
}
.footer-social a {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
  transition:
    background 0.2s,
    color 0.2s;
}
.footer-social a:hover {
  background: var(--red);
  color: white;
}
.footer-col-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--red-light);
  margin-bottom: 16px;
}
.footer-links li {
  margin-bottom: 9px;
}
.footer-links a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover {
  color: var(--red-light);
}
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 11px;
  line-height: 1.5;
}
.footer-contact-icon {
  color: var(--red-light);
  flex-shrink: 0;
  margin-top: 1px;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 22px;
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-copy {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.25);
}
.footer-partner-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(227, 30, 36, 0.1);
  border: 1px solid rgba(227, 30, 36, 0.25);
  border-radius: 3px;
  padding: 6px 14px;
}
.footer-partner-text {
  font-size: 10.5px;
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: 1px;
  text-transform: uppercase;
}
.footer-partner-brand {
  font-family: "Bebas Neue", sans-serif;
  font-size: 17px;
  color: #ff4d4d;
  letter-spacing: 2px;
}

@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* ════════════════════════════════════════════
   FLOATING ACTION BUTTONS
   ════════════════════════════════════════════ */
.floating-btns {
  position: fixed;
  bottom: 28px;
  right: 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 999;
}
.float-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
  position: relative;
}
.float-btn:hover {
  transform: scale(1.1);
}
.float-btn-wa {
  background: #25d366;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.45);
}
.float-btn-wa:hover {
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.6);
}
.float-btn-call {
  background: var(--red);
  box-shadow: 0 4px 16px rgba(227, 30, 36, 0.4);
}
.float-btn-call:hover {
  box-shadow: 0 6px 24px rgba(227, 30, 36, 0.55);
}
.float-tooltip {
  position: absolute;
  right: 68px;
  background: var(--charcoal);
  color: white;
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
  padding: 5px 12px;
  border-radius: 4px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
}
.float-btn:hover .float-tooltip {
  opacity: 1;
}

/* ════════════════════════════════════════════
   FADE IN ON SCROLL
   ════════════════════════════════════════════ */
.fade-in {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ════════════════════════════════════════════
   MISC: ABOUT PAGE TIMELINE / VALUES
   ════════════════════════════════════════════ */
.value-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px;
  text-align: center;
}
.value-icon {
  font-size: 30px;
  margin-bottom: 14px;
}
.value-card h4 {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}
.value-card p {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.6;
}

.timeline {
  position: relative;
  padding-left: 32px;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 7px;
  top: 6px;
  bottom: 6px;
  width: 2px;
  background: var(--border-red);
}
.timeline-item {
  position: relative;
  padding-bottom: 32px;
}
.timeline-item:last-child {
  padding-bottom: 0;
}
.timeline-item::before {
  content: "";
  position: absolute;
  left: -32px;
  top: 4px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--red);
  border: 3px solid white;
  box-shadow: 0 0 0 2px var(--border-red);
}
.timeline-year {
  font-family: "Bebas Neue", sans-serif;
  font-size: 22px;
  color: var(--red);
}
.timeline-item p {
  font-size: 14px;
  color: var(--text-mid);
  margin-top: 4px;
  line-height: 1.6;
}

@media (max-width: 700px) {
  .form-grid-2 {
    grid-template-columns: 1fr;
  }
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }
  section {
    padding: 56px 5%;
  }
}

/* ==========================================
   Recognition Section - Mobile
   ========================================== */

@media (max-width: 768px) {
  .recognition-section {
    padding: 48px 20px;
  }

  .recognition-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .recognition-card {
    padding: 18px;
  }

  .recognition-visual {
    padding: 8px;
  }

  .recognition-visual svg {
    width: 100%;
    height: auto;
    max-height: 160px;
  }

  .recognition-card h3 {
    font-size: 22px;
    line-height: 1.2;
  }

  .recognition-card p {
    font-size: 14px;
  }

  .recognition-date {
    font-size: 10px;
  }
}

/* ==========================================
   WHY CHOOSE US - MOBILE
   ========================================== */

@media (max-width: 768px) {
  .why-choose-section {
    padding: 48px 18px;
  }

  .section-head-row {
    display: block;
    margin-bottom: 28px;
  }

  .section-head-row .section-desc {
    margin-top: 14px;
    max-width: 100%;
    font-size: 15px;
    line-height: 1.7;
  }

  .why-choose-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .why-choose-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;

    padding: 18px;

    border-left: 4px solid var(--red);

    border-radius: 10px;
  }

  .why-choose-icon {
    width: 52px;
    height: 52px;

    margin: 0;

    flex-shrink: 0;

    font-size: 22px;
  }

  .why-choose-card h3 {
    margin-bottom: 6px;

    font-size: 20px;

    line-height: 1.2;
  }

  .why-choose-card p {
    margin: 0;

    font-size: 14px;

    line-height: 1.6;
  }
}
