:root {
  --primary-color: #d71920;
  --dark-color: #111827;
  --text-color: #4b5563;
  --light-color: #f6f7f9;
  --white-color: #ffffff;
  --border-color: #e5e7eb;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  color: var(--dark-color);
  background: var(--white-color);
}

a {
  text-decoration: none;
}

img {
  max-width: 100%;
}

section {
  scroll-margin-top: 95px;
}

.topbar {
  background: var(--dark-color);
  color: var(--white-color);
  font-size: 14px;
  padding: 9px 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1040;
}

.topbar a {
  color: var(--white-color);
}

.topbar i {
  color: var(--primary-color);
  margin-right: 6px;
}

.main-navbar {
  top: 38px;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  padding: 16px 0;
  z-index: 1030;
}

.navbar-brand {
  font-weight: 800;
  letter-spacing: -0.5px;
  color: var(--dark-color);
}

.navbar-brand span {
  color: var(--primary-color);
}

.navbar-nav .nav-link {
  color: var(--dark-color);
  font-weight: 600;
  padding: 10px 14px;
}

.navbar-nav .nav-link:hover {
  color: var(--primary-color);
}

.btn-main {
  background: var(--primary-color);
  color: var(--white-color);
  border: 0;
  border-radius: 50px;
  padding: 11px 24px;
  font-weight: 700;
}

.btn-main:hover {
  background: #b9141a;
  color: var(--white-color);
}

.hero-section {
  position: relative;
  min-height: 100vh;
  background:
    linear-gradient(90deg, rgba(17,24,39,0.92), rgba(17,24,39,0.66)),
    url("../img/hero.jpg") center/cover no-repeat;
  color: var(--white-color);
  padding-top: 38px;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at right center, rgba(215,25,32,0.25), transparent 38%);
}

.hero-content {
  padding-top: 80px;
}

.hero-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--white-color);
  padding: 10px 18px;
  border-radius: 50px;
  font-size: 14px;
  margin-bottom: 22px;
}

.hero-content h1 {
  font-size: clamp(42px, 6vw, 76px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -2px;
  margin-bottom: 24px;
}

.hero-content p {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 19px;
  line-height: 1.7;
  margin-bottom: 32px;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-card {
  background: var(--white-color);
  color: var(--dark-color);
  padding: 34px;
  border-radius: 28px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.28);
}

.hero-card h5 {
  font-weight: 800;
  margin-bottom: 18px;
}

.hero-card ul {
  padding-left: 20px;
  margin-bottom: 24px;
}

.hero-card li {
  margin-bottom: 10px;
  color: var(--text-color);
}

.section-padding {
  padding: 95px 0;
}

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

.section-heading {
  max-width: 760px;
  margin: 0 auto;
}

.section-subtitle {
  color: var(--primary-color);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 13px;
  display: inline-block;
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 900;
  letter-spacing: -1.5px;
  margin-bottom: 18px;
}

.section-heading p,
#about p {
  color: var(--text-color);
  font-size: 17px;
  line-height: 1.75;
}

.image-box {
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.14);
}

.image-box img {
  width: 100%;
  height: 520px;
  object-fit: cover;
}

.info-mini-card {
  background: var(--light-color);
  border: 1px solid var(--border-color);
  border-radius: 18px;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.info-mini-card i {
  width: 46px;
  height: 46px;
  background: var(--primary-color);
  color: var(--white-color);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 22px;
}

.service-card {
  background: var(--white-color);
  border: 1px solid var(--border-color);
  border-radius: 26px;
  padding: 34px;
  height: 100%;
  transition: all 0.3s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 65px rgba(0, 0, 0, 0.1);
}

.service-card i {
  width: 64px;
  height: 64px;
  background: rgba(215, 25, 32, 0.1);
  color: var(--primary-color);
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 31px;
  margin-bottom: 24px;
}

.service-card h4 {
  font-weight: 800;
  margin-bottom: 12px;
}

.service-card p {
  color: var(--text-color);
  line-height: 1.7;
  margin-bottom: 0;
}

.brand-section {
  background:
    linear-gradient(90deg, rgba(17,24,39,0.96), rgba(17,24,39,0.9)),
    url("../img/brands-bg.jpg") center/cover no-repeat;
  padding: 90px 0;
}

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

.brand-grid div {
  background: rgba(255, 255, 255, 0.08);
  color: var(--white-color);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 20px;
  padding: 32px 15px;
  text-align: center;
  font-size: 21px;
  font-weight: 900;
  letter-spacing: 1px;
}

.feature-card {
  border: 1px solid var(--border-color);
  border-radius: 28px;
  padding: 34px;
  height: 100%;
}

.feature-card span {
  color: var(--primary-color);
  font-size: 42px;
  font-weight: 900;
  opacity: 0.35;
}

.feature-card h4 {
  font-weight: 800;
  margin: 14px 0;
}

.feature-card p {
  color: var(--text-color);
  line-height: 1.7;
  margin-bottom: 0;
}

.cta-section {
  padding: 40px 0;
}

.cta-box {
  background: var(--primary-color);
  color: var(--white-color);
  border-radius: 30px;
  padding: 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.cta-box h2 {
  font-weight: 900;
  margin-bottom: 8px;
}

.cta-box p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.85);
}

.contact-section {
  background: var(--light-color);
}

.contact-card {
  background: var(--white-color);
  border-radius: 28px;
  padding: 34px;
  height: 100%;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.06);
}

.contact-card h4 {
  font-weight: 900;
  margin-bottom: 28px;
}

.contact-item {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
}

.contact-item i {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: rgba(215, 25, 32, 0.1);
  color: var(--primary-color);
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 23px;
}

.contact-item strong {
  display: block;
  margin-bottom: 4px;
}

.contact-item p {
  color: var(--text-color);
  margin-bottom: 3px;
}

.contact-item a {
  color: var(--text-color);
}

.map-box {
  height: 100%;
  min-height: 470px;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

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

.footer {
  background: var(--dark-color);
  color: rgba(255, 255, 255, 0.75);
  padding: 24px 0;
}

.footer p {
  margin: 0;
}

.floating-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 62px;
  height: 62px;
  background: #25d366;
  color: var(--white-color);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  z-index: 1050;
  box-shadow: 0 15px 35px rgba(37, 211, 102, 0.4);
}

.floating-whatsapp:hover {
  color: var(--white-color);
  transform: scale(1.05);
}

@media (max-width: 991px) {
  .main-navbar {
    top: 0;
  }

  .hero-section {
    padding-top: 0;
  }

  .hero-content {
    padding-top: 120px;
    padding-bottom: 70px;
  }

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

  .cta-box {
    flex-direction: column;
    align-items: flex-start;
  }

  .map-box {
    min-height: 360px;
  }
}

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

  .hero-content h1 {
    font-size: 39px;
  }

  .hero-content p {
    font-size: 17px;
  }

  .hero-buttons .btn {
    width: 100%;
  }

  .image-box img {
    height: 340px;
  }

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

  .cta-box {
    padding: 30px;
  }

  .floating-whatsapp {
    width: 56px;
    height: 56px;
    font-size: 27px;
  }
}