/* Reset and Variables */
:root {
  --primary-color: #0A64FF; /* Electric Blue for buttons */
  --secondary-color: #3b82f6;
  --accent-color: #0B1121; /* Dark background section */
  --text-dark: #F8FAFC; /* Re-mapped to light for text */
  --text-light: #94A3B8; /* Muted text */
  --white: #121A2F; /* Used previously for cards/nav, now a dark card color */
  --black: #ffffff; /* Flipped just in case */
  --bg-color: #070B14; /* Main body dark background */
  --border-color: rgba(255, 255, 255, 0.08);
  --transition: all 0.3s ease-in-out;
  --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.4);
  --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.5), 0 4px 6px -2px rgba(0, 0, 0, 0.25);
  --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.6), 0 10px 10px -5px rgba(0, 0, 0, 0.3);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
  background-color: transparent;
  position: relative;
}

body::before {
  content: '';
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: -2;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

/* Glassmorphism Utility */
.glass {
  background: rgba(7, 11, 20, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-color);
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 5%;
  transition: var(--transition);
}

.nav-brand {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav-brand span {
  color: var(--primary-color);
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  align-items: center;
}

.nav-links > a, .nav-links .dropdown-toggle {
  font-weight: 600;
  font-size: 0.95rem;
  color: #e5e7eb;
  transition: color 0.3s ease;
  position: relative;
  display: flex;
  align-items: center;
  cursor: pointer;
}

.nav-links > a:hover, .nav-links .dropdown-toggle:hover, .nav-links > a.active {
  color: #fff;
}

.nav-links > a::after, .nav-links .dropdown-toggle::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -6px;
  left: 0;
  background-color: #3b82f6;
  box-shadow: 0 0 8px #3b82f6;
  transition: width 0.3s ease;
}

.nav-links > a:hover::after, .nav-links .dropdown-toggle:hover::after {
  width: 100%;
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  transform: translateY(10px);
  background: rgba(10, 15, 30, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 12px;
  padding: 0.75rem 0;
  min-width: 250px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  z-index: 100;
  margin-top: 1rem;
}

.dropdown-menu::before {
  content: '';
  position: absolute;
  top: -20px;
  left: 0;
  right: 0;
  height: 20px;
}

.dropdown-menu a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0.75rem 1.5rem;
  color: #9ca3af;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.2s ease;
}

.dropdown-menu a svg {
  color: #3b82f6;
}

.dropdown-menu a:hover {
  color: #fff;
  background: rgba(255,255,255,0.03);
}

.nav-right {
  display: flex;
  align-items: center;
}

.nav-whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0.6rem 1.25rem;
  border-radius: 8px;
  background: transparent;
  color: #fff;
  font-weight: 500;
  font-size: 0.9rem;
  border: 1px solid rgba(59, 130, 246, 0.4);
  box-shadow: inset 0 0 10px rgba(59, 130, 246, 0.1), 0 0 10px rgba(59, 130, 246, 0.1);
  transition: all 0.3s ease;
}

.nav-whatsapp-btn:hover {
  border-color: #3b82f6;
  box-shadow: inset 0 0 15px rgba(59, 130, 246, 0.3), 0 0 15px rgba(59, 130, 246, 0.3);
  text-shadow: 0 0 8px rgba(255,255,255,0.3);
}

.nav-toggle {
  display: none;
  cursor: pointer;
  font-size: 1.5rem;
}

.mockup-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 0 5%;
  position: relative;
  overflow: hidden;
}

.hero-content {
  position: absolute;
  top: 0; bottom: 0; left: 0;
  width: 50%;
  max-width: 800px;
  z-index: 1;
  padding: 10rem 3rem 3rem 5%;
  /* Removed background, blur, and border-right */
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-overline {
  color: #38BDF8;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 2px;
  display: block;
  margin-bottom: 1rem;
}

.hero-title {
  font-size: 4.5rem;
  font-weight: 300;
  line-height: 1.15;
  margin-bottom: 2rem;
  color: var(--text-dark);
}

.hero-title span.hero-gree {
  color: #3B82F6;
  font-weight: 400;
}

.hero-subtitle {
  font-size: 0.85rem;
  color: #9ca3af;
  margin-bottom: 0;
  line-height: 1.8;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-cta {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 4rem;
}

.btn {
  display: inline-block;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  text-align: center;
  transition: var(--transition);
  cursor: pointer;
  border: none;
  font-size: 1rem;
}

.btn-primary {
  background-color: var(--primary-color);
  color: #fff;
  box-shadow: 0 4px 15px rgba(10, 100, 255, 0.4);
}

.btn-primary:hover {
  background-color: var(--secondary-color);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(10, 100, 255, 0.6);
}

.btn-outline {
  background-color: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.btn-outline:hover {
  background-color: var(--primary-color);
  color: #fff;
}

/* Hero Features Grid */
.hero-features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding: 2rem 0;
  margin-bottom: 2rem;
}

.hf-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hf-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  margin-bottom: 1rem;
  color: #fff;
}

.hf-icon svg {
  width: 20px;
  height: 20px;
}

.hf-item h4 {
  color: #fff;
  font-size: 0.9rem;
  margin-bottom: 0.25rem;
}

.hf-item p {
  color: #aaa;
  font-size: 0.75rem;
}

/* Scroll Down */
.scroll-down {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: #888;
  font-size: 0.9rem;
}

.sd-icon {
  width: 30px;
  height: 30px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

/* Stats Bar */
.hero-stats-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(4, 7, 13, 0.85);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255,255,255,0.05);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 1.5rem 5%;
  z-index: 2;
}

.h-stat {
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: center;
  border-right: 1px solid rgba(255,255,255,0.1);
}

.h-stat:last-child {
  border-right: none;
}

.stat-icon {
  font-size: 1.5rem;
  color: #38BDF8;
}

.h-stat h4 {
  color: #fff;
  font-size: 1.2rem;
  margin: 0;
}

.h-stat p {
  color: #888;
  font-size: 0.8rem;
  margin: 0;
}

/* Products Section */
.products-section {
  padding: 5rem 5%;
  background-color: rgba(4, 7, 13, 0.65);
  backdrop-filter: blur(15px);
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.section-subtitle {
  text-align: center;
  color: var(--text-light);
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
}

/* Swiper Custom Styles */
.featuredSwiper, .reviewsSwiper {
  padding-bottom: 3rem;
  padding-top: 1rem;
}
.featuredSwiper .swiper-pagination-bullet-active,
.reviewsSwiper .swiper-pagination-bullet-active {
  background: var(--primary-color);
}
.featuredSwiper .swiper-button-next,
.featuredSwiper .swiper-button-prev {
  color: var(--primary-color);
  background: var(--white);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
}
.featuredSwiper .swiper-button-next::after,
.featuredSwiper .swiper-button-prev::after {
  font-size: 1rem;
  font-weight: bold;
}
.featuredSwiper .swiper-slide {
  height: auto;
}

.product-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  border: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(10, 100, 255, 0.15);
  border-color: rgba(10, 100, 255, 0.3);
}

.product-image {
  width: 100%;
  height: 350px;
  object-fit: contain;
  padding: 1rem;
  background-color: rgba(255, 255, 255, 0.02);
  border-bottom: 1px solid var(--border-color);
}

.product-info {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-category {
  font-size: 0.875rem;
  color: var(--secondary-color);
  font-weight: 600;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.product-name {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.product-features {
  margin-bottom: 1.5rem;
  flex: 1;
}

.product-features li {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.product-features li::before {
  content: '✓';
  color: var(--primary-color);
  font-weight: bold;
}

.product-contact-btn {
  width: 100%;
  text-align: center;
  margin-top: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
}

.product-contact-btn i {
  font-size: 1.2rem;
}

/* Contact Section & Footer */
.footer {
  background-color: rgba(4, 7, 13, 0.85);
  backdrop-filter: blur(15px);
  color: #fff;
  padding: 2.5rem 5% 1rem;
  border-top: 1px solid var(--border-color);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-col h3 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  color: #fff;
}

.footer-col p {
  color: #9ca3af;
  margin-bottom: 1rem;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.footer-col p i {
  margin-top: 0.25rem;
  color: var(--secondary-color);
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255,255,255,0.05);
  color: #fff;
  transition: var(--transition);
}

.social-links a:hover {
  background-color: var(--primary-color);
  transform: translateY(-3px);
}

.map-container {
  border-radius: 12px;
  overflow: hidden;
  height: 250px;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  color: #9ca3af;
  font-size: 0.875rem;
}

/* Subcategory Filter Buttons */
.btn-sub {
  display: inline-block;
  padding: 0.4rem 1rem;
  border-radius: 30px;
  font-weight: 500;
  text-align: center;
  transition: var(--transition);
  cursor: pointer;
  border: 1px solid var(--primary-color);
  font-size: 0.85rem;
  background-color: transparent;
  color: var(--primary-color);
}

.btn-sub.active {
  background-color: var(--primary-color);
  color: #fff;
}

.btn-sub:hover {
  background-color: var(--primary-color);
  color: #fff;
  transform: translateY(-1px);
}

/* Responsive */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #0B1121;
    padding: 1rem 5%;
    box-shadow: var(--shadow-md);
  }

  .nav-links.active {
    display: flex;
  }

  .nav-toggle {
    display: block;
  }

  .mockup-hero {
    flex-direction: column;
    text-align: center;
    padding-top: 8rem;
    padding-bottom: 8rem;
  }

  .hero-content {
    position: relative;
    width: 100%;
    padding: 8rem 5% 3rem 5%;
    border-right: none;
    background: rgba(4, 7, 13, 0.65);
  }

  .hero-features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-stats-bar {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 1.5rem;
  }

  .h-stat:nth-child(2) {
    border-right: none;
  }

  .hero-cta {
    justify-content: center;
    flex-direction: column;
  }

  .hero-title {
    font-size: 2.2rem;
  }

  .nav-right {
    display: none !important;
  }
}

/* WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 40px;
  right: 40px;
  background-color: transparent;
  border-radius: 50px;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

/* Reviews Section */
.review-card {
  background: var(--white);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  text-align: center;
  border: 1px solid var(--border-color);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.stars {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.review-text {
  font-style: italic;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  line-height: 1.6;
}

.review-author {
  font-weight: 700;
  color: var(--primary-color);
}

/* New Mockup Products Section */
.mockup-products {
  padding: 6rem 5%;
}

.mockup-section-header {
  margin-bottom: 3rem;
}

.mockup-overline {
  color: #3b82f6;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 0.5rem;
}

.mockup-title {
  color: #fff;
  font-size: 2.5rem;
  font-weight: 800;
}

.mockup-products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.mockup-product-card {
  background: rgba(10, 15, 25, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 2rem;
  transition: all 0.3s ease;
  cursor: pointer;
  display: flex;
  flex-direction: column;
}

.mockup-product-card:hover {
  border-color: #3b82f6;
  box-shadow: 0 0 25px rgba(59, 130, 246, 0.2);
  transform: translateY(-5px);
}

.card-img-wrapper {
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
}

.card-img-wrapper img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.card-content h3 {
  color: #fff;
  font-size: 1.5rem;
  margin-bottom: 0.25rem;
}

.card-content p {
  color: #9ca3af;
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.card-features {
  display: flex;
  gap: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1rem;
  margin-top: auto;
}

.card-features span {
  color: #6b7280;
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

/* New Mockup Features Row */
.mockup-features-section {
  padding: 4rem 5%;
}

.mockup-features-container {
  background: rgba(10, 15, 25, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 24px;
  padding: 4rem 2rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.mf-item {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.mf-icon-wrapper {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(15, 25, 45, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: #3b82f6;
  position: relative;
}

.mf-icon-wrapper::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 100%; height: 100%;
  border-radius: 50%;
  box-shadow: 0 0 30px rgba(59, 130, 246, 0.4);
  z-index: -1;
}

.mf-icon-wrapper svg {
  width: 40px;
  height: 40px;
}

.mf-item h4 {
  color: #fff;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.mf-item p {
  color: #9ca3af;
  font-size: 0.9rem;
}

@media (max-width: 992px) {
  .mockup-features-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .mockup-features-container {
    grid-template-columns: 1fr;
  }
}
/* New Mockup Footer */
.mockup-footer {
  background: rgba(10, 15, 25, 0.95);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 5rem;
}

.mockup-f-about, .mockup-f-contact, .mockup-f-map {
  flex: 1;
}

@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    gap: 3rem !important;
  }
}
/* New Minimal Hero Styles */
.hero-left-accent {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 1rem;
}

.accent-line {
  width: 2px;
  height: 250px;
  background: linear-gradient(to bottom, rgba(59, 130, 246, 0.1), rgba(59, 130, 246, 0.8));
  margin-bottom: 1rem;
}

.accent-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: #3B82F6;
  font-size: 0.8rem;
  font-weight: 700;
}
/* Slider & Grid Updates */
.mockup-slider-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  width: 100%;
}
.mockup-slider-btn {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.1);
  color: #fff;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  flex-shrink: 0;
}
.mockup-slider-btn:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.3);
}
.mockup-products-grid {
  display: flex;
  gap: 1.5rem;
  overflow-x: hidden; /* Or auto if we want manual scroll */
  padding: 10px 0;
  width: 100%;
  justify-content: center;
}
.mockup-product-card {
  width: 220px;
  flex-shrink: 0;
}
.mockup-product-card.more-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  cursor: pointer;
  border-style: dashed;
}
.card-features span {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  color: #9ca3af;
  font-size: 0.75rem;
}

/* Features Container Updates */
.mockup-features-section {
  padding: 2rem 5% 5rem 5%;
}
.mockup-features-container {
  display: flex;
  justify-content: space-around;
  background: rgba(10, 15, 25, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 3rem 1rem;
  max-width: 1200px;
  margin: 0 auto;
}
.mf-item {
  position: relative;
  flex: 1;
}
.mf-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 10%;
  height: 80%;
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.1), transparent);
}
.mf-icon-wrapper {
  background: radial-gradient(circle, rgba(59, 130, 246, 0.25) 0%, transparent 60%);
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mf-icon-wrapper svg {
  color: #3B82F6;
  width: 32px;
  height: 32px;
}
.mf-icon-text {
  font-size: 2.5rem;
  font-weight: 800;
  color: #3B82F6;
  text-align: center;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.25) 0%, transparent 60%);
  margin: 0 auto 1.5rem auto;
}
.mf-item h4 {
  font-size: 0.85rem;
  margin-bottom: 0.5rem;
  color: #e5e7eb;
}
.mf-item p {
  font-size: 0.8rem;
  color: #9ca3af;
}
.mockup-product-card.active {
  border: 1px solid rgba(59, 130, 246, 0.8);
  box-shadow: 0 0 20px rgba(59, 130, 246, 0.4);
}
/* Elite / Luxury Overrides */
.mockup-product-card {
  background: linear-gradient(145deg, rgba(30, 35, 45, 0.7), rgba(10, 15, 25, 0.8)) !important;
  border: 1px solid rgba(255, 255, 255, 0.05) !important;
  border-top: 1px solid rgba(255, 255, 255, 0.15) !important;
  border-left: 1px solid rgba(255, 255, 255, 0.1) !important;
  border-radius: 16px !important;
  box-shadow: 0 20px 40px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.05) !important;
  backdrop-filter: blur(10px);
  padding: 1.5rem !important;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.mockup-product-card:hover {
  transform: translateY(-5px) !important;
  box-shadow: 0 30px 50px rgba(0,0,0,0.6), inset 0 1px 0 rgba(255,255,255,0.2) !important;
  background: linear-gradient(145deg, rgba(40, 45, 55, 0.8), rgba(15, 20, 30, 0.9)) !important;
}

.mockup-product-card.active {
  border: 1px solid rgba(59, 130, 246, 0.6) !important;
  box-shadow: 0 0 25px rgba(59, 130, 246, 0.3), inset 0 0 15px rgba(59, 130, 246, 0.15) !important;
}

.mockup-product-card.more-card {
  border-style: solid !important;
}
.mockup-product-card.more-card svg {
  color: #e5e7eb;
  opacity: 0.8;
  margin-bottom: 1rem;
}
.mockup-product-card.more-card:hover svg {
  color: #3B82F6;
  opacity: 1;
}

.card-img-wrapper {
  margin-bottom: 1.5rem !important;
  display: flex;
  align-items: center;
  justify-content: center;
}
.card-img-wrapper img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 15px 15px rgba(0,0,0,0.5));
}
.modal-left img {
  width: 100%;
  max-width: 350px;
  object-fit: contain;
  filter: drop-shadow(0 15px 30px rgba(0,0,0,0.15));
}

.modal-slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(10, 15, 25, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

.modal-slider-btn:hover {
  background: var(--primary-blue);
  border-color: var(--primary-blue);
  box-shadow: 0 0 15px rgba(59, 130, 246, 0.6);
}

.modal-slider-btn.prev { left: 1rem; }
.modal-slider-btn.next { right: 1rem; }

.modal-slider-dots {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
  z-index: 10;
}

.slider-dot {
  width: 20px;
  height: 6px;
  border-radius: 4px;
  background: rgba(0, 0, 0, 0.25);
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: inset 0 1px 3px rgba(0,0,0,0.2);
}

.slider-dot.active {
  background: #1e40af; /* Deeper, more visible blue */
  width: 35px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.3); /* Dark drop-shadow instead of light glow */
}

.card-content h3 {
  font-size: 1.1rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.5px;
  color: #f3f4f6 !important;
  margin-bottom: 0.3rem !important;
}

.card-content p {
  color: #6b7280 !important;
  font-size: 0.85rem !important;
  margin-bottom: 1.5rem !important;
}

.card-features {
  display: flex !important;
  gap: 0.75rem !important;
  align-items: center !important;
}
.card-features span {
  font-size: 0.75rem !important;
  color: #9ca3af !important;
  display: flex;
  align-items: center;
  gap: 0.2rem;
}
.card-features span svg {
  color: #4b5563;
}
/* ==============================================================
   ?? SCI-FI LUXURY PREMIUM REDESIGN
   ============================================================== */
/* Variables */
:root {
  --sci-bg-base: #050505;
  --sci-bg-card: rgba(13, 17, 23, 0.7);
  --sci-metal-grad: linear-gradient(145deg, rgba(31, 41, 55, 0.9), rgba(13, 17, 23, 0.8));
  --sci-neon-blue: #3B82F6;
  --sci-cyan-glow: #06b6d4;
  --sci-text-white: #f3f4f6;
  --sci-text-muted: #9ca3af;
  --sci-border-light: rgba(255, 255, 255, 0.1);
  --sci-border-glow: rgba(59, 130, 246, 0.4);
}

/* Global Background Overlay & Ambient Lights */
body {
  background-color: var(--sci-bg-base) !important;
}

body::after {
  content: '';
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: -1;
  pointer-events: none;
  background: linear-gradient(to bottom, rgba(5,5,5,0.1) 0%, rgba(5,5,5,0.95) 100%);
}

/* Ambient Moving Lights */
.ambient-light-1, .ambient-light-2 {
  position: fixed;
  border-radius: 50%;
  filter: blur(120px);
  z-index: -1;
  pointer-events: none;
  opacity: 0.4;
  animation: floatAmbient 20s infinite alternate cubic-bezier(0.4, 0, 0.2, 1);
}
.ambient-light-1 {
  top: 20%; right: -5%;
  width: 40vw; height: 40vw;
  background: radial-gradient(circle, rgba(0, 132, 255, 0.35), transparent 60%);
}
.ambient-light-2 {
  top: 20%; left: 30%;
  width: 50vw; height: 50vw;
  background: radial-gradient(circle, rgba(255, 150, 20, 0.25), transparent 65%);
  animation-delay: -10s;
}

@keyframes floatAmbient {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(10vw, 5vh) scale(1.1); }
  100% { transform: translate(-5vw, 10vh) scale(0.9); }
}

/* Premium Typography Updates */
h1, h2, h3, h4, h5, h6 {
  font-weight: 300 !important;
  letter-spacing: -0.5px;
}
.hero-title { font-weight: 200 !important; }
.hero-overline { letter-spacing: 4px; font-weight: 600 !important; }
.mockup-title { font-weight: 300 !important; font-size: 2.5rem !important; }

/* Sci-Fi Luxury Card Styles */
.mockup-product-card {
  position: relative;
  overflow: hidden; /* For sweep animation */
  background: var(--sci-metal-grad) !important;
  border: 1px solid rgba(255, 255, 255, 0.03) !important;
  border-top: 1px solid rgba(255, 255, 255, 0.15) !important;
  border-left: 1px solid rgba(255, 255, 255, 0.1) !important;
  border-radius: 20px !important;
  box-shadow: 0 10px 30px rgba(0,0,0,0.8), inset 0 1px 0 rgba(255,255,255,0.05) !important;
  backdrop-filter: blur(20px);
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1) !important;
  z-index: 2;
}

/* Light Sweep on Hover */
.mockup-product-card::before {
  content: '';
  position: absolute;
  top: 0; left: -150%;
  width: 50%; height: 100%;
  background: linear-gradient(to right, transparent, rgba(255,255,255,0.08), transparent);
  transform: skewX(-25deg);
  transition: left 0.8s ease;
  z-index: 1;
  pointer-events: none;
}

.mockup-product-card:hover {
  transform: translateY(-8px) scale(1.02) !important;
  box-shadow: 
    0 30px 60px rgba(0,0,0,0.9), 
    0 0 25px rgba(59, 130, 246, 0.15),
    inset 0 1px 0 rgba(255,255,255,0.2) !important;
  border-color: rgba(59, 130, 246, 0.4) !important;
  background: linear-gradient(145deg, rgba(40, 45, 55, 0.9), rgba(15, 20, 30, 0.95)) !important;
}

.mockup-product-card:hover::before {
  left: 200%;
}

.mockup-product-card.active {
  border-color: rgba(59, 130, 246, 0.8) !important;
  box-shadow: 
    0 0 30px rgba(59, 130, 246, 0.4), 
    inset 0 0 20px rgba(59, 130, 246, 0.1) !important;
}

.card-img-wrapper {
  position: relative;
  z-index: 2;
}
.card-content {
  position: relative;
  z-index: 2;
}

/* Icon & Stroke width adjustments */
svg {
  stroke-width: 1.5 !important;
  transition: all 0.4s ease;
}

.mockup-product-card:hover .card-features svg {
  color: var(--sci-neon-blue);
  filter: drop-shadow(0 0 5px rgba(59,130,246,0.5));
}

  /* Features Container (Sci-Fi Panel) */
  .mockup-features-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 2rem;
    background: linear-gradient(145deg, rgba(20, 25, 35, 0.8), rgba(10, 15, 20, 0.9)) !important;
    border: 1px solid rgba(255, 255, 255, 0.05) !important;
    border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
    box-shadow: 0 20px 50px rgba(0,0,0,0.8), inset 0 1px 0 rgba(255,255,255,0.05) !important;
    border-radius: 24px !important;
    backdrop-filter: blur(25px);
    padding: 3rem 1rem;
  }

.mf-icon-wrapper {
  background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%) !important;
  transition: all 0.5s ease;
}

.mf-item:hover .mf-icon-wrapper {
  background: radial-gradient(circle, rgba(59, 130, 246, 0.25) 0%, transparent 70%) !important;
}
.mf-item:hover svg {
  stroke-width: 2 !important;
  color: #60A5FA !important;
  filter: drop-shadow(0 0 8px rgba(96, 165, 250, 0.8));
}

/* Slider Buttons Glass/Metal */
.mockup-slider-btn {
  background: rgba(15, 20, 30, 0.6) !important;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.1) !important;
  box-shadow: 0 10px 20px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.1) !important;
}
.mockup-slider-btn:hover {
  background: rgba(59, 130, 246, 0.2) !important;
  border-color: rgba(59, 130, 246, 0.6) !important;
  box-shadow: 0 0 20px rgba(59, 130, 246, 0.4), inset 0 0 10px rgba(59, 130, 246, 0.2) !important;
}
.mockup-slider-btn:hover svg {
  color: #fff !important;
  transform: translateX(2px);
}
.mockup-slider-btn.prev:hover svg {
  transform: translateX(-2px);
}

/* Smooth Scroll Animations (To be triggered by JS) */
.sci-fi-reveal {
  opacity: 0;
  transform: translateY(40px) scale(0.95);
  filter: blur(10px);
  transition: all 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}
.sci-fi-reveal.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}
/* Ambient Moving Lights using HTML pseudo elements */
html::before, html::after {
  content: '';
  position: fixed;
  border-radius: 50%;
  filter: blur(120px);
  z-index: -2;
  pointer-events: none;
  opacity: 0.4;
  animation: floatAmbient 20s infinite alternate cubic-bezier(0.4, 0, 0.2, 1);
}
html::before {
  top: -10%; left: -10%;
  width: 50vw; height: 50vw;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.2), transparent 70%);
}
html::after {
  bottom: -20%; right: -10%;
  width: 60vw; height: 60vw;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.15), transparent 70%);
  animation-delay: -10s;
}
/* Make Navbar Transparent */
.navbar, .glass {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
}
/* Scrolled Navbar Style */
.navbar {
  transition: all 0.4s ease !important;
}
.navbar.scrolled {
  background: #02040a !important;
  backdrop-filter: none !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05) !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5) !important;
  padding-top: 0.5rem !important;
  padding-bottom: 0.5rem !important;
}
/* Hover Neon Glow for all cards */
.mockup-product-card:hover {
  border: 1px solid rgba(59, 130, 246, 0.6) !important;
  box-shadow: 0 0 25px rgba(59, 130, 246, 0.3), inset 0 0 15px rgba(59, 130, 246, 0.15) !important;
  transform: translateY(-5px) !important;
  background: linear-gradient(145deg, rgba(40, 45, 55, 0.8), rgba(15, 20, 30, 0.9)) !important;
}

/* Preloader */
.mockup-preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #070B14; /* Solid color to completely hide the page */
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.5s ease-out, visibility 0.5s ease-out;
  overflow: hidden;
}

/* Sci-Fi Wind / Speed Effect */
.mockup-preloader::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: 
    repeating-linear-gradient(
      -45deg,
      rgba(255, 255, 255, 0.02) 0px,
      rgba(255, 255, 255, 0.02) 2px,
      transparent 2px,
      transparent 20px
    ),
    repeating-linear-gradient(
      -45deg,
      rgba(59, 130, 246, 0.04) 0px,
      rgba(59, 130, 246, 0.04) 5px,
      transparent 5px,
      transparent 60px
    );
  animation: wind-lines 20s linear infinite;
  z-index: 0;
  pointer-events: none;
}

@keyframes wind-lines {
  0% { transform: translateY(0) translateX(0); }
  100% { transform: translateY(100px) translateX(100px); }
}

.mockup-preloader.fade-out {
  opacity: 0;
  visibility: hidden;
}

.preloader-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  z-index: 10;
  position: relative;
}

.preloader-content img {
  height: 120px;
  filter: drop-shadow(0 0 20px rgba(59, 130, 246, 0.4));
  animation: pulse-glow 2s infinite;
}

.neon-spinner {
  width: 40px;
  height: 40px;
  margin-top: -15px;
  border: 3px solid rgba(255, 255, 255, 0.1);
  border-top-color: var(--primary-blue);
  border-radius: 50%;
  animation: spin 1s linear infinite, neon-glow 1.5s alternate infinite;
}

@keyframes pulse-glow {
  0% { transform: scale(1); filter: drop-shadow(0 0 10px rgba(59, 130, 246, 0.2)); }
  50% { transform: scale(1.05); filter: drop-shadow(0 0 25px rgba(59, 130, 246, 0.6)); }
  100% { transform: scale(1); filter: drop-shadow(0 0 10px rgba(59, 130, 246, 0.2)); }
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

@keyframes neon-glow {
  from { box-shadow: 0 0 5px var(--primary-blue); }
  to { box-shadow: 0 0 20px var(--primary-blue); }
}

/* Holographic Modal */
.mockup-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(10, 12, 16, 0.85);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10000;
  opacity: 1;
  transition: opacity 0.3s ease;
}

.mockup-modal-overlay.fade-out {
  opacity: 0;
}

.mockup-modal {
  background: rgba(30, 35, 45, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  width: 90%;
  max-width: 900px;
  max-height: 90vh;
  display: flex;
  flex-direction: row;
  position: relative;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0,0,0,0.5), inset 0 0 20px rgba(59, 130, 246, 0.1);
}

.mockup-modal-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: transparent;
  border: none;
  color: #fff;
  cursor: pointer;
  z-index: 10;
  opacity: 0.7;
  transition: all 0.3s ease;
}

.mockup-modal-close:hover {
  opacity: 1;
  transform: rotate(90deg);
  color: var(--primary-blue);
}

.modal-left {
  flex: 1;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem;
}

.modal-left img {
  width: 100%;
  max-width: 350px;
  object-fit: contain;
}

.modal-right {
  flex: 1.2;
  padding: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.modal-right h2 {
  font-size: 2.2rem;
  color: #fff;
  margin-bottom: 0.5rem;
}

.modal-category {
  color: var(--primary-blue);
  font-weight: 600;
  font-size: 1rem;
}

.modal-features-list {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.modal-features-list li {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: #d1d5db;
  font-size: 1.1rem;
}

.modal-features-list i {
  font-style: normal;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: rgba(255,255,255,0.05);
  border-radius: 8px;
}

.modal-actions {
  margin-top: auto;
}

@media (max-width: 768px) {
  .mockup-modal {
    flex-direction: column;
    overflow-y: auto;
  }
  .modal-left, .modal-right {
    padding: 2rem;
  }
}

/* AC Selector Wizard */
.wizard-content {
  width: 100%;
  padding: 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.wizard-step {
  display: none;
  width: 100%;
  text-align: center;
  animation: fade-in-up 0.4s ease forwards;
}

.wizard-step.active {
  display: block;
}

.wizard-step h3 {
  font-size: 2rem;
  margin-bottom: 2rem;
  color: #fff;
}

.wizard-options {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 2rem;
}

.wizard-option-btn {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  color: #fff;
  padding: 1.5rem 2rem;
  font-size: 1.2rem;
  border-radius: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  min-width: 150px;
}

.wizard-option-btn:hover {
  background: rgba(59, 130, 246, 0.2);
  border-color: var(--primary-blue);
  box-shadow: 0 0 15px rgba(59, 130, 246, 0.3);
  transform: translateY(-5px);
}

.wizard-progress {
  width: 100%;
  max-width: 400px;
  height: 6px;
  background: rgba(255,255,255,0.1);
  border-radius: 4px;
  margin: 2rem 0;
  overflow: hidden;
  position: relative;
}

.wizard-progress-bar {
  height: 100%;
  background: var(--primary-blue);
  width: 0%;
  transition: width 0.5s ease;
  box-shadow: 0 0 10px var(--primary-blue);
}

.wizard-result-card {
  background: rgba(15, 20, 30, 0.9);
  border: 1px solid var(--primary-blue);
  border-radius: 16px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 0 30px rgba(59, 130, 246, 0.2);
  margin-top: 2rem;
}

.wizard-result-card img {
  max-width: 200px;
  margin-bottom: 1rem;
}

@keyframes fade-in-up {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Wizard Nav Button (Orange Neon) */
.wizard-nav-btn {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1.5rem;
  font-size: 1.05rem;
  border-radius: 12px;
  font-weight: 500;
  color: #fff;
  background: rgba(0,0,0,0.3);
  border: 1px solid rgba(249, 115, 22, 0.5); /* Orange border */
  box-shadow: 0 0 20px rgba(249, 115, 22, 0.3); /* Orange glow */
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.wizard-nav-btn:hover {
  background: rgba(249, 115, 22, 0.15); /* Slight orange background on hover */
  border-color: rgba(249, 115, 22, 1);
  box-shadow: 0 0 30px rgba(249, 115, 22, 0.6);
  transform: translateY(-2px);
}


/* WhatsApp Modal Button */
.mockup-whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1rem 2rem;
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: #fff !important;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
  transition: all 0.3s ease;
  margin-top: 0.75rem;
}
.mockup-whatsapp-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
  background: linear-gradient(135deg, #128C7E, #075E54);
}
.mockup-whatsapp-btn svg {
  stroke: currentColor;
  fill: none;
}
/* --- MOBILE RESPONSIVENESS --- */
@media (max-width: 768px) {
  /* Navbar */
  .navbar { padding: 1rem 3% !important; flex-wrap: nowrap !important; justify-content: space-between !important; overflow: hidden; }
  .nav-brand img { height: 42px !important; margin-top: 0 !important; margin-bottom: 0 !important; }
  .nav-links { display: none !important; width: 0 !important; padding: 0 !important; margin: 0 !important; }
  .nav-right { gap: 0.25rem !important; margin-left: auto; }
  .nav-right a { width: 34px !important; height: 34px !important; padding: 0 !important; }
  .nav-right svg { width: 16px !important; height: 16px !important; }
  .nav-right img { width: 16px !important; height: 16px !important; }
  .nav-toggle { display: none !important; }
  
  /* Hero Section */
  .hero-content { width: 100% !important; padding: 8rem 5% 3rem 5% !important; text-align: center; align-items: center; }
  .hero-text-wrapper { flex-direction: column; gap: 1rem !important; }
  .hero-left-accent { display: none; }
  .hero-title { font-size: 2.8rem !important; }
  .hero-cta { flex-direction: column; gap: 1rem !important; width: 100%; margin-bottom: 2rem !important; }
  
  /* Feature Grid (Icon boxes below hero) */
  .hero-features-grid { grid-template-columns: 1fr !important; gap: 1.5rem !important; padding: 1.5rem 0 !important; }
  
  /* General Grids */
  .mockup-features-container {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 1rem !important;
  }
  .mf-item {
    padding: 1rem !important;
  }
  .about-grid, .categories-grid, .features-grid, .gallery-grid, .contact-wrapper {
    grid-template-columns: 1fr !important; 
    gap: 2rem !important;
  }
  
  /* About specifics */
  .about-image { margin-top: 2rem; }
  
  /* Stats Container */
  .stats-container { grid-template-columns: repeat(2, 1fr) !important; gap: 1.5rem !important; }
  
  /* Before / After */
  .ba-container { grid-template-columns: 1fr !important; gap: 2rem !important; }
  
  /* Contact specifics */
  .contact-info { padding-right: 0 !important; margin-bottom: 2rem; border-right: none !important; border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 2rem; }
  
  /* Footer */
  .footer-content { grid-template-columns: 1fr !important; flex-direction: column !important; gap: 2.5rem !important; text-align: center; }
  .footer-col { display: flex; flex-direction: column; align-items: center; }
  .mockup-f-map { height: 250px; width: 100%; margin-top: 1rem; }
  
  /* Section Spacing */
  section { padding: 4rem 5% !important; }
  
  /* Font sizes */
  h2.section-title { font-size: 2rem !important; }
}

/* Additional fixes for mobile slider and nav */
@media (max-width: 768px) {
  .nav-right {
    display: flex !important;
  }
  .mockup-products-grid {
    justify-content: flex-start !important;
    overflow-x: auto !important;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding-left: 5% !important;
    padding-right: 5% !important;
    -ms-overflow-style: none; 
    scrollbar-width: none; 
  }
  .mockup-products-grid::-webkit-scrollbar {
    display: none;
  }
  .mockup-product-card {
    scroll-snap-align: center;
  }
}

/* --- ABOUT US PREMIUM SECTION --- */
.about-section {
  background: transparent;
  padding: 10rem 2rem 6rem;
  color: #fff;
  overflow: hidden;
  position: relative;
}
.about-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(7, 11, 20, 0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 1;
}
.about-container, .about-team-section {
  position: relative;
  z-index: 2;
}

.about-container {
  max-width: 1200px;
  margin: 0 auto;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 4rem;
}

.about-subtitle {
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #60a5fa;
  margin-bottom: 1rem;
  display: block;
}

.about-title {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.about-title .gradient-text {
  background: linear-gradient(90deg, #3b82f6 0%, #60a5fa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.about-desc {
  color: #9ca3af;
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 2.5rem;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.about-feature-card {
  background: rgba(255, 255, 255, 0.015);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 1.5rem;
  border-radius: 12px;
  
  
  display: flex;
  flex-direction: column;
  gap: 1rem;
}



.about-feature-icon {
  color: #3b82f6;
}

.about-feature-card h4 {
  font-size: 1rem;
  font-weight: 600;
  margin: 0;
}

.about-image-wrapper {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: transparent;
}

@keyframes floatAC {
    0% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-12px) rotate(1deg); }
    100% { transform: translateY(0px) rotate(0deg); }
  }
  .about-ac-image {
    animation: floatAC 6s ease-in-out infinite;
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 500px;
    height: auto;
    display: block;
    margin: 0 auto;
    filter: drop-shadow(0 20px 30px rgba(0,0,0,0.7));
    transition: all 0.5s ease;
    padding: 1rem;
  }



/* Stats Row */
.about-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-bottom: 4rem;
}

.about-stat-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 2.5rem 1.5rem;
  text-align: center;
  
  
}



.stat-number {
  font-size: 3rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.5rem;
  display: flex;
  justify-content: center;
  align-items: baseline;
}

.stat-plus {
  color: #3b82f6;
  font-size: 2.5rem;
}

.stat-label {
  color: #9ca3af;
  font-size: 0.95rem;
}

/* CTA Row */
.about-cta {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.about-cta-text h3 {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.about-cta-text p {
  color: #9ca3af;
  margin: 0;
}

.about-cta-buttons {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.btn-primary-gradient {
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
  color: #fff;
  padding: 0.8rem 1.5rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: none;
}
.btn-primary-gradient:hover {
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3);
  transform: translateY(-2px);
}

.btn-outline {
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  padding: 0.8rem 1.5rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}
.btn-outline:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.05);
}

/* Animations */
.fade-in-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.fade-in-left.visible, .fade-in-up.visible {
  opacity: 1;
  transform: translate(0);
}

/* Stagger delays */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

/* Responsive */
@media (max-width: 1024px) {
  .about-grid { gap: 2rem; }
  .about-title { font-size: 2.5rem; }
  .about-stats { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-cta { flex-direction: column; text-align: center; }
  .about-cta-buttons { width: 100%; flex-direction: column; }
  .about-cta-buttons a { width: 100%; justify-content: center; }
}
@media (max-width: 480px) {
  .about-stats { grid-template-columns: 1fr; }
  .about-features { grid-template-columns: 1fr; }
}
