/* ==========================================================================
   STRICT MONOCHROMATIC DARK THEME (Black, White, Grey)
   ========================================================================== */
:root {
  --bg-main: #050505;
  --bg-card: #0f0f0f;
  --text-main: #ffffff;
  --text-muted: #888888;
  --accent-color: #ffffff;
  --border-color: #222222;
  --shadow-soft: 0 10px 40px rgba(0, 0, 0, 0.5);
  --shadow-card: 0 4px 15px rgba(0, 0, 0, 0.4);
  --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
}

body {
  background-color: var(--bg-main) !important;
  color: var(--text-main) !important;
  font-family: var(--font-sans) !important;
}

/* Typography Overrides */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-sans) !important;
  color: var(--text-main) !important;
  font-weight: 600;
  letter-spacing: -0.02em;
}

/* Header Override */
.mars-header {
  background: rgba(5, 5, 5, 0.95) !important;
  border-bottom: 1px solid var(--border-color);
  box-shadow: none !important;
  z-index: 9999 !important;
}
.mars-header .navbar-brand span {
  color: #ffffff !important;
}
.mars-header .navbar-brand img {
  filter: invert(0); /* Keep white logo white */
}

/* Dark Hero Section */

.hero-bright {
  padding-top: 140px;
  padding-bottom: 0px;
  background: var(--bg-main);
  
  display: flex;
  align-items: center;
  position: relative;
  /* z-index removed for header clickability */
}
.hero-bright::after {
  content: '';
  position: absolute;
  top: -50%; left: -50%; right: -50%; bottom: -50%;
  background-image: radial-gradient(#333 1px, transparent 1px);
  background-size: 30px 30px;
  background-position: 0 0;
  z-index: -1;
  opacity: 0.3;
  animation: bgGridMove 30s linear infinite;
  pointer-events: none;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 100%);
  -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 100%);
}
@keyframes bgGridMove {
  0% { transform: translateY(0); }
  100% { transform: translateY(30px); }
}


.hero-subtitle {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  font-weight: 700;
  margin-bottom: 1rem;
  display: block;
}

.hero-title-main {
  font-size: clamp(3rem, 5vw, 4.5rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--text-main);
  margin-bottom: 1.5rem;
}
.hero-title-main .text-white {
  color: var(--text-main) !important;
}

.hero-desc-main {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 500px;
  line-height: 1.6;
  margin-bottom: 2.5rem;
}

.hero-features-row {
  display: flex;
  gap: 2rem;
  margin-bottom: 3rem;
}
.hero-feat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
}
.hero-feat-icon {
  width: 48px;
  height: 48px;
  background: var(--bg-card);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border-color);
}
.hero-feat-icon img {
  width: 24px;
  height: 24px;
  filter: brightness(0) invert(1); /* Make icons white */
}
.hero-feat-text {
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--text-main);
}
.hero-feat-sub {
  font-size: 0.65rem;
  color: var(--text-muted);
}

.btn-dark-pill {
  background: #ffffff;
  color: #000000;
  border-radius: 8px;
  padding: 12px 28px;
  font-size: 0.95rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  transition: all 0.3s ease;
}
.btn-dark-pill:hover {
  background: #cccccc;
  color: #000000;
  transform: translateY(-2px);
}

/* 3D Carousel Stage on Dark */
.bright-stage {
  position: relative;
  width: 100%;
  height: 600px;
}
.bright-stage::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, rgba(0,0,0,0) 70%);
  z-index: 0;
}
.bright-stage .premium-slide {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  opacity: 0;
  visibility: hidden;
  transform: scale(0.96) translateY(20px);
  transition: opacity 1.5s cubic-bezier(0.2, 0.8, 0.2, 1), transform 1.5s cubic-bezier(0.2, 0.8, 0.2, 1), visibility 1.5s;
  display: flex;
  align-items: center;
  justify-content: center;
  /* z-index removed for header clickability */
}
.bright-stage .premium-slide.active {
  opacity: 1;
  visibility: visible;
  transform: scale(1) translateY(0);
  z-index: 2;
}

.bright-stage .premium-cutaway-img {
  width: 100%;
  max-width: 650px;
  height: 450px;
  object-fit: contain;
  margin: 0 auto;
  display: block;
  filter: drop-shadow(0 30px 40px rgba(0,0,0,0.8));
  animation: softFloat 6s ease-in-out infinite;
}
@keyframes softFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}


/* Clean Hotspots - Monochromatic */
.bright-stage .anatomy-hotspot {
  position: absolute;
  z-index: 15;
  width: 24px;
  height: 24px;
  transform: translate(-50%, -50%);
  cursor: pointer;
}
.bright-stage .hotspot-core-dot {
  width: 10px; height: 10px;
  background: #ffffff;
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(0,0,0,0.8);
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.3s ease;
}
.bright-stage .hotspot-pulse-ring {
  width: 30px; height: 30px;
  border: 1.5px solid rgba(255,255,255,0.5);
  border-radius: 50%;
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  animation: brightPulse 2s infinite ease-out;
}
@keyframes brightPulse {
  0% { transform: translate(-50%, -50%) scale(0.5); opacity: 1; }
  100% { transform: translate(-50%, -50%) scale(2); opacity: 0; }
}
.bright-stage .anatomy-hotspot:hover .hotspot-core-dot {
  transform: translate(-50%, -50%) scale(1.3);
  background: #cccccc;
}

/* Hover Info Card */
.bright-floating-card {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: rgba(15,15,15,0.9);
  backdrop-filter: blur(10px);
  padding: 15px 20px;
  border-radius: 12px;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  gap: 15px;
  z-index: 20;
}
.bfc-img {
  width: 50px;
  height: 50px;
  object-fit: contain;
  background: #1a1a1a;
  border-radius: 8px;
  padding: 5px;
}
.bfc-info h4 {
  font-size: 0.85rem;
  margin: 0;
  color: var(--text-main);
}
.bfc-info p {
  font-size: 0.7rem;
  margin: 0;
  color: var(--text-muted);
}
.bfc-link {
  font-size: 0.65rem;
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 5px;
}
.bfc-dots {
  position: absolute;
  bottom: -20px;
  right: 20px;
  display: flex;
  gap: 6px;
}
.bfc-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #444;
  cursor: pointer;
  transition: all 0.3s ease;
}
.bfc-dot.active {
  background: #ffffff;
}

/* Sections Global */
.bright-section {
  padding: 80px 0;
  background: var(--bg-main);
}
.bright-section-title {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 40px;
}
.bst-left span {
  font-size: 0.65rem;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 700;
  letter-spacing: 0.1em;
  display: block;
  margin-bottom: 10px;
}
.bst-left h2 {
  font-size: 2.2rem;
  margin: 0;
  max-width: 400px;
  line-height: 1.2;
}
.bst-right a {
  font-size: 0.9rem;
  color: var(--text-main);
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

/* Categories Grid */
.category-card {
  position: relative;
  background: var(--bg-card);
  border-radius: 20px;
  padding: 0;
  text-align: left;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border-color);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  height: 280px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.category-card:hover {
  transform: translateY(-10px);
  border-color: #555;
  box-shadow: 0 20px 40px rgba(0,0,0,0.8);
}
.category-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  filter: brightness(0.7);
}
.category-card:hover img {
  transform: scale(1.1);
  filter: brightness(0.9);
}
.category-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 25px;
  background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
}
.category-card h3 {
  font-size: 1.2rem;
  margin-bottom: 5px;
  color: #fff;
}
.category-card a {
  font-size: 0.8rem;
  color: #ccc;
  text-decoration: none;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 5px;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s ease;
}
.category-card:hover a {
  opacity: 1;
  transform: translateY(0);
}

/* Middle Features Banner */
.features-banner {
  background: #0a0a0a;
  padding: 40px 0;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}
.fb-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}
.fb-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
}
.fb-icon {
  width: 40px;
  height: 40px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}
.fb-item h4 {
  font-size: 0.85rem;
  margin: 0;
  color: var(--text-main);
}
.fb-item p {
  font-size: 0.65rem;
  color: var(--text-muted);
  margin: 0;
}

/* Best Sellers */
.product-card {
  background: var(--bg-main);
  border-radius: 12px;
  padding: 15px;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}
.product-card:hover {
  background: var(--bg-card);
  border-color: var(--border-color);
  box-shadow: var(--shadow-card);
}
.product-card img {
  width: 100%;
  height: 200px;
  object-fit: contain;
  margin-bottom: 15px;
  background: #111111;
  border-radius: 8px;
  padding: 20px;
}
.product-card h4 {
  font-size: 0.9rem;
  margin-bottom: 5px;
  color: var(--text-main);
}
.product-card .price {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: #cccccc;
}
.pc-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.pc-footer a {
  font-size: 0.65rem;
  color: var(--text-main);
  font-weight: 600;
  text-decoration: none;
}
.pc-cart-btn {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  background: #1a1a1a;
  color: var(--text-main);
  transition: all 0.2s;
}
.pc-cart-btn:hover {
  background: #ffffff;
  color: #000000;
}



/* Inspiration Inline Row */
.inspire-inline-row {
  display: grid;
  grid-template-columns: 1fr repeat(3, 1.2fr);
  gap: 20px;
  align-items: stretch;
}
.ii-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding-right: 30px;
}
.ii-img-wrap {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  height: 450px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  border: 1px solid rgba(255,255,255,0.05);
}
.ii-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
  filter: brightness(0.85);
}
.ii-img-wrap:hover img {
  transform: scale(1.05);
  filter: brightness(1);
}

@media (max-width: 1200px) {
  .inspire-inline-row {
    grid-template-columns: 1fr repeat(3, 1fr);
  }
}
@media (max-width: 991px) {
  .inspire-inline-row {
    grid-template-columns: 1fr;
  }
  .ii-info {
    padding-right: 0;
    margin-bottom: 30px;
    align-items: center;
    text-align: center;
  }
}

/* Testimonial */
.testimonial-section {
  padding: 80px 0;
  background: #0a0a0a;
}
.testi-content {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  max-width: 800px;
}
.testi-quote-mark {
  font-size: 6rem;
  color: #333333;
  line-height: 1;
  font-family: Georgia, serif;
}
.testi-text h3 {
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.6;
  margin-bottom: 15px;
  color: #dddddd;
}
.testi-stars {
  color: #ffffff; /* Mono stars */
  font-size: 0.85rem;
  margin-bottom: 15px;
}
.testi-author strong {
  display: block;
  font-size: 0.9rem;
  color: #ffffff;
}
.testi-author span {
  font-size: 0.65rem;
  color: var(--text-muted);
}

/* Brands */
.brands-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 40px 0;
  border-bottom: 1px solid var(--border-color);
  opacity: 0.6;
}
.brands-row img {
  height: 40px;
  object-fit: contain;
  filter: grayscale(100%) brightness(200%); /* Make logos light grey */
}



/* Premium Footer Redesign */
.premium-footer {
  background: #000;
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 0 0 30px;
  color: #fff;
  position: relative;
  overflow: hidden;
}

/* Footer CTA Block */
.footer-cta {
  background: linear-gradient(135deg, #111 0%, #0a0a0a 100%);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 4px;
  padding: 60px 40px;
  text-align: center;
  transform: translateY(-50px); /* Overlap previous section */
  box-shadow: 0 20px 50px rgba(0,0,0,0.8);
  position: relative;
  z-index: 10;
}
.footer-cta h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 15px;
}
.footer-cta p {
  color: #999;
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto 30px;
}

/* Main Footer Row */
.footer-main-row {
  padding-top: 30px;
  padding-bottom: 60px;
}
.pf-brand p {
  color: #888;
  font-size: 0.9rem;
  line-height: 1.7;
  margin: 20px 0;
  max-width: 300px;
}
.pf-socials {
  display: flex;
  gap: 15px;
}
.pf-socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #111;
  color: #ccc;
  text-decoration: none;
  font-size: 1.1rem;
  border: 1px solid rgba(255,255,255,0.05);
  transition: all 0.3s ease;
}
.pf-socials a:hover {
  background: #fff;
  color: #000;
  transform: translateY(-3px);
}

.pf-links h4, .pf-newsletter h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 25px;
  color: #fff;
}
.pf-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.pf-links li {
  margin-bottom: 15px;
}
.pf-links a {
  color: #888;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}
.pf-links a:hover {
  color: #fff;
}

.pf-newsletter p {
  color: #888;
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 20px;
}
.pf-input-group {
  display: flex;
  background: #111;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.05);
  overflow: hidden;
  transition: border-color 0.3s ease;
}
.pf-input-group:focus-within {
  border-color: rgba(255,255,255,0.3);
}
.pf-input-group input {
  flex-grow: 1;
  background: transparent;
  border: none;
  padding: 15px 20px;
  color: #fff;
  font-size: 0.9rem;
  outline: none;
}
.pf-input-group button {
  background: #fff;
  color: #000;
  border: none;
  padding: 0 25px;
  font-size: 1.2rem;
  cursor: pointer;
  transition: background 0.3s ease;
}
.pf-input-group button:hover {
  background: #ddd;
}

/* Footer Bottom */
.footer-bottom {
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.05);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}
.footer-bottom p {
  margin: 0;
  color: #666;
  font-size: 0.85rem;
}
.fb-links {
  display: flex;
  gap: 20px;
}
.fb-links a {
  color: #666;
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.3s ease;
}
.fb-links a:hover {
  color: #fff;
}

@media (max-width: 991px) {
  .footer-cta { padding: 40px 20px; transform: translateY(-30px); }
  .pf-links, .pf-newsletter { margin-top: 40px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* Restored Categories Inline Row */
.categories-inline-row {
  display: grid;
  grid-template-columns: 2fr repeat(5, 1fr);
  gap: 20px;
  align-items: stretch;
}
.ci-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding-right: 20px;
}



@media (max-width: 1400px) {
  .categories-inline-row {
    grid-template-columns: 1.5fr repeat(5, 1fr);
    gap: 10px;
  }
}
@media (max-width: 1200px) {
  .categories-inline-row {
    grid-template-columns: 1fr repeat(3, 1fr);
  }
  .ci-info {
    grid-column: 1 / -1;
    margin-bottom: 20px;
    align-items: center;
    text-align: center;
    padding-right: 0;
  }
}
@media (max-width: 768px) {
  .categories-inline-row {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 500px) {
  .categories-inline-row {
    grid-template-columns: 1fr;
  }
}

/* Category Cards - Full Cover UI */
.soft-cat-card {
  position: relative;
  overflow: hidden;
  display: block;
  border-radius: 16px;
  text-decoration: none;
  transition: all 0.4s ease;
  height: 340px;
  border: 1px solid rgba(255,255,255,0.05);
  box-shadow: 0 10px 25px rgba(0,0,0,0.5);
  background: #000;
}
.soft-cat-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255,255,255,0.2);
  box-shadow: 0 15px 35px rgba(0,0,0,0.7);
}

.scc-img-wrap {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100%;
  height: 100%;
  /* z-index removed for header clickability */
}
.scc-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.soft-cat-card:hover .scc-img-wrap img {
  transform: scale(1.1);
}

.scc-info {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 40px 20px 20px;
  background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0) 100%);
  z-index: 2;
  text-align: left;
}
.scc-info h3 {
  font-size: 1.15rem;
  color: #fff;
  margin-bottom: 5px;
  font-weight: 700;
  text-shadow: 0 2px 4px rgba(0,0,0,0.8);
}
.scc-info span {
  font-size: 0.85rem;
  color: #ddd;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: all 0.3s ease;
}
.soft-cat-card:hover .scc-info span {
  color: #fff;
}

/* Premium Floating Badges */
.premium-badge {
  position: absolute;
  background: rgba(15,15,15,0.9);
  border: 1px solid rgba(182, 134, 99, 0.3);
  color: #fff;
  padding: 6px 12px;
  font-size: 0.65rem;
  border-radius: 4px;
  font-size: 0.85rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
  backdrop-filter: blur(10px);
  z-index: 10;
  box-shadow: 0 10px 25px rgba(0,0,0,0.8);
}
.premium-badge i {
  color: #b68663;
  font-size: 1.1rem;
}
.badge-1 { top: 15%; left: 0%; animation: softFloat 5s ease-in-out infinite; }
.badge-2 { top: 50%; right: -5%; animation: softFloat 6s ease-in-out infinite 1s; }
.badge-3 { bottom: 20%; left: 5%; animation: softFloat 7s ease-in-out infinite 2s; }

/* Adjusted Hero Title */
.hero-title-main {
  font-size: clamp(2.5rem, 4vw, 3.5rem) !important;
  line-height: 1.2 !important;
}

/* Soft Premium Left Info Block */
.soft-tag {
  display: inline-block;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  color: #ccc;
  padding: 6px 16px;
  border-radius: 4px;
  letter-spacing: 2px;
  font-size: 0.7rem;
  font-weight: 600;
  margin-bottom: 20px;
  text-transform: uppercase;
}
.soft-heading {
  font-size: 2.2rem;
  font-weight: 600;
  line-height: 1.3;
  margin: 0 0 25px 0;
  background: linear-gradient(135deg, #ffffff 0%, #888888 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.soft-text-btn {
  color: #b68663;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  border: 1px solid rgba(182, 134, 99, 0.3);
  border-radius: 4px;
  transition: all 0.4s ease;
  background: transparent;
}
.soft-text-btn:hover {
  background: rgba(182, 134, 99, 0.1);
  box-shadow: 0 10px 25px rgba(182, 134, 99, 0.2);
  transform: translateX(5px);
  color: #b68663;
}

/* About Section */
 .about-section {
  padding: 40px 0 80px;
  background: #080808; 
  position: relative;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-img-wrap {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.8);
  border: 1px solid rgba(255,255,255,0.05);
  aspect-ratio: 4/3;
}
.about-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
  /* z-index removed for header clickability */
}
.about-img-wrap:hover img {
  transform: scale(1.05);
}
.about-glow {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(135deg, rgba(182, 134, 99, 0.2) 0%, transparent 50%);
  pointer-events: none;
  z-index: 2;
}
.about-info p {
  color: #999;
  font-size: 1.15rem;
  line-height: 1.8;
  margin-bottom: 30px;
}
@media (max-width: 991px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
}

/* UPDATED ABOUT SECTION UI (GOLD THEME) */
.about-section {
  padding: 100px 0;
  background: #000; /* As requested, matching reference */
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 70px;
  align-items: center;
}

/* Left Images Wrapper */
.about-images-wrapper {
  display: flex;
  gap: 25px;
  height: 650px;
  position: relative;
}
.img-panel {
  border-radius: 8px;
  background-size: cover;
  background-repeat: no-repeat;
}
.panel-left {
  flex: 1.5;
  background-position: left center;
}
.panel-right {
  flex: 1;
  background-position: right center;
}
.satisfaction-card {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: #c39b6b; /* Gold */
  padding: 30px;
  border-radius: 8px 0 8px 8px;
  color: #fff;
  box-shadow: 0 15px 30px rgba(0,0,0,0.5);
  border: 4px solid #fff;
  z-index: 10;
  text-align: center;
}
.satisfaction-card h3 {
  font-size: 3rem;
  font-weight: 700;
  margin: 0 0 5px 0;
  color: #fff;
  line-height: 1;
}
.satisfaction-card h3 span {
  font-size: 1.5rem;
  vertical-align: super;
}
.satisfaction-card p {
  margin: 0;
  font-size: 1rem;
  font-weight: 500;
  color: #fff;
}

/* Right Info */
.gold-tag {
  display: block;
  color: #c39b6b;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 15px;
}
.gold-tag strong {
  color: #c39b6b;
}
.gold-heading {
  font-size: 2.8rem;
  color: #c39b6b;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 25px;
}
.about-desc {
  color: #bbb;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 30px;
}

.about-checks {
  list-style: none;
  padding: 0;
  margin: 0 0 40px 0;
}
.about-checks li {
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.about-checks li i {
  color: #fff;
  font-size: 1.2rem;
}

.about-stats-row {
  display: flex;
  flex-direction: column;
  gap: 30px;
  position: absolute;
  right: 15px;
  bottom: 0;
}

/* Positioning stats on the right side of checks like the reference */
.about-info {
  position: relative;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 15px;
}
.stat-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 700;
}
.gold-fill {
  background: #c39b6b;
  color: #fff;
}
.gold-outline {
  border: 2px solid #c39b6b;
  color: #fff;
}
.stat-text {
  color: #c39b6b;
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.4;
}

@media (max-width: 991px) {
  .about-grid {
    grid-template-columns: 1fr;
  }
  .about-stats-row {
    position: relative;
    flex-direction: row;
    right: auto;
  }
}

/* SOFT PREMIUM UI OVERRIDES FOR ABOUT */
.img-panel {
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
  transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.about-images-wrapper:hover .panel-left {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.6);
}
.about-images-wrapper:hover .panel-right {
  transform: translateY(-15px);
  box-shadow: 0 25px 45px rgba(0,0,0,0.6);
}

.satisfaction-card {
  background: rgba(195, 155, 107, 0.2); /* Soft glass gold */
  backdrop-filter: blur(15px);
  border: 1px solid rgba(195, 155, 107, 0.4);
  box-shadow: 0 20px 40px rgba(0,0,0,0.5);
  transition: transform 0.5s ease;
}
.about-images-wrapper:hover .satisfaction-card {
  transform: scale(1.05) rotate(-2deg);
}

.gold-heading {
  background: linear-gradient(135deg, #dfbc8f 0%, #a37946 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 10px 20px rgba(195, 155, 107, 0.1);
}

.stat-circle {
  transition: all 0.4s ease;
  box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}
.stat-item:hover .stat-circle {
  transform: scale(1.1) rotate(5deg);
}
.stat-circle.gold-fill {
  background: linear-gradient(135deg, #c39b6b, #a37946);
  border: none;
}
.stat-circle.gold-outline {
  border-color: rgba(195, 155, 107, 0.5);
  background: rgba(195, 155, 107, 0.05);
}

.about-checks li i {
  color: #c39b6b; /* Make checks gold instead of white for premium feel */
  text-shadow: 0 0 10px rgba(195, 155, 107, 0.4);
}
.about-checks li {
  color: #ccc;
  transition: transform 0.3s ease;
}
.about-checks li:hover {
  transform: translateX(8px);
  color: #fff;
}

/* ABOUT FIXES */
.stat-circle {
  flex-shrink: 0; /* Prevents squashing to an oval */
  width: 90px;
  height: 90px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 700;
  transition: all 0.4s ease;
  box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}
.stat-text {
  font-size: 1rem;
}

.satisfaction-card {
  position: absolute;
  bottom: 10%;
  left: -5%;
  background: rgba(195, 155, 107, 0.4);
  backdrop-filter: blur(20px);
  padding: 30px 40px;
  border-radius: 30px 30px 0 30px; /* Reference shape */
  color: #fff;
  box-shadow: 0 20px 40px rgba(0,0,0,0.6);
  border: 1px solid rgba(255,255,255,0.4);
  z-index: 10;
  text-align: center;
  min-width: 200px;
}
@media (max-width: 768px) {
  .satisfaction-card {
    left: 50%;
    transform: translateX(-50%);
    bottom: -30px;
  }
  .about-images-wrapper:hover .satisfaction-card {
    transform: translateX(-50%) scale(1.05) rotate(-2deg);
  }
}

/* NEW STATS LAYOUT & CIRCLE DRAW ANIMATION */
.about-stats-row {
  position: static !important; /* Override absolute */
  display: flex !important;
  flex-direction: row !important;
  gap: 40px !important;
  margin-top: 30px;
}
.stat-item {
  display: flex;
  align-items: center;
  gap: 15px;
}
.stat-circle-svg {
  position: relative;
  width: 85px;
  height: 85px;
  flex-shrink: 0;
  border-radius: 50%;
  box-shadow: 0 10px 20px rgba(0,0,0,0.4);
  background: rgba(195, 155, 107, 0.05); /* Very slight tint */
}
.stat-circle-svg svg {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  transform: rotate(-90deg); /* Start drawing from 12 o'clock */
}
.circle-track {
  fill: none;
  stroke: rgba(195, 155, 107, 0.15);
  stroke-width: 3;
}
.circle-progress {
  fill: none;
  stroke: #c39b6b;
  stroke-width: 4;
  stroke-linecap: round;
  stroke-dasharray: 289; /* 2 * pi * 46 = 289 */
  stroke-dashoffset: 289; /* Start completely empty */
}
.circle-inner-text {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.3rem;
  font-weight: 700;
  text-shadow: 0 5px 10px rgba(0,0,0,0.5);
}

/* 5 STATS BLUE/WHITE THEME OVERRIDES */
.theme-tag {
  display: block;
  color: #b68663;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 15px;
}
.theme-tag strong {
  color: #b68663;
}
.theme-heading {
  font-size: 2.8rem;
  color: #ffffff;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 25px;
}
.text-blue {
  color: #b68663;
}

/* Adjust checks color */
.about-checks li i {
  color: #b68663 !important;
  text-shadow: 0 0 10px rgba(182, 134, 99, 0.4) !important;
}

/* Make stats row wrap and items smaller */
.about-stats-row {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: wrap !important;
  gap: 20px 30px !important;
  margin-top: 30px;
}
.stat-item {
  gap: 10px !important;
  min-width: 140px;
}
.stat-circle-svg {
  width: 65px !important;
  height: 65px !important;
  background: rgba(182, 134, 99, 0.05) !important;
}
.circle-track {
  stroke: rgba(255, 255, 255, 0.1) !important;
}
.circle-progress {
  stroke: #b68663 !important;
}
.circle-inner-text {
  font-size: 1.1rem !important;
}
.circle-inner-text span {
  font-size: 0.7rem !important;
}
.stat-text {
  font-size: 0.85rem !important;
  color: #fff !important;
}

/* STRICT SINGLE ROW STATS */
.about-stats-row {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important; /* NO WRAPPING, STRICT ONE ROW */
  justify-content: space-between !important;
  align-items: flex-start !important;
  gap: 10px !important;
  margin-top: 40px !important;
  width: 100% !important;
}

.stat-item {
  display: flex !important;
  flex-direction: column !important; /* Circle on top, text on bottom */
  align-items: center !important;
  justify-content: flex-start !important;
  text-align: center !important;
  gap: 12px !important;
  min-width: 0 !important; /* Allow shrinking */
  flex: 1 1 0 !important; /* Equal widths */
}

.stat-circle-svg {
  width: 70px !important;
  height: 70px !important;
  margin: 0 auto !important;
}

.stat-text {
  font-size: 0.8rem !important;
  line-height: 1.3 !important;
  word-break: keep-all; /* Try to keep words together if possible */
}

.circle-inner-text {
  font-size: 1.2rem !important;
}
.circle-inner-text span {
  font-size: 0.8rem !important;
}

/* Premium Features Marquee */
.features-marquee-section {
  padding: 80px 0 60px 0;
  background: #030303;
  border-top: 1px solid rgba(255,255,255,0.05);
  position: relative;
  overflow: hidden;
}
.marquee-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
}
/* Fading edges */
.marquee-wrapper::before,
.marquee-wrapper::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 15vw;
  z-index: 5;
  pointer-events: none;
}
.marquee-wrapper::before {
  left: 0;
  background: linear-gradient(to right, #030303 0%, transparent 100%);
}
.marquee-wrapper::after {
  right: 0;
  background: linear-gradient(to left, #030303 0%, transparent 100%);
}

.marquee-container {
  display: flex;
  width: max-content;
  animation: scrollMarquee 45s linear infinite;
}
.marquee-container:hover {
  animation-play-state: paused;
}

@keyframes scrollMarquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.feature-item {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 20px;
  padding: 15px 30px;
  margin: 0 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  transition: all 0.4s ease;
  min-width: 220px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}
.feature-item:hover {
  background: rgba(182, 134, 99, 0.05);
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(182, 134, 99, 0.15);
  border-color: rgba(182, 134, 99, 0.4);
}
.feature-item img {
  height: 45px;
  object-fit: contain;
  transition: transform 0.4s ease;
}
.feature-item:hover img {
  transform: scale(1.1) rotate(5deg);
}
.feature-label {
  color: #ddd;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  white-space: nowrap;
}
.feature-item:hover .feature-label {
  color: #fff;
}

/* ULTRA-PREMIUM PILL MARQUEE */
.features-marquee-section {
  padding: 100px 0;
  background: radial-gradient(circle at center, #0a0a0a 0%, #000 100%);
  border-top: 1px solid rgba(255,255,255,0.02);
  position: relative;
}
.premium-marquee-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 20px 0; /* Space for hover scaling */
}
.premium-marquee-wrapper::before,
.premium-marquee-wrapper::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 20vw;
  z-index: 10;
  pointer-events: none;
}
.premium-marquee-wrapper::before {
  left: 0;
  background: linear-gradient(to right, #000 0%, transparent 100%);
}
.premium-marquee-wrapper::after {
  right: 0;
  background: linear-gradient(to left, #000 0%, transparent 100%);
}

.premium-marquee-track {
  display: flex;
  width: max-content;
  animation: scrollPremiumMarquee 40s linear infinite;
  gap: 30px;
  padding-left: 30px;
}
.premium-marquee-track:hover {
  animation-play-state: paused;
}

@keyframes scrollPremiumMarquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.premium-feature-pill {
  position: relative;
  width: 150px;
  height: 200px;
  border-radius: 50px; /* Pill Shape */
  background: linear-gradient(180deg, rgba(20,20,20,0.8) 0%, rgba(5,5,5,0.9) 100%);
  border: 1px solid rgba(255,255,255,0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 10px 20px rgba(0,0,0,0.5), inset 0 2px 10px rgba(255,255,255,0.02);
  cursor: pointer;
  overflow: hidden;
}

.pill-glow {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 100px;
  background: radial-gradient(circle, rgba(182, 134, 99, 0.2) 0%, transparent 70%);
  opacity: 0.5;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

.premium-feature-pill:hover {
  transform: translateY(-15px) scale(1.05);
  border-color: rgba(182, 134, 99, 0.4);
  box-shadow: 0 20px 40px rgba(0,0,0,0.8), 0 0 20px rgba(182, 134, 99, 0.2);
}
.premium-feature-pill:hover .pill-glow {
  opacity: 1;
}

.premium-feature-pill img {
  height: 55px;
  object-fit: contain;
  filter: drop-shadow(0 0 5px rgba(255,255,255,0.1));
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  z-index: 2;
}
.premium-feature-pill:hover img {
  transform: scale(1.15) translateY(-5px);
  filter: drop-shadow(0 10px 15px rgba(182, 134, 99, 0.6));
}

.pill-label {
  color: #888;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-align: center;
  transition: color 0.4s ease;
  z-index: 2;
}
.premium-feature-pill:hover .pill-label {
  color: #b68663;
}

/* SQUARE FEATURE CARDS & DOTTED GRID BACKGROUND OVERRIDES */

/* 1. Dotted Grid Background and Reduced Padding */
.features-marquee-section {
  padding: 50px 0 !important; /* Reduced padding */
  background: #030303 !important; /* Base solid color */
  position: relative;
  /* z-index removed for header clickability */
}

.features-marquee-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image: radial-gradient(#333 1px, transparent 1px);
  background-size: 30px 30px;
  background-position: center;
  z-index: -1;
  opacity: 0.5;
  pointer-events: none;
  /* Soft fade out at the edges so it doesn't look like a hard box */
  mask-image: radial-gradient(ellipse at center, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 80%);
  -webkit-mask-image: radial-gradient(ellipse at center, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 80%);
}

.features-marquee-section .container,
.features-marquee-section .premium-marquee-wrapper {
  position: relative;
  z-index: 2; /* Keep content above grid */
}

/* 2. Square Feature Cards with Small Border Radius */
.premium-feature-pill {
  width: 160px !important;
  height: 160px !important; /* Perfect square */
  border-radius: 16px !important; /* Slightly rounded corners */
  gap: 15px !important; /* Spacing between icon and text */
}

.pill-glow {
  top: -15px !important; /* Adjust glow position for square */
  width: 80px !important;
  height: 80px !important;
}

.premium-feature-pill img {
  height: 48px !important; /* Slightly scale down to fit beautifully */
}

.marquee-header h2 {
  margin-bottom: 30px !important; /* Reduced bottom margin of header */
}

/* ULTRA FOOTER REDESIGN */
.ultra-footer {
  position: relative;
  background: linear-gradient(180deg, #020202 0%, #05080c 100%);
  padding: 120px 0 30px; 
  margin-top: 120px; /* Space for CTA overlap */
  overflow: hidden;
  border-top: 1px solid rgba(182, 134, 99, 0.05);
}
.footer-watermark {
  position: absolute;
  bottom: -4vw;
  right: -2vw;
  font-size: 22vw;
  font-weight: 900;
  color: rgba(255,255,255,0.012);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}
.relative-z {
  position: relative;
  z-index: 5;
}

/* Overlapping CTA */
.footer-overlap-cta {
  position: absolute;
  top: -180px; /* Pull it out into the gap */
  left: 15px;
  right: 15px;
  background: rgba(12, 12, 12, 0.9);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border: 1px solid rgba(182, 134, 99, 0.2);
  border-radius: 40px;
  padding: 50px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 40px 80px rgba(0,0,0,0.9), inset 0 0 50px rgba(182, 134, 99, 0.05);
}
.cta-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #fff;
  margin: 0;
  line-height: 1.3;
}
.btn-glow-blue {
  background: #b68663;
  color: #fff !important;
  font-weight: 600;
  padding: 16px 35px;
  border-radius: 40px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 10px 25px rgba(182, 134, 99, 0.4);
}
.btn-glow-blue:hover {
  background: #fff;
  color: #000 !important;
  box-shadow: 0 15px 35px rgba(255,255,255,0.5);
  transform: translateY(-5px);
}

/* Main Footer Columns */
.ultra-footer-main {
  margin-bottom: 70px;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 15px;
  text-decoration: none;
  margin-bottom: 25px;
}
.footer-logo img {
  height: 45px;
}
.footer-logo span {
  color: #fff;
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: 2px;
}
.footer-desc {
  color: #888;
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 35px;
}

/* Social Icons */
.social-magnetic {
  display: flex;
  gap: 15px;
}
.mag-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.03);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.2rem;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1px solid rgba(255,255,255,0.05);
}
.mag-icon:hover {
  background: rgba(182, 134, 99, 0.1);
  color: #b68663;
  border-color: #b68663;
  transform: translateY(-8px) scale(1.1);
  box-shadow: 0 10px 20px rgba(182, 134, 99, 0.2);
}

/* Links */
.footer-title {
  color: #fff;
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 25px;
  position: relative;
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.footer-title::after {
  content: '';
  position: absolute;
  left: 0; bottom: -10px;
  width: 30px; height: 2px;
  background: #b68663;
  border-radius: 2px;
}
.footer-links-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links-col ul li {
  margin-bottom: 16px;
}
.footer-links-col ul li a {
  color: #999;
  text-decoration: none;
  font-size: 1rem;
  transition: all 0.3s ease;
  position: relative;
  display: inline-block;
}
.footer-links-col ul li a::before {
  content: '';
  position: absolute;
  left: 0; bottom: -3px;
  width: 0%;
  height: 1px;
  background: #b68663;
  transition: width 0.3s ease;
}
.footer-links-col ul li a:hover {
  color: #fff;
  transform: translateX(6px);
}
.footer-links-col ul li a:hover::before {
  width: 100%;
}

/* Contact Info & Newsletter */
.contact-list {
  list-style: none;
  padding: 0;
  margin: 0 0 35px 0;
}
.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  color: #aaa;
  margin-bottom: 20px;
  line-height: 1.5;
  font-size: 0.95rem;
}
.contact-list li i {
  color: #b68663;
  font-size: 1.2rem;
  margin-top: 2px;
}

.footer-newsletter {
  position: relative;
  display: flex;
}
.footer-newsletter input {
  width: 100%;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 16px 20px;
  border-radius: 4px;
  color: #fff;
  font-size: 0.95rem;
  outline: none;
  transition: all 0.3s ease;
}
.footer-newsletter input:focus {
  border-color: #b68663;
  background: rgba(182, 134, 99, 0.05);
}
.footer-newsletter button {
  position: absolute;
  right: 6px;
  top: 6px;
  bottom: 6px;
  width: 44px;
  border-radius: 50%;
  background: #b68663;
  border: none;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}
.footer-newsletter button:hover {
  background: #fff;
  color: #000;
  transform: scale(1.08) rotate(-10deg);
}

/* Bottom Bar */
.ultra-footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.copyright {
  color: #666;
  font-size: 0.9rem;
}
.legal-links {
  display: flex;
  gap: 25px;
}
.legal-links a {
  color: #666;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}
.legal-links a:hover {
  color: #fff;
}
.back-to-top {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.back-to-top:hover {
  background: #b68663;
  border-color: #b68663;
  transform: translateY(-8px);
}

@media (max-width: 991px) {
  .footer-overlap-cta {
    flex-direction: column;
    text-align: center;
    gap: 30px;
    padding: 40px 30px;
    top: -120px;
  }
  .ultra-footer {
    padding-top: 150px;
    margin-top: 80px;
  }
  .ultra-footer-bottom {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
  .legal-links {
    flex-direction: column;
    gap: 10px;
  }
}

/* FOOTER OVERLAP FIXES */
.features-marquee-section {
  padding-bottom: 120px !important; /* Add space at the bottom so CTA doesn't cover cards */
}

.ultra-footer {
  padding: 100px 0 30px !important; 
  margin-top: 0 !important; /* Remove huge margin */
}

.footer-overlap-cta {
  top: -120px !important; /* Pull up slightly, safe within the new padding-bottom of marquee */
  z-index: 20 !important; /* Ensure it stays above everything */
}

/* REMOVE CTA OVERLAP AS REQUESTED */
.features-marquee-section {
  padding-bottom: 50px !important; /* Normal padding */
}

.ultra-footer {
  padding: 80px 0 30px !important; /* Normal top padding instead of huge gap */
}

.footer-overlap-cta {
  position: relative !important;
  top: 0 !important;
  margin-top: 0 !important;
  margin-bottom: 60px !important; /* Spacing between CTA and the footer columns */
  z-index: 20 !important;
}

@media (max-width: 991px) {
  .footer-overlap-cta {
    top: 0 !important;
  }
  .ultra-footer {
    padding-top: 60px !important;
  }
}
\n.footer-overlap-cta { width: 100% !important; left: auto !important; right: auto !important; }\n
/* ULTRA-PREMIUM CTA OVERRIDES */
.footer-overlap-cta {
  background: linear-gradient(145deg, rgba(30, 30, 32, 0.95) 0%, rgba(10, 10, 12, 0.98) 100%) !important;
  border-radius: 24px !important;
  padding: 60px 70px !important;
  overflow: hidden !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.8), inset 0 2px 2px rgba(255, 255, 255, 0.04), inset 0 -5px 30px rgba(182, 134, 99, 0.08) !important;
}

/* Ambient Background Glows inside the Card */
.footer-overlap-cta::before {
  content: '';
  position: absolute;
  top: -100px; right: -50px;
  width: 350px; height: 350px;
  background: radial-gradient(circle, rgba(182, 134, 99, 0.15) 0%, transparent 70%);
  z-index: 0;
  pointer-events: none;
}
.footer-overlap-cta::after {
  content: '';
  position: absolute;
  bottom: -100px; left: -50px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.03) 0%, transparent 70%);
  z-index: 0;
  pointer-events: none;
}

.cta-content, .cta-action {
  position: relative;
  z-index: 2; /* Keep content above the ambient glows */
}

/* Premium Glass Tag */
.cta-content .theme-tag {
  color: #ccc !important;
  background: rgba(255, 255, 255, 0.05) !important;
  padding: 8px 18px !important;
  border-radius: 30px !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  font-size: 0.75rem !important;
  letter-spacing: 3px !important;
  margin-bottom: 25px !important;
  display: inline-block !important;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2) !important;
}

/* Elegant Typography */
.cta-content h2 {
  font-size: 3rem !important;
  font-weight: 300 !important; /* Thin, elegant weight */
  letter-spacing: -1px !important;
  line-height: 1.2 !important;
  color: #f0f0f0 !important;
}
.cta-content h2 .text-blue {
  font-weight: 700 !important; /* Bold emphasis on 'dream' */
  background: linear-gradient(to right, #b68663, #b68663) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  text-shadow: 0 0 20px rgba(182, 134, 99, 0.3) !important;
}

/* Outline-to-Fill Premium Button */
.btn-glow-blue {
  background: transparent !important;
  color: #fff !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
  padding: 18px 45px !important;
  border-radius: 50px !important;
  font-size: 1rem !important;
  letter-spacing: 1px !important;
  position: relative !important;
  overflow: hidden !important;
  box-shadow: none !important;
  text-transform: uppercase !important;
  font-weight: 600 !important;
}
.btn-glow-blue i {
  transition: transform 0.3s ease !important;
}
.btn-glow-blue::before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(90deg, #b68663, #b68663) !important;
  z-index: -1 !important;
  opacity: 0 !important;
  transition: opacity 0.4s ease !important;
}
.btn-glow-blue:hover {
  border-color: transparent !important;
  transform: translateY(-5px) !important;
  box-shadow: 0 15px 35px rgba(182, 134, 99, 0.4) !important;
  color: #000 !important;
}
.btn-glow-blue:hover::before {
  opacity: 1 !important;
}
.btn-glow-blue:hover i {
  transform: translateX(5px) !important; /* Arrow moves subtly right */
}

@media (max-width: 991px) {
  .footer-overlap-cta {
    padding: 40px 30px !important;
  }
  .cta-content h2 {
    font-size: 2.2rem !important;
  }
}

/* ULTRA-PREMIUM COLLECTION CARDS (COLLECTIONS PAGE) */
.collection-card {
  background: rgba(18, 18, 20, 0.6) !important;
  backdrop-filter: blur(10px) !important;
  -webkit-backdrop-filter: blur(10px) !important;
  transform: translateZ(0); /* Hardware Acceleration Fix */
  will-change: transform, opacity;
  border-radius: 8px !important; /* 'Thoda hi do' (Small border radius for consistency) */
  padding: 30px !important;
  border: 1px solid rgba(255, 255, 255, 0.05) !important;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3) !important;
  position: relative;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.collection-card:hover {
  transform: translateY(-6px) !important;
  border-color: rgba(255, 255, 255, 0.12) !important;
  box-shadow: 0 15px 40px rgba(0,0,0,0.5), 0 0 15px rgba(182, 134, 99, 0.05) !important;
  background: rgba(22, 22, 25, 0.8) !important;
}

.collection-img-wrap {
  background: transparent !important;
  border-radius: 0 !important;
  margin: 20px 0 25px !important;
  height: 180px !important; /* Fixed height for consistency */
  display: flex;
  align-items: center;
  justify-content: center;
}
.collection-img-wrap img {
  max-height: 100%;
  object-fit: contain;
  transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
  filter: drop-shadow(0 10px 20px rgba(0,0,0,0.4));
}
.collection-card:hover .collection-img-wrap img {
  transform: scale(1.1) translateY(-5px) !important;
  filter: drop-shadow(0 15px 25px rgba(0,0,0,0.6));
}

.collection-title {
  font-size: 1.35rem !important;
  font-weight: 600 !important;
  color: #fff !important;
  margin-bottom: 12px !important;
  letter-spacing: 0.5px !important;
}
.collection-desc {
  color: #888 !important;
  font-size: 0.95rem !important;
  line-height: 1.6 !important;
  margin-bottom: 25px !important;
  flex-grow: 1; /* Pushes bottom section down evenly */
}
.collection-link {
  color: #fff !important;
  font-weight: 600 !important;
  font-size: 0.9rem !important;
  text-decoration: none !important;
  transition: all 0.3s ease !important;
  opacity: 0.8;
}
.collection-card:hover .collection-link {
  color: #b68663 !important;
  opacity: 1;
}
.collection-card:hover .collection-link i {
  transform: translateX(4px);
}

/* ULTRA-PREMIUM INNER PAGE HERO (COLLECTIONS) */
.inner-hero-section {
  position: relative;
  padding: 160px 0 120px;
  background: linear-gradient(180deg, #020202 0%, #0a0f14 100%);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-bottom: 1px solid rgba(255,255,255,0.03);
}
.inner-hero-bg-glow {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50vw;
  height: 50vw;
  background: radial-gradient(circle, rgba(182, 134, 99, 0.08) 0%, transparent 60%);
  /* z-index removed for header clickability */
  pointer-events: none;
}
.inner-hero-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image: radial-gradient(#333 1px, transparent 1px);
  background-size: 40px 40px;
  background-position: center;
  opacity: 0.4;
  mask-image: radial-gradient(ellipse at center, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 70%);
  -webkit-mask-image: radial-gradient(ellipse at center, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 70%);
  z-index: 0;
}

.hero-tag-pill {
  display: inline-block;
  padding: 10px 28px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 50px;
  color: #ccc;
  font-size: 0.8rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 35px;
  backdrop-filter: blur(10px);
  box-shadow: 0 5px 20px rgba(0,0,0,0.5);
}

.inner-hero-title {
  font-size: 5rem;
  font-weight: 300;
  color: #fff;
  letter-spacing: -2px;
  margin-bottom: 25px;
  line-height: 1.1;
  text-shadow: 0 10px 30px rgba(0,0,0,0.5);
}
.inner-hero-title .text-blue {
  font-weight: 700;
  background: linear-gradient(to right, #b68663, #b68663);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 40px rgba(182, 134, 99, 0.3);
}

.inner-hero-desc {
  font-size: 1.15rem;
  color: #999;
  max-width: 650px;
  margin: 0 auto 55px;
  line-height: 1.8;
}

.hero-stats-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
  background: rgba(12, 12, 14, 0.7);
  padding: 25px 50px;
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,0.05);
  backdrop-filter: blur(20px);
  width: max-content;
  margin: 0 auto;
  box-shadow: 0 20px 40px rgba(0,0,0,0.8), inset 0 2px 2px rgba(255,255,255,0.02);
}
.stat-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.stat-num {
  font-size: 2.2rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}
.stat-label {
  font-size: 0.8rem;
  color: #777;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
}
.stat-divider {
  width: 1px;
  height: 50px;
  background: rgba(255,255,255,0.08);
}

.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  opacity: 0.6;
  transition: opacity 0.3s;
  z-index: 5;
}
.scroll-indicator:hover {
  opacity: 1;
}
.scroll-indicator .mouse {
  width: 26px;
  height: 42px;
  border: 2px solid rgba(255,255,255,0.5);
  border-radius: 15px;
  position: relative;
}
.scroll-indicator .mouse::before {
  content: '';
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background: #fff;
  border-radius: 2px;
  animation: scrollMouse 1.8s infinite;
}
.scroll-indicator span {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.5);
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 600;
}
@keyframes scrollMouse {
  0% { transform: translate(-50%, 0); opacity: 1; }
  100% { transform: translate(-50%, 15px); opacity: 0; }
}

@media (max-width: 768px) {
  .inner-hero-section { padding: 130px 15px 80px; }
  .inner-hero-title { font-size: 3.2rem; }
  .hero-stats-row { flex-direction: column; gap: 25px; width: 100%; }
  .stat-divider { width: 50px; height: 1px; }
}

/* ==================================================
   CREATIVE INNER HERO (SPLIT LAYOUT & REDUCED HEIGHT)
   ================================================== */
.creative-inner-hero {
  position: relative;
  padding: 100px 0 50px; /* Kept shorter height as requested */
  background: linear-gradient(135deg, #020203 0%, #080b0e 100%);
  overflow: hidden;
  border-bottom: 1px solid rgba(255,255,255,0.03);
}


.ci-bg-glow {
  position: absolute;
  top: 50%;
  right: 10%;
  transform: translateY(-50%);
  width: 45vw;
  height: 45vw;
  background: radial-gradient(circle, rgba(182, 134, 99, 0.12) 0%, transparent 60%);
  z-index: 0;
  pointer-events: none;
}
.creative-inner-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image: radial-gradient(rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 30px 30px;
  z-index: 0;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 100%);
  -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 100%);
}

/* Left Side Typography & Actions */
.ci-tag {
  display: inline-block;
  padding: 6px 18px;
  background: rgba(182, 134, 99, 0.1);
  border: 1px solid rgba(182, 134, 99, 0.2);
  border-radius: 20px;
  color: #b68663;
  font-size: 0.65rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 25px;
  font-weight: 600;
}
.ci-title {
  font-size: 4rem;
  font-weight: 300;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 25px;
  letter-spacing: -1px;
}
.ci-title .text-blue {
  font-weight: 700;
  background: linear-gradient(to right, #b68663, #b68663);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.ci-desc {
  font-size: 1.05rem;
  color: #999;
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 90%;
}
.ci-actions {
  display: flex;
  gap: 15px;
  align-items: center;
}
.btn-outline-glass {
  padding: 14px 30px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 40px;
  color: #fff;
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  background: rgba(255,255,255,0.02);
  font-weight: 600;
}
.btn-outline-glass:hover {
  background: #fff;
  color: #000;
  transform: translateY(-3px);
  border-color: #fff;
}

/* Right Side Composition */
.ci-visual-composition {
  position: relative;
  width: 100%;
  height: 420px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.ci-arch-window {
  width: 280px;
  height: 380px;
  border-radius: 140px 140px 20px 20px; /* Architectural Arch Shape */
  background: linear-gradient(180deg, rgba(255,255,255,0.05) 0%, rgba(0,0,0,0) 100%);
  border: 1px solid rgba(255,255,255,0.1);
  border-bottom: none;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  padding-bottom: 30px;
  position: relative;
  overflow: visible; /* Let the image slightly break out if needed */
}
/* Inner ambient light in the arch */
.ci-arch-window::after {
  content: '';
  position: absolute;
  top: 10%; left: 50%;
  transform: translateX(-50%);
  width: 150px; height: 150px;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 60%);
  z-index: 0;
}
.ci-arch-img {
  max-height: 100%;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 20px 30px rgba(0,0,0,0.6));
  transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  z-index: 2;
}
.ci-visual-composition:hover .ci-arch-img {
  transform: scale(1.1) translateY(-15px);
}

.ci-float-card {
  position: absolute;
  background: rgba(15, 15, 18, 0.85);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 10px 15px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  gap: 15px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.5);
  z-index: 5;
  transition: all 0.3s ease;
}
.ci-float-card:hover {
  border-color: rgba(182, 134, 99, 0.4);
  transform: translateY(-5px) !important;
}
.card-left {
  top: 12%;
  left: -10px;
  animation: floatY 4s ease-in-out infinite;
}
.card-right {
  bottom: 15%;
  right: -20px;
  animation: floatY 5s ease-in-out infinite 1s;
}
.ci-fc-num {
  font-size: 1.3rem;
  font-weight: 700;
  color: #b68663;
  line-height: 1;
}
.ci-fc-text {
  font-size: 0.65rem;
  color: #aaa;
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1.3;
}

/* Rotating SVG Stamp */
.ci-rotating-stamp {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 100px;
  height: 100px;
  animation: rotateStamp 15s linear infinite;
  z-index: 6;
}
.ci-rotating-stamp svg {
  fill: #fff;
  opacity: 0.8;
}
.stamp-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #b68663;
  font-size: 1.2rem;
}
@keyframes rotateStamp {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@media (max-width: 991px) {
  .ci-title { font-size: 3.2rem; }
  .ci-visual-composition { height: 400px; margin-top: 50px; }
  .card-left { left: 10px; }
  .card-right { right: 10px; }
  .creative-inner-hero {
  position: relative;
  padding: 100px 0 50px; /* Kept shorter height as requested */
  background: linear-gradient(135deg, #020203 0%, #080b0e 100%);
  overflow: hidden;
  border-bottom: 1px solid rgba(255,255,255,0.03);
}


}
@media (max-width: 576px) {
  .ci-actions { flex-direction: column; width: 100%; }
  .ci-actions a { width: 100%; text-align: center; }
}

/* SQUARE WHITE BUTTON (AS REQUESTED) */
.btn-square-white {
  background: #ffffff !important;
  color: #000000 !important;
  border: none !important;
  border-radius: 4px !important; /* Slightly softened square, or 0px for pure square. Let's use 0px pure square to match 'nahi chahiye' perfectly, maybe 2px just to avoid jagged edges */
  border-radius: 0 !important;
  padding: 14px 30px;
  font-size: 0.95rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
}
.btn-square-white i {
  transition: transform 0.3s ease;
}
.btn-square-white:hover {
  background: #f2f2f2 !important;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(255, 255, 255, 0.15);
}
.btn-square-white:hover i {
  transform: translateY(3px); /* if arrow down */
}

/* HERO INSTANT FADE (NO JS DELAY) */
.hero-fast-fade {
  opacity: 0;
  animation: heroFastFadeIn 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}
/* Staggering for left vs right */
.col-lg-5.hero-fast-fade {
  animation-delay: 0.1s;
}
.col-lg-7.hero-fast-fade {
  animation-delay: 0.2s; /* Very fast delay, no JS lag */
}
/* Staggering inner elements if they have the class */
h1.hero-fast-fade { animation-delay: 0.15s; }
p.hero-fast-fade { animation-delay: 0.2s; }
.hero-features-row.hero-fast-fade { animation-delay: 0.25s; }

@keyframes heroFastFadeIn {
  0% { opacity: 0; transform: translateY(30px); }
  100% { opacity: 1; transform: translateY(0); }
}

.collection-number {
  font-family: var(--font-display, monospace) !important;
  font-size: 0.9rem !important;
  color: #b68663 !important;
  font-weight: 600 !important;
  letter-spacing: 2px !important;
}

/* ==================================================
   PRODUCTS PAGE UI UPGRADES (CARDS & TABS)
   ================================================== */
   
/* Premium Filter Tabs UI */
.btn-cat-filter {
  color: #888 !important;
  border: 1px solid rgba(255,255,255,0.08) !important;
  background: rgba(20,20,22,0.6) !important;
  backdrop-filter: blur(10px) !important;
  border-radius: 8px !important; 
  padding: 8px 18px !important;
  transition: all 0.3s ease !important;
}
.btn-cat-filter:hover, .btn-cat-filter.active {
  background: rgba(182, 134, 99, 0.15) !important;
  color: #b68663 !important;
  border-color: rgba(182, 134, 99, 0.4) !important;
  box-shadow: 0 0 15px rgba(182, 134, 99, 0.15) !important;
  transform: translateY(-2px);
}

/* Scrollbar for tabs container */
.overflow-auto::-webkit-scrollbar {
  height: 4px;
}
.overflow-auto::-webkit-scrollbar-thumb {
  background: rgba(182, 134, 99, 0.3);
  border-radius: 4px;
}

/* Premium Product Cards UI */
.product-card-arch {
  background: rgba(18, 18, 20, 0.6) !important;
  backdrop-filter: blur(10px) !important;
  -webkit-backdrop-filter: blur(10px) !important;
  transform: translateZ(0); /* Hardware Acceleration Fix */
  will-change: transform, opacity;
  border-radius: 8px !important;
  padding: 20px !important;
  border: 1px solid rgba(255, 255, 255, 0.05) !important;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3) !important;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
}
.product-card-arch:hover {
  transform: translateY(-6px) !important;
  border-color: rgba(255, 255, 255, 0.12) !important;
  box-shadow: 0 15px 40px rgba(0,0,0,0.5), 0 0 15px rgba(182, 134, 99, 0.05) !important;
  background: rgba(22, 22, 25, 0.8) !important;
}
.product-card-arch .product-thumb-wrap {
  background: transparent !important;
  border-radius: 0 !important;
  height: 150px !important;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px !important;
}
.product-card-arch .product-thumb-wrap img {
  max-height: 100%;
  object-fit: contain;
  transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
  filter: drop-shadow(0 10px 15px rgba(0,0,0,0.3));
}
.product-card-arch:hover .product-thumb-wrap img {
  transform: scale(1.1) translateY(-5px) !important;
  filter: drop-shadow(0 15px 25px rgba(0,0,0,0.6));
}
.product-card-arch .product-item-title {
  color: #fff !important;
  font-size: 1.15rem !important;
  font-weight: 600 !important;
  margin-bottom: 6px !important;
  letter-spacing: 0.3px;
}
.product-card-arch .product-cat-name {
  color: #b68663 !important;
  font-size: 0.72rem !important;
  text-transform: uppercase !important;
  letter-spacing: 1.5px !important;
  margin-bottom: 10px !important;
}
.product-card-arch .product-specs-brief {
  color: #888 !important;
  font-size: 0.85rem !important;
  line-height: 1.6 !important;
  flex-grow: 1; 
  margin-bottom: 20px !important;
}
.product-card-arch .product-specs-brief strong {
  color: #aaa !important;
  font-weight: 500 !important;
}
.product-code-pill {
  background: rgba(255,255,255,0.08) !important;
  color: #fff !important;
  border: 1px solid rgba(255,255,255,0.15) !important;
  border-radius: 4px !important;
  padding: 4px 10px !important;
  font-size: 0.7rem !important;
  font-family: var(--font-display, monospace) !important;
  position: absolute;
  top: 15px;
  right: 15px;
  z-index: 2;
}
.product-actions-bar {
  display: flex;
  gap: 10px;
  margin-top: auto;
}
.product-actions-bar .btn-quick-view {
  background: rgba(255,255,255,0.05) !important;
  border: 1px solid rgba(255,255,255,0.1) !important;
  color: #fff !important;
  flex: 1;
  border-radius: 4px !important;
  font-size: 0.75rem !important;
  transition: all 0.3s ease !important;
}
.product-actions-bar .btn-quick-view:hover {
  background: rgba(182, 134, 99, 0.2) !important;
  border-color: rgba(182, 134, 99, 0.4) !important;
  color: #b68663 !important;
}
.product-actions-bar .btn-mars-dark {
  background: #fff !important;
  color: #000 !important;
  border-radius: 4px !important;
  font-weight: 600 !important;
  transition: all 0.3s ease !important;
}
.product-actions-bar .btn-mars-dark:hover {
  background: #e0e0e0 !important;
}


/* Contact Page UI Overrides */
.specifier-canvas-container {
  background: rgba(18, 18, 20, 0.5);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 16px;
  padding: 40px;
}
.radar-visual-card {
  background: rgba(18, 18, 20, 0.5);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 16px;
  padding: 30px;
}
.specifier-step-label {
  color: #fff;
  font-family: var(--font-display);
  font-size: 0.9rem;
  margin-bottom: 15px;
  margin-top: 25px;
}
.specifier-chips-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}
.btn-spec-chip {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #bbb;
  padding: 10px 18px;
  border-radius: 50px;
  font-size: 0.8rem;
  cursor: pointer;
  transition: all 0.3s ease;
}
.btn-spec-chip:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}
.btn-spec-chip.active {
  background: rgba(182, 134, 99, 0.15);
  border-color: rgba(182, 134, 99, 0.5);
  color: #b68663;
}
.spec-input-clean {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
  width: 100%;
  padding: 12px 0;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}
.spec-input-clean:focus {
  outline: none;
  border-bottom-color: #b68663;
}
.spec-input-clean::placeholder {
  color: rgba(255, 255, 255, 0.4);
}
.radar-node-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.radar-node-item:last-child {
  border-bottom: none;
}
.radar-node-dist {
  color: #fff;
  font-weight: 700;
  font-family: var(--font-display);
}

/* Creative Arch Lifestyle Image */
.ci-arch-lifestyle {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 140px 140px 20px 20px;
  filter: brightness(0.9) contrast(1.1);
  transition: transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
  /* z-index removed for header clickability */
}
.ci-arch-window:hover .ci-arch-lifestyle {
  transform: scale(1.08);
}
.ci-arch-window {
  overflow: hidden; /* Ensure scaling doesn't break border radius */
}


/* Header menu hover line color */
.nav-link-item::after {
  background-color: #b68663 !important;
}

/* Animated Hero Grid (Dot) UI */
.hero-animated-grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background-image: radial-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 30px 30px;
  animation: bgGridMove 25s linear infinite;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 100%);
  -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 100%);
}

@keyframes bgGridMove {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 60px 60px; /* Must be multiple of background-size */
  }
}
