/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Montserrat", sans-serif;
  background-color: #0a0a0a;
  color: #ffffff;
  line-height: 1.6;
  padding-top: 80px;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}
/* -----side profile nav------ */

.navbar-right {
  display: flex;
  align-items: center;
}

.admin-info {
  margin-right: 20px;
}

.dropdown {
  display: flex;
  position: relative;
}
.dropdown-btn {
  align-items: center;
  background: none;
  border: none;
  color: var(--text-color);
  cursor: pointer;
  padding: 10px;
}
.admin-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-right: 10px;
}
.dropdown-content {
  display: none;
  position: absolute;
  right: 0;
  background-color: rgb(14, 13, 13);
  min-width: 180px;
  box-shadow: 0px 8px 16px rgba(209, 91, 6, 0.2);
  z-index: 1;
  border-radius: 5px;
  margin-top: 0px;
}
.dropdown-content a {
  color: #cccccc;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  align-items: center;
}
.dropdown-content a i {
  margin-right: 10px;
  width: 20px;
  text-align: center;
}
.dropdown-content a:hover {
  background-color: rgba(255, 153, 0, 0.1);
  color: rgb(255, 106, 0);
}
.dropdown-user:hover .dropdown-content {
  display: block;
}
/* --------------- */

/* Button Styles */
.dropdown-btn,
.dropdown-btn-heart,
.dropdown-btn-shop {
  background-color: transparent;
  border: none;
  cursor: pointer;
  padding: 6px 8px;
  margin: 0 3px;
  font-size: 16px;
  color: #f5f1f1; /* default icon color */
  transition:
    color 0.3s ease,
    transform 0.2s ease;
}

.dropdown-btn:hover {
  color: #ff6600; /* orange hover effect */
  transform: scale(1.3); /* slight zoom on hover */
}
.dropdown-btn-heart:hover {
  color: #ff1101; /* orange hover effect */
  transform: scale(1.3); /* slight zoom on hover */
}
.dropdown-btn-shop:hover {
  color: #008cff; /* orange hover effect */
  transform: scale(1.3); /* slight zoom on hover */
}

.dropdown-btn:focus {
  outline: none;
}
.btn {
  padding: 12px 24px;
  border: 1;
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.logo-img {
  width: 120px;
  border-radius: 5px;
  border: 1px solid #ff6600;
  align-items: center;
  margin: 0 auto;
  transition: all 0.3s ease;
}
.logo-footer-img {
  width: 265px;
  border-radius: 5px;
  border: 1px solid #ff6600;
  align-items: center;
  margin: 0 auto;
  transition: all 0.3s ease;
}

.btn-primary {
  background-color: #ff6600;
  color: white;
}

.btn-primary:hover {
  background-color: #e55c00;
  transform: translateY(-2px);
}

.btn-secondary {
  background-color: transparent;
  border: 1px solid #ffffff;
  color: #ffffff;
}

.btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.btn-outline {
  background-color: transparent;
  border: 2px solid #ff6600;
  color: #ff6600;
  padding: 10px 20px;
  align-self: flex-start;
}

.btn-outline:hover {
  background-color: #ff6600;
  color: #ffffff;
}

.btn-login {
  background-color: transparent;
  color: #ffffff;
  border: 1px solid #ffffff;
}

.btn-login:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.btn-signup {
  background-color: #ff6600;
  color: #ffffff;
}

.btn-signup:hover {
  background-color: #e55c00;
}

.header {
  position: relative;
  width: 100%;
  /* height: 85px; */
}

/* Navigation Bar */
.navbar {
  position: fixed !important;
  right: 0;
  left: 0;
  top: 0;
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  padding: 10px 5% !important;
  z-index: 100;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: black;
  max-height: 80px;
}

.logo {
  margin: 0px !important;
  display: flex !important;
  flex-direction: column;
  align-items: center;
  margin-right: 30px;
}

.logo h1 {
  font-size: 28px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 2px;
}

.logo-underline {
  width: 40px;
  height: 3px;
  background-color: #ff6600;
  margin-top: 5px;
}

.nav-links {
  display: flex;
  flex: 1;
  justify-content: center;
  gap: 30px;
  padding: 0 !important;
}

.nav-link {
  color: #fff !important;
  font-size: 14px;
  font-weight: 700 !important;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  padding: 5px 0 !important;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #ff6600;
  transition: width 0.3s ease;
  /* transform: scale(1.3); */
}

.nav-link:hover::after {
  width: 100%;
}

.nav-link:hover {
  color: #ff6600;
  transform: scale(1.1);
}
/* .nav-links:hover{
    transform: scale(1.1); */
/* } */

/* User Dropdown Menu Styles */
.user-dropdown {
  position: relative;
  display: flex;
  align-items: center;
  margin-left: auto;
  margin-right: 0;
}

#user-name {
  cursor: pointer;
  padding: 5px 15px;
  border-radius: 3px;
  transition: all 0.3s ease;
  white-space: nowrap;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  user-select: none;
}

#user-name:hover {
  background-color: rgba(255, 102, 0, 0.1);
  color: #ff6600;
}

/* Hide user menu by default */
.user-menu {
  display: none;
  position: absolute;
  top: calc(100% + 5px);
  right: 0;
  background-color: rgba(10, 10, 10, 0.98);
  border: 2px solid rgba(255, 102, 0, 0.5);
  border-radius: 8px;
  margin: 0;
  min-width: 220px;
  padding: 10px 0;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
  list-style: none;
  z-index: 2000;
}

/* Show menu on hover of user-dropdown */
.user-dropdown:hover .user-menu {
  display: block !important;
}

.user-menu li {
  padding: 0;
  border: none;
  min-height: auto;
  list-style: none;
}

.user-menu li a {
  display: flex;
  align-items: center;
  padding: 12px 18px;
  color: #fff;
  font-size: 13px;
  transition: all 0.2s ease;
  white-space: nowrap;
  text-transform: capitalize;
  cursor: pointer;
  text-decoration: none;
  background: transparent;
  border: none;
  width: 100%;
  text-align: left;
  font-family: inherit;
}

.user-menu li a i {
  margin-right: 12px;
  width: 16px;
  text-align: center;
  flex-shrink: 0;
}

.user-menu li a:hover {
  background-color: rgba(255, 102, 0, 0.25);
  color: #ff6600;
  padding-left: 25px;
}

.auth-buttons {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-left: auto;
  list-style: none;
}

/* Hero Section */
.hero {
  position: relative;
  /* min-height: 80vh; */
  padding: 50px 5%;
  padding-bottom: 70px;
  overflow: hidden;
}

.hero-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.hero-text {
  max-width: 500px;
  z-index: 2;
}

.year-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  margin-bottom: 20px;
  color: #ff6600;
}

.hero-text h2 {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
}

.price {
  font-size: 24px;
  font-weight: 700;
  color: #ff6600;
  margin-bottom: 20px;
}

.hero-text p {
  margin-bottom: 30px;
  color: #cccccc;
}

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

.hero-image {
  position: relative;
  width: 50%;
  height: 500px;
}

.orange-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #ff6600;
  right: -20%;
  z-index: 1;
  border-radius: 10px;
}

#hero-bike {
  position: absolute;
  top: 50%;
  left: 40%;
  transform: translate(-50%, -50%);
  max-width: 120%;
  max-height: 110%;
  z-index: 2;
  transition: transform 0.5s ease;
}

#hero-bike:hover {
  transform: translate(-50%, -50%) scale(1.05);
}

.hero-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 30px;
}

.dots {
  display: flex;
  gap: 10px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #555555;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.dot.active {
  background-color: #ff6600;
}

.arrows {
  display: flex;
  gap: 15px;
}

.arrow-btn {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  border: none;
  color: #fff;
  font-size: 21px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  z-index: 999;
}

.prev {
  left: -50px;
}

.next {
  right: -40px;
}

.arrow-btn:hover {
  background-color: #ff6600;
}

/* Facilities Section */
.facilities {
  padding: 80px 5%;
  background-color: #494646;
  color: #0a0a0a;
  text-align: center;
}

.section-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 50px;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background-color: #ff6600;
}

.facilities-container {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.facility-card {
  flex: 1;
  padding: 30px;
  border-radius: 8px;
  background-color: #232121;
  transition: all 0.2s ease;
}
#product-gallery-container {
  margin-top: 9%;
}
#product-galler-details {
  margin-top: 9%;
  padding-left: 3%;
}
.facility-card:hover {
  transform: translateY(-10px);
  box-shadow: 0px 18px 30px rgba(247, 83, 1, 0.1);
}

.facility-icon {
  margin-bottom: 20px;
}

.icon-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: #fff;
  border: 2px solid #ff6600;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  color: #ff6600;
  transition: all 0.3s ease;
}

.facility-card:hover .icon-circle {
  background-color: #ff6600;
  color: #ffffff;
}

.facility-card h3 {
  font-size: 21px;
  margin-bottom: 15px;
}

.facility-card p {
  color: #989292;
  font-size: 14px;
  line-height: 1.6;
}

/* Product Categories Section */
.product-categories {
  padding: 25px 15px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  row-gap: 50px;
}

.product-category {
  display: flex;
  height: 400px;
  position: relative;
  overflow: hidden;
}

.product-category.kids {
  background-color: #f5f5f5;
}

.product-category.accessories {
  background-color: #eeeeee;
}

.product-info {
  flex: 1;
  padding: 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  z-index: 2;
  color: #ffffff;
  background-color: #0a0a0a;
}

.product-info h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 15px;
}

.product-info p {
  margin-bottom: 25px;
  color: #7e7c79;
}

.product-image {
  flex: 1;
  position: relative;
  overflow: hidden;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.product-category:hover .product-image img {
  transform: scale(1.05);
}

/* Services Section */
.services {
  background-color: #0a0a0a;
  padding: 80px 5%;
  color: #ffffff;
}

.services-content {
  display: flex;
  align-items: center;
  gap: 50px;
}

.services-text {
  flex: 1;
}

.services-text h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 30px;
  position: relative;
}

.services-text h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 3px;
  background-color: #ff6600;
}

.service-items {
  margin-bottom: 30px;
}

.service-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 25px;
  transition: transform 0.3s ease;
}

.service-icon {
  margin-right: 15px;
  padding: 10px;
  border-radius: 50%;
  background-color: rgba(255, 102, 0, 0.1);
}

.service-details h4 {
  font-size: 18px;
  margin-bottom: 5px;
  color: #ff6600;
}

.service-details p {
  color: #cccccc;
  font-size: 14px;
}

.services-image {
  flex: 1;
  position: relative;
  height: 400px;
}

.services-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

/* Contact Form Section */
.contact-form-section {
  padding: 80px 5%;
  position: relative;
  background-image: url("/placeholder.svg?height=800&width=1200");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.contact-form-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 1;
}

.form-container {
  max-width: 800px;
  margin: 0 auto;
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
  position: relative;
  z-index: 2;
}

.form-content {
  padding: 40px;
}

.form-content h2 {
  font-size: 32px;
  color: #0a0a0a;
  margin-bottom: 10px;
}

.form-content p {
  color: #555555;
  margin-bottom: 30px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: #0a0a0a;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #dddddd;
  border-radius: 5px;
  font-size: 16px;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #ff6600;
  outline: none;
  box-shadow: 0 0 0 2px rgba(255, 102, 0, 0.2);
}

/* Footer */
footer {
  background-color: #000000;
  padding: 50px 5% 20px;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  margin-bottom: 40px;
}

.footer-logo h2 {
  font-size: 24px;
  margin-bottom: 10px;
}

.footer-logo p {
  color: #999999;
}

.footer-links {
  display: flex;
  gap: 50px;
}

.footer-column h4 {
  font-size: 16px;
  margin-bottom: 20px;
  color: #ff6600;
}

.footer-column ul li {
  margin-bottom: 10px;
}

.footer-column ul li a {
  color: #999999;
  transition: color 0.3s ease;
}

.footer-column ul li a:hover {
  color: #ff6600;
}

.copyright {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #666666;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-text h2 {
    font-size: 36px;
  }

  .facilities-container {
    flex-direction: column;
  }

  .product-categories {
    grid-template-columns: 1fr;
  }

  .services-content {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .navbar {
    flex-direction: column;
    gap: 20px;
  }

  .nav-links {
    order: 3;
    width: 100%;
    justify-content: center;
  }

  .hero-content {
    flex-direction: column;
  }

  .hero-text {
    margin-bottom: 40px;
    text-align: center;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-image {
    width: 100%;
  }

  .orange-bg {
    right: 0;
  }

  .product-category {
    flex-direction: column;
    height: auto;
  }

  .product-info {
    padding: 30px;
    text-align: center;
  }

  .btn-outline {
    align-self: center;
  }

  .product-image {
    height: 300px;
  }

  .footer-content {
    flex-direction: column;
    gap: 30px;
  }

  .footer-links {
    flex-direction: column;
    gap: 30px;
  }
}

/* cartcounter */

.dropdown-btn-wishlist,
.dropdown-btn-heart {
  position: relative;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 20px;
}
.cart-badge,
.wishlist-badge {
  display: inline-block;
  background: red;
  color: white;
  border-radius: 50%;
  padding: 3px 7px;
  font-size: 11px;
  position: static;
  top: -5px;
  right: -10px;
}

/* .wishlist-badge{

  display: inline-block;
  background: red;
  color: white;
  border-radius: 50%;
  padding: 3px 7px;
  font-size: 12px;
  position: absolute;
  top: -8px;
  right: -8px;

} */
/* 
.dropdown-btn-heart {
  position: relative;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 20px;
} */

/* .wishlist-badge {
  position: absolute;
  top: -5px;
  right: -10px;
  background-color: red;
  color: white;
  border-radius: 50%;
  font-size: 11px;
  padding: 3px 7px;
  display: inline-block;
  z-index: 10;
} */
/* ========== HAMBURGER MENU STYLES ========== */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  gap: 6px;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background-color: #fff;
  border-radius: 2px;
  transition: all 0.3s ease;
  display: block;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(10px, 10px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* ========== RESPONSIVE DESIGN ========== */
@media (max-width: 1024px) {
  .nav-links {
    gap: 20px;
  }

  .nav-link {
    font-size: 12px;
  }

  .hero-text h2 {
    font-size: 40px;
  }

  .hero-image {
    width: 45%;
    height: 400px;
  }

  body {
    padding-top: 85px;
  }
}

@media (max-width: 768px) {
  body {
    padding-top: 70px;
  }

  .navbar {
    padding: 12px 4% !important;
    max-height: auto !important;
    flex-wrap: wrap;
  }

  .hamburger {
    display: flex;
    order: 3;
    z-index: 150;
    cursor: pointer;
  }

  .logo {
    order: 1;
    margin-right: auto !important;
  }

  .logo-img {
    width: 90px;
  }

  /* Unified Mobile Menu */
  .nav-links {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    width: 100%;
    flex-direction: column;
    background-color: rgba(10, 10, 10, 0.98);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    max-height: 0;
    overflow-y: auto;
    overflow-x: hidden;
    transition: max-height 0.4s ease;
    gap: 0;
    z-index: 140;
    display: flex;
    justify-content: flex-start !important;
    flex: none !important;
  }

  .nav-links.active {
    max-height: calc(100vh - 70px);
  }

  .nav-links li {
    padding: 15px 4%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    min-height: 50px;
    display: flex;
    align-items: center;
  }

  .nav-links li.nav-divider {
    background-color: rgba(255, 102, 0, 0.1);
    font-weight: 600;
    font-size: 12px;
    margin-top: 10px;
  }

  /* Mobile user dropdown styles */
  .user-dropdown {
    position: fixed;
    top: 70px;
    right: 0;
    left: 0;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    padding: 0;
    background-color: rgba(10, 10, 10, 0.98);
    z-index: 140;
    display: none;
  }

  .nav-menu.active ~ .user-dropdown {
    display: flex;
  }

  #user-name {
    width: 100%;
    padding: 15px 4%;
    margin: 0;
    border-bottom: 1px solid rgba(255, 102, 0, 0.2);
    background-color: rgba(255, 102, 0, 0.1);
    cursor: pointer;
    display: block;
    border-radius: 0;
    font-size: 13px;
  }

  #user-name:hover {
    background-color: rgba(255, 102, 0, 0.2);
  }

  .user-menu {
    position: static !important;
    display: flex !important;
    flex-direction: column;
    background-color: rgba(255, 102, 0, 0.05);
    border: none;
    box-shadow: none;
    margin: 0 !important;
    padding: 0 !important;
    width: 100%;
    min-width: unset;
  }

  .user-menu li {
    padding: 0 !important;
    border: none !important;
    min-height: auto !important;
    width: 100%;
  }

  .user-menu li a {
    padding: 12px 4% !important;
    font-size: 13px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.02);
  }

  .user-menu li a:hover {
    padding-left: calc(4% + 5px) !important;
    background-color: rgba(255, 102, 0, 0.15);
  }

  .auth-buttons {
    position: fixed;
    top: 70px;
    right: 0;
    left: 0;
    width: 100%;
    flex-direction: column;
    background-color: rgba(10, 10, 10, 0.98);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    gap: 0;
    margin-left: 0;
  }

  .auth-buttons li {
    width: 100%;
    padding: 15px 4%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
  }

  .auth-buttons li a {
    width: 100%;
    color: #fff;
    font-size: 14px;
  }

  .nav-links a {
    display: block;
    color: #fff;
    font-size: 14px;
    width: 100%;
  }

  .nav-links i {
    margin-right: 10px;
    width: 16px;
    text-align: center;
  }

  .hero {
    padding: 30px 5%;
    padding-bottom: 50px;
    padding-top: 20px;
  }

  .hero-content {
    flex-direction: column;
  }

  .hero-image {
    width: 100%;
    height: 280px;
    margin-top: 20px;
  }

  .hero-text h2 {
    font-size: 28px;
  }

  .hero-text p {
    font-size: 14px;
  }

  .price {
    font-size: 20px;
  }

  .year-tag {
    font-size: 11px;
  }

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

  .btn {
    padding: 10px 16px;
    font-size: 12px;
  }

  .nav-link::after {
    display: none;
  }

  #user-name {
    padding: 10px 4%;
    font-size: 13px;
  }

  .section-title {
    font-size: 24px !important;
  }

  .facilities-container {
    flex-direction: column;
  }

  .facility-card {
    margin-bottom: 15px;
  }

  .facility-card h3 {
    font-size: 16px;
  }

  .facility-card p {
    font-size: 13px;
  }

  .product-category {
    flex-direction: column !important;
    padding: 20px !important;
  }

  .product-info h3 {
    font-size: 18px;
  }

  .product-info p {
    font-size: 13px;
  }

  .product-image {
    width: 100%;
    height: 250px !important;
  }

  .product-image video {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
  }

  .services-content {
    flex-direction: column !important;
  }

  .services-text h2 {
    font-size: 24px;
  }

  .service-item h4 {
    font-size: 15px;
  }

  .service-item p {
    font-size: 12px;
  }

  .services-image {
    margin-top: 20px;
    width: 100%;
  }

  .services-image img {
    width: 100%;
    height: auto;
  }

  .form-content h2 {
    font-size: 24px;
  }

  .form-group label {
    font-size: 13px;
  }

  .form-group input,
  .form-group textarea {
    font-size: 13px;
  }

  .contact-form-section {
    padding: 30px 5% !important;
  }
}

@media (max-width: 480px) {
  body {
    padding-top: 65px;
  }

  .navbar {
    padding: 10px 4% !important;
  }

  .logo-img {
    width: 70px;
  }

  .hamburger span {
    width: 22px;
    height: 2.5px;
  }

  .nav-links {
    top: 65px;
  }

  .nav-links.active {
    max-height: calc(100vh - 65px);
  }

  .nav-links li {
    padding: 12px 4%;
  }

  .hero {
    padding: 20px 4%;
    padding-bottom: 40px;
    padding-top: 10px;
  }

  .hero-text h2 {
    font-size: 22px;
  }

  .hero-text p {
    font-size: 13px;
  }

  .price {
    font-size: 18px;
  }

  .year-tag {
    font-size: 10px;
  }

  .hero-image {
    height: 220px;
    margin-top: 15px;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 8px;
  }

  .btn {
    padding: 9px 14px;
    font-size: 11px;
    width: 100%;
  }

  .arrow-btn {
    width: 40px;
    height: 40px !important;
    font-size: 12px;
  }

  .section-title {
    font-size: 20px !important;
  }

  .facilities-container {
    gap: 10px;
  }

  .facility-card {
    margin-bottom: 10px;
  }

  .facility-card h3 {
    font-size: 15px;
  }

  .facility-card p {
    font-size: 12px;
  }

  .icon-circle {
    width: 50px;
    height: 50px;
  }

  .product-category {
    padding: 15px !important;
  }

  .product-info h3 {
    font-size: 16px;
  }

  .product-info p {
    font-size: 12px;
  }

  .product-image {
    height: 200px !important;
  }

  .product-image video {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
  }

  .services-content {
    padding: 20px !important;
  }

  .services-text h2 {
    font-size: 20px;
  }

  .service-item {
    gap: 10px;
  }

  .service-item h4 {
    font-size: 14px;
  }

  .service-item p {
    font-size: 11px;
  }

  .services-image {
    margin-top: 15px;
  }

  .form-content h2 {
    font-size: 20px;
  }

  .form-content p {
    font-size: 13px;
  }

  .form-group label {
    font-size: 12px;
  }

  .form-group input,
  .form-group textarea {
    font-size: 12px;
    padding: 8px 10px;
  }

  .contact-form-section {
    padding: 20px 4% !important;
  }

  .btn-primary,
  .btn-secondary {
    font-size: 11px;
  }
}

@media (max-width: 360px) {
  body {
    padding-top: 60px;
  }

  .navbar {
    padding: 8px 3% !important;
  }

  .logo-img {
    width: 60px;
  }

  .nav-links {
    top: 60px;
  }

  .nav-links.active {
    max-height: calc(100vh - 60px);
  }

  .hero-text h2 {
    font-size: 18px;
  }

  .hero-text p {
    font-size: 12px;
  }

  .price {
    font-size: 16px;
  }

  .btn {
    padding: 8px 12px;
    font-size: 10px;
  }

  .section-title {
    font-size: 18px !important;
  }

  .facility-card h3 {
    font-size: 14px;
  }

  .product-info h3 {
    font-size: 15px;
  }

  .services-text h2 {
    font-size: 18px;
  }

  .form-content h2 {
    font-size: 18px;
  }
}
