/* ===================================
   ABOUT SECTION & MOBILE MENU STYLES
   =================================== */

/* ===== ABOUT SECTION ===== */
.about-section {
  padding: 6rem 2rem;
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  position: relative;
  overflow: hidden;
}

.about-section::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 100%;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.05), rgba(16, 185, 129, 0.05));
  border-radius: 0 0 0 50%;
  z-index: 0;
}

.about-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.about-content {
  animation: fadeInLeft 1s ease;
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.about-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: var(--white);
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow-md);
}

.about-badge i {
  font-size: 1.2rem;
}

.about-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--dark-color);
  margin-bottom: 2rem;
  line-height: 1.2;
}

.about-story {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.about-text {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-dark);
  position: relative;
  padding-left: 1rem;
  border-left: 3px solid transparent;
  transition: all 0.3s ease;
}

.about-text:hover {
  border-left-color: var(--primary-color);
  padding-left: 1.5rem;
}

.about-text.highlight {
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.05), rgba(16, 185, 129, 0.05));
  padding: 1.5rem;
  border-radius: 15px;
  border-left: 4px solid var(--primary-color);
  position: relative;
}

.quote-icon {
  font-size: 2rem;
  color: var(--primary-color);
  opacity: 0.3;
  margin-right: 1rem;
  vertical-align: middle;
}

.about-highlight-box {
  background: var(--white);
  padding: 2rem;
  border-radius: 15px;
  box-shadow: var(--shadow-md);
  border-top: 4px solid var(--secondary-color);
  transition: all 0.3s ease;
}

.about-highlight-box:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.about-highlight-box h3 {
  font-size: 1.3rem;
  color: var(--dark-color);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.about-highlight-box h3 i {
  color: var(--secondary-color);
  font-size: 1.5rem;
}

.vehicle-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.vehicle-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1rem;
  color: var(--text-dark);
}

.vehicle-list li i {
  color: var(--secondary-color);
  font-size: 1.2rem;
}

.about-cta {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  padding: 2rem;
  border-radius: 20px;
  color: var(--white);
  margin-top: 1rem;
}

.about-cta h3 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  text-align: center;
}

.about-contact-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-card {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  padding: 1.25rem;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-card:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-3px);
}

.contact-card i {
  font-size: 1.5rem;
  color: var(--accent-color);
}

.contact-card .label {
  font-size: 0.85rem;
  display: block;
  opacity: 0.9;
  margin-bottom: 0.25rem;
}

.contact-card .value {
  font-size: 0.95rem;
  font-weight: 600;
  display: block;
  color: var(--white);
  text-decoration: none;
}

.contact-card a.value:hover {
  color: var(--accent-color);
}

.btn-large {
  width: 100%;
  padding: 1.25rem 2rem;
  font-size: 1.1rem;
  justify-content: center;
}

/* About Image */
.about-image {
  animation: fadeInRight 1s ease;
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.image-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  margin-bottom: 2rem;
}

.image-wrapper img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.image-wrapper:hover img {
  transform: scale(1.05);
}

.image-badge {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: var(--white);
  padding: 1.5rem;
  border-radius: 15px;
  box-shadow: var(--shadow-lg);
  animation: bounce 2s ease-in-out infinite;
}

.badge-content {
  text-align: center;
}

.badge-number {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.badge-text {
  display: block;
  font-size: 0.9rem;
  color: var(--text-light);
  margin-top: 0.5rem;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.stat-box {
  background: var(--white);
  padding: 1.5rem;
  border-radius: 15px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: all 0.3s ease;
}

.stat-box:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.stat-box i {
  font-size: 2rem;
  color: var(--primary-color);
}

.stat-number {
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--dark-color);
  line-height: 1;
}

.stat-label {
  display: block;
  font-size: 0.85rem;
  color: var(--text-light);
  margin-top: 0.25rem;
}

/* ===== IMPROVED MOBILE MENU ===== */
@media (max-width: 768px) {
  .navbar-toggle {
    display: flex;
    position: relative;
    z-index: 1001;
  }

  .navbar-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .navbar-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .navbar-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
  }

  .navbar-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 80%;
    max-width: 350px;
    height: 100vh;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    flex-direction: column;
    justify-content: flex-start;
    padding: 100px 2rem 2rem;
    transition: left 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: 5px 0 20px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    gap: 0;
  }

  .navbar-menu.active {
    left: 0;
  }

  .navbar-menu li {
    width: 100%;
    margin-bottom: 0.5rem;
  }

  .navbar-menu a {
    display: block;
    padding: 1rem 1.5rem;
    color: var(--white);
    font-size: 1.1rem;
    border-radius: 10px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
  }

  .navbar-menu a:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateX(10px);
  }

  .navbar-menu a::after {
    display: none;
  }

  .navbar-menu .btn {
    width: 100%;
    background: var(--white);
    color: var(--primary-color);
    box-shadow: var(--shadow-md);
  }

  .navbar-menu .btn:hover {
    transform: translateY(0) scale(1.05);
  }

  /* Mobile Menu Overlay */
  .navbar-menu::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: -1;
  }

  .navbar-menu.active::before {
    opacity: 1;
    visibility: visible;
  }

  /* About Section Mobile */
  .about-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .about-title {
    font-size: 2rem;
  }

  .about-contact-cards {
    grid-template-columns: 1fr;
  }

  .image-wrapper img {
    height: 350px;
  }

  .about-stats {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .about-section {
    padding: 4rem 1rem;
  }

  .about-title {
    font-size: 1.75rem;
  }

  .about-text {
    font-size: 0.95rem;
  }

  .image-wrapper img {
    height: 250px;
  }

  .about-badge {
    font-size: 0.8rem;
    padding: 0.5rem 1rem;
  }
}

