:root {
  --primary: #9a0a0c;
  --dark: #1e272e;
  --secondary: #2c3e50;
  --light: #f8f9fa;
}

body {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: #444;
}
h1,
h2,
h3,
h4 {
  font-weight: 800;
  text-transform: uppercase;
  color: var(--dark);
}

.top-header {
  padding: 15px 0;
  background: #ffffff;
  border-bottom: 1px solid #eee;
}

.top-header .row {
  display: flex;
  align-items: center;
}

.header-logo {
  max-height: 65px;
  transition: transform 0.3s ease;
  display: block;
}
.header-logo:hover {
  transform: scale(1.03);
}

.info-box {
  padding: 0 25px;
  border-right: 1px solid #f0f0f0;
}

.info-box:last-child {
  border-right: none;
}

.info-box i {
  font-size: 1.1rem;
  color: var(--primary-red, #9a0a0c);
  background: #fff0f0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  margin-right: 12px;
  transition: 0.3s;
  flex-shrink: 0;
}

.info-box:hover i {
  background: var(--primary-red, #9a0a0c);
  color: #fff;
}

.info-text span {
  display: block;
  font-size: 0.65rem;
  font-weight: 800;
  color: #adb5bd;
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1;
  margin-bottom: 3px;
}

.info-text strong {
  font-size: 0.85rem;
  color: #1a1a1a;
  font-weight: 700;
  display: block;
  line-height: 1.2;
}

.btn-quote-lux {
  background: #1a1a1a;
  color: white;
  border-radius: 8px;
  padding: 10px 20px;
  font-weight: 800;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.4s ease;
  border: none;
  white-space: nowrap;
}

.btn-quote-lux:hover {
  background: var(--primary-red, #9a0a0c);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(154, 10, 12, 0.2);
}

.navbar-main {
  padding: 0;
  background: var(--deep-black);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  z-index: 1000;
}

.nav-custom-container {
  background: var(--deep-black);
  width: 100%;
  display: flex;
  align-items: center;
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.navbar-main .nav-link {
  color: rgba(0, 0, 0, 0.8) !important;
  padding: 22px 28px !important;
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  transition: all 0.3s ease;
  position: relative;
}

.navbar-main .nav-link::after {
  content: "";
  position: absolute;
  bottom: 15px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--primary-red);
  transition: all 0.3s ease;
  transform: translateX(-50%);
  box-shadow: 0 0 10px var(--primary-red);
}

.navbar-main .nav-link:hover {
  color: #fff !important;
  background: rgba(255, 255, 255, 0.03);
}

.navbar-main .nav-link:hover::after,
.navbar-main .active::after {
  width: 30px;
}

.navbar-main .active {
  color: #970b0b !important;
  background: rgba(154, 10, 12, 0.05);
}

.navbar-toggler {
  border: none;
  padding: 10px;
}
.navbar-toggler:focus {
  box-shadow: none;
}
.navbar-toggler-icon {
  filter: invert(1);
}

@media (max-width: 991px) {
  .navbar-main .nav-link {
    padding: 15px 25px !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }
  .navbar-main .nav-link::after {
    bottom: 0;
    left: 0;
    transform: none;
  }
}

#highwaySlider {
  overflow: hidden;
  height: 700px;
  background: #000;
}

.carousel-item {
  height: 700px;
  transition: transform 1.2s cubic-bezier(0.7, 0, 0.3, 1);
}

.carousel-item img {
  height: 100%;
  object-fit: cover;
  transition: transform 8s ease;
  transform: scale(1);
  opacity: 0.7;
}

.carousel-item.active img {
  transform: scale(1.15);
}

.hero-caption {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(10, 10, 10, 0.4);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  width: 90%;
  max-width: 850px;
  padding: 60px 40px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-left: 8px solid var(--primary-red, #9a0a0c);
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5);
  border-radius: 20px;
  text-align: center;
  opacity: 0;
  z-index: 10;
}

.hero-caption p {
  color: var(--light);
  font-weight: 800;
  letter-spacing: 5px;
  margin-bottom: 20px;
  font-size: 0.9rem;
  text-transform: uppercase;
}

.hero-caption h2 {
  font-size: clamp(2rem, 5vw, 4rem);
  margin: 0;
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
  text-transform: uppercase;
}

.hero-caption h2 span {
  -webkit-text-stroke: 1px #fff;
  color: transparent;
}

.carousel-item.active .hero-caption {
  animation: fadeInScale 1s cubic-bezier(0.19, 1, 0.22, 1) forwards;
  animation-delay: 0.4s;
}

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: translate(-50%, -40%) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
}

@media (max-width: 768px) {
  #highwaySlider,
  .carousel-item {
    height: 550px;
  }
  .hero-caption {
    padding: 40px 20px;
    width: 95%;
  }
}

.brand-section {
  padding: 100px 0;
  background: #fff;
}

.brand-badge {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  background: #fff;
  padding: 10px 25px;
  border-radius: 50px;
  box-shadow: 0 10px 30px rgba(154, 10, 12, 0.15);
  margin-bottom: 30px;
  border: 1px solid rgba(154, 10, 12, 0.1);
}

.drop-icon {
  color: #9a0a0c;
  font-size: 1.5rem;
  filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
}

.family-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.family-card {
  background: #f8f9fa;
  padding: 30px;
  border-radius: 20px;
  transition: 0.3s;
  border-bottom: 4px solid transparent;
}

.family-card:hover {
  background: #fff;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
  border-bottom: 4px solid #9a0a0c;
  transform: translateY(-5px);
}

.family-card i {
  font-size: 2rem;
  color: #9a0a0c;
  margin-bottom: 15px;
}

.b2b-trust {
  background: #0a0a0a;
  border-radius: 30px;
  padding: 50px;
  color: #fff;
  margin-top: 80px;
  position: relative;
  overflow: hidden;
}

.b2b-trust::after {
  content: "ADARGA";
  position: absolute;
  right: -20px;
  bottom: -20px;
  font-size: 10rem;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.03);
}

.feature-point {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.feature-point i {
  width: 40px;
  height: 40px;
  background: #9a0a0c;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.client-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  opacity: 0.7;
  margin-top: 40px;
}

.client-logo {
  height: 40px;
  filter: grayscale(1) brightness(0);
  transition: 0.3s;
}

.client-logo:hover {
  filter: grayscale(0) brightness(1);
  opacity: 1;
}

.identity-section {
  padding: 100px 0;
  background: #fcfcfc;
  position: relative;
}

.card-identity {
  background: #fff;
  border: none;
  border-radius: 25px;
  padding: 40px;
  height: 100%;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
  transition: 0.4s;
  position: relative;
  overflow: hidden;
}

.card-identity:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(154, 10, 12, 0.1);
}

.card-identity::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  height: 100%;
  background: var(--primary-red, #9a0a0c);
}

.icon-shape {
  width: 70px;
  height: 70px;
  background: rgba(154, 10, 12, 0.1);
  color: var(--primary-red, #9a0a0c);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin-bottom: 25px;
}

.profile-box {
  background: var(--deep-black, #0a0a0a);
  color: #fff;
  border-radius: 40px;
  padding: 60px;
  margin-top: 60px;
  position: relative;
}

.profile-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 50px;
  align-items: center;
}

.stats-circle {
  border: 2px dashed rgba(255, 255, 255, 0.2);
  padding: 30px;
  border-radius: 50%;
  text-align: center;
}

.stats-number {
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--primary-red, #9a0a0c);
  line-height: 1;
  display: block;
}

.stats-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.6);
}

.profile-text h3 {
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.profile-text p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
}

.year-badge {
  background: var(--primary-red, #9a0a0c);
  padding: 5px 15px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 10px;
  display: inline-block;
}

@media (max-width: 991px) {
  .profile-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .stats-circle {
    width: 200px;
    margin: 0 auto;
  }
}

.cta-full-width::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.95) 0%,
    rgba(0, 0, 0, 0.8) 50%,
    rgba(154, 10, 12, 0.4) 100%
  );
  z-index: 1;
}

.cta-full-width::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 8px;
  background: repeating-linear-gradient(
    90deg,
    var(--primary-red, #9a0a0c),
    var(--primary-red, #9a0a0c) 50px,
    #ffc107 50px,
    #ffc107 100px
  );
  z-index: 2;
  opacity: 0.8;
}

.cta-full-container {
  position: relative;
  z-index: 3;
  width: 100%;
  padding: 80px 10%;
}

.cta-full-content {
  max-width: 800px;
}

.cta-full-subtitle {
  color: #fff;
  background: var(--primary-red, #9a0a0c);
  display: inline-block;
  padding: 5px 20px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 0.8rem;
  border-radius: 4px;
  margin-bottom: 25px;
  box-shadow: 10px 10px 30px rgba(0, 0, 0, 0.2);
}

.cta-full-title {
  color: #fff;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
  margin-bottom: 30px;
}

.cta-full-title span {
  -webkit-text-stroke: 1px #fff;
  color: transparent;
}

.btn-shine {
  position: relative;
  background: #fff;
  color: #000;
  padding: 20px 45px;
  border-radius: 0;
  font-weight: 900;
  font-size: 1.2rem;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 15px;
  transition: 0.4s;
  overflow: hidden;
  border: none;
}

.btn-shine::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(154, 10, 12, 0.4),
    transparent
  );
  transition: 0.5s;
}

.btn-shine:hover::before {
  left: 150%;
}

.btn-shine:hover {
  background: var(--primary-red, #9a0a0c);
  color: #fff;
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(154, 10, 12, 0.4);
}

.moving-bars {
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  gap: 15px;
}

.bar {
  width: 15px;
  background: var(--primary-red, #9a0a0c);
  border-radius: 50px;
  animation: barGrow 2s infinite ease-in-out;
}

@keyframes barGrow {
  0%,
  100% {
    height: 40px;
    opacity: 0.3;
  }
  50% {
    height: 120px;
    opacity: 1;
  }
}

@media (max-width: 768px) {
  .cta-full-container {
    padding: 60px 5%;
    text-align: center;
  }
  .moving-bars {
    display: none;
  }
  .btn-shine {
    width: 100%;
    justify-content: center;
  }
}

.value-section {
  padding: 100px 0;
  background: #ffffff;
}

.value-header {
  max-width: 800px;
  margin-bottom: 60px;
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 25px;
  margin-bottom: 80px;
}

.bento-item {
  background: #fdfdfd;
  border-radius: 30px;
  padding: 40px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.bento-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(154, 10, 12, 0.08);
  border-color: rgba(154, 10, 12, 0.2);
}

.bento-item i {
  font-size: 2.5rem;
  color: var(--primary-red, #9a0a0c);
  margin-bottom: 20px;
}

.bento-item h4 {
  font-weight: 800;
  margin-bottom: 15px;
  font-size: 1.25rem;
}
.bento-item p {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.6;
}

.bento-lg {
  grid-column: span 7;
}
.bento-md {
  grid-column: span 5;
}
.bento-sm {
  grid-column: span 6;
}

.ops-box {
  background: var(--deep-black, #0a0a0a);
  border-radius: 40px;
  padding: 60px;
  color: #fff;
}

.ops-stat-item {
  text-align: center;
  padding: 20px;
}

.ops-stat-item h2 {
  font-size: 3rem;
  font-weight: 900;
  color: var(--primary-red, #9a0a0c);
  margin-bottom: 5px;
}

.ops-stat-item span {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  opacity: 0.7;
}

.logistics-tag {
  background: rgba(255, 255, 255, 0.1);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.85rem;
  display: inline-block;
  margin-right: 10px;
  margin-bottom: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

@media (max-width: 991px) {
  .bento-lg,
  .bento-md,
  .bento-sm {
    grid-column: span 12;
  }
  .ops-box {
    padding: 40px 20px;
  }
}

:root {
  --primary-red: #9a0a0c;
  --dark-stone: #1a1a1a;
  --waze-blue: #33ccff;
}
.product-card {
  border: 1px solid rgba(0, 0, 0, 0.05);
}
.btn-ws-card:hover {
  background: #1eb956;
  transform: scale(1.02);
}

.shop-section {
  background: #f4f7f6;
  padding: 80px 0;
}

.filter-aside {
  background: white;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 100px;
}

.filter-btn-aside {
  width: 100%;
  text-align: left;
  border: none;
  background: none;
  padding: 12px 15px;
  border-radius: 10px;
  font-weight: 700;
  color: #555;
  transition: 0.3s;
  margin-bottom: 5px;
}

.filter-btn-aside.active,
.filter-btn-aside:hover {
  background: var(--primary-red);
  color: white !important;
}

.product-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  transition: 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  height: 100%;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
}
.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.img-wrapper {
  position: relative;
  cursor: zoom-in;
  overflow: hidden;
}
.img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s;
}
.product-card:hover .img-wrapper img {
  transform: scale(1.1);
}

.btn-ws-card {
  background: #25d366;
  color: white;
  border-radius: 12px;
  font-weight: 700;
  transition: 0.3s;
  border: none;
  width: 100%;
  padding: 12px;
}

.contact-card {
  background: white;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
}
.contact-info-panel {
  background: var(--dark-stone);
  color: white;
  padding: 50px;
}
.info-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 30px;
}
.info-item i {
  color: var(--primary-red);
  font-size: 1.5rem;
  margin-right: 20px;
}

.btn-waze {
  background: var(--waze-blue);
  color: white;
  border-radius: 50px;
  padding: 10px 25px;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: 0.3s;
}
.btn-waze:hover {
  background: #28b5e6;
  color: white;
  transform: translateY(-3px);
}

.modal-content {
  border-radius: 20px;
  border: none;
  overflow: hidden;
}
#modalImg {
  width: 100%;
  height: auto;
  max-height: 80vh;
  object-fit: contain;
  background: #000;
}

.project-item {
  margin-bottom: 30px;
}

#project-grid {
  display: flex;
  flex-wrap: wrap;
}

footer {
  background: linear-gradient(180deg, #1a1a1a 0%, #0a0a0a 100%);
  color: #aeb4b9;
  padding: 80px 0 30px;
  position: relative;
  overflow: hidden;
}

footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--primary-red, #9a0a0c),
    transparent
  );
}

footer h5 {
  color: #fff;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 30px;
  position: relative;
}

footer h5::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--primary-red, #9a0a0c);
}

.footer-brand-text {
  font-size: 0.95rem;
  line-height: 1.8;
}

.footer-link {
  color: #aeb4b9;
  text-decoration: none;
  display: flex;
  align-items: center;
  margin-bottom: 12px;
  transition: all 0.3s ease;
  font-weight: 500;
}

.footer-link i {
  font-size: 0.7rem;
  margin-right: 10px;
  color: var(--primary-red, #9a0a0c);
  transition: 0.3s;
}

.footer-link:hover {
  color: #fff;
  transform: translateX(8px);
}

.social-circle {
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fff;
  transition: 0.4s;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-circle:hover {
  background: var(--primary-red, #9a0a0c);
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(154, 10, 12, 0.3);
  color: #fff;
}

.copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 60px;
  padding-top: 30px;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
}

.dev-link {
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  transition: 0.3s;
}

.dev-link:hover {
  color: var(--primary-red, #9a0a0c);
}
