:root {
  --red: #e31e24;
  --dark: #0d0d0d;
  --dark2: #1a1a1a;
  --white: #ffffff;
  --lightgray: #f5f5f5;
  --gray: #888;
  --border: #e8e8e8;
  --font-heading: "Barlow", sans-serif;
  --font-body: "Inter", sans-serif;
  --ease: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
  --shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--dark);
  background: #fff;
  line-height: 1.7;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  line-height: 1.2;
}

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

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

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 30px;
}

.section-pad {
  padding: 100px 0;
}

.bg-light {
  background-color: var(--lightgray);
}

.bg-dark {
  background-color: var(--dark);
}

.desktop-only {
  display: block;
}

.mobile-only {
  display: none !important;
}

.section-tag {
  display: inline-block;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 16px;
}

.section-tag.white {
  color: var(--white);
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: 42px;
  font-weight: 800;
  max-width: 600px;
  margin: 0 auto;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--red);
  color: #fff;
  padding: 14px 30px;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: 2px solid var(--red);
  cursor: pointer;
  transition: var(--ease);
  font-family: var(--font-heading);
}

.btn-primary:hover {
  background: var(--dark);
  border-color: var(--dark);
}

.btn-primary i {
  font-size: 20px;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: #fff;
  padding: 14px 30px;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: 2px solid rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: var(--ease);
  font-family: var(--font-heading);
}

.btn-outline:hover {
  background: #fff;
  color: var(--dark);
}

.btn-outline-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: #fff;
  padding: 12px 28px;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  border: 2px solid #fff;
  cursor: pointer;
  transition: var(--ease);
  font-family: var(--font-heading);
}

.btn-outline-white:hover {
  background: #fff;
  color: var(--dark);
}

.btn-outline-white i {
  font-size: 20px;
}

.btn-red {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--red);
  color: #fff;
  padding: 16px 32px;
  font-weight: 700;
  font-size: 15px;
  border: none;
  cursor: pointer;
  transition: var(--ease);
  font-family: var(--font-heading);
}

.btn-red:hover {
  background: #c9191e;
}

.btn-dark {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--dark);
  color: #fff;
  padding: 16px 32px;
  font-weight: 700;
  font-size: 15px;
  border: none;
  cursor: pointer;
  transition: var(--ease);
  font-family: var(--font-heading);
}

.btn-dark:hover {
  background: #333;
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

#header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #fff;
  z-index: 1000;
  transition: var(--ease);
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.07);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  transition: height 0.3s ease;
}

.logo {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 900;
  color: var(--dark);
  letter-spacing: -1px;
}

.logo span {
  color: var(--red);
}

.footer-logo {
  font-size: 24px;
  margin-bottom: 15px;
  display: inline-block;
}

.nav-links {
  display: flex;
  gap: 32px;
}

.nav-links a {
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--dark);
  position: relative;
  transition: color 0.3s;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--red);
  transition: width 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--red);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.hamburger {
  display: none;
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
  color: var(--dark);
}

.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  margin-top: 80px;
  overflow: hidden;
}

.hero-slider {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.5s ease;
  transform: scale(1);
  animation: none;
}

.slide.active {
  opacity: 1;
  animation: kenburns 8s ease forwards;
}

@keyframes kenburns {
  from {
    transform: scale(1);
  }

  to {
    transform: scale(1.07);
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(90deg, rgba(13, 13, 13, 0.82) 0%, rgba(13, 13, 13, 0.45) 55%, rgba(13, 13, 13, 0.1) 100%);
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 650px;
}

.hero-sub {
  display: block;
  color: var(--red);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 22px;
  background: rgba(227, 30, 36, 0.15);
  border-left: 3px solid var(--red);
  padding: 6px 14px;
  width: fit-content;
}

.hero-title {
  font-size: 64px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 24px;
  line-height: 1.1;
}

.hero-desc {
  color: rgba(255, 255, 255, 0.8);
  font-size: 17px;
  margin-bottom: 40px;
  max-width: 500px;
}

.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-badge {
  position: absolute;
  bottom: 50px;
  right: 50px;
  z-index: 3;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 6px;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.hero-badge-img {
  width: 90px;
  height: 65px;
  border-radius: 4px;
  background-size: cover;
  background-position: center;
}

.hero-badge-body {
  display: flex;
  flex-direction: column;
}

.hero-badge-body h3 {
  font-size: 30px;
  font-weight: 900;
  color: #fff;
  display: inline;
}

.hero-badge-body span {
  font-size: 20px;
  font-weight: 700;
  color: var(--red);
}

.hero-badge-body p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 13px;
}

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

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: var(--ease);
  border: 2px solid transparent;
}

.dot.active {
  background: var(--red);
  border-color: #fff;
  transform: scale(1.2);
}

/* === CLIENTS SECTION === */
.clients-section {
  background: #fff;
  padding: 80px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.clients-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.client-card {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  background: var(--lightgray);
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  cursor: default;
}

.client-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.1);
}

.client-icon-wrap {
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  color: var(--dark);
  transition: background 0.4s ease, color 0.4s ease;
}

.client-card:hover .client-icon-wrap {
  background: var(--red);
  color: #fff;
}

.client-icon-wrap i {
  font-size: 80px;
  opacity: 0.8;
  transition: transform 0.4s ease, opacity 0.4s ease;
}

.client-card:hover .client-icon-wrap i {
  transform: scale(1.15);
  opacity: 1;
}

.client-name {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 40px 20px 20px;
  background: linear-gradient(to top, rgba(13,13,13,0.85) 0%, rgba(13,13,13,0) 100%);
  color: #fff;
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 0;
  text-align: left;
}

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

.about-gallery {
  position: relative;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 14px;
  height: 520px;
}

.about-img-main {
  border-radius: 4px;
  background-size: cover;
  background-position: center;
  height: 100%;
}

.about-img-side {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.about-img-thumb {
  flex: 1;
  border-radius: 4px;
  background-size: cover;
  background-position: center;
}

.est-badge {
  background: var(--red);
  padding: 24px;
  border-radius: 4px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.est-num {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 900;
  color: #fff;
}

.est-label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 600;
  line-height: 1.3;
}

.about-content h2 {
  font-size: 38px;
  font-weight: 800;
  margin-bottom: 20px;
}

.about-content>p {
  color: #555;
  margin-bottom: 28px;
  font-size: 15.5px;
}

.about-feats {
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin-bottom: 28px;
}

.about-feat {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  font-weight: 500;
}

.about-feat i {
  font-size: 22px;
  color: var(--red);
  flex-shrink: 0;
}

.about-visi {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 36px;
}

.visi-item {
  padding: 18px;
  background: var(--lightgray);
  border-left: 3px solid var(--red);
  border-radius: 4px;
}

.visi-item h4 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.visi-item h4 i {
  color: var(--red);
}

.visi-item p {
  font-size: 13.5px;
  color: #555;
}

.ticker-section {
  background: var(--red);
  display: flex;
  align-items: center;
  overflow: hidden;
  height: 52px;
}

.ticker-label {
  background: var(--dark);
  color: #fff;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 2px;
  white-space: nowrap;
  flex-shrink: 0;
}

.ticker-label i {
  font-size: 18px;
  color: var(--red);
}

.ticker-wrap {
  flex: 1;
  overflow: hidden;
}

.ticker-track {
  display: flex;
  align-items: center;
  gap: 30px;
  width: max-content;
  animation: ticker 35s linear infinite;
  white-space: nowrap;
}

.ticker-track span {
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.ticker-dot {
  color: rgba(255, 255, 255, 0.5) !important;
  font-size: 8px !important;
}

@keyframes ticker {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  position: relative;
  height: 360px;
  border-radius: 6px;
  overflow: hidden;
  cursor: pointer;
  background-image: var(--bg);
  background-size: cover;
  background-position: center;
  transition: transform 0.4s ease;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.service-card:hover {
  transform: translateY(-8px);
}

.svc-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(13, 13, 13, 0.2) 0%, rgba(13, 13, 13, 0.85) 100%);
  transition: background 0.4s ease;
}

.service-card:hover .svc-overlay {
  background: linear-gradient(180deg, rgba(227, 30, 36, 0.55) 0%, rgba(13, 13, 13, 0.92) 100%);
}

.svc-icon {
  margin-left: 24px;
  width: 54px;
  height: 54px;
  background: var(--red);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: var(--ease);
}

.service-card:hover .svc-icon {
  background: #fff;
}

.svc-icon i {
  font-size: 26px;
  color: #fff;
  transition: color 0.3s;
}

.service-card:hover .svc-icon i {
  color: var(--red);
}

.svc-body {
  padding: 20px 24px;
  z-index: 2;
}

.svc-body h3 {
  font-size: 20px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 8px;
}

.svc-body p {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, opacity 0.4s ease;
  opacity: 0;
}

.service-card:hover .svc-body p {
  max-height: 80px;
  opacity: 1;
}

.stats-section {
  position: relative;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: 100px 0;
}

.stats-overlay {
  position: absolute;
  inset: 0;
  background: rgba(13, 13, 13, 0.83);
}

.stats-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.stats-left h2 {
  font-size: 42px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 24px;
}

.stats-left p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 15.5px;
  margin-bottom: 36px;
}

.stats-right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 20px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 24px;
  transition: background 0.3s;
}

.stat-item:hover {
  background: rgba(227, 30, 36, 0.18);
}

.stat-icon {
  width: 52px;
  height: 52px;
  background: var(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.stat-icon i {
  font-size: 24px;
  color: #fff;
}

.stat-item h3 {
  font-size: 28px;
  font-weight: 900;
  color: #fff;
}

.stat-item p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 13.5px;
}

.values-section {
  position: relative;
  padding: 120px 0;
}

.values-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.values-content h2 {
  font-size: 40px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 20px;
}

.values-content>p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 36px;
}

.values-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 40px;
}

.value-item {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #fff;
  font-size: 15px;
  font-weight: 500;
}

.value-item i {
  width: 26px;
  height: 26px;
  background: var(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

.values-badge {
  display: flex;
  align-items: center;
  justify-content: center;
}

.values-badge-inner {
  background: var(--red);
  padding: 60px 50px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 20px 60px rgba(227, 30, 36, 0.4);
}

.values-badge-inner i {
  font-size: 50px;
  color: #fff;
  margin-bottom: 20px;
}

.values-badge-inner h3 {
  font-size: 52px;
  font-weight: 900;
  color: #fff;
}

.values-badge-inner p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 16px;
  font-weight: 600;
}

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

.calc-left h2 {
  font-size: 40px;
  font-weight: 800;
  margin-bottom: 20px;
}

.calc-left>p {
  color: #555;
  margin-bottom: 36px;
}

.calc-contact {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 20px;
}

.calc-contact i {
  font-size: 24px;
  color: var(--red);
  margin-top: 2px;
  flex-shrink: 0;
}

.calc-contact span {
  font-size: 13px;
  color: #888;
  display: block;
}

.calc-contact strong {
  font-size: 16px;
  font-weight: 700;
}

.calc-form {
  background: var(--lightgray);
  border-radius: 8px;
  padding: 40px;
  box-shadow: var(--shadow);
}

.calc-form h3 {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 28px;
  border-bottom: 2px solid var(--border);
  padding-bottom: 16px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #555;
}

.form-group select,
.form-group input {
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: 4px;
  font-size: 14.5px;
  font-family: var(--font-body);
  background: #fff;
  color: var(--dark);
  transition: border-color 0.3s;
  width: 100%;
}

.form-group select:focus,
.form-group input:focus {
  outline: none;
  border-color: var(--red);
}

.full-btn {
  width: 100%;
  justify-content: center;
  margin-top: 8px;
  font-size: 15px;
  padding: 16px;
}

.calc-result {
  margin-top: 20px;
  padding: 20px;
  background: var(--dark);
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  color: #fff;
}

.calc-result span {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
}

#calcPrice {
  font-size: 28px;
  font-weight: 900;
  color: var(--red);
  font-family: var(--font-heading);
}

.calc-result small {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
}

.gallery-filters {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-bottom: 36px;
}

.filter-btn {
  padding: 9px 24px;
  border: 2px solid var(--border);
  background: transparent;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: var(--ease);
  border-radius: 2px;
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--red);
  color: #fff;
  border-color: var(--red);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 260px;
  gap: 18px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  cursor: pointer;
}

.gallery-item.large {
  grid-column: span 2;
}

.gal-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.55s ease;
}

.gallery-item:hover .gal-img {
  transform: scale(1.07);
}

.gal-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
  background: linear-gradient(0deg, rgba(13, 13, 13, 0.85), transparent);
  z-index: 2;
  transform: translateY(10px);
  opacity: 0;
  transition: var(--ease);
}

.gallery-item:hover .gal-info {
  transform: translateY(0);
  opacity: 1;
}

.gal-info span {
  display: inline-block;
  background: var(--red);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
  border-radius: 2px;
}

.gal-info h4 {
  color: #fff;
  font-size: 18px;
  font-weight: 700;
}

.process-steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.process-step {
  flex: 1;
  min-width: 180px;
  max-width: 240px;
  text-align: center;
  padding: 0 20px;
}

.step-num {
  font-family: var(--font-heading);
  font-size: 48px;
  font-weight: 900;
  color: rgba(227, 30, 36, 0.12);
  margin-bottom: -10px;
  line-height: 1;
}

.step-icon {
  width: 80px;
  height: 80px;
  background: var(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 8px 25px rgba(227, 30, 36, 0.35);
  transition: transform 0.3s;
}

.process-step:hover .step-icon {
  transform: translateY(-6px);
}

.step-icon i {
  font-size: 32px;
  color: #fff;
}

.process-step h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
}

.process-step p {
  font-size: 13.5px;
  color: #666;
}

.process-arrow {
  font-size: 32px;
  color: #ddd;
  display: flex;
  align-items: center;
  padding-top: 78px;
}

.testimonials-section {}

.testimonials-inner {
  display: grid;
  grid-template-columns: 1fr 1.8fr;
  min-height: 400px;
}

.testi-left {
  background: var(--red);
  padding: 80px 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.testi-left h2 {
  font-size: 40px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 40px;
}

.testi-nav {
  display: flex;
  gap: 14px;
}

.testi-nav button {
  width: 48px;
  height: 48px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  background: transparent;
  color: #fff;
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--ease);
  font-family: var(--font-body);
}

.testi-nav button:hover {
  background: #fff;
  color: var(--red);
}

.testi-right {
  background: var(--dark2);
  padding: 80px 60px;
}

.testi-slider {
  position: relative;
}

.testi-card {
  display: none;
}

.testi-card.active {
  display: block;
  animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.stars {
  font-size: 22px;
  color: #f5c518;
  margin-bottom: 24px;
  letter-spacing: 4px;
}

.testi-card>p {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.8;
  margin-bottom: 36px;
  font-style: italic;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.testi-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  font-weight: 700;
  font-family: var(--font-heading);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

.testi-author strong {
  display: block;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
}

.testi-author span {
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
}

.cta-banner {
  position: relative;
  background-size: cover;
  background-position: center;
  padding: 90px 0;
  background-attachment: fixed;
}

.cta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(13, 13, 13, 0.75);
}

.cta-content {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.cta-text h2 {
  font-size: 38px;
  font-weight: 800;
  color: #fff;
  max-width: 640px;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  flex-shrink: 0;
  flex-wrap: wrap;
}

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

.footer {
  background: var(--dark);
  padding: 80px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.6fr;
  gap: 50px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.footer-col>p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 14.5px;
  line-height: 1.8;
  margin-bottom: 24px;
}

.footer-col h4 {
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--red);
  display: inline-block;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col ul li a {
  color: rgba(255, 255, 255, 0.5);
  font-size: 14.5px;
  transition: color 0.3s;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-col ul li a:hover {
  color: var(--red);
}

.footer-contact li {
  display: flex;
  gap: 12px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
  line-height: 1.7;
}

.footer-contact li i {
  color: var(--red);
  font-size: 18px;
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-contact li a {
  color: var(--red);
}

.footer-socials {
  display: flex;
  gap: 12px;
  margin-top: 4px;
}

.footer-socials a {
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: rgba(255, 255, 255, 0.6);
  transition: var(--ease);
}

.footer-socials a:hover {
  background: var(--red);
  color: #fff;
  border-color: var(--red);
}

.footer-bottom {
  text-align: center;
  padding: 22px;
  color: rgba(255, 255, 255, 0.3);
  font-size: 13.5px;
}

.mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: min(320px, 100%);
  height: 100%;
  background: var(--dark);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  padding: 80px 40px 40px;
  gap: 24px;
  transition: right 0.4s ease;
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.4);
}

.mobile-nav.open {
  right: 0;
}

.mobile-nav a {
  color: #fff;
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 16px;
  transition: color 0.3s;
}

.mobile-nav a:hover {
  color: var(--red);
}

.mobile-nav .btn-primary {
  text-align: center;
  justify-content: center;
  margin-top: 10px;
}

.close-nav {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: none;
  font-size: 30px;
  color: #fff;
  cursor: pointer;
}

.nav-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1999;
}

.nav-backdrop.show {
  display: block;
}

@media (max-width:1100px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-right {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width:991px) {
  .nav-links {
    display: none;
  }

  .hamburger {
    display: block;
  }

  .desktop-only {
    display: none !important;
  }

  .mobile-only {
    display: grid !important;
    margin-bottom: 28px;
  }

  .about-inner {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .calc-inner {
    grid-template-columns: 1fr;
  }

  .values-inner {
    grid-template-columns: 1fr;
  }

  .stats-inner {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .testimonials-inner {
    grid-template-columns: 1fr;
  }

  .cta-content {
    flex-direction: column;
    text-align: center;
  }

  .process-steps {
    gap: 20px;
  }

  .process-arrow {
    display: none;
  }
}

@media (max-width:768px) {
  .section-pad {
    padding: 70px 0;
  }

  .header-inner {
    height: 70px;
  }

  .logo {
    font-size: 24px;
  }

  .hero {
    min-height: 600px;
    margin-top: 70px;
  }

  .hero-title {
    font-size: 40px;
    margin-bottom: 20px;
  }

  .hero-desc {
    font-size: 15px;
  }

  .hero-badge {
    display: none;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-item.large {
    grid-column: span 1;
  }

  .stats-right,
  .stats-inner,
  .values-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .section-header h2 {
    font-size: 30px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .about-visi {
    grid-template-columns: 1fr;
  }

  .ticker-track span {
    font-size: 12px;
  }
}

@media (max-width:480px) {
  .section-pad {
    padding: 50px 0;
  }

  .container {
    padding: 0 20px;
  }

  .logo {
    font-size: 22px;
  }

  .btn-primary,
  .btn-outline,
  .btn-outline-white,
  .btn-red,
  .btn-dark {
    width: 100%;
    justify-content: center;
  }

  .hero-title {
    font-size: 32px;
  }

  .hero-btns {
    flex-direction: column;
    gap: 12px;
  }

  .section-header h2 {
    font-size: 26px;
  }

  .values-content h2,
  .stats-left h2,
  .testi-left h2,
  .cta-text h2 {
    font-size: 28px;
  }

  .about-content h2 {
    font-size: 28px;
  }

  .process-step {
    padding: 15px;
    text-align: center;
  }

  .process-arrow {
    display: none;
  }

  .testi-left,
  .testi-right {
    padding: 40px 20px;
  }

  .clients-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-col h4 {
    margin-bottom: 15px;
  }
}

/* ============================================================
   ABOUT PAGE â€” about.css
   Extends style.min.css design system
   ============================================================ */

/* === 1. HERO BANNER === */
.about-hero {
  position: relative;
  height: 580px;
  background-image: url("assets/images/about_hero_banner.png");
  background-size: cover;
  background-position: center 30%;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.about-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
      rgba(13, 13, 13, 0.55) 0%,
      rgba(13, 13, 13, 0.82) 100%);
}

.about-hero-content {
  position: relative;
  z-index: 2;
  padding-bottom: 80px;
  width: 100%;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 18px;
  font-family: "Inter", sans-serif;
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.65);
  transition: color 0.25s;
}

.breadcrumb a:hover {
  color: #fff;
}

.breadcrumb span {
  color: #e31e24;
}

.breadcrumb i {
  font-size: 14px;
}

.about-hero h1 {
  font-family: "Barlow", sans-serif;
  font-size: 62px;
  font-weight: 900;
  color: #fff;
  line-height: 1.05;
  letter-spacing: -1.5px;
  margin-bottom: 20px;
  max-width: 780px;
}

.about-hero h1 span {
  color: #e31e24;
}

.about-hero-desc {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.78);
  max-width: 560px;
  line-height: 1.7;
  font-family: "Inter", sans-serif;
}

/* === 2. OVERVIEW STRIP === */
.overview-strip {
  background: #0d0d0d;
  padding: 0;
}

.overview-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.overview-item {
  padding: 54px 40px;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.07);
  position: relative;
  overflow: hidden;
  transition: background 0.35s ease;
}

.overview-item:last-child {
  border-right: none;
}

.overview-item::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: #e31e24;
  transition: width 0.4s ease;
}

.overview-item:hover::before {
  width: 100%;
}

.overview-item:hover {
  background: rgba(227, 30, 36, 0.05);
}

.overview-num {
  font-family: "Barlow", sans-serif;
  font-size: 52px;
  font-weight: 900;
  color: #e31e24;
  line-height: 1;
  display: block;
  margin-bottom: 6px;
}

.overview-label {
  font-family: "Inter", sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.55);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

/* === 3. COMPANY STORY === */
.story-section {
  padding: 110px 0;
  background: #fff;
}

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

.story-media {
  position: relative;
}

.story-img-main {
  width: 100%;
  height: 560px;
  object-fit: cover;
  display: block;
}

.story-img-accent {
  position: absolute;
  bottom: -32px;
  right: -32px;
  width: 220px;
  height: 200px;
  object-fit: cover;
  border: 6px solid #fff;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.18);
}

.story-badge {
  position: absolute;
  top: 32px;
  left: -32px;
  background: #e31e24;
  color: #fff;
  padding: 20px 28px;
  font-family: "Barlow", sans-serif;
  font-weight: 900;
  text-align: center;
  box-shadow: 0 12px 30px rgba(227, 30, 36, 0.4);
}

.story-badge-num {
  display: block;
  font-size: 40px;
  line-height: 1;
}

.story-badge-text {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  opacity: 0.9;
}

.story-content {
  padding-right: 20px;
}

.story-content p {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  color: #444;
  line-height: 1.85;
  margin-bottom: 20px;
}

.story-content h2 {
  font-family: "Barlow", sans-serif;
  font-size: 44px;
  font-weight: 900;
  color: #0d0d0d;
  margin-bottom: 24px;
  line-height: 1.1;
}

.story-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 32px 0;
}

.story-hl {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 18px;
  background: #f8f8f8;
  border-left: 3px solid #e31e24;
}

.story-hl i {
  color: #e31e24;
  font-size: 22px;
  flex-shrink: 0;
  margin-top: 2px;
}

.story-hl span {
  font-family: "Inter", sans-serif;
  font-size: 13.5px;
  font-weight: 600;
  color: #0d0d0d;
  line-height: 1.5;
}

/* === 4. VISI MISI NILAI CARDS === */
.vmn-section {
  padding: 110px 0;
  background: #f5f5f5;
}

.vmn-section .section-header {
  text-align: center;
  margin-bottom: 60px;
}

.vmn-section .section-header h2 {
  font-family: "Barlow", sans-serif;
  font-size: 42px;
  font-weight: 900;
  color: #0d0d0d;
}

.vmn-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.vmn-card {
  background: #fff;
  padding: 48px 38px;
  position: relative;
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  border-top: 4px solid transparent;
}

.vmn-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: #e31e24;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.vmn-card:hover::after {
  transform: scaleX(1);
}

.vmn-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.12);
}

.vmn-icon {
  width: 64px;
  height: 64px;
  background: rgba(227, 30, 36, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
}

.vmn-icon i {
  font-size: 30px;
  color: #e31e24;
}

.vmn-card h3 {
  font-family: "Barlow", sans-serif;
  font-size: 26px;
  font-weight: 800;
  color: #0d0d0d;
  margin-bottom: 18px;
}

.vmn-card p {
  font-family: "Inter", sans-serif;
  font-size: 15px;
  color: #555;
  line-height: 1.8;
}

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

.vmn-card ul li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-family: "Inter", sans-serif;
  font-size: 14.5px;
  color: #444;
  padding: 8px 0;
  border-bottom: 1px solid #f0f0f0;
  line-height: 1.55;
}

.vmn-card ul li:last-child {
  border-bottom: none;
}

.vmn-card ul li i {
  color: #e31e24;
  font-size: 16px;
  flex-shrink: 0;
  margin-top: 2px;
}

/* === 5. LEADERSHIP TEAM === */
.team-section {
  padding: 110px 0;
  background: #0d0d0d;
}

.team-section .section-header h2 {
  color: #fff;
}

.team-section .section-header {
  margin-bottom: 64px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.team-card {
  position: relative;
  overflow: hidden;
  background: #1a1a1a;
  transition: transform 0.35s ease;
}

.team-card:hover {
  transform: translateY(-8px);
}

.team-card-img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform 0.5s ease;
  filter: grayscale(20%);
}

.team-card:hover .team-card-img {
  transform: scale(1.04);
  filter: grayscale(0%);
}

.team-card-body {
  padding: 24px 24px 28px;
  position: relative;
}

.team-card-body::before {
  content: "";
  position: absolute;
  top: 0;
  left: 24px;
  width: 40px;
  height: 3px;
  background: #e31e24;
}

.team-card h4 {
  font-family: "Barlow", sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: #fff;
  margin-top: 16px;
  margin-bottom: 4px;
}

.team-role {
  font-family: "Inter", sans-serif;
  font-size: 12.5px;
  font-weight: 600;
  color: #e31e24;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  display: block;
  margin-bottom: 12px;
}

.team-bio {
  font-family: "Inter", sans-serif;
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.65;
}

.team-socials {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

.team-socials a {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 16px;
  transition: all 0.25s ease;
}

.team-socials a:hover {
  background: #e31e24;
  border-color: #e31e24;
  color: #fff;
}

/* === 6. MILESTONES TIMELINE === */
.milestones-section {
  padding: 110px 0;
  background: #fff;
  overflow: hidden;
}

.milestones-section .section-header {
  margin-bottom: 72px;
}

.timeline {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, #e31e24, rgba(227, 30, 36, 0.1));
  transform: translateX(-50%);
}

.timeline-item {
  display: grid;
  grid-template-columns: 1fr 80px 1fr;
  align-items: start;
  gap: 0;
  margin-bottom: 60px;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-content {
  padding: 32px 40px;
  background: #f8f8f8;
  position: relative;
  transition: all 0.35s ease;
}

.timeline-content:hover {
  background: #fff;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.1);
}

.timeline-item.left .timeline-content {
  text-align: right;
  border-right: 3px solid #e31e24;
}

.timeline-item.right .timeline-content {
  text-align: left;
  border-left: 3px solid #e31e24;
}

.timeline-item.right .timeline-left {
  grid-column: 3;
  grid-row: 1;
}

.timeline-item.right .timeline-mid {
  grid-column: 2;
  grid-row: 1;
}

.timeline-item.right .timeline-empty {
  grid-column: 1;
  grid-row: 1;
}

.timeline-mid {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 28px;
}

.timeline-dot {
  width: 18px;
  height: 18px;
  background: #e31e24;
  border-radius: 50%;
  border: 3px solid #fff;
  box-shadow: 0 0 0 3px #e31e24;
  flex-shrink: 0;
}

.timeline-year {
  font-family: "Barlow", sans-serif;
  font-size: 13px;
  font-weight: 800;
  color: #e31e24;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 10px;
  text-align: center;
}

.timeline-content h4 {
  font-family: "Barlow", sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: #0d0d0d;
  margin-bottom: 10px;
}

.timeline-content p {
  font-family: "Inter", sans-serif;
  font-size: 14.5px;
  color: #666;
  line-height: 1.75;
}

/* Certifications strip */
.cert-strip {
  background: #f5f5f5;
  padding: 60px 0;
  margin-top: 80px;
}

.cert-strip-inner {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.cert-label {
  font-family: "Barlow", sans-serif;
  font-size: 13px;
  font-weight: 800;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-right: 12px;
}

.cert-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  padding: 14px 24px;
  border: 1px solid #e8e8e8;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: all 0.25s ease;
}

.cert-badge:hover {
  border-color: #e31e24;
  box-shadow: 0 6px 20px rgba(227, 30, 36, 0.1);
}

.cert-badge i {
  font-size: 22px;
  color: #e31e24;
}

.cert-badge span {
  font-family: "Barlow", sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #0d0d0d;
}

/* === 7. CTA BANNER === */
.about-cta {
  position: relative;
  background: #0d0d0d;
  padding: 100px 0;
  overflow: hidden;
}

.about-cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  background: #e31e24;
  clip-path: polygon(0 0, 85% 0, 70% 100%, 0 100%);
}

.about-cta-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

.about-cta-text {
  flex: 1;
}

.about-cta-text h2 {
  font-family: "Barlow", sans-serif;
  font-size: 48px;
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 16px;
}

.about-cta-text p {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  max-width: 420px;
  line-height: 1.7;
}

.about-cta-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: #0d0d0d;
  padding: 16px 32px;
  font-family: "Barlow", sans-serif;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border: 2px solid #fff;
  cursor: pointer;
  transition: all 0.35s ease;
}

.btn-white:hover {
  background: transparent;
  color: #fff;
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: #fff;
  padding: 16px 32px;
  font-family: "Barlow", sans-serif;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border: 2px solid rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: all 0.35s ease;
}

.btn-ghost:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .about-hero h1 {
    font-size: 46px;
  }

  .story-inner {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .story-media {
    max-height: 420px;
    overflow: hidden;
  }

  .story-img-main {
    height: 420px;
  }

  .story-img-accent {
    width: 160px;
    height: 140px;
    right: -16px;
    bottom: -16px;
  }

  .story-content {
    padding-right: 0;
  }

  .vmn-grid {
    grid-template-columns: 1fr 1fr;
  }

  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .overview-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .overview-item:nth-child(2) {
    border-right: none;
  }

  .overview-item:nth-child(3) {
    border-top: 1px solid rgba(255, 255, 255, 0.07);
  }

  .about-cta::before {
    display: none;
  }

  .about-cta-inner {
    flex-direction: column;
    text-align: center;
  }

  .about-cta-text p {
    max-width: 100%;
  }

  .about-cta-buttons {
    justify-content: center;
  }

  .timeline::before {
    left: 24px;
  }

  .timeline-item {
    grid-template-columns: 48px 1fr;
    gap: 0;
  }

  .timeline-item.left .timeline-content,
  .timeline-item.right .timeline-content {
    text-align: left;
    border-left: 3px solid #e31e24;
    border-right: none;
    grid-column: 2;
    grid-row: 1;
  }

  .timeline-mid {
    grid-column: 1;
    grid-row: 1;
    align-items: center;
    padding-top: 30px;
  }

  .timeline-item.right .timeline-left {
    grid-column: 2;
    grid-row: 1;
  }

  .timeline-item.right .timeline-mid {
    grid-column: 1;
    grid-row: 1;
  }

  .timeline-item.right .timeline-empty {
    display: none;
  }

  .timeline-empty {
    display: none;
  }
}

@media (max-width: 768px) {
  .about-hero {
    height: 480px;
  }

  .about-hero h1 {
    font-size: 34px;
  }

  .about-hero-desc {
    font-size: 15px;
  }

  .vmn-grid {
    grid-template-columns: 1fr;
  }

  .team-grid {
    grid-template-columns: 1fr 1fr;
  }

  .overview-grid {
    grid-template-columns: 1fr 1fr;
  }

  .story-highlights {
    grid-template-columns: 1fr;
  }

  .about-cta-text h2 {
    font-size: 32px;
  }
}

@media (max-width: 480px) {
  .about-hero h1 {
    font-size: 28px;
  }

  .overview-num {
    font-size: 38px;
  }

  .team-grid {
    grid-template-columns: 1fr;
  }

  .about-cta-buttons {
    flex-direction: column;
    align-items: center;
  }
}

/* ============================================================
   SERVICES PAGE â€” services.css
   Extends style.min.css design system
   ============================================================ */

/* === 1. HERO === */
.svc-hero {
  position: relative;
  height: 600px;
  background-image: url("assets/images/svc_hero.png");
  background-size: cover;
  background-position: center 40%;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.svc-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13, 13, 13, 0.92) 0%, rgba(227, 30, 36, 0.25) 50%, rgba(13, 13, 13, 0.85) 100%);
}

.svc-hero-content {
  position: relative;
  z-index: 2;
  padding-bottom: 90px;
  width: 100%;
}

.svc-hero h1 {
  font-family: "Barlow", sans-serif;
  font-size: 68px;
  font-weight: 900;
  color: #fff;
  line-height: 1.0;
  letter-spacing: -2px;
  margin-bottom: 22px;
  max-width: 860px;
}

.svc-hero h1 span {
  color: #e31e24;
}

.svc-hero-desc {
  font-family: "Inter", sans-serif;
  font-size: 17px;
  color: rgba(255, 255, 255, 0.75);
  max-width: 540px;
  line-height: 1.75;
  margin-bottom: 36px;
}

.svc-hero-badges {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.hero-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  padding: 14px 24px;
}

.hero-badge i {
  font-size: 24px;
  color: #e31e24;
}

.hero-badge-info span {
  display: block;
  font-family: "Barlow", sans-serif;
  font-size: 22px;
  font-weight: 900;
  color: #fff;
  line-height: 1;
}

.hero-badge-info small {
  font-family: "Inter", sans-serif;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.55);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

/* === 2. STICKY TAB NAV === */
.svc-tabs-wrap {
  position: sticky;
  top: 80px;
  z-index: 100;
  background: #fff;
  border-bottom: 2px solid #f0f0f0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: box-shadow 0.3s ease;
}

.svc-tabs {
  display: flex;
  align-items: center;
  overflow-x: auto;
  scrollbar-width: none;
}

.svc-tabs::-webkit-scrollbar {
  display: none;
}

.svc-tab {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 20px 28px;
  font-family: "Barlow", sans-serif;
  font-size: 14px;
  font-weight: 800;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  white-space: nowrap;
  border-bottom: 3px solid transparent;
  cursor: pointer;
  transition: all 0.25s ease;
  text-decoration: none;
  margin-bottom: -2px;
}

.svc-tab i {
  font-size: 18px;
}

.svc-tab:hover {
  color: #0d0d0d;
  border-bottom-color: rgba(227, 30, 36, 0.3);
}

.svc-tab.active {
  color: #e31e24;
  border-bottom-color: #e31e24;
}

/* === SHARED SECTION STYLES === */
.svc-section {
  padding: 110px 0;
  scroll-margin-top: 136px;
}

.svc-section.dark {
  background: #0d0d0d;
}

.svc-section.gray {
  background: #f5f5f5;
}

.svc-section.white {
  background: #fff;
}

/* Split layout */
.svc-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.svc-split.reverse {
  direction: rtl;
}

.svc-split.reverse>* {
  direction: ltr;
}

.svc-img-wrap {
  position: relative;
  overflow: hidden;
}

.svc-img-main {
  width: 100%;
  height: 520px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.svc-img-wrap:hover .svc-img-main {
  transform: scale(1.03);
}

.svc-img-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(13, 13, 13, 0.9), transparent);
  padding: 28px 28px 22px;
}

.svc-img-label span {
  font-family: "Barlow", sans-serif;
  font-size: 13px;
  font-weight: 800;
  color: #e31e24;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.svc-img-label h4 {
  font-family: "Barlow", sans-serif;
  font-size: 22px;
  font-weight: 900;
  color: #fff;
  margin-top: 4px;
}

/* Placeholder image for missing images */
.svc-img-placeholder {
  width: 100%;
  height: 520px;
  background: linear-gradient(135deg, #1a1a1a 0%, #2a1a1a 50%, #1a1a1a 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.svc-img-placeholder i {
  font-size: 80px;
  color: #e31e24;
  opacity: 0.5;
}

.svc-img-placeholder p {
  font-family: "Barlow", sans-serif;
  font-size: 18px;
  color: rgba(255, 255, 255, 0.3);
  text-transform: uppercase;
  letter-spacing: 2px;
}

.svc-content h2 {
  font-family: "Barlow", sans-serif;
  font-size: 44px;
  font-weight: 900;
  color: #0d0d0d;
  line-height: 1.1;
  margin-bottom: 18px;
}

.svc-content.on-dark h2 {
  color: #fff;
}

.svc-content p {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  color: #555;
  line-height: 1.85;
  margin-bottom: 16px;
}

.svc-content.on-dark p {
  color: rgba(255, 255, 255, 0.65);
}

/* Feature list */
.svc-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 28px 0;
}

.svc-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  background: #f8f8f8;
  border-left: 3px solid #e31e24;
  font-family: "Inter", sans-serif;
  font-size: 13.5px;
  font-weight: 600;
  color: #0d0d0d;
}

.svc-section.dark .svc-feature {
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.85);
}

.svc-feature i {
  color: #e31e24;
  font-size: 18px;
  flex-shrink: 0;
}

/* === ROUTE TABLE === */
.route-table-wrap {
  margin-top: 36px;
  overflow-x: auto;
}

.route-table {
  width: 100%;
  border-collapse: collapse;
  font-family: "Inter", sans-serif;
}

.route-table th {
  background: #0d0d0d;
  color: #fff;
  font-family: "Barlow", sans-serif;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 14px 18px;
  text-align: left;
}

.route-table th:first-child {
  border-left: 3px solid #e31e24;
}

.route-table td {
  padding: 14px 18px;
  font-size: 14px;
  color: #444;
  border-bottom: 1px solid #f0f0f0;
}

.route-table tr:hover td {
  background: rgba(227, 30, 36, 0.04);
}

.route-table .badge-fast {
  display: inline-block;
  background: rgba(227, 30, 36, 0.1);
  color: #e31e24;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 999px;
}

/* === PROCESS STEPS (services page only) === */
.svc-section .process-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 32px 0;
  position: relative;
}

.svc-section .process-steps::before {
  content: "";
  position: absolute;
  left: 23px;
  top: 28px;
  bottom: 28px;
  width: 2px;
  background: linear-gradient(to bottom, #e31e24, rgba(227, 30, 36, 0.1));
}

.svc-section .process-step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 16px 0;
}

.process-num {
  width: 48px;
  height: 48px;
  background: #e31e24;
  color: #fff;
  font-family: "Barlow", sans-serif;
  font-size: 18px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.process-info h5 {
  font-family: "Barlow", sans-serif;
  font-size: 17px;
  font-weight: 800;
  color: #0d0d0d;
  margin-bottom: 4px;
}

.process-info p {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  margin: 0;
}

/* === 3. SLA CARDS === */
.sla-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.sla-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 36px 28px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all 0.35s ease;
}

.sla-card.featured {
  background: #e31e24;
  border-color: #e31e24;
}

.sla-card:hover:not(.featured) {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(227, 30, 36, 0.4);
  transform: translateY(-4px);
}

.sla-card.featured:hover {
  transform: translateY(-4px);
}

.sla-badge {
  position: absolute;
  top: 0;
  right: 0;
  background: #fff;
  color: #e31e24;
  font-family: "Barlow", sans-serif;
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 5px 12px;
}

.sla-icon {
  width: 64px;
  height: 64px;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.sla-card.featured .sla-icon {
  background: rgba(255, 255, 255, 0.2);
}

.sla-icon i {
  font-size: 30px;
  color: #fff;
}

.sla-card h4 {
  font-family: "Barlow", sans-serif;
  font-size: 22px;
  font-weight: 900;
  color: #fff;
  margin-bottom: 8px;
}

.sla-card p {
  font-family: "Inter", sans-serif;
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.6;
  margin-bottom: 20px;
}

.sla-card.featured p {
  color: rgba(255, 255, 255, 0.85);
}

.sla-eta {
  font-family: "Barlow", sans-serif;
  font-size: 38px;
  font-weight: 900;
  color: #fff;
  display: block;
  margin-bottom: 4px;
}

.sla-eta-label {
  font-family: "Inter", sans-serif;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.sla-card.featured .sla-eta-label {
  color: rgba(255, 255, 255, 0.75);
}

/* === 4. COVERAGE BADGES === */
.coverage-section {
  padding: 80px 0;
  background: #f5f5f5;
  scroll-margin-top: 136px;
}

.coverage-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
  margin-top: 40px;
}

.coverage-badge {
  background: #fff;
  padding: 18px 12px;
  text-align: center;
  border: 1px solid #eee;
  transition: all 0.25s ease;
  cursor: default;
}

.coverage-badge:hover {
  border-color: #e31e24;
  box-shadow: 0 4px 16px rgba(227, 30, 36, 0.1);
}

.coverage-badge i {
  font-size: 24px;
  color: #e31e24;
  display: block;
  margin-bottom: 8px;
}

.coverage-badge span {
  font-family: "Barlow", sans-serif;
  font-size: 12px;
  font-weight: 800;
  color: #0d0d0d;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* === 5. WAREHOUSE + SLA COMBINED === */
.wh-sla-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.wh-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.wh-card-img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
}

.wh-card-body {
  padding: 36px 32px;
}

.wh-card h3 {
  font-family: "Barlow", sans-serif;
  font-size: 28px;
  font-weight: 900;
  color: #fff;
  margin-bottom: 14px;
}

.wh-card p {
  font-family: "Inter", sans-serif;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.75;
  margin-bottom: 24px;
}

.wh-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.wh-stat {
  text-align: center;
  padding: 20px;
  background: rgba(255, 255, 255, 0.05);
}

.wh-stat-num {
  display: block;
  font-family: "Barlow", sans-serif;
  font-size: 32px;
  font-weight: 900;
  color: #e31e24;
  line-height: 1;
}

.wh-stat-label {
  font-family: "Inter", sans-serif;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
}

/* === 6. PRICING === */
.pricing-section {
  padding: 110px 0;
  background: #0d0d0d;
  scroll-margin-top: 136px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 56px;
}

.pricing-card {
  background: #1a1a1a;
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 48px 36px;
  position: relative;
  overflow: hidden;
  transition: all 0.35s ease;
}

.pricing-card.featured {
  background: #e31e24;
  border-color: #e31e24;
}

.pricing-card:hover:not(.featured) {
  border-color: rgba(227, 30, 36, 0.4);
  transform: translateY(-6px);
}

.pricing-card.featured:hover {
  transform: translateY(-6px);
}

.pricing-pop {
  position: absolute;
  top: 0;
  left: 0;
  background: #fff;
  color: #e31e24;
  font-family: "Barlow", sans-serif;
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 6px 16px;
}

.pricing-card h4 {
  font-family: "Barlow", sans-serif;
  font-size: 13px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.pricing-card.featured h4 {
  color: rgba(255, 255, 255, 0.75);
}

.pricing-price {
  font-family: "Barlow", sans-serif;
  font-size: 48px;
  font-weight: 900;
  color: #fff;
  line-height: 1;
  margin-bottom: 4px;
}

.pricing-price sub {
  font-size: 20px;
  font-weight: 600;
  vertical-align: super;
  margin-right: 4px;
}

.pricing-period {
  font-family: "Inter", sans-serif;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 28px;
  display: block;
}

.pricing-card.featured .pricing-period {
  color: rgba(255, 255, 255, 0.65);
}

.pricing-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
  margin-bottom: 28px;
}

.pricing-card.featured .pricing-divider {
  background: rgba(255, 255, 255, 0.2);
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}

.pricing-card.featured .pricing-features li {
  color: rgba(255, 255, 255, 0.9);
}

.pricing-features li i {
  color: #e31e24;
  font-size: 18px;
  flex-shrink: 0;
}

.pricing-card.featured .pricing-features li i {
  color: #fff;
}

.pricing-features li.disabled {
  opacity: 0.35;
}

.btn-pricing {
  display: block;
  width: 100%;
  padding: 16px;
  font-family: "Barlow", sans-serif;
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  text-align: center;
  border: 2px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-pricing:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
}

.pricing-card.featured .btn-pricing {
  background: #fff;
  color: #e31e24;
  border-color: #fff;
}

.pricing-card.featured .btn-pricing:hover {
  background: rgba(255, 255, 255, 0.9);
}

/* === 7. FAQ === */
.faq-section {
  padding: 110px 0;
  background: #fff;
}

.faq-list {
  max-width: 840px;
  margin: 56px auto 0;
}

.faq-item {
  border-bottom: 1px solid #eee;
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  cursor: pointer;
  gap: 20px;
}

.faq-question h5 {
  font-family: "Barlow", sans-serif;
  font-size: 18px;
  font-weight: 800;
  color: #0d0d0d;
  transition: color 0.25s ease;
}

.faq-item.open .faq-question h5 {
  color: #e31e24;
}

.faq-icon {
  width: 36px;
  height: 36px;
  border: 2px solid #eee;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.faq-item.open .faq-icon {
  background: #e31e24;
  border-color: #e31e24;
}

.faq-icon i {
  font-size: 18px;
  color: #888;
  transition: all 0.3s ease;
}

.faq-item.open .faq-icon i {
  color: #fff;
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.open .faq-answer {
  max-height: 300px;
  padding-bottom: 24px;
}

.faq-answer p {
  font-family: "Inter", sans-serif;
  font-size: 15px;
  color: #666;
  line-height: 1.8;
}

/* === 8. CTA === */
.svc-cta {
  position: relative;
  background: #e31e24;
  padding: 100px 0;
  overflow: hidden;
  text-align: center;
}

.svc-cta::before {
  content: "";
  position: absolute;
  top: -60px;
  right: -60px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  pointer-events: none;
}

.svc-cta::after {
  content: "";
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.08);
  pointer-events: none;
}

.svc-cta-inner {
  position: relative;
  z-index: 2;
}

.svc-cta h2 {
  font-family: "Barlow", sans-serif;
  font-size: 52px;
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 16px;
}

.svc-cta p {
  font-family: "Inter", sans-serif;
  font-size: 17px;
  color: rgba(255, 255, 255, 0.8);
  max-width: 520px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.svc-cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* === SECTION HEADER (shared) === */
.svc-section .section-header {
  margin-bottom: 0;
}

.svc-section .section-header h2 {
  color: #0d0d0d;
}

.svc-section.dark .section-header h2 {
  color: #fff;
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .svc-hero h1 {
    font-size: 48px;
  }

  .svc-split {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .svc-split.reverse {
    direction: ltr;
  }

  .svc-img-main {
    height: 380px;
  }

  .svc-img-placeholder {
    height: 380px;
  }

  .coverage-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .wh-sla-grid {
    grid-template-columns: 1fr;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
  }

  .sla-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 768px) {
  .svc-hero {
    height: 520px;
  }

  .svc-hero h1 {
    font-size: 36px;
    letter-spacing: -1px;
  }

  .svc-tabs-wrap {
    top: 68px;
  }

  .svc-tab {
    padding: 16px 18px;
    font-size: 12px;
  }

  .svc-content h2 {
    font-size: 32px;
  }

  .svc-features {
    grid-template-columns: 1fr;
  }

  .coverage-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .svc-cta h2 {
    font-size: 34px;
  }

  .wh-stats {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 480px) {
  .svc-hero h1 {
    font-size: 28px;
  }

  .hero-badge {
    padding: 10px 16px;
  }

  .coverage-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .svc-cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .svc-hero-badges {
    flex-direction: column;
  }
}


.lang-selector {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-right: 20px;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 14px
}

.lang-btn {
  color: #aaa;
  text-decoration: none;
  transition: color .3s
}

.lang-btn.active,
.lang-btn:hover {
  color: #333
}

.lang-sep {
  color: #ddd
}

.minimal-services {
  padding: 80px 0;
  background-color: #fafafa;
  position: relative;
  overflow: hidden
}

.minimal-services .container {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1
}

.minimal-services .section-title {
  color: #cda845;
  font-size: 56px;
  font-weight: 900;
  text-align: left;
  margin-bottom: 40px;
  font-family: "Barlow", sans-serif;
  text-transform: uppercase
}

.service-item {
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid #e0d0a5
}

.service-item:last-child {
  border-bottom: none
}

.service-subtitle {
  color: #cda845;
  font-size: 24px;
  font-style: italic;
  font-weight: 800;
  margin-bottom: 20px;
  font-family: "Barlow", sans-serif
}

.service-content {
  display: flex;
  align-items: flex-start;
  gap: 15px
}

.flag-icon {
  font-size: 32px;
  line-height: 1
}

.service-content p {
  font-size: 16px;
  color: #333;
  line-height: 1.6;
  font-family: "Inter", sans-serif;
  margin: 0
}

.service-content strong {
  color: #cda845
}

@media(max-width:991px) {
  .header-actions .btn-primary {
    display: none
  }

  .lang-selector {
    margin-right: 0
  }
}