    :root {
      --primary: #5C7F67;
      --accent: #E5A76C;
      --bg-dark: #121212;
      --text-light: #f4f4f4;
      --highlight: #3F5E44;
    }
.footer-dev {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
}
  /* Make entire product-card clickable but don't block clicks with overlays */
  .product-card { position: relative; }
  .product-glow, .product-hover-content { pointer-events: none; } /* overlays won't block */
  .product-hover-content a, .product-title a { pointer-events: auto; } /* links still clickable */
  .product-card .stretched-link { z-index: 20; } /* above overlays */

.footer-dev a {
  color: var(--secondary);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-dev a:hover {
  color: var(--secondary-light);
}

    body {
      background-color: var(--bg-dark);
      color: var(--text-light);
    }

    .navbar {
      background-color: var(--bg-dark);
      border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .navbar-brand {
      color: var(--accent) !important;
      font-weight: bold;
      font-size: 1.6rem;
    }

    .nav-link {
      color: var(--text-light) !important;
      margin-right: 1rem;
    }

    .nav-link:hover {
      color: var(--accent) !important;
    }

    .instagram-btn {
      background-color: var(--accent);
      color: #000;
      border: none;
      padding: 0.4rem 0.75rem;
      border-radius: 5px;
      transition: background-color 0.3s ease, transform 0.3s ease;
    }

    .instagram-btn:hover {
      background-color: #cf8a55;
      transform: scale(1.05);
    }

.slider__home {
  overflow: hidden;
}

.ev_car_banner {
  position: relative;
  height: 100%;
}
.banner-img {
    height: 100%;
    object-fit: cover;
    filter: brightness(0.8);
  }

  .slider__home {
    position: relative;
    overflow: hidden;
  }

  .banner_text-wrap h2 {
    font-size: 2rem;
    font-weight: 700;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.6);
  }

  .btnBook {
    background: none;
    border: none;
    color: var(--accent, #E5A76C);
    font-weight: 600;
    font-size: 1.2rem;
    margin-top: 1rem;
    transition: all 0.4s ease-in-out;
  }

  .btnBook:hover {
    color: #cf8a55;
    transform: scale(1.05);
  }

  /* Owl Nav Styling */
  .owl-carousel .owl-nav button.owl-next,
  .owl-carousel .owl-nav button.owl-prev {
    background: none !important;
    color: white;
    font-size: 2rem !important;
    border: none;
    padding: 0 !important;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    z-index: 2;
    cursor: pointer;
    transition: all 0.4s ease-out;
  }

  .slider__home .owl-nav .owl-prev {
    left: 10px;
  }

  .slider__home .owl-nav .owl-next {
    right: 10px;
  }

  /* Hide Dots by default */
  .owl-dots {
    display: none ;
  }

  /* Show dots and hide nav on small screens */
  @media (max-width: 576px) {
    .owl-carousel .owl-nav {
      display: none !important;
    }
    .owl-dots {
      display: block !important;
      position: absolute;
      bottom: 20px;
      width: 100%;
      text-align: center;
      z-index: 3;
    }
    .owl-dots .owl-dot span {
      background: var(--accent, #E5A76C);
      width: 12px;
      height: 12px;
      margin: 0 4px;
      border-radius: 50%;
      display: inline-block;
      transition: background 0.3s;
    }
    .owl-dots .owl-dot.active span {
      background: var(--primary, #5C7F67);
    }
  }
/* Hover Slide-Up */
.ev_car_banner:hover .btnBook {
  transform: translateY(0);
  opacity: 1;
}

/* Fade-in Heading Animation */
@keyframes fadeInUp {
  from {
    transform: translateY(60px);
    opacity: 0;
  }
  to {
    transform: translateY(0px);
    opacity: 1;
  }
}
  /* Intro Section - Enhanced Dark Mode with Animations */
  #intro ,#why-choose, #our-products, #our-products-mobile  {
    background: linear-gradient(135deg, var(--bg-dark) 0%, #1a1a1a 100%);
    position: relative;
    overflow: hidden;
  }

  #intro::before ,#why-choose::before,  #our-products::before, #our-products-mobile::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(92, 127, 103, 0.08) 0%, transparent 70%);
    animation: float 18s infinite linear;
    z-index: 0;
  }

  #intro::after,#why-choose::after,  #our-products::after, #our-products-mobile::after {
    content: '';
    position: absolute;
    bottom: -20%;
    right: -20%;
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, rgba(229, 167, 108, 0.05) 0%, transparent 70%);
    animation: floatReverse 15s infinite linear;
    z-index: 0;
  }

  @keyframes float {
    0% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(-5%, 5%) rotate(5deg); }
    100% { transform: translate(0, 0) rotate(0deg); }
  }

  @keyframes floatReverse {
    0% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(5%, -5%) rotate(-5deg); }
    100% { transform: translate(0, 0) rotate(0deg); }
  }

  #intro .container, #why-choose .container, #our-products .container , #our-products-mobile .container {
    position: relative;
    z-index: 2;
  }

  #intro h2, #why-choose h2, #our-products h2 , #our-products-mobile h2 {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
    background: linear-gradient(90deg, var(--accent), #f4f4f4);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: textShine 8s ease-in-out infinite;
    background-size: 200% auto;
  }

  @keyframes textShine {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
  }

  #intro p.lead , #why-choose p.lead , #our-products p.lead , #our-products-mobile p.lead {
    font-size: 1.2rem;
    color: rgba(244, 244, 244, 0.85);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
    position: relative;
  }

  #intro p.lead::after,#why-choose p.lead::after , #our-products p.lead::after,#our-products-mobile p.lead::after {
    content: '';
    display: block;
    width: 60px;
    height: 2px;
    background: var(--accent);
    margin: 1.5rem auto 0;
    opacity: 0;
    transform: scaleX(0);
    transform-origin: center;
    transition: all 0.6s ease 0.8s;
  }

  .aos-animate #intro p.lead::after, .aos-animate #why-choose p.lead::after , .aos-animate #our-products p.lead::after, 
  .aos-animate #our-products-mobile p.lead::after{
    opacity: 1;
    transform: scaleX(1);
  }

  /* Enhanced Cards with 3D Effects */
  #intro .card, #why-choose .card , #our-products .card, #our-products-mobile .card {
    background: rgba(30, 30, 30, 0.7);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    transform-style: preserve-3d;
    perspective: 1000px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.3);
  }

  #intro .card::before ,#why-choose .card::before, #our-products .card::before, #our-products-mobile .card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent 65%, rgba(229, 167, 108, 0.1) 100%);
    z-index: 1;
    transition: all 0.8s ease;
    opacity: 0;
  }
/* Why-Choose Section Icon Styles */

.lightning-icon {
  color: var(--accent);
  filter: drop-shadow(0 0 8px rgba(229, 167, 108, 0.4));
}

.leaf-icon {
  color: #5C7F67;
  filter: drop-shadow(0 0 8px rgba(92, 127, 103, 0.4));
}
.maintenance-icon {
  color: #8A9EA3;
  filter: drop-shadow(0 0 8px rgba(138, 158, 163, 0.4));
}

  #intro .card:hover::before ,#why-choose .card:hover::before, #our-products .card:hover::before ,
  #our-products-mobile  .card:hover::before
  {
    opacity: 1;
  }

  #intro .card-body ,#why-choose .card-body , #our-products .card-body,
  #our-products-mobile  .card-body {
    padding: 2.5rem;
    position: relative;
    z-index: 2;
    transform: translateZ(30px);
  }

  #intro .card img, #why-choose .card img , #our-products .card img
  #our-products-mobile .card img
  {
    filter: drop-shadow(0 5px 15px rgba(229, 167, 108, 0.3));
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    transform: translateY(0) scale(1);
  }

  #intro .card:hover img, #why-choose .card:hover img , #our-products .card:hover img ,
  #our-products-mobile .card:hover img
  {
    filter: drop-shadow(0 8px 25px rgba(229, 167, 108, 0.4));
    transform: translateY(-10px) scale(1.1);
  }

  #intro .card-title , #why-choose .card-title ,  #our-products .card-title, #our-products-mobile .card-title {
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.4rem;
    position: relative;
    display: inline-block;
  }

  #intro .card-title::after, #why-choose .card-title::after, #our-products .card-title::after, #our-products-mobile .card-title::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.6s ease;
  }

  #intro .card:hover .card-title::after, #why-choose .card:hover .card-title::after,  #our-products .card:hover .card-title::after
  , #our-products-mobile .card:hover .card-title::after {
    width: 100%;
  }

  #intro .card-text , #why-choose .card-text {
    color: rgba(244, 244, 244, 0.75);
    font-size: 1rem;
    line-height: 1.7;
    transition: all 0.4s ease;
    transform: translateY(0);
  }

  #intro .card:hover .card-text, #why-choose .card:hover .card-text {
    transform: translateY(-5px);
    color: rgba(244, 244, 244, 0.9);
  }

  /* Floating Particles Background */
  .particle {
    position: absolute;
    background: rgba(229, 167, 108, 0.3);
    border-radius: 50%;
    filter: blur(1px);
    z-index: 1;
    animation: floatParticle linear infinite;
  }

  @keyframes floatParticle {
    0% { transform: translateY(0) translateX(0); opacity: 0; }
    50% { opacity: 0.8; }
    100% { transform: translateY(-100vh) translateX(20px); opacity: 0; }
  }

  /* Responsive Adjustments */
  @media (max-width: 992px) {
    #intro h2 , #why-choose h2{
      font-size: 2.2rem;
    }
    
    #intro .card-body , #why-choose .card-body {
      padding: 1.8rem;
    }
  }

  @media (max-width: 768px) {
    #intro h2 , #why-choose h2{
      font-size: 2rem;
    }
    
    #intro p.lead ,#why-choose p.lead {
      font-size: 1rem;
    }
    
    #intro .card-body, #why-choose .card-body {
      padding: 1.5rem;
    }
  }
  .why-lightning-icon {
  color: var(--accent);
  filter: drop-shadow(0 0 8px rgba(229, 167, 108, 0.4));
}

.why-leaf-icon {
  color: var(--primary);
  filter: drop-shadow(0 0 8px rgba(92, 127, 103, 0.4));
}

.why-tools-icon {
  color: #8A9EA3;
  filter: drop-shadow(0 0 8px rgba(138, 158, 163, 0.4));
}
  /* Enhanced Icon Styles */
  .icon-wrapper {
    position: relative;
    display: inline-block;
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  }

  .icon-pulse {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border: 2px solid var(--accent);
    border-radius: 50%;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.6s ease;
  }

  .intro-card:hover .icon-pulse {
    opacity: 0.3;
    transform: scale(1);
  }
  .why-card:hover .icon-pulse {
    opacity: 0.3;
    transform: scale(1);
  }

  .electric-icon ,.feature-icon{
    color: var(--accent);
    filter: drop-shadow(0 0 8px rgba(229, 167, 108, 0.4));
  }

  .bike-icon {
    color: #5C7F67;
    filter: drop-shadow(0 0 8px rgba(92, 127, 103, 0.4));
  }

  .truck-icon {
    color: #8A9EA3;
    filter: drop-shadow(0 0 8px rgba(138, 158, 163, 0.4));
  }

  /* Card Hover Effects */
  .card-hover-content {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%) scale(0.8);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  }

  .intro-card:hover .card-hover-content {
    bottom: 20px;
    opacity: 1;
    transform: translateX(-50%) scale(1);
  }
  .why-card:hover .card-hover-content {
    bottom: 20px;
    opacity: 1;
    transform: translateX(-50%) scale(1);
  }

  .card-hover-content svg {
    color: var(--accent);
    animation: bounceRight 1.5s infinite;
  }

  @keyframes bounceRight {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(5px); }
  }

  .why-card {
    background: rgba(30, 30, 30, 0.7);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    transform-style: preserve-3d;
    perspective: 1000px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.3);
  }
  .nav-link.active{
    color: var(--accent) !important;
    font-weight: bold;
  }

  .feature-card:hover .icon-pulse {
    opacity: 0.3;
    transform: scale(1);
  }

  .lightning-icon {
    color: var(--accent);
    filter: drop-shadow(0 0 8px rgba(229, 167, 108, 0.4));
  }

  .leaf-icon {
    color: var(--primary);
    filter: drop-shadow(0 0 8px rgba(92, 127, 103, 0.4));
  }

  .tools-icon {
    color: #8A9EA3;
    filter: drop-shadow(0 0 8px rgba(138, 158, 163, 0.4));
  }
 
  /* Product Cards */
  .product-card {
    background: rgba(30, 30, 30, 0.7);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    transform-style: preserve-3d;
    perspective: 1000px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.3);
    padding: 2rem;
    height: 100%;
    border-radius: 12px;
  }

  .product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent 65%, rgba(229, 167, 108, 0.1) 100%);
    z-index: 1;
    transition: all 0.8s ease;
    opacity: 0;
  }

  .product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    border-color: rgba(229, 167, 108, 0.2);
  }

  .product-card:hover::before {
    opacity: 1;
  }

  /* Product Image */
  .product-img {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
  }

  .product-image {
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    transform: translateY(0) scale(1);
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.3));
  }

  .product-card:hover .product-image {
    transform: translateY(-10px) scale(1.05);
    filter: drop-shadow(0 10px 20px rgba(229, 167, 108, 0.3));
  }

  /* Product Badge */
  .product-badge {
    position: absolute;
    top: 0px;
    right: 10px;
    bottom: 0px;
    background: var(--accent);
    color: #121212;
    padding: 0.25rem 1.1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    z-index: 2;
    white-space: nowrap;
    min-width: 0;
  }

  /* Product Title */
  .product-title {
    color: var(--accent);
    font-weight: 600;
    margin: 1.5rem 0 1rem;
    position: relative;
    display: inline-block;
    font-size: 1.4rem;
  }

  .product-title::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.6s ease;
  }

  .product-card:hover .product-title::after {
    width: 100%;
  }

  /* Product Specs */
  .product-specs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
  }

  .spec-item {
    background: rgba(255, 255, 255, 0.08);
    padding: 0.35rem 0.75rem;
    border-radius: 20px;
    font-size: 0.85rem;
    transition: all 0.3s ease;
  }

  .product-card:hover .spec-item {
    background: rgba(229, 167, 108, 0.15);
    transform: translateY(-3px);
  }

  /* Hover Content */
  .product-hover-content {
    position: relative;
    transform: translateY(10px);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  }

  .product-card:hover .product-hover-content {
    transform: translateY(0);
    opacity: 1;
  }

  .btn-accent {
    background: var(--accent);
    color: #121212;
    border: none;
    padding: 0.5rem 1.5rem;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
  }

  .btn-accent:hover {
    background: #cf8a55;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(229, 167, 108, 0.4);
  }

  .btn-accent svg {
    transition: transform 0.3s ease;
  }

  .btn-accent:hover svg {
    transform: translateX(3px);
  }

  /* Product Glow Effect */
  .product-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(229, 167, 108, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.6s ease;
    z-index: -1;
  }

  .product-card:hover .product-glow {
    opacity: 1;
  }

  
  /* Responsive Adjustments */
  @media (max-width: 992px) {
    .product-card {
      padding: 1.8rem;
    }
    
    .product-title {
      font-size: 1.3rem;
    }
  }

  @media (max-width: 768px) {
    .product-card {
      padding: 1.5rem;
    }
    
    .product-specs {
      gap: 0.5rem;
    }
    
    .spec-item {
      font-size: 0.8rem;
      padding: 0.25rem 0.5rem;
    }
  }
  .footer-section {
  background: linear-gradient(135deg, var(--bg-dark) 0%, #1a1a1a 100%);
  color: var(--text-light);
  position: relative;
  overflow: hidden;
}

.footer-logo {
  color: var(--accent);
  font-weight: 700;
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.footer-about {
  font-size: 0.95rem;
  color: rgba(244, 244, 244, 0.8);
  margin-bottom: 1rem;
}

.footer-social a {
  display: inline-block;
  margin-right: 0.5rem;
  color: var(--accent);
  font-size: 1.2rem;
  transition: color 0.3s ease, transform 0.3s ease;
}
.footer-social a:hover {
  color: #cf8a55;
  transform: translateY(-3px);
}

.footer-title {
  font-size: 1.1rem;
  color: var(--accent);
  margin-bottom: 1rem;
  font-weight: 600;
}

.footer-links,
.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li,
.footer-contact li {
  margin-bottom: 0.6rem;
}

.footer-links a {
  color: rgba(244, 244, 244, 0.75);
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer-links a:hover {
  color: var(--accent);
}

.footer-contact i {
  color: var(--accent);
  margin-right: 0.5rem;
}

.footer-newsletter {
  display: flex;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 30px;
  overflow: hidden;
}
.footer-newsletter input {
  flex: 1;
  border: none;
  background: transparent;
  padding: 0.5rem 1rem;
  color: var(--text-light);
}
.footer-newsletter input::placeholder {
  color: rgba(244, 244, 244, 0.6);
}
.footer-newsletter button {
  background: var(--accent);
  border: none;
  padding: 0 1rem;
  color: #121212;
  cursor: pointer;
  transition: background 0.3s ease;
}
.footer-newsletter button:hover {
  background: #cf8a55;
}

.footer-divider {
  border-color: rgba(255, 255, 255, 0.08);
  margin: 2rem 0 1rem;
}

.footer-copy {
  font-size: 0.85rem;
  color: rgba(244, 244, 244, 0.6);
}

 
  .carousel-control-prev-icon,
  .carousel-control-next-icon {
    background-size: 100% 100%;
  }

  .bg-accent {
    background-color: var(--accent, #e5a76c) !important;
  }

  @media (max-width: 991px) {
    #our-products {
      display: none;
    }
  }
  /* Reviews Section Styling */
  #customer-reviews {
    background: linear-gradient(135deg, var(--bg-dark) 0%, #1a1a1a 100%);
    position: relative;
    overflow: hidden;
  }
  #customer-reviews::before{
      content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(92, 127, 103, 0.08) 0%, transparent 70%);
    animation: float 18s infinite linear;
    z-index: 0;
  }
  #customer-reviews::after{
     content: '';
    position: absolute;
    bottom: -20%;
    right: -20%;
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, rgba(229, 167, 108, 0.05) 0%, transparent 70%);
    animation: floatReverse 15s infinite linear;
    z-index: 0;
  }
#customer-reviews .container{
  position: relative;
    z-index: 2;
}
#customer-reviews h2{
   font-size: 2.8rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
    background: linear-gradient(90deg, var(--accent), #f4f4f4);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: textShine 8s ease-in-out infinite;
    background-size: 200% auto;
}

#customer-reviews p.lead{
   font-size: 1.2rem;
    color: rgba(244, 244, 244, 0.85);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
    position: relative;
}
#customer-reviews p.lead::after{
      content: '';
    display: block;
    width: 60px;
    height: 2px;
    background: var(--accent);
    margin: 1.5rem auto 0;
    opacity: 0;
    transform: scaleX(0);
    transform-origin: center;
    transition: all 0.6s ease 0.8s;
}
.aos-animate #customer-reviews p.lead::after{
    opacity: 1;
    transform: scaleX(1);
}

  .review-card {
    background: rgba(30, 30, 30, 0.7);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    transform-style: preserve-3d;
    perspective: 1000px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.3);
  }

  .review-card::before {
     content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent 65%, rgba(229, 167, 108, 0.1) 100%);
    z-index: 1;
    transition: all 0.8s ease;
    opacity: 0;
  }


  .review-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    border-color: rgba(229, 167, 108, 0.2);
  }

  .review-card:hover::before {
    opacity: 1;
  }

  .review-rating {
    color: var(--accent);
    font-size: 1.25rem;
    letter-spacing: 2px;
  }

  .review-text {
    color: rgba(244, 244, 244, 0.85);
    font-style: italic;
    margin-bottom: 1.5rem;
    position: relative;
    padding-left: 1rem;
  }

  .review-text::before {
    content: '"';
    position: absolute;
    left: -0.5rem;
    top: -0.5rem;
    font-size: 2rem;
    color: rgba(229, 167, 108, 0.3);
  }

  .review-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1.5rem;
  }

  .review-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--accent);
  }

  .review-author h6 {
    color: var(--accent);
    margin-bottom: 0.25rem;
  }

  .review-author small {
    color: rgba(244, 244, 244, 0.6);
    font-size: 0.8rem;
  }
  /* Location & Contact Section */
  #location-contact {
    background: linear-gradient(135deg, var(--bg-dark) 0%, #1a1a1a 100%);
    position: relative;
    overflow: hidden;
  }
  #location-contact::before {
       content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(92, 127, 103, 0.08) 0%, transparent 70%);
    animation: float 18s infinite linear;
    z-index: 0;
  }
  #location-contact::after {
    content: '';
    position: absolute;
    bottom: -20%;
    right: -20%;
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, rgba(229, 167, 108, 0.05) 0%, transparent 70%);
    animation: floatReverse 15s infinite linear;
    z-index: 0;
  }

  .map-container {
    height: 100%;
    min-height: 400px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.08);
  }

  .owner-card {
    background: rgba(30, 30, 30, 0.7);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 2.5rem;
    height: 100%;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  }

  .owner-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent 65%, rgba(229, 167, 108, 0.1) 100%);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.6s ease;
  }

  .owner-card:hover::before {
    opacity: 1;
  }

  .owner-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 1.5rem;
    border: 3px solid var(--accent);
  }

  .owner-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .owner-name {
    color: var(--accent);
    text-align: center;
    margin-bottom: 0.5rem;
    font-size: 1.8rem;
  }

  .owner-title {
    color: rgba(244, 244, 244, 0.7);
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
  }

  .owner-message {
    color: rgba(244, 244, 244, 0.9);
    font-style: italic;
    margin-bottom: 2rem;
    position: relative;
    padding: 0 1rem;
  }

  .owner-message::before,
  .owner-message::after {
    content: '"';
    font-size: 2rem;
    color: rgba(229, 167, 108, 0.3);
    position: absolute;
  }

  .owner-message::before {
    top: -1rem;
    left: 0;
  }

  .owner-message::after {
    bottom: -2rem;
    right: 0;
  }

  .owner-contact {
    margin-top: 2rem;
  }

  .contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    color: rgba(244, 244, 244, 0.8);
  }

  .contact-item i {
    color: var(--accent);
    width: 20px;
    text-align: center;
  }

  /* WhatsApp Floating Button */
  .whatsapp-float {
    margin-bottom: 60px !important;
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.3);
    z-index: 100;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
  }

  .whatsapp-float:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
  }

  @keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
  }

  /* Responsive Adjustments */
  @media (max-width: 768px) {
    .owner-card {
      padding: 1.5rem;
    }
    
    .owner-name {
      font-size: 1.5rem;
    }
    
    .whatsapp-float {
      width: 50px;
      height: 50px;
      font-size: 1.5rem;
      bottom: 20px;
      right: 20px;
    }
  }

  .mobile-bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--bg-dark);
  border-top: 1px solid #2c2c2c;
  display: flex;
  justify-content: space-around;
  padding: 0.5rem 0;
  z-index: 1050;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.5);
}

.mobile-bottom-nav .nav-item {
  flex: 1;
  text-align: center;
  font-size: 0.75rem;
  color: var(--text-light);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
}

.mobile-bottom-nav .nav-item i {
  font-size: 1.2rem;
  margin-bottom: 2px;
}

.mobile-bottom-nav .nav-item.active,
.mobile-bottom-nav .nav-item:hover {
  color: var(--accent);
}
@media (max-width: 768px) {
  /* Disable AOS animations */
  [data-aos] {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  /* Hide or disable SVG animations */
  svg animate,
  svg animateTransform {
    display: none;
  }

  /* Optional: disable pulse effect */
  .icon-pulse {
    display: none;
  }
}
.intro-card {
  will-change: transform;
}

