/* ==========================================================================
   MANGLAM MOBILE - MODERN GLASSMORPHISM DESIGN SYSTEM & STYLESHEET
   ========================================================================== */

/* --- Google Fonts Import --- */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

/* --- Design Tokens & Variables --- */
:root {
  --bg-dark: #070913;
  --bg-card: rgba(16, 22, 42, 0.65);
  --bg-card-hover: rgba(25, 34, 62, 0.85);
  --bg-glass-nav: rgba(10, 14, 28, 0.85);
  
  --primary-cyan: #00f2fe;
  --primary-blue: #4facfe;
  --accent-purple: #7928ca;
  --accent-pink: #ff007f;
  --whatsapp-green: #25d366;
  --whatsapp-glow: rgba(37, 211, 102, 0.4);
  
  --text-main: #f8fafc;
  --text-muted: #94a3b8;
  --text-dim: #64748b;
  
  --border-glass: rgba(255, 255, 255, 0.1);
  --border-glow: rgba(0, 242, 254, 0.3);
  --border-purple-glow: rgba(121, 40, 202, 0.3);
  
  --gradient-brand: linear-gradient(135deg, #00f2fe 0%, #4facfe 50%, #7928ca 100%);
  --gradient-btn: linear-gradient(135deg, #00c6ff 0%, #0072ff 100%);
  --gradient-wa: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  --gradient-card-border: linear-gradient(135deg, rgba(0,242,254,0.4), rgba(121,40,202,0.2));
  
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-pill: 9999px;
  
  --shadow-subtle: 0 10px 30px -10px rgba(0, 0, 0, 0.5);
  --shadow-glow: 0 0 25px rgba(0, 242, 254, 0.25);
  --shadow-purple: 0 0 25px rgba(121, 40, 202, 0.3);
  
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

/* --- Global Reset & Base --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  color-scheme: dark;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-dark);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
}

/* --- Background Canvas & Overlay --- */
#bgCanvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -2;
  pointer-events: none;
}

.bg-dark-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: radial-gradient(circle at 50% 30%, rgba(10, 14, 28, 0.4) 0%, rgba(7, 9, 19, 0.85) 100%);
  z-index: -1;
  pointer-events: none;
}

/* --- Typography Helpers --- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text-main);
  line-height: 1.2;
}

.gradient-text {
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(0, 242, 254, 0.1);
  border: 1px solid rgba(0, 242, 254, 0.3);
  border-radius: var(--radius-pill);
  color: var(--primary-cyan);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 1.1rem;
  max-width: 650px;
  margin: 0 auto;
}

.text-center {
  text-align: center;
}

/* --- Container & Layout --- */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

section {
  padding: 90px 0;
  position: relative;
}

/* --- Glass Card Base --- */
.glass-card {
  background: var(--bg-card);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: transform var(--transition-normal), border-color var(--transition-normal), box-shadow var(--transition-normal), background var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.glass-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(0, 242, 254, 0.4), transparent);
  opacity: 0;
  transition: opacity var(--transition-normal);
}

.glass-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-glow);
  box-shadow: var(--shadow-subtle), var(--shadow-glow);
  background: var(--bg-card-hover);
}

.glass-card:hover::before {
  opacity: 1;
}

/* --- Buttons System --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all var(--transition-normal);
  white-space: nowrap;
}

.btn-primary {
  background: var(--gradient-btn);
  color: #fff;
  box-shadow: 0 4px 20px rgba(0, 114, 255, 0.4);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 114, 255, 0.6);
  filter: brightness(1.1);
}

.btn-whatsapp {
  background: var(--gradient-wa);
  color: #fff;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
}

.btn-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.55);
  filter: brightness(1.08);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-glass);
  color: var(--text-main);
  backdrop-filter: blur(10px);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--primary-cyan);
  color: var(--primary-cyan);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 10px 18px;
  font-size: 0.85rem;
}

.btn-full {
  width: 100%;
}

/* --- NAVIGATION BAR --- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--bg-glass-nav);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-glass);
  padding: 16px 0;
  transition: all var(--transition-normal);
}

.navbar.scrolled {
  padding: 12px 0;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5), 0 0 15px rgba(0, 242, 254, 0.15);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-icon-wrap {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid #e5c158;
  box-shadow: 0 0 15px rgba(229, 193, 88, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.brand-icon-wrap:hover {
  transform: scale(1.08);
  box-shadow: 0 0 22px rgba(229, 193, 88, 0.7);
}

.brand-logo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-name {
  font-size: 1.45rem;
  font-weight: 900;
  letter-spacing: -0.5px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}

.nav-link {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
  transition: color var(--transition-fast);
  position: relative;
}

.nav-link:hover, .nav-link.active {
  color: var(--primary-cyan);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-cyan);
  border-radius: var(--radius-pill);
  transition: width var(--transition-fast);
}

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

.nav-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hamburger-btn {
  display: none;
  background: transparent;
  border: none;
  color: var(--text-main);
  font-size: 1.6rem;
  cursor: pointer;
  padding: 6px;
}

/* --- Mobile Nav Drawer --- */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 340px;
  height: 100vh;
  background: rgba(10, 14, 28, 0.96);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  z-index: 1001;
  padding: 30px 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: right var(--transition-smooth);
  border-left: 1px solid var(--border-glass);
}

.mobile-drawer.open {
  right: 0;
}

.drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition-normal), visibility var(--transition-normal);
}

.drawer-overlay.open {
  opacity: 1;
  visibility: visible;
}

.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
}

.drawer-close {
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: #fff;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
}

.drawer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.drawer-link {
  color: var(--text-main);
  text-decoration: none;
  font-size: 1.15rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 12px;
}

/* --- HERO SECTION --- */
.hero {
  padding-top: 130px;
  padding-bottom: 50px;
  min-height: auto;
  display: flex;
  align-items: center;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
  align-items: center;
}

.hero-owners-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px;
  background: rgba(121, 40, 202, 0.15);
  border: 1px solid var(--border-purple-glow);
  border-radius: var(--radius-pill);
  font-size: 0.9rem;
  font-weight: 600;
  color: #d8b4fe;
  margin-bottom: 20px;
}

.hero-owners-badge i {
  color: var(--accent-pink);
}

.hero-title {
  font-size: 4rem;
  font-weight: 900;
  letter-spacing: -1.5px;
  line-height: 1.05;
  margin-bottom: 16px;
}

.hero-subhead {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--primary-cyan);
  margin-bottom: 14px;
}

.hero-tagline {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 36px;
  line-height: 1.6;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

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

.hero-visual-glow {
  position: absolute;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(0, 242, 254, 0.3) 0%, rgba(121, 40, 202, 0.3) 50%, transparent 70%);
  filter: blur(40px);
  z-index: 0;
  animation: pulseGlow 4s infinite alternate;
}

.hero-img-box {
  position: relative;
  z-index: 1;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--border-glow);
  box-shadow: var(--shadow-subtle), var(--shadow-glow);
  animation: floatPhone 6s ease-in-out infinite;
  max-width: 440px;
  width: 100%;
}

.hero-img-box img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

@keyframes floatPhone {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-16px) rotate(1.5deg); }
}

@keyframes pulseGlow {
  0% { opacity: 0.5; transform: scale(0.95); }
  100% { opacity: 0.9; transform: scale(1.05); }
}

/* --- TRUST HIGHLIGHT SECTION --- */
.highlights-section {
  padding: 30px 0 70px 0;
}

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.highlight-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 22px 20px;
}

.highlight-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: var(--radius-md);
  background: rgba(0, 242, 254, 0.1);
  border: 1px solid rgba(0, 242, 254, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--primary-cyan);
}

.highlight-content h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.highlight-content p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* --- MOBILE BRANDS SECTION --- */
.brands-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.brand-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  text-align: center;
  padding: 24px;
}

.brand-header {
  margin-bottom: 16px;
}

.brand-badge-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 14px auto;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
  border: 1px solid var(--border-glass);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--primary-cyan);
  box-shadow: inset 0 0 10px rgba(255,255,255,0.05);
}

.brand-name {
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 6px;
}

.brand-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.brand-price-note {
  font-size: 0.75rem;
  color: var(--text-dim);
  font-weight: 600;
  margin-bottom: 16px;
}

/* --- ACCESSORIES SECTION --- */
.category-block {
  margin-top: 50px;
}

.category-header-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  border-bottom: 1px solid var(--border-glass);
  padding-bottom: 12px;
}

.category-title {
  font-size: 1.5rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 12px;
}

.badge-popular {
  background: linear-gradient(135deg, #ff416c, #ff4b2b);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 0 12px rgba(255, 65, 108, 0.5);
}

.accessories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.accessory-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.accessory-icon-box {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: rgba(121, 40, 202, 0.15);
  border: 1px solid var(--border-purple-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--accent-pink);
  margin-bottom: 16px;
}

.accessory-title {
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 10px;
}

.accessory-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.acc-tag {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-glass);
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* --- SERVICES SECTION --- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.service-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.service-icon-banner {
  height: 60px;
  width: 60px;
  border-radius: var(--radius-md);
  background: var(--gradient-btn);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: #fff;
  margin-bottom: 20px;
  box-shadow: var(--shadow-glow);
}

.service-title {
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.service-list {
  list-style: none;
  margin-bottom: 24px;
}

.service-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.service-list li i {
  color: var(--primary-cyan);
  font-size: 0.85rem;
}

/* --- SPECIAL PRODUCTS SECTION --- */
.special-products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}

.special-product-card {
  padding: 0;
  display: flex;
  flex-direction: column;
}

.product-img-wrap {
  width: 100%;
  height: 230px;
  overflow: hidden;
  position: relative;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
}

.product-img-wrap img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain !important; /* Ensures 100% of photo fits cleanly */
  transition: transform var(--transition-smooth);
}

.special-product-card:hover .product-img-wrap img {
  transform: scale(1.06);
}

.product-card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex-grow: 1;
}

.product-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(10, 14, 28, 0.85);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border-glow);
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--primary-cyan);
}

.product-title {
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.product-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}

/* --- WHY CHOOSE US SECTION --- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  margin-top: 48px;
}

.why-card {
  text-align: center;
  padding: 24px 16px;
}

.why-icon {
  font-size: 2.2rem;
  margin-bottom: 12px;
  display: block;
}

.why-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.why-card p {
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* --- INSTAGRAM SECTION --- */
.instagram-box {
  background: linear-gradient(135deg, rgba(121, 40, 202, 0.2), rgba(255, 0, 127, 0.15));
  border: 1px solid rgba(255, 0, 127, 0.3);
  text-align: center;
  padding: 48px 32px;
  border-radius: var(--radius-xl);
}

.insta-icon-large {
  font-size: 3rem;
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 16px;
  display: inline-block;
}

/* --- CONTACT & MAP SECTION --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 48px;
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 24px 0 32px 0;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.info-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: rgba(0, 242, 254, 0.1);
  border: 1px solid rgba(0, 242, 254, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-cyan);
  font-size: 1.2rem;
  min-width: 44px;
}

.info-text h4 {
  font-size: 0.9rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 2px;
}

.info-text p {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-main);
}

.map-card-box {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.map-placeholder {
  width: 100%;
  height: 260px;
  border-radius: var(--radius-md);
  background: url('https://images.unsplash.com/photo-1526778548025-fa2f459cd5c1?auto=format&fit=crop&w=800&q=80') center/cover no-repeat;
  position: relative;
  margin-bottom: 20px;
  border: 1px solid var(--border-glass);
}

.map-overlay-badge {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(10, 14, 28, 0.9);
  backdrop-filter: blur(12px);
  padding: 12px 20px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border-glow);
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow-glow);
  white-space: nowrap;
}

/* --- FLOATING CONTACT BUTTONS --- */
.floating-actions {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.float-btn {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.6rem;
  text-decoration: none;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
  position: relative;
}

.float-btn:hover {
  transform: scale(1.12);
}

.float-wa {
  background: var(--gradient-wa);
  animation: pulseWa 2.5s infinite;
}

.float-call {
  background: var(--gradient-btn);
}

@keyframes pulseWa {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6); }
  70% { box-shadow: 0 0 0 16px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* --- FOOTER --- */
.footer {
  background: #04050b;
  border-top: 1px solid var(--border-glass);
  padding: 70px 0 30px 0;
  position: relative;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 50px;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-top: 12px;
  max-width: 320px;
}

.footer-col h4 {
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 18px;
  color: var(--text-main);
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color var(--transition-fast);
}

.footer-links a:hover {
  color: var(--primary-cyan);
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 24px;
  color: var(--text-dim);
  font-size: 0.85rem;
}

/* --- RESPONSIVE MEDIA QUERIES --- */
@media (max-width: 1024px) {
  .hero-title { font-size: 3.2rem; }
  .highlights-grid { grid-template-columns: repeat(2, 1fr); }
  .brands-grid { grid-template-columns: repeat(3, 1fr); }
  .accessories-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .special-products-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta .btn { display: none; }
  .hamburger-btn { display: block; }
  
  .hero { padding-top: 120px; text-align: center; }
  .hero-grid { grid-template-columns: 1fr; gap: 36px; }
  .hero-title { font-size: 2.5rem; }
  .hero-subhead { font-size: 1.2rem; }
  .hero-cta-group { justify-content: center; }
  
  .section-title { font-size: 2rem; }
  .highlights-grid { grid-template-columns: 1fr; }
  .brands-grid { grid-template-columns: repeat(2, 1fr); }
  .accessories-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .special-products-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  
  .floating-actions { bottom: 20px; right: 20px; }
  .float-btn { width: 50px; height: 50px; font-size: 1.4rem; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 2.1rem; }
  .brands-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .brand-card { padding: 16px 12px; }
  .why-grid { grid-template-columns: 1fr; }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  *, ::before, ::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* --- TOP AUTO-PLAYING STORE CAROUSEL --- */
.carousel-wrapper-section {
  padding-top: 10px;
  padding-bottom: 20px;
}

.hero-carousel-container {
  position: relative;
  width: 100%;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 2px solid rgba(229, 193, 88, 0.6);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.8), 0 0 25px rgba(0, 242, 254, 0.25);
  background: #060812;
  aspect-ratio: 2.35 / 1;
  max-height: 420px;
}

@media (max-width: 768px) {
  .carousel-wrapper-section {
    padding-top: 10px;
    padding-bottom: 10px;
  }
  .hero-carousel-container {
    aspect-ratio: 16 / 9;
    max-height: 260px;
    border-radius: var(--radius-lg);
  }
}

.carousel-track {
  display: flex;
  height: 100%;
  width: 100%;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.carousel-slide {
  min-width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #060812;
  overflow: hidden;
  padding: 6px;
}

.carousel-slide-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(25px) brightness(0.3);
  transform: scale(1.15);
  z-index: 0;
}

.carousel-slide-img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: contain !important; /* Perfect fit - 0% text crop */
  object-position: center;
  display: block;
  border-radius: var(--radius-md);
}

.carousel-overlay-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(10, 14, 28, 0.85);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border-glow);
  padding: 4px 14px;
  border-radius: var(--radius-pill);
  font-size: 0.78rem;
  font-weight: 800;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: var(--shadow-glow);
  z-index: 2;
}

.carousel-caption-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(0deg, rgba(7, 9, 19, 0.95) 0%, rgba(7, 9, 19, 0.5) 70%, transparent 100%);
  padding: 14px 16px 10px 16px;
  color: #fff;
  z-index: 2;
  pointer-events: none;
}

.carousel-caption-bottom h4 {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--primary-cyan);
  margin-bottom: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.carousel-caption-bottom p {
  font-size: 0.8rem;
  color: var(--text-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.carousel-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(10, 14, 28, 0.75);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 3;
  transition: all var(--transition-fast);
}

.carousel-nav-btn:hover {
  background: var(--primary-cyan);
  color: #000;
  border-color: var(--primary-cyan);
  box-shadow: 0 0 15px rgba(0, 242, 254, 0.6);
}

.carousel-prev { left: 14px; }
.carousel-next { right: 14px; }

.carousel-dots {
  position: absolute;
  bottom: 16px;
  right: 20px;
  display: flex;
  gap: 8px;
  z-index: 3;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.carousel-dot.active {
  width: 28px;
  border-radius: var(--radius-pill);
  background: var(--primary-cyan);
  box-shadow: 0 0 10px rgba(0, 242, 254, 0.8);
}

