:root {
  --gold: #D4A017;
  --gold-light: #F0C040;
  --gold-dark: #9A7410;
  --black: #0A0A0A;
  --black2: #111111;
  --black3: #1A1A1A;
  --black4: #222222;
  --white: #F5F5F5;
  --red: #C0392B;
  --gray: #888888;
  --gray-light: #CCCCCC;
  --font-display: 'Bebas Neue', sans-serif;
  --font-body: 'Rajdhani', sans-serif;
  --font-head: 'Barlow Condensed', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { 
  scroll-padding-top: 130px;
}
body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  overflow-x: hidden;
}

.seo-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ─── SCROLLBAR ─── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--black2); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

/* ─── TOPBAR ─── */
.topbar {
  background: var(--gold);
  color: var(--black);
  text-align: center;
  padding: 8px 20px;
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
}
.topbar a { color: var(--black); text-decoration: none; font-weight: 700; }

/* ─── NAVBAR ─── */
nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(10,10,10,0.97);
  backdrop-filter: blur(10px);
  border-bottom: 2px solid var(--gold-dark);
  padding: 0 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px; /* Standardize Desktop height */
}

/* New Responsive Header Classes */
.nav-brand-container {
  display: flex;
  align-items: center;
  gap: 25px;
}

.founder-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--black);
  border: 2px solid var(--gold);
  padding: 4px 12px 4px 4px;
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.3s;
  flex-shrink: 0;
}
.founder-pill:hover { transform: scale(1.03); }

.founder-img-container {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--gold);
  flex-shrink: 0;
}
.founder-img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.founder-text-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.founder-sub {
  font-family: var(--font-head);
  font-size: 9px;
  color: var(--gray-light);
  letter-spacing: 1px;
  text-transform: uppercase;
  line-height: 1.2;
}
.founder-name {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 1px;
  text-transform: uppercase;
  line-height: 1.2;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  border-left: 1px solid #333;
  padding-left: 25px;
}
.nav-logo-img {
  width: 45px;
  height: 45px;
  object-fit: contain;
  border-radius: 4px;
  flex-shrink: 0;
}
.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.nav-logo-text .brand {
  font-family: var(--font-display);
  font-size: 26px;
  color: var(--gold);
  letter-spacing: 2px;
}
.nav-logo-text .tagline {
  font-family: var(--font-head);
  font-size: 9px;
  letter-spacing: 3px;
  color: var(--gray);
  text-transform: uppercase;
}

/* Mobile Fixes for Header */
@media (max-width: 600px) {
  nav {
    height: auto;
    min-height: 80px;
    padding: 10px 3%;
  }
  .nav-brand-container {
    gap: 10px;
    width: 100%;
    justify-content: flex-start;
  }
  .founder-pill {
    padding: 3px 10px 3px 3px;
  }
  .founder-pill .founder-img-container {
    width: 28px;
    height: 28px;
  }
  .founder-pill .founder-text-container {
    display: flex; /* Restored text */
  }
  .founder-pill .founder-sub {
    font-size: 7px;
  }
  .founder-pill .founder-name {
    font-size: 9px;
  }
  .nav-logo {
    padding-left: 10px;
    gap: 6px;
    border-left: none;
  }
  .nav-logo-img {
    width: 35px;
    height: 35px;
  }
  .nav-logo-text .brand {
    font-size: 16px; /* Aggressive shrink to prevent overlap */
    letter-spacing: 1px;
  }
  .nav-logo-text .tagline {
    font-size: 7px;
    letter-spacing: 1px;
  }
  
  .mobile-quick-nav {
    top: 0; /* Let it flow in normal stack if nav is auto height */
    position: sticky;
    top: 80px;
  }
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  list-style: none;
}
.nav-links a {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
  text-decoration: none;
  transition: color 0.2s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width 0.3s;
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  background: var(--gold);
  color: var(--black) !important;
  padding: 10px 22px;
  border-radius: 2px;
  font-weight: 800 !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--gold-light) !important; color: var(--black) !important; }

/* ─── DROPDOWN MENU ─── */
.dropdown {
  position: relative;
  display: flex;
  align-items: center;
}
.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--black2);
  min-width: 220px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.5);
  border: 1px solid var(--gold);
  list-style: none;
  flex-direction: column;
  padding: 0;
  margin: 0;
  max-height: 75vh;
  overflow-y: auto;
}
.dropdown-menu::-webkit-scrollbar { width: 4px; }
.dropdown-menu::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 4px; }
.dropdown:hover .dropdown-menu { display: flex; }
.dropdown-menu li {
  padding: 10px 0;
  border-bottom: 1px solid var(--black4);
  display: flex;
  flex-direction: column;
  transition: background 0.2s;
}
.dropdown-menu li:last-child { border-bottom: none; }
.category-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 20px;
  cursor: pointer;
}
.dropdown-menu li a {
  text-decoration: none;
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 2px;
  text-transform: uppercase;
}
.dropdown-menu li a::after { display: none; }
.dropdown-menu li:hover .category-row a { color: var(--gold); }
.submenu-toggle {
  color: var(--gold);
  font-size: 18px;
  font-weight: bold;
  width: 30px;
  text-align: center;
  transition: transform 0.3s;
}
.submenu {
  display: none;
  list-style: none;
  padding: 10px 0 10px 30px;
  background: var(--black3);
}
.submenu li { padding: 8px 0; border: none; }
.submenu li a {
  font-size: 12px;
  letter-spacing: 1px;
  color: var(--gray-light);
  text-transform: none;
}
.submenu li a:hover { color: var(--gold); }
.has-submenu.active .submenu { display: block !important; }
.has-submenu.active .submenu-toggle { transform: rotate(45deg); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 5px;
}
.hamburger span {
  display: block;
  width: 26px; height: 2px;
  background: var(--gold);
  transition: 0.3s;
}
.mobile-menu {
  display: none;
  position: fixed;
  top: 80px; /* Aligned with new standard header height */
  left: 0; right: 0;
  background: var(--black2);
  border-top: 1px solid var(--gold-dark);
  z-index: 1001;
  padding: 20px 5%;
  flex-direction: column;
  gap: 15px;
  max-height: calc(100vh - 80px);
  overflow-y: auto;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  text-decoration: none;
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 8px 0;
  border-bottom: 1px solid var(--black4);
  transition: color 0.3s;
}
.mobile-menu a.active {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

/* Nested Mobile Menu Specifics */
.mobile-dropdown-container {
  border-bottom: 1px solid var(--black4);
}
.mobile-dropdown-container .mobile-category {
  padding: 8px 0;
}
.mobile-dropdown-container .mobile-category span {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.mobile-category {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.has-submenu .submenu {
  display: none;
  list-style: none;
  padding: 5px 0 10px 20px; /* Indent for hierarchy */
  background: rgba(255,255,255,0.02);
}

.has-submenu.active > .submenu {
  display: block !important;
}

.submenu li a {
  font-size: 15px !important;
  color: var(--gray-light) !important;
  letter-spacing: 1px !important;
  border-bottom: none !important;
  padding: 5px 0 !important;
  display: block;
}

/* Ensure secondary level also works */
.submenu .has-submenu .mobile-category span {
  font-size: 15px;
  color: var(--gold);
}

/* --- MOBILE QUICK NAV --- */
.mobile-quick-nav {
  display: none; /* Hidden on desktop */
  background: var(--black2);
  border-bottom: 1px solid var(--gold-dark);
  padding: 12px 10px;
  justify-content: space-around;
  align-items: center;
  position: sticky;
  top: 80px; /* Right below the main nav */
  z-index: 998;
}

.mobile-quick-nav a {
  color: var(--white);
  text-decoration: none;
  font-family: var(--font-head);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  transition: color 0.3s;
}

.mobile-quick-nav a:hover,
.mobile-quick-nav a.active {
  color: var(--gold);
}
.mobile-quick-nav a.active {
  border-bottom: 2px solid var(--gold);
  padding-bottom: 2px;
}

@media (max-width: 1024px) {
  .mobile-quick-nav {
    display: flex;
  }
}

.mobile-category {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
}

/* ─── SECTION COMMONS ─── */
section { padding: 90px 5%; }
.section-label {
  font-family: var(--font-head);
  font-size: 11px;
  letter-spacing: 5px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 10px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 6vw, 72px);
  line-height: 1;
  margin-bottom: 16px;
}
.section-title span { color: var(--gold); }
.section-desc {
  font-family: var(--font-body);
  font-size: 17px;
  color: var(--gray-light);
  line-height: 1.7;
  max-width: 700px;
}
.gold-line {
  width: 60px;
  height: 3px;
  background: var(--gold);
  margin: 20px 0 50px;
}

/* ─── PRODUCTS HEADER ─── */
.products-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
}
.products-header .section-title {
  margin-bottom: 20px;
}
.products-header .section-desc {
  margin: 0 auto;
}

/* ─── FOOTER ─── */
footer {
  background: var(--black);
  padding: 90px 5% 40px;
  border-top: 1px solid var(--black4);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}
.footer-brand .brand-name {
  font-family: var(--font-display);
  font-size: 32px;
  color: var(--gold);
  letter-spacing: 2px;
  margin-bottom: 8px;
}
.footer-brand .tagline-sub {
  font-family: var(--font-head);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 24px;
}
.footer-brand p {
  font-family: var(--font-body);
  color: var(--gray-light);
  line-height: 1.7;
  max-width: 400px;
}
.footer-col h4 {
  font-family: var(--font-head);
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 30px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 14px; }
.footer-col ul li a {
  font-family: var(--font-head);
  font-size: 13px;
  color: var(--gray-light);
  text-decoration: none;
  transition: color 0.2s;
  letter-spacing: 1px;
}
.footer-col ul li a:hover { color: var(--gold); }
.footer-bottom {
  padding-top: 40px;
  border-top: 1px solid var(--black4);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}
.footer-bottom p {
  font-family: var(--font-head);
  font-size: 12px;
  color: var(--gray);
  letter-spacing: 1px;
}
.footer-bottom p span { color: var(--gold); }

/* ─── MODALS ─── */
.modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0,0,0,0.9);
  backdrop-filter: blur(10px);
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.modal-content {
  background: var(--black2);
  border: 1px solid var(--gold-dark);
  padding: 50px 40px;
  width: 100%;
  max-width: 500px;
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
}
.modal-content h2 {
  font-family: var(--font-display);
  font-size: 32px;
  color: var(--gold);
  margin-bottom: 24px;
  letter-spacing: 1px;
}
.close-btn {
  position: absolute;
  top: 20px; right: 20px;
  font-size: 28px;
  color: var(--gray);
  cursor: pointer;
  transition: color 0.2s;
}
.close-btn:hover { color: var(--white); }
body.modal-open { overflow: hidden; }

/* ─── FORMS ─── */
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--gray);
  text-transform: uppercase;
  margin-bottom: 8px;
}
.modal-content input, .modal-content textarea,
#quoteForm input, #quoteForm select, #quoteForm textarea {
  width: 100%;
  background: var(--black);
  border: 1px solid var(--black4);
  padding: 14px 18px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--white);
  border-radius: 2px;
  transition: border-color 0.2s;
}
.modal-content input:focus, .modal-content textarea:focus {
  border-color: var(--gold);
  outline: none;
}
.modal-content button[type="submit"] {
  width: 100%;
  background: var(--gold);
  color: var(--black);
  border: none;
  padding: 16px;
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s;
}
.modal-content button[type="submit"]:hover { background: var(--gold-light); }

/* ─── STICKY SIDE SOCIAL BAR ─── */
.side-social-bar {
  position: fixed;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 1500;
}

.side-social-item {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
  position: relative;
}

.side-social-item svg {
  width: 28px;
  height: 28px;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
}

.side-social-item:hover {
  transform: translateX(-8px) scale(1.1);
  box-shadow: 0 8px 25px rgba(0,0,0,0.4);
}

/* Tooltip/Label on hover */
.side-social-item::before {
  content: attr(data-label);
  position: absolute;
  right: 100%;
  top: 50%;
  transform: translateY(-50%) translateX(10px);
  background: #333;
  color: white;
  padding: 6px 12px;
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  border-radius: 4px;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
  white-space: nowrap;
  margin-right: 15px;
}

.side-social-item:hover::before {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

/* Real Logo Backgrounds */
.side-social-item.instagram {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}
.side-social-item.youtube {
  background: #FFFFFF; /* YouTube usually sits on white or its own red shape */
  border: 1px solid #eee;
}

@media (max-width: 600px) {
  .side-social-bar {
    right: 10px;
  }
  .side-social-item {
    width: 44px;
    height: 44px;
  }
  .side-social-item svg {
    width: 24px;
    height: 24px;
  }
}

@media (max-width: 900px) {
  nav { padding: 0 5%; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
}
