@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&display=swap');

:root {
  /* Default Dark Theme - Premium Industrial */
  --bg-color: #050507;
  --bg-gradient: radial-gradient(circle at 15% 30%, #15151a 0%, #050507 80%);
  --surface: rgba(255, 255, 255, 0.03);
  --surface-hover: rgba(255, 255, 255, 0.06);
  --border: rgba(255, 255, 255, 0.08);
  --text-main: #f8fafc;
  --text-muted: #94a3b8;
  --primary: #ff6a00;
  --primary-hover: #e65c00;
  --accent: #ff8c00;
  --shield-silver: #c0c0c0;
  --shadow: 0 20px 40px rgba(0,0,0,0.5);
  --glow: 0 0 30px rgba(255, 106, 0, 0.15);
  --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --logo-bg: transparent;
}

[data-theme="light"] {
  /* Light Theme */
  --bg-color: #f1f5f9;
  --bg-gradient: radial-gradient(circle at 15% 30%, #ffffff 0%, #e2e8f0 80%);
  --surface: rgba(255, 255, 255, 0.7);
  --surface-hover: rgba(255, 255, 255, 0.95);
  --border: rgba(0, 0, 0, 0.06);
  --text-main: #0f172a;
  --text-muted: #475569;
  --primary: #ff6a00;
  --primary-hover: #e65c00;
  --accent: #ff8c00;
  --shield-silver: #64748b;
  --shadow: 0 20px 40px rgba(0,0,0,0.06);
  --glow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { 
  scroll-behavior: smooth; 
  overflow-x: hidden;
}

body {
  font-family: 'Outfit', sans-serif;
  background: var(--bg-color);
  background-image: var(--bg-gradient);
  color: var(--text-main);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
  transition: background 0.5s ease, color 0.5s ease;
  width: 100%;
  position: relative;
}

* {
  overflow-wrap: break-word;
}

a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }

.w-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 5%;
}

.section { padding: 5rem 0; }
.padding-large { padding: 10rem 0; }


/* Top Info Bar */
.top-info-bar {
  background: #000;
  color: #fff;
  padding: 8px 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  font-weight: 500;
  position: relative;
  z-index: 1002;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.top-info-contact {
  display: flex;
  gap: 1.5rem;
}

.top-info-contact span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.top-info-contact i {
  color: var(--primary);
}


/* Header & Nav */
header {
  position: fixed;
  top: 48px; /* Offset to leave a gap below the top info bar */
  width: 100%;
  z-index: 1000;
  padding: 0 5%;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  justify-content: center;
}

header.scrolled {
  top: 15px; /* Floats just below the window top */
  padding: 0 5%;
}

.navbar {
  width: 100%;
  max-width: 1400px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--surface);
  border: 1px solid var(--border);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  padding: 0.5rem 1.5rem 0.5rem 2rem;
  border-radius: 100px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
  transition: var(--transition);
}

header.scrolled .navbar {
  background: rgba(10, 10, 12, 0.85);
  box-shadow: 0 15px 50px rgba(0,0,0,0.3);
  border-color: rgba(255,106,0,0.3); /* Dynamic orange edge on scroll */
}

[data-theme="light"] header.scrolled .navbar {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 15px 50px rgba(0,0,0,0.1);
}

.logo-wrapper {
  display: flex;
  align-items: center;
  height: 100%;
}

.logo-container {
  padding: 2px 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  transition: transform 0.3s ease;
}

.logo-container:hover {
  transform: scale(1.05);
}

.brand-logo {
  height: 75px; 
  object-fit: contain;
}

/* Nav links */
.nav-links {
  display: flex;
  gap: 3rem;
  background: transparent;
  padding: 0;
  border: none;
  backdrop-filter: none;
}

.nav-links a {
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--text-muted);
  position: relative;
  padding: 0.5rem 0;
  letter-spacing: 0.5px;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; width: 0; height: 3px;
  background: var(--primary);
  border-radius: 3px;
  transition: width 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-links a:hover::after, .nav-links a.active::after {
  width: 100%;
}
.nav-links a:hover, .nav-links a.active { color: var(--text-main); }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.theme-btn {
  background: transparent;
  border: 1px solid var(--border);
  width: 45px; height: 45px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-main);
  cursor: pointer;
  transition: var(--transition);
  font-size: 1.1rem;
}
.theme-btn:hover { background: var(--surface); transform: rotate(15deg); }

/* Theme Icon Logic */
[data-theme="dark"] .dark-icon { display: none; }
[data-theme="light"] .light-icon { display: none; }

.cart-icon {
  position: relative;
  font-size: 1.3rem;
  cursor: pointer;
  color: var(--text-main);
}
.cart-badge {
  position: absolute;
  top: -8px; right: -12px;
  background: var(--primary); color: #fff;
  font-size: 0.75rem; font-weight: 700;
  min-width: 20px; height: 20px; border-radius: 50px;
  display: flex; align-items: center; justify-content: center;
  padding: 0 5px;
}

.btn {
  padding: 1rem 2rem;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center; gap: 10px;
  border: none;
  transition: var(--transition);
  font-family: inherit;
}
.btn-primary { background: var(--primary); color: #fff; box-shadow: 0 4px 15px rgba(255, 106, 0, 0.3); }
.btn-primary:hover { background: var(--primary-hover); transform: translateY(-3px); box-shadow: 0 8px 25px rgba(255, 106, 0, 0.4); }
.btn-outline { background: transparent; color: var(--text-main); border: 1px solid var(--border); }
.btn-outline:hover { background: var(--surface-hover); border-color: var(--text-main); }
.btn-large { padding: 1.2rem 2.8rem; font-size: 1.1rem; }
.btn-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,106,0,0.1);
  color: var(--primary);
  border: 1.5px solid rgba(255,106,0,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  flex-shrink: 0;
  font-size: 1rem;
}
.btn-icon:hover {
  background: linear-gradient(135deg, var(--primary), #ff9500);
  color: #fff;
  border-color: transparent;
  transform: scale(1.12);
  box-shadow: 0 6px 20px rgba(255,106,0,0.4);
}

/* Advanced Hero Section */
.hero-advanced {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 100px;
}
.hero-bg-accent {
  position: absolute; right: -10%; top: -10%;
  width: 60%; height: 80%;
  background: radial-gradient(circle, rgba(255,106,0,0.08) 0%, transparent 60%);
  filter: blur(60px); z-index: 0;
}

.hero-container {
  max-width: 1400px; margin: 0 auto; padding: 0 5%;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative; z-index: 1;
}

.badge { display: inline-flex; align-items: center; gap: 8px; padding: 0.5rem 1.2rem; background: rgba(255,106,0,0.1); color: var(--primary); border: 1px solid rgba(255,106,0,0.2); border-radius: 100px; font-weight: 600; font-size: 0.85rem; margin-bottom: 2rem; letter-spacing: 1px; text-transform: uppercase; }

.hero-content h1 { font-size: 5.5rem; line-height: 1.05; margin-bottom: 1.5rem; font-weight: 800; letter-spacing: -2px; }
.hero-content .highlight { color: var(--primary); }
.hero-lead { font-size: 1.25rem; color: var(--text-muted); margin-bottom: 3rem; max-width: 90%; font-weight: 400; line-height: 1.7; }

.hero-btns { display: flex; gap: 1.5rem; margin-bottom: 4rem; }

.hero-stats { display: flex; gap: 3rem; border-top: 1px solid var(--border); padding-top: 2.5rem; }
.stat { display: flex; flex-direction: column; }
.stat-number { font-size: 2.5rem; font-weight: 700; color: var(--text-main); line-height: 1; margin-bottom: 0.5rem; }
.stat-label { font-size: 0.9rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; font-weight: 500; }

.hero-visual { position: relative; perspective: 1000px; }
.visual-stack { position: relative; transform-style: preserve-3d; }

.floating-card {
  position: absolute;
  border-radius: 24px;
  background: var(--surface);
  border: 1px solid var(--border);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow);
  padding: 2rem;
  transition: transform 0.2s ease-out;
}

.card-back {
  top: -100px; right: 50px;
  width: 250px; height: 180px;
  transform: translateZ(-100px) rotateY(-15deg);
  display: flex; flex-direction: column; justify-content: center;
  background: rgba(255,255,255,0.02);
}
.card-front {
  top: -20px; right: -20px;
  width: 450px; height: 350px;
  transform: translateZ(50px) rotateY(-5deg);
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, rgba(255,255,255,0.08), rgba(255,255,255,0.01));
}

.config-icon { font-size: 2.5rem; color: var(--text-muted); margin-bottom: 1rem; }
.card-glass h4 { font-size: 1.1rem; color: var(--text-main); margin-bottom: 1rem; }
.progress-bar { width: 100%; height: 6px; background: rgba(0,0,0,0.2); border-radius: 3px; overflow: hidden; }
.progress-bar .fill { width: 65%; height: 100%; background: var(--primary); border-radius: 3px; animation: progress 3s ease-in-out infinite; }

@keyframes progress { 0% { width: 0%; } 50% { width: 85%; } 100% { width: 0%; } }

.hero-illustration { width: 100%; height: auto; }
.status-pill { position: absolute; bottom: 20px; right: 20px; background: var(--surface); border: 1px solid var(--border); padding: 8px 16px; border-radius: 100px; display: flex; align-items: center; gap: 8px; font-size: 0.85rem; font-weight: 600; backdrop-filter: blur(10px); }
.status-pill .dot { width: 8px; height: 8px; border-radius: 50%; background: #10b981; box-shadow: 0 0 10px #10b981; }

/* Bento Container */
.section-header { margin-bottom: 4rem; }
.section-header.center { text-align: center; }
.section-title { font-size: 2.5rem; font-weight: 800; letter-spacing: -1px; margin-bottom: 1rem; color: var(--text-main); }
.section-subtitle { font-size: 1.2rem; color: var(--text-muted); max-width: 600px; }
.center .section-subtitle { margin: 0 auto; }

.responsive-split-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
}

@media (max-width: 900px) {
  .responsive-split-grid {
    grid-template-columns: 1fr;
    gap: 4rem !important;
  }
  .responsive-split-grid .btn-large { 
    width: 100%; 
    justify-content: center; 
    margin-top: 1rem;
  }
}


.bento-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 280px);
  gap: 1.5rem;
}

.bento-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  display: flex; flex-direction: column;
}
.bento-item:hover { transform: translateY(-5px); background: var(--surface-hover); border-color: rgba(255,106,0,0.3); box-shadow: var(--shadow); }

.bento-large { grid-column: span 2; grid-row: span 2; display: flex; flex-direction: column; justify-content: space-between; background: linear-gradient(135deg, var(--surface), rgba(0,0,0,0.0)); }
.bento-wide { grid-column: span 2; grid-row: span 1; justify-content: center; }

.bento-icon { width: 60px; height: 60px; border-radius: 16px; background: rgba(255,106,0,0.1); color: var(--primary); display: flex; align-items: center; justify-content: center; font-size: 1.8rem; margin-bottom: 1.5rem; }
.bento-item h3 { font-size: 1.8rem; margin-bottom: 1rem; font-weight: 700; }
.bento-item h4 { font-size: 1.4rem; margin-bottom: 0.5rem; font-weight: 700; }
.bento-item p { color: var(--text-muted); line-height: 1.6; font-size: 1.05rem; }
.bento-item .small-text { font-size: 0.95rem; }

.bento-content-row { display: flex; justify-content: space-between; align-items: center; height: 100%; }

.abstract-grid { width: 100%; height: 200px; background-image: linear-gradient(var(--border) 1px, transparent 1px), linear-gradient(90deg, var(--border) 1px, transparent 1px); background-size: 20px 20px; border-radius: 12px; position: relative; overflow: hidden; opacity: 0.5; }
.abstract-grid::after { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: radial-gradient(circle, transparent 30%, var(--bg-color) 100%); }

/* Equal Heights Products Grid */
.split-header { display: flex; justify-content: space-between; align-items: flex-end; }
.masonry-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  align-items: stretch;
}
@media (max-width: 1200px) {
  .masonry-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .masonry-grid { grid-template-columns: 1fr; }
}

/* ============================================
   PREMIUM PRODUCT CARDS
   ============================================ */
.masonry-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 24px;
  overflow: hidden;
  transition: transform 0.35s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.35s cubic-bezier(0.25, 0.8, 0.25, 1), border-color 0.3s;
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
}
.masonry-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,106,0,0.04) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
  z-index: 0;
  border-radius: 24px;
}
.masonry-item:hover {
  transform: translateY(-10px);
  border-color: rgba(255,106,0,0.35);
  box-shadow: 0 24px 48px rgba(0,0,0,0.25), 0 0 0 1px rgba(255,106,0,0.15);
}
.masonry-item:hover::before { opacity: 1; }

.item-visual {
  padding: 0;
  background: rgba(0,0,0,0.05);
  border-bottom: 1px solid var(--border);
  display: flex;
  justify-content: center;
  align-items: center;
  height: 180px;
  flex-shrink: 0;
  overflow: hidden;
  position: relative;
}
.item-visual::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 60px;
  background: linear-gradient(to top, rgba(0,0,0,0.18), transparent);
  pointer-events: none;
}
.item-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.masonry-item:hover .item-visual img { transform: scale(1.08); }
.dark-visual { background: rgba(0,0,0,0.12); }

.item-content {
  padding: 1.25rem 1.25rem 1rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  position: relative;
  z-index: 1;
}

.badge-row { margin-bottom: 0.75rem; }
.badge-small {
  font-size: 0.7rem;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 100px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.badge-small.accent {
  background: linear-gradient(90deg, var(--primary), #ff9500);
  color: #fff;
  box-shadow: 0 3px 10px rgba(255,106,0,0.3);
}

.product-title {
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  line-height: 1.2;
  color: #fff;
  letter-spacing: -0.02em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.product-desc {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  line-height: 1.5;
  margin-bottom: 0.75rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.price-action {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 1rem;
  margin-top: auto;
  gap: 1rem;
}
.price {
  font-size: 1.75rem;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: -0.04em;
  display: flex;
  align-items: center;
  gap: 2px;
}
.price::before {
  content: '₦';
  font-size: 1.4rem;
  display: inline-block;
  margin-bottom: 2px;
}

.btn-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255,106,0,0.1);
  border: 1px solid rgba(255,106,0,0.2);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  font-size: 1.2rem;
}
.btn-icon:hover {
  background: var(--primary);
  color: #fff;
  transform: scale(1.1);
}

/* Category Links */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
}
.category-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 1rem;
  text-align: center;
  transition: var(--transition);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: inherit;
}
.category-card img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 1.5rem;
}
.category-card:hover {
  background: var(--surface-hover);
  border-color: var(--primary);
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}
.cat-icon {
  width: 70px; height: 70px; border-radius: 50%;
  background: rgba(255,106,0,0.1); color: var(--primary);
  display: flex; align-items: center; justify-content: center;
  font-size: 2.2rem; margin-bottom: 1rem; transition: var(--transition);
}
.category-card:hover .cat-icon {
  background: var(--primary); color: #fff;
}
.category-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 0.5rem; }

/* Premium CTA */
.advanced-cta { background: linear-gradient(135deg, rgba(255,106,0,0.1), rgba(0,0,0,0)); border: 1px solid var(--border); border-radius: 32px; padding: 6rem; text-align: center; position: relative; overflow: hidden; }
.cta-bg-glow { position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: 60%; height: 100%; background: radial-gradient(circle, rgba(255,106,0,0.05) 0%, transparent 70%); pointer-events: none; }
.advanced-cta h2 { font-size: 3.5rem; font-weight: 800; margin-bottom: 1.5rem; letter-spacing: -1px; }
.advanced-cta p { font-size: 1.25rem; color: var(--text-muted); max-width: 600px; margin: 0 auto 3rem; }
.cta-actions { display: flex; justify-content: center; gap: 1.5rem; }


/* Custom Pages */
.page-container {
  padding-top: 120px;
  min-height: 80vh;
}
.page-header-simple {
  text-align: center;
  margin-bottom: 4rem;
}
.page-header-simple h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

/* Shop Layout */
.shop-layout {
  display: flex;
  gap: 3rem;
}

.shop-sidebar {
  width: 300px;
  flex-shrink: 0;
}

.filter-section {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2rem;
  margin-bottom: 2rem;
}

.filter-section h4 {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border);
}

.filter-option {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 1rem;
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition);
}
.filter-option:hover {
  color: var(--text-main);
}
.filter-option input[type="checkbox"] {
  accent-color: var(--primary);
  width: 18px; height: 18px;
}

.shop-products {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  align-items: stretch;
}
@media (max-width: 1200px) {
  .shop-products { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .shop-products { grid-template-columns: 1fr; }
}

/* Contact Details */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.info-card {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 2.5rem;
  border-radius: 24px;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
/* Only target the direct large icon in the info card */
.info-card > i {
  font-size: 2.5rem;
  color: var(--primary);
  flex-shrink: 0;
}
.info-details i {
  margin-right: 12px;
  font-size: 1.1rem;
  width: 20px;
  text-align: center;
}
.info-details h4 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}
.info-details p {
  color: var(--text-muted);
}

.contact-form {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 3rem;
  border-radius: 24px;
}
.form-group {
  margin-bottom: 1.5rem;
}
.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--text-muted);
}
.form-group input, .form-group textarea {
  width: 100%;
  padding: 1rem;
  background: rgba(0,0,0,0.1);
  border: 1px solid var(--border);
  border-radius: 12px;
  color: var(--text-main);
  font-family: inherit;
  outline: none;
}
.form-group input:focus, .form-group textarea:focus {
  border-color: var(--primary);
}


/* Footer */
footer { border-top: 1px solid var(--border); padding: 6rem 0 2rem; margin-top: 4rem; background: rgba(0,0,0,0.02); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 4rem; margin-bottom: 4rem; }

.brand-desc { color: var(--text-muted); margin: 1.5rem 0 2rem; font-size: 1.05rem; max-width: 90%; }
.social-links { display: flex; gap: 1rem; }
.social-links a { width: 45px; height: 45px; border-radius: 50%; background: var(--surface); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; color: var(--text-main); transition: var(--transition); }
.social-links a:hover { background: var(--primary); border-color: var(--primary); color: #fff; transform: translateY(-3px); }

.footer-links h4 { font-size: 1.2rem; margin-bottom: 1.5rem; font-weight: 700; color: var(--text-main); }
.footer-links ul li { margin-bottom: 1rem; }
.footer-links ul li a { color: var(--text-muted); font-size: 1.05rem; }
.footer-links ul li a:hover { color: var(--primary); padding-left: 5px; }

.footer-newsletter h4 { font-size: 1.2rem; margin-bottom: 0.5rem; font-weight: 700; }
.footer-newsletter p { color: var(--text-muted); margin-bottom: 1.5rem; }
.newsletter-form { display: flex; background: var(--surface); border: 1px solid var(--border); border-radius: 12px; padding: 4px; }
.newsletter-form input { flex: 1; background: transparent; border: none; padding: 0 1rem; color: var(--text-main); font-family: inherit; font-size: 1rem; outline: none; }
.newsletter-form button { width: 45px; height: 45px; border-radius: 10px; background: var(--primary); color: #fff; border: none; cursor: pointer; transition: var(--transition); display: flex; align-items: center; justify-content: center; }
.newsletter-form button:hover { background: var(--primary-hover); }

.footer-bottom { border-top: 1px solid var(--border); padding-top: 2rem; display: flex; justify-content: space-between; align-items: center; color: var(--text-muted); font-size: 0.95rem; }
.bottom-links { display: flex; gap: 2rem; }
.bottom-links a:hover { color: var(--text-main); }

@keyframes spin { 100% { transform: rotate(360deg); } }

/* Responsive adjustments */
@media (max-width: 1200px) {
  .hero-container { grid-template-columns: 1fr; text-align: center; }
  .hero-visual { display: none; }
  .hero-content h1 { font-size: 4.5rem; }
  .hero-lead { margin: 0 auto 3rem; }
  .hero-btns, .hero-stats { justify-content: center; }
  .bento-grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: auto; }
  .masonry-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
  .push-down { margin-top: 0; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .shop-layout { flex-direction: column; }
  .shop-sidebar { width: 100%; }
  .nav-links { gap: 1.5rem; }
  .navbar { padding: 0.5rem 1rem; }
}

/* Base mobile components (Hidden on Desktop) */
.mobile-menu-btn { display: none !important; }
.frontend-sidebar, .frontend-overlay { display: none !important; }

@media (max-width: 768px) {
  /* Mobile Sidebar Navigation */
  .nav-links { display: none !important; }
  body { padding-bottom: 0; }
  .footer-bottom { padding-bottom: 2rem; }

  /* Hamburger Button */
  .mobile-menu-btn {
    display: flex !important; background: transparent; border: 1px solid var(--border);
    color: var(--text-main); border-radius: 50%; width: 45px; height: 45px;
    align-items: center; justify-content: center; font-size: 1.1rem; cursor: pointer;
  }

  /* Frontend Sidebar Transitioning Panel */
  .frontend-sidebar {
    display: flex !important;
    position: fixed; top: 0; left: -100%; width: 280px; height: 100vh;
    background: var(--bg-color); border-right: 1px solid var(--border);
    z-index: 10001; transition: left 0.4s cubic-bezier(0.16, 1, 0.3, 1); 
    flex-direction: column;
  }
  .frontend-overlay {
    display: block !important;
  }
  .frontend-sidebar.open { left: 0; }
  .frontend-sidebar .sidebar-logo {
    padding: 1.5rem; border-bottom: 1px solid var(--border);
    display: flex; justify-content: space-between; align-items: center;
  }
  .frontend-sidebar .sidebar-logo img { height: 35px; }
  .frontend-sidebar .sidebar-close {
    background: none; border: none; color: var(--text-muted); font-size: 1.5rem; cursor: pointer;
  }
  .frontend-sidebar .sidebar-links { padding: 1.5rem; display: flex; flex-direction: column; gap: 0.5rem; }
  .frontend-sidebar .sidebar-links a {
    padding: 1rem 1.25rem; border-radius: 12px; color: var(--text-main); 
    font-weight: 500; text-decoration: none; display: flex; align-items: center; gap: 1rem;
    font-size: 1.05rem; transition: background 0.2s;
  }
  .frontend-sidebar .sidebar-links a.active, .frontend-sidebar .sidebar-links a:hover {
    background: rgba(255,106,0,0.1); color: var(--primary);
  }

  /* Full screen overlay */
  .frontend-overlay {
    position: fixed; inset: 0; background: rgba(0,0,0,0.7); backdrop-filter: blur(4px);
    z-index: 10000; opacity: 0; pointer-events: none; transition: opacity 0.4s ease;
  }
  .frontend-overlay.open { opacity: 1; pointer-events: auto; }

  /* Header adjustments */
  .navbar { padding: 0.5rem 1.25rem; border-radius: 50px; }
  .brand-logo { height: 50px; }
  .nav-actions { gap: 0.75rem; }
  .nav-actions .btn { display: none; } /* Hide Get Quote btn in mobile header */
  .top-info-contact { display: none; }
  .top-info-hours { width: 100%; text-align: center; }

  /* Hero adjustments */
  .hero-content h1 { font-size: 2.2rem !important; }
  .hero-btns { flex-direction: column; }
  
  /* Grids and general layout */
  .bento-grid { grid-template-columns: 1fr; }
  .bento-large, .bento-wide { grid-column: span 1; }
  .masonry-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .categories-grid { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
  
  .footer-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
  .split-header { flex-direction: column; align-items: flex-start; gap: 1.5rem; }
  
  /* Forms and Contact */
  .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
  .contact-form { padding: 1.5rem; }
  .info-card { padding: 1.5rem; flex-direction: column; text-align: center; }
  
  /* Typography */
  h1 { font-size: 2rem !important; line-height: 1.2 !important; }
  h2 { font-size: 1.6rem !important; line-height: 1.25 !important; }
  .section { padding: 3rem 0; }
  .section-title { font-size: 1.6rem !important; letter-spacing: -0.5px; } /* Scaled down for mobile */
  .section-subtitle { font-size: 0.95rem !important; line-height: 1.5; }
  .page-header-simple { margin-bottom: 2rem; }
  .page-header-simple h1 { font-size: 2rem !important; }
  
  /* CTA sections */
  .advanced-cta { padding: 3rem 1rem; }
  .advanced-cta h2 { font-size: 1.8rem !important; }
  .cta-actions { flex-direction: column; }
  
  /* Centering bento icons */
  .bento-icon { margin-left: auto; margin-right: auto; }
  .bento-item { text-align: center; }
  .bento-item h3, .bento-item h4 { text-align: center; }
  .bento-content-row { flex-direction: column; text-align: center; }
}

/* ============================================
   HERO ADVERT CAROUSEL
   ============================================ */
.hero-carousel-section {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
}
.hero-slides-wrapper { width: 100%; height: 100%; }
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.9s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  pointer-events: none;
}
.hero-slide.active { opacity: 1; pointer-events: auto; z-index: 1; }
.slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.35;
  transition: transform 8s ease;
  transform: scale(1.05);
}
.hero-slide.active .slide-bg { transform: scale(1); }
.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,0.78) 0%, rgba(0,0,0,0.35) 60%, transparent 100%);
}
.slide-content {
  position: relative;
  z-index: 2;
  max-width: 850px;
  padding-top: 100px;
  text-align: left;
  margin-left: 0;
}
.slide-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0.45rem 1.1rem;
  background: rgba(255,106,0,0.15);
  color: var(--primary);
  border: 1px solid rgba(255,106,0,0.3);
  border-radius: 100px;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  animation: fadeSlideUp 0.7s ease forwards;
}
.slide-title {
  font-size: 4.5rem;
  font-weight: 800;
  line-height: 1.08;
  color: #fff;
  letter-spacing: -2px;
  margin-bottom: 1.25rem;
  animation: fadeSlideUp 0.7s 0.1s ease both;
}
.slide-title .highlight { color: var(--primary); }
.slide-desc {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.78);
  max-width: 600px;
  line-height: 1.75;
  margin-bottom: 1.5rem;
  animation: fadeSlideUp 0.7s 0.2s ease both;
}
.slide-price {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 2rem;
  letter-spacing: -1px;
  animation: fadeSlideUp 0.7s 0.25s ease both;
}
.slide-stats {
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
  animation: fadeSlideUp 0.7s 0.3s ease both;
}
.slide-stat { display: flex; flex-direction: column; }
.slide-actions {
  display: flex;
  gap: 1.25rem;
  animation: fadeSlideUp 0.7s 0.35s ease both;
}
.slide-actions .btn-outline { color: #fff; border-color: rgba(255,255,255,0.4); }
.slide-actions .btn-outline:hover { background: rgba(255,255,255,0.1); border-color: #fff; }

@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-prev, .hero-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: #fff;
  width: 52px; height: 52px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.1rem;
  transition: background 0.3s ease, transform 0.3s ease;
  backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
}
.hero-prev { left: 2rem; }
.hero-next { right: 2rem; }
.hero-prev:hover, .hero-next:hover {
  background: var(--primary);
  border-color: var(--primary);
  transform: translateY(-50%) scale(1.1);
}

.hero-dots {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 10px;
}
.hero-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
}
.hero-dot.active { background: var(--primary); transform: scale(1.4); }

/* Social Share Buttons */
.share-buttons {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}
.share-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 0.55rem 1rem;
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  color: #fff;
}
.share-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(0,0,0,0.3); }
.share-whatsapp  { background: #25D366; }
.share-facebook  { background: #1877F2; }
.share-twitter   { background: #1DA1F2; }
.share-tiktok    { background: #000; border: 1px solid #444; }
.share-instagram { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.share-copy      { background: rgba(255,106,0,0.15); color: var(--primary); border: 1px solid rgba(255,106,0,0.3); }

@media (max-width: 768px) {
  .slide-title { font-size: 2.5rem; letter-spacing: -1px; }
  .slide-desc  { font-size: 1rem; }
  .slide-stats { gap: 1.5rem; }
  .slide-actions { flex-direction: column; }
  .hero-carousel-section { height: 100svh; }
  .hero-prev, .hero-next {
    top: auto;
    bottom: 1.5rem;
    transform: none;
    width: 42px; height: 42px;
  }
  .hero-prev { left: 1rem; }
  .hero-next { right: 1rem; }
}

/* --- Page Preloader --- */
.preloader {
  position: fixed;
  inset: 0;
  background: #050507;
  z-index: 99999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.8s;
}

.preloader.fade-out {
  opacity: 0;
  visibility: hidden;
}

.preloader-logo-wrapper {
  position: relative;
  width: 180px;
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
}

.preloader-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  animation: logoPulse 2s infinite ease-in-out;
}

.preloader-glow {
  position: absolute;
  width: 140%;
  height: 140%;
  background: radial-gradient(circle, rgba(255, 106, 0, 0.15) 0%, transparent 70%);
  animation: glowPulse 2s infinite ease-in-out;
}

.preloader-bar {
  width: 150px;
  height: 2px;
  background: rgba(255,255,255,0.1);
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}

.preloader-bar::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: #ff6a00;
  animation: barProgress 1.5s infinite ease-in-out;
}

@keyframes logoPulse {
  0%, 100% { transform: scale(0.95); filter: brightness(0.8); }
  50% { transform: scale(1.05); filter: brightness(1.2); }
}

@keyframes glowPulse {
  0%, 100% { opacity: 0.3; transform: scale(0.8); }
  50% { opacity: 1; transform: scale(1.1); }
}

@keyframes barProgress {
  0% { left: -100%; }
  50% { left: 0; }
  100% { left: 100%; }
}