/* ===== CSS Variables & Theme ===== */
:root {
  --bg-color: #050505;
  --bg-surface: rgba(10, 15, 25, 0.6);
  --primary-glow: #00f0ff;
  --secondary-glow: #0055ff;
  --text-main: #ffffff;
  --text-muted: #8892b0;
  --border-color: rgba(0, 240, 255, 0.2);
  --glass-bg: rgba(255, 255, 255, 0.03);
  --glass-border: rgba(255, 255, 255, 0.05);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent; /* Remove mobile tap highlight */
}

/* Hide blinking cursor globally unless in an input field */
html {
  height: 100%;
}

html, body {
  caret-color: transparent;
  max-width: 100%;
  overflow-x: hidden;
}

input, textarea, [contenteditable] {
  caret-color: auto;
}



/* Prevent blinking text cursor on click for interactive elements */
button, .swiper-slide, a, div[tabindex] {
  user-select: none;
  -webkit-user-select: none;
}

*:focus, *:focus-visible {
  outline: none !important;
}

html {
  /* scroll-behavior: smooth removed to prevent GSAP conflicts */
}

body {
  background-color: var(--bg-color);
  color: var(--text-main);
  font-family: 'Google Sans Flex', 'Outfit', sans-serif;
  font-weight: 320;
  position: relative;
  min-height: 100%;
  display: flex;
  flex-direction: column;
}

#bg-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 0;
  pointer-events: none;
  filter: blur(2px);
}

h1, h2, h3, h4, h5 {
  font-family: 'Google Sans Flex', 'Outfit', sans-serif;
  font-weight: 320;
  letter-spacing: -0.03em;
}

.logo {
  font-family: 'Google Sans Flex', 'Outfit', sans-serif;
  font-weight: 600;
  letter-spacing: 0.1em;
}

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

ul {
  list-style: none;
}

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

.section-title {
  text-align: center;
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: 3rem;
  letter-spacing: -0.04em;
  font-weight: 320;
  color: #fff;
}

/* ===== Navbar ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 20px 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  background: rgba(5, 5, 5, 0.8);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

.logo {
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 4px;
  color: #fff;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 30px;
}

.nav-links li a {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: color 0.3s, text-shadow 0.3s;
}

.nav-links li a:hover {
  color: var(--primary-glow);
}

/* ===== Hero Section (Autoplay Video) ===== */
.hero-section {
  position: relative;
  height: 100vh;
  width: 100%;
}

.video-container {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  overflow: hidden;
  background: #000;
}

#hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1; /* Increased opacity */
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* Combine a slight linear gradient with a strong vignette radial gradient */
  background: 
    linear-gradient(to bottom, rgba(5,5,5,0.1) 0%, rgba(5,5,5,0.5) 100%),
    radial-gradient(ellipse at center, transparent 50%, rgba(0,0,0,0.85) 85%, #000 100%);
  /* Add an inset box shadow to further darken the extreme edges */
  box-shadow: inset 0 0 120px 60px #000;
  z-index: 1;
}

.text-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  text-align: center;
  z-index: 2;
  pointer-events: none; /* Let clicks pass through except for buttons */
}

.hero-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, calc(-50% + 40px)); /* Shifted slightly down to account for header */
  font-size: clamp(1.5rem, 8vw, 6rem);
  width: 100%;
  font-weight: 320;
  color: #fff;
  letter-spacing: -0.05em;
  text-transform: uppercase;
  visibility: hidden;
  opacity: 0;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.8), 0 0 40px rgba(0, 240, 255, 0.2);
  white-space: normal;
  line-height: 1.1;
  
  /* Glass-like gradient text effect */
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(0, 240, 255, 0.2) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Specific styling for the final block to stick left */
.final-text-block {
  position: absolute;
  top: 50%;
  left: 10%;
  transform: translateY(calc(-50% + 40px)); /* Shifted slightly down to account for header */
  visibility: hidden;
  opacity: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0px; /* Reduced gap between title and button */
  pointer-events: auto; /* Re-enable clicks for the CTA button */
}

.final-text-block .hero-text {
  position: relative; /* It flows naturally within the flex block */
  visibility: visible;
  opacity: 1;
  transform: none;
  left: 0;
  top: 0;
  line-height: 1;
  margin-bottom: 10px; /* Very tight gap */
}

.cta-call {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 15px 30px;
  background: rgba(0, 240, 255, 0.1);
  border: 1px solid var(--primary-glow);
  color: #fff;
  font-size: 1.1rem;
  font-weight: 500;
  text-decoration: none;
  border-radius: 50px;
  backdrop-filter: blur(10px);
  box-shadow: 0 0 20px rgba(0, 240, 255, 0.2), inset 0 0 10px rgba(0, 240, 255, 0.1);
  transition: all 0.3s ease;
}

.cta-call svg {
  width: 20px;
  height: 20px;
  fill: var(--primary-glow);
}

.cta-call:hover {
  background: var(--primary-glow);
  color: #000;
  box-shadow: 0 0 30px rgba(0, 240, 255, 0.4);
}

.cta-call:hover svg {
  fill: #000;
}

/* Hide specific texts so they don't overlap awkwardly if JS breaks */
.text-1, .text-2, .text-3, .text-4 { visibility: hidden; }

/* ===== Highlights Section (Tabs UI) ===== */
.highlights-section {
  padding: 100px 0 20px;
  background: transparent;
  position: relative;
  z-index: 10;
}

.tabs-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--glass-border);
  padding-bottom: 10px;
}

.tab-btn {
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-family: 'Google Sans Flex', 'Outfit', sans-serif;
  font-size: 1.8rem;
  font-weight: 320;
  cursor: pointer;
  padding: 10px 0;
  position: relative;
  transition: all 0.3s ease;
  letter-spacing: -0.02em;
}

.tab-btn.active, .tab-btn:hover {
  color: var(--text-main);
}

.tab-btn.active::after {
  content: '';
  position: absolute;
  bottom: -11px; /* Align with border-bottom of container */
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--primary-glow);
  box-shadow: 0 0 10px var(--primary-glow);
}

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 25px;
  margin-top: 30px;
}

.highlights-grid .product-card-wrapper {
  background-position: center;
  background-size: cover;
  border-radius: 20px;
  position: relative;
  border: 1px solid var(--border-color);
  box-shadow: 0 10px 25px rgba(0,0,0,0.5), inset 0 0 15px rgba(0, 240, 255, 0.05);
  overflow: hidden;
  background-color: var(--bg-surface);
  transition: all 0.3s ease;
  height: 380px;
}

.highlights-grid .product-card-wrapper:hover {
  border-color: var(--primary-glow);
  box-shadow: 0 0 20px rgba(0, 240, 255, 0.2), inset 0 0 15px rgba(0, 240, 255, 0.1);
  transform: translateY(-5px);
}

@media (max-width: 768px) {
  .tab-btn {
    font-size: 1.3rem;
  }
  .tabs-container {
    gap: 20px;
  }
}

/* ===== Products Section ===== */
.products-section {
  padding: 100px 0;
  background: transparent;
  position: relative;
  z-index: 10;
  min-height: 100vh;
}

.filter-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 50px;
}

.filter-btn {
  background: var(--glass-bg);
  border: 1px solid var(--border-color);
  color: var(--text-main);
  padding: 10px 25px;
  border-radius: 30px;
  cursor: pointer;
  font-family: 'Google Sans Flex', 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  transition: all 0.3s ease;
  backdrop-filter: blur(5px);
  position: relative;
  overflow: hidden;
}

.filter-btn:hover, .filter-btn.active {
  background: rgba(0, 240, 255, 0.1);
  border-color: var(--primary-glow);
  box-shadow: 0 0 15px rgba(0, 240, 255, 0.4);
}

/* Swiper Carousel */
.swiper {
  width: 100%;
  padding-top: 50px;
  padding-bottom: 50px;
}

.swiper-slide {
  background-position: center;
  background-size: cover;
  width: 250px; /* Reduced from 300px to fit 5 items */
  height: 400px; /* Reduced to maintain proportion */
  border-radius: 20px;
  position: relative;
  /* Cinematic glowing border */
  border: 1px solid var(--border-color);
  box-shadow: 0 15px 35px rgba(0,0,0,0.5), inset 0 0 20px rgba(0, 240, 255, 0.1);
  overflow: hidden;
  background-color: var(--bg-surface);
  transition: border-color 0.3s;
}

.swiper-slide-active {
  border-color: var(--primary-glow);
  box-shadow: 0 0 30px rgba(0, 240, 255, 0.3), inset 0 0 20px rgba(0, 240, 255, 0.2);
}

.product-card {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  backdrop-filter: blur(10px);
}

.product-image {
  height: 55%;
  width: 100%;
  background-color: #111; /* Placeholder for image */
  position: relative;
  overflow: hidden;
}

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

.product-card-wrapper:hover .product-image img {
  transform: scale(1.1);
}

.out-of-stock-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(255, 0, 0, 0.8);
  color: white;
  padding: 5px 10px;
  border-radius: 5px;
  font-weight: bold;
  font-size: 0.8rem;
  z-index: 10;
  text-transform: uppercase;
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.product-details {
  padding: 20px;
  height: 45%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
}

.product-title {
  font-size: 1.4rem;
  font-weight: 320;
  margin-bottom: 5px;
  letter-spacing: -0.02em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 100%;
}

.product-brand {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--primary-glow);
  text-transform: uppercase;
  letter-spacing: 2px;
}

.card-actions {
  display: flex;
  gap: 10px;
  margin-top: 15px;
}

.action-btn {
  flex: 1;
  padding: 10px 0;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-family: 'Google Sans Flex', 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  transition: all 0.3s ease;
}

.btn-enquiry {
  background: transparent;
  border: 1px solid var(--text-main);
  color: var(--text-main);
}

.btn-enquiry:hover {
  background: var(--text-main);
  color: #000;
}

.btn-whatsapp {
  background: rgba(37, 211, 102, 0.1);
  border: 1px solid #25D366;
  color: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.btn-whatsapp:hover {
  background: #25D366;
  color: #fff;
  box-shadow: 0 0 15px rgba(37, 211, 102, 0.5);
}

.btn-whatsapp svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.btn-view {
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--glass-border);
  color: var(--text-main);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  max-width: 45px;
}

.btn-view:hover {
  background: var(--text-main);
  color: #000;
  box-shadow: 0 0 15px rgba(255,255,255,0.3);
}

.btn-view svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.swiper-pagination-bullet {
  background: var(--text-muted);
}
.swiper-pagination-bullet-active {
  background: var(--primary-glow);
  box-shadow: 0 0 10px var(--primary-glow);
}

.swiper-button-next, .swiper-button-prev {
  color: var(--primary-glow);
  text-shadow: 0 0 10px var(--primary-glow);
}

/* ===== Product Details Modal ===== */
.product-details-modal {
  display: none;
  position: fixed;
  top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.product-details-modal.show {
  opacity: 1;
}

.details-modal-content {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  width: 90%;
  max-width: 800px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 25px 50px rgba(0,0,0,0.5), inset 0 0 20px rgba(0, 240, 255, 0.05);
  transform: translateY(20px);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.product-details-modal.show .details-modal-content {
  transform: translateY(0);
}

.close-details-modal {
  position: absolute;
  top: 15px;
  right: 15px;
  background: rgba(255,255,255,0.1);
  border: none;
  color: #fff;
  width: 35px; height: 35px;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s;
  z-index: 10;
}
.close-details-modal:hover {
  background: #ff3366;
  transform: rotate(90deg);
}

.details-modal-header {
  display: flex;
  gap: 30px;
  padding: 40px;
  border-bottom: 1px solid var(--glass-border);
}

.details-modal-image {
  flex: 0 0 300px;
  background: rgba(255,255,255,0.02);
  border-radius: 12px;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.details-modal-image img {
  max-width: 100%;
  max-height: 250px;
  object-fit: contain;
  filter: drop-shadow(0 10px 20px rgba(0,0,0,0.5));
}

.details-modal-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.details-brand {
  color: var(--primary-glow);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.details-modal-info h2 {
  font-size: 2rem;
  margin: 0 0 15px 0;
  line-height: 1.2;
}

.details-price {
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 25px;
}

.details-enquiry-btn {
  padding: 15px 30px;
  font-size: 1rem;
  background: linear-gradient(135deg, var(--primary-glow) 0%, #3a7bd5 100%);
  border: none;
  color: #000;
  border-radius: 8px;
  width: max-content;
  box-shadow: 0 5px 15px rgba(0, 240, 255, 0.3);
}

.details-enquiry-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 240, 255, 0.4);
  background: linear-gradient(135deg, #fff 0%, var(--primary-glow) 100%);
}

.details-whatsapp-btn {
  padding: 15px 30px;
  font-size: 1rem;
  background: rgba(37, 211, 102, 0.1);
  border: 1px solid #25D366;
  color: #25D366;
  border-radius: 8px;
  width: max-content;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.details-whatsapp-btn:hover {
  background: #25D366;
  color: #fff;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
  transform: translateY(-2px);
}

.details-whatsapp-btn svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.details-modal-specs {
  padding: 40px;
}

.details-modal-specs h3 {
  margin-top: 0;
  font-size: 1.2rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding-bottom: 10px;
  margin-bottom: 20px;
}

/* Rich Text Content Styling */
.rich-text-content {
  line-height: 1.7;
  color: var(--text-muted);
}
.rich-text-content p { margin-bottom: 15px; }
.rich-text-content ul, .rich-text-content ol { margin-bottom: 15px; padding-left: 20px; }
.rich-text-content li { margin-bottom: 8px; }
.rich-text-content strong { color: var(--text-main); }
.rich-text-content a { color: var(--primary-glow); text-decoration: none; }
.rich-text-content a:hover { text-decoration: underline; }

/* Ensure rich text images don't break layout */
.rich-text-content img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 10px 0;
}

/* Specification Templates Styles */
.spec-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 15px;
  margin-bottom: 20px;
}

.spec-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.spec-item svg {
  width: 22px;
  height: 22px;
  fill: #00e676;
  flex-shrink: 0;
  margin-top: 3px;
}

.spec-item span {
  color: #a0aec0;
  font-size: 1.1rem;
  line-height: 1.5;
  font-family: 'Outfit', 'Segoe UI', sans-serif;
}

@media (max-width: 768px) {
  .spec-item span {
    font-size: 1rem;
  }
  .details-modal-content {
    width: 95%;
    height: auto;
    max-height: 90vh;
    border-radius: 20px;
    border: 1px solid var(--glass-border);
    transform: translateY(20px);
  }
  .product-details-modal.show .details-modal-content {
    transform: translateY(0);
  }
  .details-modal-header {
    flex-direction: column;
    padding: 25px 20px 15px 20px;
    gap: 15px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
  }
  .details-modal-image {
    flex: 0 0 auto;
    width: 100%;
    padding: 10px;
    background: transparent;
  }
  .details-modal-image img {
    max-height: 200px;
  }
  .details-modal-specs {
    padding: 25px 20px 40px 20px;
  }
  .details-modal-info h2 {
    font-size: 1.8rem;
    margin-bottom: 10px;
  }
  .details-price {
    font-size: 1.5rem;
    margin-bottom: 15px;
  }
  .details-enquiry-btn {
    width: 100%;
    text-align: center;
    padding: 15px;
  }
  .close-details-modal {
    top: 15px;
    right: 15px;
    background: rgba(255,255,255,0.1);
    width: 35px;
    height: 35px;
    font-size: 1.5rem;
  }
}

/* ===== Contact Section ===== */
.contact-section {
  padding: 100px 5%;
  max-width: 1400px;
  margin: 0 auto;
}

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

.glass-form {
  background: var(--glass-bg);
  backdrop-filter: blur(15px);
  padding: 40px;
  border-radius: 20px;
  border: 1px solid var(--glass-border);
  box-shadow: 0 20px 40px rgba(0,0,0,0.5), inset 0 0 20px rgba(0, 240, 255, 0.05);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: stretch;
}

.contact-form-side {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.map-container {
  width: 100%;
  height: 100%;
  min-height: 300px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--glass-border);
  box-shadow: inset 0 0 10px rgba(0,0,0,0.5);
  background: rgba(0,0,0,0.3);
}

@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

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

.form-group input, .form-group textarea {
  width: 100%;
  padding: 15px;
  background: rgba(0,0,0,0.5);
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  color: var(--text-main);
  font-family: 'Google Sans Flex', 'Outfit', sans-serif;
  font-weight: 320;
  font-size: 1rem;
  transition: all 0.3s ease;
  outline: none;
}

.form-group input:focus, .form-group textarea:focus {
  border-color: var(--primary-glow);
  box-shadow: 0 0 10px rgba(0, 240, 255, 0.2);
}

.submit-btn {
  width: 100%;
  padding: 15px;
  background: transparent;
  color: var(--primary-glow);
  border: 1px solid var(--primary-glow);
  border-radius: 8px;
  font-family: 'Google Sans Flex', 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 2px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
}

.submit-btn:hover {
  background: var(--primary-glow);
  color: #000;
  box-shadow: 0 0 20px rgba(0, 240, 255, 0.5);
}

/* ===== Centered Footer ===== */
.footer {
  background: #000;
  padding: 40px 0 20px;
  border-top: 1px solid var(--glass-border);
  margin-top: auto;
}

.footer-content-centered {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.footer-brand-centered h2 {
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: -0.05em;
  color: #fff;
  margin: 0;
}

.footer-links-row {
  display: flex;
  gap: 25px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-links-row a {
  color: #fff;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  opacity: 0.8;
  transition: opacity 0.3s;
}

.footer-links-row a:hover {
  opacity: 1;
}

.social-links-centered {
  display: flex;
  gap: 20px;
  margin-top: 10px;
  justify-content: center;
}

.social-icon-circle {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: #fff;
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.social-icon-circle svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.social-icon-circle:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(255,255,255,0.2);
}

/* Colorful Brands */
#footer-instagram { color: #E1306C; }
#footer-whatsapp { color: #25D366; }
#footer-email { color: #EA4335; }
#footer-phone { color: #007BFF; }

.footer-bottom-centered {
  text-align: center;
  margin-top: 30px;
  font-size: 0.8rem;
  color: #888;
}

.footer-bottom-centered p:last-child {
  margin-bottom: 0;
}

/* ===== Enquiry Modal (Tablet Style) ===== */
.enquiry-modal {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  z-index: 1000;
  justify-content: center;
  align-items: center;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.tablet-frame {
  position: relative;
  width: 90%;
  max-width: 500px; /* Increased from 380px to look better on desktop/tablet */
  height: auto;
  min-height: 450px;
  max-height: 85vh;
  background: #1a1a1a;
  border-radius: 35px;
  padding: 12px; /* Bezel width */
  box-shadow: 0 0 0 2px #333, 0 30px 60px rgba(0,0,0,0.8), 0 0 50px rgba(0, 240, 255, 0.15);
  display: flex;
  flex-direction: column;
  min-width: 0; /* Fix flexbox expansion */
}

.tablet-camera {
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 8px;
  height: 8px;
  background: #000;
  border-radius: 50%;
  box-shadow: inset 0 0 2px #111;
}

.tablet-screen {
  flex: 1;
  background: var(--bg-color); /* Matches app theme */
  border-radius: 25px;
  position: relative;
  overflow-y: auto; /* Allow scrolling inside screen if needed */
  overflow-x: hidden;
  min-width: 0; /* Fix flexbox expansion */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 30px 15px;
  text-align: center;
  /* Glass effect inside screen */
  background: linear-gradient(135deg, rgba(20,20,20, 0.9), rgba(10,10,10, 0.95));
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.tablet-home-indicator {
  position: absolute;
  bottom: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: #444;
  border-radius: 4px;
}

.close-modal {
  position: absolute;
  top: 15px;
  right: 15px;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.3s ease;
  z-index: 10;
}

.close-modal:hover {
  opacity: 1;
}

.tablet-content {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

#modalProductName {
  font-size: clamp(1.2rem, 5vw, 1.6rem);
  word-wrap: break-word;
  white-space: normal;
  line-height: 1.3;
  margin-bottom: 10px;
}

.tablet-subtitle {
  margin-bottom: 30px;
  opacity: 0.7;
  font-size: 0.95rem;
}

.tablet-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  padding: 12px 15px; /* Reduced from 16px 20px */
  margin-bottom: 15px;
  border-radius: 12px;
  font-family: inherit;
  font-size: clamp(0.95rem, 4vw, 1.1rem);
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
  color: #fff;
  white-space: normal; /* Allow text to wrap if it's very long */
  word-wrap: break-word;
  text-align: left; /* Keep it neat if it wraps */
}

.tablet-btn.btn-call {
  background: rgba(0, 240, 255, 0.1);
  border: 1px solid var(--primary-glow);
  color: var(--primary-glow);
}

.tablet-btn.btn-call:hover {
  background: var(--primary-glow);
  color: #000;
  box-shadow: 0 0 20px var(--primary-glow);
}

.tablet-btn.btn-callback {
  background: rgba(0, 85, 255, 0.1);
  border: 1px solid var(--secondary-glow);
  color: var(--secondary-glow);
}

.tablet-btn.btn-callback:hover {
  background: var(--secondary-glow);
  color: #fff;
  box-shadow: 0 0 20px var(--secondary-glow);
}

.tablet-btn svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

/* ===== Responsive Design ===== */
.mobile-menu-btn {
  display: none;
  color: #fff;
  cursor: pointer;
}

.mobile-menu-btn svg {
  width: 28px;
  height: 28px;
}

@media (max-width: 768px) {
  .navbar {
    padding: 15px 20px;
  }
  
  .mobile-menu-btn {
    display: block;
    z-index: 1001;
  }
  
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    max-width: 300px;
    height: 100vh;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(15px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 40px;
    transition: right 0.4s cubic-bezier(0.77, 0, 0.175, 1);
    z-index: 1000;
    border-left: 1px solid var(--glass-border);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.8);
  }
  
  .nav-links.active {
    right: 0;
  }

  .nav-links li a {
    font-size: 1.2rem;
  }
  
  .footer-content {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .final-text-block {
    left: 5%;
    transform: translateY(calc(-50% + 20px));
  }
  .cta-call {
    padding: 12px 24px;
    font-size: 1rem;
  }

  .filter-btn {
    padding: 8px 16px;
    font-size: 0.75rem;
  }
  
  .highlights-section, .products-section {
    padding-top: 80px;
  }
}

@media (max-width: 480px) {
  .tab-btn {
    font-size: 1.1rem;
    padding: 8px 0;
  }
  .tabs-container {
    gap: 15px;
  }
  .swiper-slide {
    width: 220px;
    height: 350px;
  }
  .highlights-grid .product-card-wrapper {
    height: 350px;
  }
  .cta-call {
    font-size: 0.9rem;
    padding: 10px 20px;
  }
  .filter-container {
    gap: 10px;
  }
  .final-text-block {
    left: 5%;
    transform: translateY(calc(-50% + 10px));
  }
}
