/* Base Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
/* Navbar */
header {
  background-color: #202c60;
  padding: 1rem 2rem;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background-color: #202c60;
  flex-wrap: wrap;
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-left .logo {
  height: 50px;
}

.nav-contact i {
  color: #e98059;
  margin-right: 0.3rem;
}

/* Book Now button in nav */
.nav-book {
  margin-left: 1rem;
}

.book-now-btn {
  background-color: #fccf21;
  color: #202c60;
  padding: 0.5rem 1.2rem;
  border-radius: 4px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.book-now-btn:hover {
  background-color: #f97d1a;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .nav-book {
    margin-top: 0.5rem;
    width: 100%;
  }

  .book-now-btn {
    display: block;
    text-align: center;
    width: 100%;
  }
}

/* Hamburger Icon */
.hamburger {
  display: none;
  font-size: 2rem;
  color: #fccf21;
  cursor: pointer;
}

@media (max-width: 768px) {
  .hamburger {
    display: block;
  }

  .nav-right {
    flex-direction: column;
    align-items: flex-end;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    margin-top: 1rem;
  }

  .nav-links.show {
    display: flex;
  }

  .nav-contact {
    margin-top: 0.5rem;
  }
}

/* Active link highlight */
.nav-link.active {
  color: #fccf21 !important;
  border-bottom: 2px solid #fccf21;
}

.logo a {
  color: #fccf21;
  font-family: "Bebas Neue", sans-serif;
  font-size: 2rem;
  text-decoration: none;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 2rem;
  margin: 0;
  padding: 0;
}

.nav-link {
  color: white;
  text-decoration: none;
  font-weight: bold;
}

.nav-right-group {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.nav-links a.active {
  color: #fccf21;
  border-bottom: 2px solid #fccf21;
}

.nav-links a:hover {
  color: #fccf21;
}

.nav-contact a {
  color: #f97d1a;
  font-weight: bold;
  text-decoration: none;
}

.nav-contact a:hover {
  color: #fccf21;
}

/* Responsive */
@media (max-width: 768px) {
  .nav-right-group {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    width: 100%;
  }

  .navbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-contact {
    margin-top: 0.5rem;
  }
}

body {
  font-family: "Open Sans", sans-serif;
  color: #fff;
  background-color: #000;
  line-height: 1.6;
}

h1,
h2,
h3 {
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* Hero */
.hero {
  position: relative;
  height: 100vh;
  background: url("../images/hero-placeholder.jpg") no-repeat center
    center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(32, 44, 96, 0.6), rgba(249, 125, 26, 0.6));
  z-index: 1;
}

.hero-content {
  z-index: 2;
  color: #fff;
}

.hero h1 {
  font-size: 4rem;
  color: #fccf21;
}

.hero p {
  font-size: 1.3rem;
  margin: 1rem 0;
}

.btn-primary {
  background: #f97d1a;
  color: #fff;
  padding: 0.8rem 2rem;
  border: none;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
}

/* About Section */
.about-section {
  background-color: #ffffff;
  padding: 4rem 2rem;
}

.about-container {
  max-width: 1200px;
  margin: 0 auto;
}

.about-header-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
  margin-left: 42px;
  margin-right: 48px;
}

.about-text {
  flex: 1 1 60%;
  min-width: 300px;
}

.about-heading {
  font-size: 2.2rem;
  font-weight: bold;
  color: #202c60;
  margin-bottom: 1rem;
}

.about-intro {
  font-size: 1rem;
  color: #333;
  max-width: 700px;
}

.about-link-wrapper {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex: 1 1 30%;
  min-width: 200px;
  padding-top: 0.5rem;
}

.about-view-more {
  background-color: transparent;
  color: #f97d1a;
  font-weight: 600;
  text-decoration: none;
  padding: 0.6rem 1.2rem;
  border-radius: 30px;
  transition: all 0.3s ease;
}

.about-cards {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}

.about-card {
  background-color: #202c60;
  color: #fff;
  border-radius: 1rem;
  padding: 2rem;
  max-width: 350px;
  flex: 1 1 300px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}

.about-card:hover {
  transform: translateY(-6px);
}

.about-card img {
  width: 100%;
  border-radius: 0.5rem;
  margin-bottom: 1rem;
}

.about-card h3 {
  color: #fccf21;
  margin-bottom: 0.8rem;
  font-size: 1.3rem;
}

.about-card p {
  font-size: 0.95rem;
  line-height: 1.5;
  color: #eee;
}

.about-btn {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.6rem 1.2rem;
  background-color: #f97d1a;
  color: #fff;
  text-decoration: none;
  border-radius: 0.4rem;
  font-weight: 500;
  transition: background-color 0.3s ease;
}

.vabout-btn {
  display: inline-block;
  margin-top: 2.5rem;
  padding: 0.6rem 1.2rem;
  background-color: #f97d1a;
  color: #fff;
  text-decoration: none;
  border-radius: 0.4rem;
  font-weight: 500;
  transition: background-color 0.3s ease;
}
.vabout-btn:hover {
  background-color: #d5660c;
}

.about-btn:hover {
  background-color: #d5660c;
}

/*Gliding section */
.stepped-tile-section {
  background-color: #202c60;
  padding: 40px 0;
  overflow: hidden;
}

.tile-row {
  overflow: hidden;
  white-space: nowrap;
  margin: 25px 0;
  position: relative;
}

.tile-track {
  display: flex;
  gap: 20px;
  will-change: transform;
  transition: transform 0.3s ease-in-out;
  min-width: 200%;
}

.tile {
  background: white;
  border-radius: 10px;
  padding: 15px 28px;
  color: #202c60;
  font-weight: 600;
  font-size: 1.1rem; /* ⬅️ Bigger text */
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
  cursor: pointer;
  transition: transform 0.2s;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.1);
}

.tile:hover {
  transform: scale(1.05);
  color: #f97d1a;
}

.tile i {
  font-size: 1.3rem; /*Bigger icon */
  color: #fccf21;
}
.glider-heading {
  color: #f97d1a;
  font-size: 2.2rem;
  margin-bottom: 40px;
  text-align: center;
}

.glider-button-container {
  text-align: center;
  margin-top: 60px;
}

.bnow-btn {
  background-color: #f97d1a;
  color: #ffffff;
  font-weight: 600;
  padding: 14px 32px;
  font-size: 1.1rem;
  border-radius: 40px;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.2);
}

.bnow-btn:hover {
  background-color: #e26b00;
}

/* FAQ */
.faq-section {
  background-color: #ffffff;
  padding: 80px 20px;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-heading {
  font-size: 2.5rem;
  color: #202c60;
  text-align: center;
  margin-bottom: 50px;
  font-weight: 700;
}

.faq-item {
  border-bottom: 1px solid #e0e0e0;
  margin-bottom: 15px;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 20px;
  font-size: 1.1rem;
  color: #202c60;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 600;
}

.faq-question:hover {
  color: #f97d1a;
}

.faq-question i {
  transition: transform 0.3s ease;
  color: #f97d1a;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  font-size: 1rem;
  color: #333;
  background: #fff9e6;
  border-left: 4px solid #fccf21;
  transition: all 0.4s ease;
}

.faq-item.active .faq-answer {
  padding: 20px;
  max-height: 300px;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

/* GALLERY STYLES */
.gallery-section {
  background-color: #202c60;
  padding: 80px 20px;
  color: white;
}

.gallery-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.gallery-heading {
  font-size: 2.5rem;
  margin-bottom: 50px;
  color: #fccf21;
  font-weight: 700;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(249, 125, 26, 0.85); /* orange */
  color: #000;
  padding: 12px 15px;
  font-weight: 600;
  font-size: 1rem;
  text-align: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item:hover .overlay {
  opacity: 1;
}

.gallery-button-container {
  margin-top: 80px;
  text-align: center;
}

.view-full-gallery-btn {
  background-color: rgba(249, 125, 26, 0.85);
  color: #ffffff;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 40px;
  text-decoration: none;
  font-size: 1rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: background 0.3s ease;
}

.view-full-gallery-btn:hover {
  background-color: #f97d1a;
  color: #ffffff;
}

/* Genuine Parts */
.honda-parts-section {
  background-color: #ffffff;
  padding: 80px 20px;
  color: #202c60;
}

.honda-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
}

.honda-image {
  flex: 1 1 400px;
  text-align: center;
}

.honda-image img {
  max-width: 100%;
  border-radius: 12px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

.honda-content {
  flex: 1 1 500px;
}

.honda-content h2 {
  font-family: "Bebas Neue", sans-serif;
  font-size: 2.8rem;
  margin-bottom: 20px;
  color: #f97d1a;
}

.honda-content p {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.honda-content ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 30px;
}

.honda-content ul li {
  margin-bottom: 10px;
  font-size: 1rem;
}

.honda-content ul li i {
  color: #fccf21;
  margin-right: 10px;
}

.cta-hbtn {
  display: inline-block;
  background-color: #f97d1a;
  color: white;
  padding: 12px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.cta-hbtn:hover {
  background-color: #202c60;
}

/* Footer */
.site-footer {
  background: linear-gradient(
      to bottom,
      rgba(32, 44, 96, 0.95),
      rgba(32, 44, 96, 0.95)
    ),
    url(../images/footer-bg.jpg) no-repeat center center fixed;
  background-size: cover;
  color: #fff;
  padding: 3rem 2rem;
}

.subscribe-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding: 3rem 2rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
  color: #fff;
}

.subscribe-wrapper::after {
  content: "";
  display: block;
  margin-top: 0.1rem;
  margin-bottom: 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  width: 100%;
  margin-left: 0;
  margin-right: 0;
}

.subscribe-text {
  flex: 1 1 50%;
  min-width: 280px;
  margin-left: -80px;
}

.subscribe-text h2 {
  font-size: 1.8rem;
  font-weight: 800;
  color: #fccf21;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  font-family: "Segoe UI", sans-serif;
}

.subscribe-text p {
  font-size: 1rem;
  color: #fff;
}

.subscribe-form {
  display: flex;
  gap: 1rem;
  flex: 1 1 40%;
  min-width: 280px;
  justify-content: flex-end;
  flex-wrap: wrap;
  margin-right: 20px;
}

.subscribe-form input[type="email"] {
  padding: 0.75rem 1rem;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  flex: 1 1 200px;
}

.subscribe-form button {
  background-color: #f97d1a;
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.subscribe-form button:hover {
  background-color: #e26b00;
}

.subscribe-divider {
  margin-top: 2rem;
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.footer-columns {
  padding-left: 5rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-column h4 {
  color: #fccf21;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column ul li {
  margin-bottom: 0.6rem;
}

.footer-column ul li a {
  color: #eee;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-column ul li a:hover {
  color: #f97d1a;
}

.footer-bottom {
  text-align: center;
  font-size: 0.9rem;
  color: #ccc;
  border-top: 1px solid #444;
  padding-top: 1rem;
}

.social-links i {
  margin-right: 8px;
  color: #fccf21;
}

/* Slider */
.slider {
  position: relative;
  height: 70vh; 
  overflow: hidden;
}

.slides {
  display: flex;
  height: 100%;
  transition: transform 1s ease-in-out;
}

.slide {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.1);
  transition: opacity 1s ease, transform 2s ease;
  position: absolute;
  top: 0;
  left: 0;
}

.slide.active {
  opacity: 1;
  z-index: 2;
  transform: scale(1);
}

/* Slide Caption Overlay */
.caption {
  position: absolute;
  bottom: 15%;
  left: 10%;
  max-width: 600px;
  color: #fff;
  z-index: 3;
  opacity: 0;
  transform: translateY(20px);
  transition: all 1s ease;
  background-color: rgba(0, 0, 0, 0.4);
  padding: 20px;
  border-left: 5px solid #fccf21;
  border-radius: 5px;
}
.caption.left {
  left: 10%;
  text-align: left;
}

.caption.center {
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.caption.right {
  right: 10%;
  left: auto;
  text-align: right;
}

/* Button inside caption */
.caption-btn {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.6rem 1.4rem;
  background-color: #fccf21;
  color: #202c60;
  text-decoration: none;
  font-weight: bold;
  border-radius: 4px;
  transition: background-color 0.3s ease;
}

.caption-btn:hover {
  background-color: #f97d1a;
}

.slide.active .caption {
  opacity: 1;
  transform: translateY(0);
}

.caption h2 {
  font-family: "Bebas Neue", sans-serif;
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  color: #fccf21;
}

.caption p {
  font-family: "Open Sans", sans-serif;
  font-size: 1.1rem;
  color: #fff;
}

.nav-arrows {
  position: absolute;
  width: 100%;
  top: 50%;
  display: flex;
  justify-content: space-between;
  padding: 0 20px;
  transform: translateY(-50%);
  z-index: 5;
}

.nav-arrows span {
  font-size: 3rem;
  color: #fccf21;
  cursor: pointer;
  user-select: none;
  transition: 0.3s;
}

.nav-arrows span:hover {
  color: #f97d1a;
}

.dots {
  position: absolute;
  bottom: 30px;
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 10px;
  z-index: 5;
}

.dot {
  height: 12px;
  width: 12px;
  border-radius: 50%;
  background: #fff;
  opacity: 0.5;
  cursor: pointer;
  transition: 0.3s;
}

.dot.active {
  background: #fccf21;
  opacity: 1;
}

/* Dropdown Container */
.dropdown {
  position: relative;
}

.dropdown-menu {
  display: none;
  position: absolute;
  background-color: #202c60;
  min-width: 200px;
  top: 100%;
  left: 0;
  width: max-content;
  z-index: 1000;
  border-radius: 0 0 6px 6px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
  list-style: none;
}

.dropdown-menu li {
  border-bottom: 1px solid #444;
}

.dropdown-menu li:last-child {
  border-bottom: none;
}

.dropdown-menu a {
  display: block;
  padding: 0.75rem 1rem;
  color: #fff;
  text-decoration: none;
  background-color: #202c60;
}

.dropdown-menu a:hover {
  background-color: #f97d1a;
  color: #000;
}

/* Show dropdown on hover */
.dropdown:hover .dropdown-menu {
  display: block;
}

/* counter */
.counter-section {
  background-color: #202c60;
  color: white;
  padding: 80px 20px;
  text-align: center;
  font-family: "Open Sans", sans-serif;
  margin-top: -80px;
}

.counter-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.counter-box {
  flex: 1 1 180px;
  padding: 20px;
  border-radius: 12px;
  background-color: #ffffff;
  transition: transform 0.3s ease;
}

.counter-box:hover {
  transform: translateY(-5px);
}

.counter-box i {
  font-size: 2.5rem;
  color: #202c60;
  margin-bottom: 15px;
}

.counter-box h3 {
  font-size: 2.4rem;
  margin-bottom: 10px;
  color: #f97d1a;
}

.counter-box p {
  font-size: 1rem;
  font-weight: bold;
  color: #202c60;
}

/* Whatsapp */
#whatsapp-popup {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 9999;
  animation: bounceIn 1.2s ease forwards;
}

#whatsapp-popup a {
  display: flex;
  align-items: center;
  gap: 10px;
  background-color: #25d366;
  color: white;
  text-decoration: none;
  padding: 12px 20px;
  border-radius: 50px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  font-weight: 600;
  transition: background-color 0.3s ease;
}

#whatsapp-popup a:hover {
  background-color: #1ebe5d;
}

#whatsapp-popup i {
  font-size: 1.5rem;
}

.whatsapp-text {
  font-size: 1rem;
  display: none;
}

@media (min-width: 500px) {
  .whatsapp-text {
    display: inline;
  }
}

/* Bounce In Animation */
@keyframes bounceIn {
  0% {
    transform: scale(0.5);
    opacity: 0;
  }
  60% {
    transform: scale(1.2);
    opacity: 1;
  }
  80% {
    transform: scale(0.95);
  }
  100% {
    transform: scale(1);
  }
}
