/* --- THEME VARIABLES --- */
:root {
  --primary-color: #9EB71D;
  --secondary-color: #060402;
  --white-color: #ffffff;
  --text-gray: #666666;
}

/* --- ABOUT SECTION CONTAINER --- */
.abi-about-section {
  padding: 40px 0;
  background-color: var(--white-color);
  overflow: hidden;
  /* To handle animations */
}

/* --- LEFT SIDE: IMAGES STYLING --- */
.about-img-wrapper {
  position: relative;
  padding-right: 50px;
  /* Space for the second image */
  padding-bottom: 50px;
  z-index: 1;
}

/* 1. Main Portrait Image */
.main-img {
  width: 80%;
  /* Takes up most width */
  border-radius: 10px;
  position: relative;
  z-index: 1;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  animation: fadeInLeft 1s ease-out;
}

/* 2. Overlapping Small Image */
.small-img {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 55%;
  /* Smaller size */
  border: 10px solid var(--white-color);
  /* Thick white border to separate */
  border-radius: 10px;
  z-index: 2;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
  animation: fadeInUp 1.2s ease-out;
}

/* 3. The Vertical Gradient Bar (Like in reference) */
.vertical-gradient-bar {
  position: absolute;
  top: 30px;
  right: 20%;
  /* Adjusted position */
  width: 10px;
  height: 60%;
  background: linear-gradient(to bottom, var(--primary-color), var(--secondary-color));
  border-radius: 5px;
  z-index: 0;
  /* Behind images */
}

/* Optional Background Pattern Texture */
.pattern-bg {
  position: absolute;
  top: -20px;
  left: -20px;
  width: 200px;
  height: 200px;
  background-image: radial-gradient(var(--secondary-color) 1px, transparent 1px);
  background-size: 10px 10px;
  opacity: 0.1;
  z-index: 0;
}

/* --- RIGHT SIDE: CONTENT STYLING --- */
.about-content {
  padding-left: 30px;
  animation: fadeInRight 1s ease-out;
}

/* Subtitle with Car Icon */
.section-subtitle {
  color: var(--primary-color);
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 0.9rem;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}

.section-subtitle i {
  font-size: 1.2rem;
  /* Car icon size */
  margin-right: 10px;
}

/* Main Heading */
.section-title {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--secondary-color);
  margin-bottom: 30px;
  line-height: 1.2;
}

.section-title-one {
  font-size: 60px;
  font-weight: 800;
  color: var(--secondary-color);
  margin-bottom: 30px;
  line-height: 1.2;
}

/* Highlight Box (Icon + Text) */
.highlight-box {
  display: flex;
  align-items: flex-start;
  margin-bottom: 30px;
}

.highlight-box .icon-box {
  min-width: 60px;
  height: 60px;
  /* Outline Icon Style */
  border: 2px solid var(--primary-color);
  border-radius: 50%;
  /* Circle */
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  font-size: 1.5rem;
  margin-right: 20px;
  transition: 0.3s;
}

/* Hover Effect for Icon */
.highlight-box:hover .icon-box {
  background-color: var(--primary-color);
  color: var(--secondary-color);
}

.highlight-title {
  font-weight: 700;
  color: var(--primary-color);
  /* Green Highlight Text */
  margin-bottom: 5px;
}

.highlight-box p {
  color: var(--text-gray);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

/* Bullet List */
.about-list {
  list-style: none;
  padding: 0;
  margin-bottom: 40px;
}

.about-list li {
  margin-bottom: 15px;
  font-weight: 600;
  color: var(--secondary-color);
  display: flex;
  align-items: center;
}

.about-list li i {
  color: var(--primary-color);
  /* Arrow Color */
  margin-right: 12px;
  font-size: 0.9rem;
  transition: margin-left 0.3s;
}

.about-list li:hover i {
  margin-left: 5px;
  /* Tiny movement on hover */
}

/* Button */
.btn-discover {
  background-color: var(--button-background-color);
  color: var(--secondary-color);
  /* Black text */
  padding: 14px 35px;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 5px;
  display: inline-block;
  transition: all 0.3s ease;
  border: 2px solid var(--primary-color);
}

.btn-discover:hover {
  background-color: var(--secondary-color);
  color: var(--white-color);
  border-color: var(--secondary-color);
  transform: translateY(-3px);
}

/* --- ANIMATIONS --- */
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }

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

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }

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

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }

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

/* --- RESPONSIVE FIXES --- */
@media (max-width: 991px) {
  .section-title {
    font-size: 2.2rem;
  }

  .about-content {
    padding-left: 0;
    margin-top: 30px;
  }

  .vertical-gradient-bar {
    right: 10%;
  }

  /* Adjust bar on tablet */
}

@media (max-width: 767px) {
  .main-img {
    width: 100%;
  }

  .small-img {
    width: 60%;
    border-width: 5px;
  }

  .about-img-wrapper {
    padding-right: 0;
    padding-bottom: 20px;
  }

  /* Hide decorative bar on very small screens if it clashes */
  .vertical-gradient-bar {
    display: none;
  }
}

/* --- PREMIUM BANNER SECTION --- */
.premium-banner-section {
  position: relative;
  /* Background Image with Parallax */
  background: url('../all-images/images/carousel-img/1.avif') no-repeat center center;
  background-size: cover;
  background-attachment: fixed;
  /* Parallax Effect */
  padding: 120px 0;
  min-height: 600px;
  display: flex;
  align-items: center;
  color: var(--white-color);
  overflow: hidden;
}

/* Dark Gradient Overlay */
.banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* Gradient from Solid Black (Left) to Transparent (Right) */
  background: linear-gradient(90deg, rgba(6, 4, 2, 0.95) 0%, rgba(6, 4, 2, 0.7) 50%, rgba(6, 4, 2, 0.4) 100%);
  z-index: 1;
}

/* Content Styling */
.banner-content {
  position: relative;
  animation: slideInLeft 1s ease-out;
}

/* Green Decorative Line */
.green-line {
  width: 60px;
  height: 5px;
  background-color: var(--primary-color);
  margin-bottom: 20px;
  border-radius: 2px;
}

/* Title */
.banner-title {
  font-size: 3.5rem;
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1.1;
  margin-bottom: 25px;
}

.text-green {
  color: var(--primary-color);
}

/* Description */
.banner-desc {
  font-size: 1.1rem;
  color: #cccccc;
  /* Light Gray */
  line-height: 1.6;
  margin-bottom: 40px;
  max-width: 90%;
  border-left: 2px solid rgba(255, 255, 255, 0.2);
  padding-left: 20px;
}

/* --- CONTACT INFO ROW --- */
.contact-info-row {
  display: flex;
  gap: 50px;
  /* Space between Call and Email */
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.contact-block {
  display: flex;
  flex-direction: column;
}

.label-text {
  font-size: 0.9rem;
  color: var(--primary-color);
  margin-bottom: 5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.value-text {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white-color);
  text-decoration: none;
  transition: 0.3s;
  font-family: 'Segoe UI', sans-serif;
  /* Clean font for numbers */
}

.value-text:hover {
  color: var(--primary-color);
}

.icon-small {
  font-size: 1rem;
  margin-right: 5px;
  opacity: 0.7;
}

/* --- BUTTON STYLE --- */
.btn-premium {
  background-color: var(--primary-color);
  color: var(--secondary-color);
  /* Black Text */
  padding: 15px 40px;
  font-weight: 800;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-block;
  border-radius: 4px;
  transition: all 0.3s ease;
  border: 2px solid var(--primary-color);
}

.btn-premium:hover {
  background-color: transparent;
  color: var(--white-color);
  /* White Text on Hover */
  border-color: var(--white-color);
}

/* --- ANIMATIONS --- */
@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }

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

/* --- RESPONSIVE --- */
@media (max-width: 768px) {
  .banner-title {
    font-size: 2.2rem;
  }

  .contact-info-row {
    gap: 30px;
    flex-direction: column;
  }

  .value-text {
    font-size: 1.2rem;
  }

  .premium-banner-section {
    padding: 80px 0;
  }

  .banner-desc {
    border-left: none;
    padding-left: 0;
  }
}

/* --- SECTION STYLING --- */
.wcu-section {
  padding: 40px 0;
  background-color: var(--white-color);
  overflow: hidden;
}

.z-index-2 {
  position: relative;
  z-index: 2;
  /* Keeps cards above image */
}

/* --- CARDS WRAPPER --- */
.wcu-cards-wrapper {
  display: flex;
  flex-direction: column;
  gap: 30px;
  /* Space between cards */
}

/* --- INDIVIDUAL CARD --- */
.wcu-card {
  background-color: var(--white-color);
  padding: 30px;
  border-radius: 12px;
  display: flex;
  align-items: flex-start;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  /* Soft Shadow */
  border: 1px solid #eee;
  transition: all 0.3s ease;
  /* The Overlap Magic for Desktop */
  margin-right: -50px;
  position: relative;
}

/* Hover Effect */
.wcu-card:hover {
  transform: translateX(10px);
  /* Moves slightly right */
  border-color: var(--primary-color);
  /* Green Border */
  box-shadow: 0 15px 40px rgba(158, 183, 29, 0.15);
  /* Green Glow */
}

/* --- ICON BOX --- */
.wcu-icon-box {
  min-width: 60px;
  height: 60px;
  /* Faint Green Background for Icon */
  background-color: var(--primary-color);
  color: var(--white-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-right: 20px;
  transition: 0.4s;
}

/* Icon Animation on Hover */
.wcu-card:hover .wcu-icon-box {
  background-color: var(--primary-color);
  color: var(--secondary-color);
  /* Icon turns black */
  transform: rotateY(360deg);
  /* Spin Effect */
}

/* --- CONTENT --- */
.wcu-content h4 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--secondary-color);
  margin-bottom: 10px;
}

.wcu-content p {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

/* --- RIGHT SIDE IMAGE --- */
.wcu-img-wrapper {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
}

.wcu-main-img {
  border-radius: 20px;
  width: 100%;
  height: 500px;
  /* Fixed height for consistent look */
  object-fit: cover;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
  /* Make image slide in */
  animation: fadeInRight 1.5s ease-out;
}

/* --- ANIMATIONS --- */
@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }

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

/* --- RESPONSIVE ADJUSTMENTS --- */
@media (max-width: 991px) {
  .wcu-card {
    margin-right: 0;
    /* Remove overlap on tablet/mobile */
    margin-bottom: 0;
  }

  .wcu-img-wrapper {
    margin-top: 50px;
  }

  .wcu-main-img {
    height: 400px;
  }
}

@media (max-width: 767px) {
  .wcu-card {
    flex-direction: column;
    text-align: center;
  }

  .wcu-icon-box {
    margin: 0 auto 20px auto;
  }
}

/* --- SECTION STYLES --- */
.about-facts-section {
  position: relative;
  background-color: var(--secondary-color);
  /* Dark Background */
  padding: 100px 0;
  overflow: hidden;
  color: var(--white-color);
}

/* Decorative Car Image (Left Side) */
.facts-car-img {
  position: absolute;
  left: -1px;
  top: 50%;
  transform: translateY(-50%);
  width: 300px;
  height: 300px;
  border-radius: 50%;
  overflow: hidden;
  border: 5px solid rgba(255, 255, 255, 0.05);
  z-index: 1;
}

.facts-car-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Pattern (Right Top) */
.facts-pattern {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 100px;
  height: 100px;
  background-image: repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.1) 0, rgba(255, 255, 255, 0.1) 2px, transparent 0, transparent 50%);
  background-size: 10px 10px;
  opacity: 0.5;
}

/* Typography */
.facts-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--white-color);
  margin-bottom: 15px;
}

.facts-divider {
  width: 60px;
  height: 4px;
  background-color: var(--primary-color);
  margin: 0 auto 20px auto;
  border-radius: 2px;
}

.facts-desc {
  color: #cccccc;
  font-size: 1rem;
  max-width: 600px;
  margin: 0 auto;
}

/* --- CARD DESIGN --- */
.fact-card {
  background-color: var(--white-color);
  border-radius: 12px;
  padding: 25px 20px;
  display: flex;
  align-items: center;
  transition: all 0.4s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  border-bottom: 4px solid transparent;
  /* Ready for hover effect */
}

/* Hover Effect: Lift up & Green Border */
.fact-card:hover {
  transform: translateY(-10px);
  border-bottom-color: var(--primary-color);
}

/* Icon Box (Dark Box) */
.fact-icon-box {
  width: 60px;
  height: 60px;
  background-color: var(--primary-color);
  /* Black Box */
  color: var(--white-color);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-right: 20px;
  flex-shrink: 0;
  transition: 0.3s;
}

/* Icon hover change */
.fact-card:hover .fact-icon-box {
  background-color: var(--primary-color);
  /* Turns Green */
  color: var(--secondary-color);
  /* Icon turns Black */
}

/* Text Content */
.fact-number {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--secondary-color);
  margin: 0;
  line-height: 1;
}

.fact-label {
  font-size: 0.9rem;
  color: #666;
  margin: 5px 0 0 0;
  font-weight: 600;
}

/* Responsive Tweaks */
@media (max-width: 768px) {
  .facts-title {
    font-size: 2rem;
  }

  .fact-card {
    justify-content: center;
    text-align: left;
  }
}