

/* ---- TOKENS ---- */
:root {
  --gold:        #e81329;
  --gold-light:  #be555f;
  --gold-dark:   #881f2a;
  --charcoal:    #1A1A1A;
  --charcoal-2:  #2C2C2C;
  --warm-white:  #F8F5F0;
  --warm-light:  #F1EDE6;
  --text-main:   #2C2A27;
  --text-muted:  #7A7470;
  --white:       #FFFFFF;
  --shadow-sm:   0 2px 12px rgba(0,0,0,0.07);
  --shadow-md:   0 6px 30px rgba(0,0,0,0.12);
  --shadow-lg:   0 12px 50px rgba(0,0,0,0.18);
  --radius:      10px;
  --transition:  0.35s cubic-bezier(0.4,0,0.2,1);
}

/* ---- RESET & BASE ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: var(--text-main);
  background: var(--white);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  line-height: 1.15;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* ---- UTILITIES ---- */
.section-pad    { padding: 90px 0; }
.section-pad-sm { padding: 50px 0; }
.bg-light-warm  { background: var(--warm-white); }
.bg-dark-lux    { background: var(--charcoal); }

.section-pad-contact    { padding: 90px 0 0 0; }

/* ---- REVEAL ANIMATION ---- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.65s ease calc(var(--delay, 0s)),
              transform 0.65s ease calc(var(--delay, 0s));
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---- SECTION HEADER ---- */
.section-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.section-eyebrow.light { color: var(--gold-light); }
.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--charcoal);
  margin-bottom: 8px;
}
.section-title.light { color: var(--white); }
.section-sub {
  color: var(--text-muted);
  font-size: 14px;
}

/* =========================================
   TOP BAR
   ========================================= */
.topbar {
  background: var(--charcoal);
  color: rgba(255,255,255,0.7);
  font-size: 12px;
  padding: 8px 0;
  letter-spacing: 0.02em;
}
.topbar a, .topbar span {
  color: rgba(255,255,255,0.7);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color var(--transition);
}
.topbar a:hover { color: var(--gold-light); }
.topbar-social a {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
}
.topbar-social a:hover { color: var(--gold-light); }

/* =========================================
   NAVBAR
   ========================================= */
#mainNav {
  background: var(--white);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  padding: 14px 0;
  transition: box-shadow var(--transition), padding var(--transition);
  z-index: 999;
}
#mainNav.scrolled {
  box-shadow: var(--shadow-md);
  padding: 8px 0;
}

.navbar-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.9rem;
  font-weight: 600;
  letter-spacing: 0.06em;
}
.brand-lumi   { color: var(--charcoal); }
.brand-zo     { color: var(--gold); }
.brand-zo-light { color: var(--gold-light); }

.navbar-brand img{
  width: 150px;
}

.nav-link {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-main) !important;
  padding: 6px 14px !important;
  position: relative;
  transition: color var(--transition);
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 14px; right: 14px;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform var(--transition);
}
.nav-link:hover, .nav-link.active { color: var(--gold) !important; }
.nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); }

.nav-actions { gap: 8px; }
.nav-icon-btn {
  position: relative;
  font-size: 18px;
  color: var(--charcoal);
  padding: 4px 6px;
  transition: color var(--transition);
}
.nav-icon-btn:hover { color: var(--gold); }
.nav-icon-btn .badge {
  position: absolute;
  top: 0; right: 0;
  background: var(--gold);
  color: var(--white);
  font-size: 9px;
  width: 16px; height: 16px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  padding: 0;
}

/* Buttons */
.btn-gold {
  background: var(--gold);
  color: var(--white);
  border: 2px solid var(--gold);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 10px 28px;
  border-radius: 3px;
  transition: background var(--transition), color var(--transition), transform 0.2s;
}
.btn-gold:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-outline-gold {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 10px 28px;
  border-radius: 3px;
  transition: all var(--transition);
}
.btn-outline-gold:hover {
  background: var(--gold);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-outline-light-custom {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.7);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 10px 28px;
  border-radius: 3px;
  transition: all var(--transition);
}
.btn-outline-light-custom:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
  color: var(--white);
}

/* Navbar toggler */
.navbar-toggler {
  border: 1.5px solid var(--charcoal);
  border-radius: 4px;
  padding: 5px 10px;
}
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(26,26,26,1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* =========================================
   HERO
   ========================================= */
#hero { overflow: hidden; }

.hero-slide {
  min-height: 92vh;
  display: flex;
  align-items: center;
  position: relative;
  background-size: cover;
  background-position: center;
}
.slide-1 { background-image: url('/img/slider1.png'); }
.slide-2 { background-image: url('/img/slider2.png'); }
.slide-3 { background-image: url('/img/slider3.png'); }

/* Fallback gradient if images don't load */
.slide-1 { background-color: #2a1f10; }
.slide-2 { background-color: #151e2a; }
.slide-3 { background-color: #1a1015; }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(10,8,6,0.78) 0%, rgba(10,8,6,0.35) 70%, transparent 100%);
  z-index: 0;
}
.hero-slide .container { position: relative; z-index: 1; height: 92vh; display: flex; align-items: center; }

.hero-content {
  max-width: 600px;
  color: var(--white);
}
.hero-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 16px;
  padding-left: 2px;
}
.hero-title {
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  font-weight: 600;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 20px;
}
.hero-title em {
  font-style: italic;
  color: var(--gold-light);
}
.hero-sub {
  font-size: 16px;
  color: rgba(255,255,255,0.8);
  margin-bottom: 36px;
  max-width: 440px;
  line-height: 1.7;
}

/* Hero animation */
.carousel-item.active .hero-content .hero-eyebrow { animation: fadeUp 0.7s 0.2s both; }
.carousel-item.active .hero-content .hero-title    { animation: fadeUp 0.7s 0.4s both; }
.carousel-item.active .hero-content .hero-sub      { animation: fadeUp 0.7s 0.55s both; }
.carousel-item.active .hero-content .d-flex        { animation: fadeUp 0.7s 0.7s both; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.carousel-arrow {
  font-size: 1.6rem;
  color: var(--white);
  opacity: 0.8;
  transition: opacity var(--transition);
}
.carousel-arrow:hover { opacity: 1; }

.carousel-indicators button {
  width: 28px; height: 3px;
  border-radius: 2px;
  background: rgba(255,255,255,0.5);
  border: none;
  transition: background var(--transition), width var(--transition);
}


/* =========================================
   STATS STRIP
   ========================================= */
.stats-strip {
  background: var(--charcoal);
  padding: 0;
}
.stat-item {
  padding: 38px 20px;
  border-right: 1px solid rgba(255,255,255,0.07);
  position: relative;
}
.stat-item:last-child { border-right: none; }
.stat-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
}
.stat-unit {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  color: var(--gold-light);
}
.stat-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-top: 6px;
  margin-bottom: 0;
}

/* =========================================
   CATEGORIES
   ========================================= */
.category-card {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  background: var(--white);
  transition: transform var(--transition), box-shadow var(--transition);
  height: 100%;
}
.category-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.category-card.featured {
  box-shadow: 0 0 0 2px var(--gold), var(--shadow-md);
}

.cat-img {
  position: relative;
  height: 220px;
  display: flex; align-items: center; justify-content: center;
}
.cat-industrial { background: linear-gradient(135deg, #1a2a3a 0%, #0d1822 100%); }
.cat-residential { background: linear-gradient(135deg, #2a1a0a 0%, #1a0e04 100%); }
.cat-office      { background: linear-gradient(135deg, #1a1a2a 0%, #0d0d1a 100%); }

.cat-overlay {
  position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(201,168,76,0.12) 0%, transparent 70%);
}
.cat-icon {
  font-size: 3.5rem;
  color: var(--gold);
  opacity: 0.9;
  position: relative;
  z-index: 1;
  transition: transform var(--transition);
}
.category-card:hover .cat-icon { transform: scale(1.1); }

.cat-body { padding: 28px; }
.cat-body h3 {
  font-size: 1.6rem;
  color: var(--charcoal);
  margin-bottom: 10px;
}
.cat-body p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 18px;
}
.cat-link {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--transition), color var(--transition);
}
.cat-link:hover { color: var(--gold-dark); gap: 10px; }

.category-box {
    position: relative;
    overflow: hidden;
    height: 350px;
}


.category-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .5s;
}

.category-box:hover img {
    transform: scale(1.05);
}

/* .category-box::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,.65);
} */

.content {
    position: absolute;
    top: 50%;
    right: 40px;
    transform: translateY(-50%);
    text-align: right;
    max-width: 320px;
    z-index: 2;
}

.content h2 {
    color: var(--gold);
    font-size: 48px;
    font-weight: 300;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.content p {
    font-size: 18px;
    color: #222;
    margin-bottom: 20px;
    line-height: 1.6;
}

.btn-shop {
    display: inline-block;
    background: var(--gold);
    color: #fff;
    padding: 12px 30px;
    text-decoration: none;
    transition: .3s;
}

.btn-shop:hover {
    background: var(--gold-dark);
    color: #fff;
}

@media(max-width:991px){

    .category-box,
    .category-box.large{
        height:350px;
    }

    .content{
        right:20px;
        left:20px;
        max-width:100%;
    }

    .content h2{
        font-size:32px;
    }
}

/* =========================================
   PRODUCTS
   ========================================= */
.product-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
  height: 100%;
  display: flex; flex-direction: column;
}
.product-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}
.product-img-wrap {
  position: relative;
  aspect-ratio: 1 / 1;
  background: var(--warm-white);
  overflow: hidden;
}
.product-img {
  width: 100%; height: 100%;
  object-fit: contain;
  padding: 20px;
  transition: transform 0.5s ease;
}
.product-card:hover .product-img { transform: scale(1.06); }

.product-actions {
  position: absolute;
  top: 10px; right: 10px;
  display: flex; flex-direction: column; gap: 6px;
  opacity: 0;
  transform: translateX(10px);
  transition: opacity var(--transition), transform var(--transition);
}
.product-card:hover .product-actions {
  opacity: 1;
  transform: translateX(0);
}
.prod-btn {
  width: 36px; height: 36px;
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 15px;
  color: var(--charcoal);
  cursor: pointer;
  transition: background var(--transition), color var(--transition);
}
.prod-btn:hover { background: var(--gold); color: var(--white); border-color: var(--gold); }

.badge-new {
  position: absolute;
  top: 10px; left: 10px;
  background: var(--gold);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 2px;
}
.product-info {
  padding: 16px;
  flex: 1;
  display: flex; flex-direction: column; gap: 4px;
}
.prod-brand {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0;
}
.prod-name {
  font-size: 1.3rem;
  color: var(--charcoal);
  margin-bottom: 10px;
  flex: 1;
}
.btn-add-cart {
  background: transparent;
  border: 1.5px solid var(--charcoal);
  color: var(--charcoal);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 9px;
  border-radius: 3px;
  transition: all var(--transition);
}
.btn-add-cart:hover {
  background: var(--charcoal);
  color: var(--white);
}

/* =========================================
   ABOUT
   ========================================= */
.about-img-wrap {
  position: relative;
  border-radius: var(--radius);
  overflow: visible;
}
.about-img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}
.about-badge {
  position: absolute;
  bottom: -20px; right: -20px;
  background: var(--gold);
  color: var(--white);
  width: 110px; height: 110px;
  border-radius: 50%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  box-shadow: var(--shadow-md);
  text-align: center;
}
.badge-years {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  font-weight: 600;
  line-height: 1;
}
.badge-text {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  line-height: 1.3;
}
.about-lead {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  color: var(--charcoal);
  line-height: 1.6;
  margin-bottom: 16px;
}
.about-body {
  font-size: 14.5px;
  color: var(--text-muted);
  line-height: 1.8;
}
.about-features { flex-wrap: wrap; }
.about-feat {
  display: flex; align-items: center; gap: 8px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--charcoal);
  background: var(--warm-white);
  border: 1px solid rgba(201,168,76,0.25);
  padding: 8px 16px;
  border-radius: 40px;
}
.about-feat i { color: var(--gold); font-size: 14px; }

/* =========================================
   BRANDS STRIP
   ========================================= */
.brands-row {
  display: flex;
  align-items: center;
  gap: 0;
  overflow: hidden;
  position: relative;
}
.brands-row::before, .brands-row::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 60px;
  z-index: 2;
}
.brands-row::before { left: 0;  background: linear-gradient(to right, var(--white), transparent); }
.brands-row::after  { right: 0; background: linear-gradient(to left,  var(--white), transparent); }

.brand-item {
  flex: 0 0 auto;
  min-width: 180px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--text-muted);
  opacity: 0.4;
  text-align: center;
  padding: 10px 20px;
  border-right: 1px solid rgba(0,0,0,0.08);
  transition: opacity var(--transition), color var(--transition);
}
.brand-item:last-child { border-right: none; }
.brand-item:hover { opacity: 1; color: var(--gold); }

/* =========================================
   TESTIMONIALS
   ========================================= */
.testi-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: background var(--transition), border-color var(--transition);
  height: 100%;
}
.testi-card:hover {
  background: rgba(201,168,76,0.07);
  border-color: rgba(201,168,76,0.3);
}
.testi-stars {
  color: var(--gold);
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 16px;
}
.testi-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.12rem;
  font-style: italic;
  color: rgba(255,255,255,0.85);
  line-height: 1.7;
  margin-bottom: 24px;
}
.testi-author {
  display: flex; align-items: center; gap: 14px;
}
.testi-avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold);
}
.testi-author strong {
  display: block;
  color: var(--white);
  font-size: 13.5px;
  font-weight: 600;
}
.testi-author span {
  font-size: 11.5px;
  color: rgba(255,255,255,0.45);
}
.testi-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.2);
  background: transparent;
  color: rgba(255,255,255,0.6);
  font-size: 16px;
  display: flex; align-items: center; justify-content: center;
  transition: all var(--transition);
  cursor: pointer;
}
.testi-btn:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
}

/* =========================================
   BLOG
   ========================================= */
.blog-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
  height: 100%;
  display: flex; flex-direction: column;
}
.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}
.blog-img-wrap {
  position: relative;
  overflow: hidden;
  height: 200px;
}
.blog-img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.blog-card:hover .blog-img { transform: scale(1.05); }
.blog-tag {
  position: absolute;
  bottom: 12px; left: 12px;
  background: var(--gold);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 2px;
}
.blog-body {
  padding: 24px;
  flex: 1; display: flex; flex-direction: column;
}
.blog-title {
  font-size: 1.18rem;
  color: var(--charcoal);
  margin-bottom: 10px;
  line-height: 1.4;
}
.blog-excerpt {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.7;
  flex: 1;
  margin-bottom: 18px;
}
.blog-link {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex; align-items: center; gap: 6px;
  transition: gap var(--transition), color var(--transition);
  margin-top: auto;
}
.blog-link:hover { color: var(--gold-dark); gap: 10px; }

/* =========================================
   CONTACT
   ========================================= */
.contact-info-list {
  display: flex; flex-direction: column; gap: 22px;
}
.contact-info-item {
  display: flex; gap: 16px; align-items: flex-start;
}
.ci-icon {
  width: 42px; height: 42px;
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  font-size: 17px;
  flex-shrink: 0;
}
.contact-info-item strong { display: block; font-size: 13px; margin-bottom: 3px; color: var(--charcoal); }
.contact-info-item p { font-size: 13.5px; color: var(--text-muted); margin: 0; line-height: 1.6; }
.contact-info-item a { color: var(--text-muted); transition: color var(--transition); }
.contact-info-item a:hover { color: var(--gold); }

.contact-form-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow-md);
}
.contact-form-card h4 {
  font-size: 1.5rem;
  color: var(--charcoal);
}
.form-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-main);
  margin-bottom: 6px;
}
.lumi-input {
  border: 1.5px solid rgba(0,0,0,0.12);
  border-radius: 5px;
  padding: 11px 14px;
  font-size: 14px;
  color: var(--text-main);
  background: var(--warm-white);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.lumi-input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.12);
  outline: none;
  background: var(--white);
}

/* =========================================
   FOOTER
   ========================================= */
.site-footer {
  background: var(--charcoal-2);
  padding: 70px 0 0;
  color: rgba(255,255,255,0.65);
}
.footer-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: 0.06em;
}
.footer-tagline { font-size: 13.5px; line-height: 1.7; color: rgba(255,255,255,0.5); max-width: 260px; }
.footer-heading {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  font-size: 13.5px;
  color: rgba(255,255,255,0.55);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--gold-light); }
.footer-address {
  font-size: 13.5px;
  color: rgba(255,255,255,0.55);
  line-height: 1.8;
  font-style: normal;
}
.footer-address a {
  color: rgba(255,255,255,0.55);
  transition: color var(--transition);
}
.footer-address a:hover { color: var(--gold-light); }

.soc-icon {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  color: rgba(255,255,255,0.6);
  transition: all var(--transition);
}
.soc-icon:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
  transform: translateY(-2px);
}
.footer-hr { border-color: rgba(255,255,255,0.07); margin: 50px 0 24px; }
.footer-bottom { padding-bottom: 26px; }
.footer-bottom p { font-size: 12.5px; color: rgba(255,255,255,0.35); margin: 0; }
.footer-bottom a { font-size: 12.5px; color: rgba(255,255,255,0.35); transition: color var(--transition); }
.footer-bottom a:hover { color: var(--gold-light); }

/* =========================================
   FLOATING BUTTONS
   ========================================= */
.whatsapp-float {
  position: fixed;
  bottom: 80px; right: 22px;
  width: 54px; height: 54px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px;
  color: var(--white);
  box-shadow: 0 4px 18px rgba(37,211,102,0.45);
  z-index: 1000;
  transition: transform var(--transition), box-shadow var(--transition);
  animation: pulse 2.4s ease-in-out infinite;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(37,211,102,0.6);
  color: var(--white);
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 4px 18px rgba(37,211,102,0.45); }
  50%       { box-shadow: 0 4px 26px rgba(37,211,102,0.65); }
}

.back-to-top {
  position: fixed;
  bottom: 22px; right: 22px;
  width: 42px; height: 42px;
  background: var(--charcoal);
  border: none;
  border-radius: 50%;
  color: var(--white);
  font-size: 17px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-md);
  cursor: pointer;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity var(--transition), transform var(--transition), background var(--transition);
  z-index: 1000;
}
.back-to-top.visible { opacity: 1; transform: translateY(0); }
.back-to-top:hover { background: var(--gold); }

/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 991px) {
  .section-pad { padding: 65px 0; }
  .about-badge { bottom: -14px; right: 14px; width: 90px; height: 90px; }
  .badge-years { font-size: 2rem; }
  .hero-title { font-size: clamp(2.2rem, 7vw, 3.5rem); }
}

@media (max-width: 767px) {
  .section-pad { padding: 52px 0; }
  .hero-slide  { min-height: 50vh; }
  .hero-slide .container { height: 50vh; }
  .hero-title  { font-size: 2.2rem; }
  .hero-sub    { font-size: 14px; }
  .stat-item   { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.07); }
  .stat-item:last-child { border-bottom: none; }
  .about-img   { height: 300px; }
  .about-badge { width: 80px; height: 80px; bottom: -10px; right: 10px; }
  .badge-years { font-size: 1.7rem; }
  .contact-form-card { padding: 24px 18px; }
  .brands-row  { flex-wrap: wrap; justify-content: center; gap: 10px; }
  .brand-item  { border-right: none; min-width: auto; }
}

@media (max-width: 480px) {
  .hero-title     { font-size: 1.9rem; }
  .navbar-brand   { font-size: 1.5rem; }
  .stat-number    { font-size: 2.2rem; }
  .product-card   { font-size: 13px; }
}

/* =========================================
   REDUCED MOTION
   ========================================= */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* =========================================
   ARRIVALS – TABBED NAV
   ========================================= */

.arrivals-tab-btn {
  display: flex;
  align-items: center;
  gap: 7px;
  white-space: nowrap;
  padding: 10px 24px;
  border: none;
  border-radius: 50px;
  font-family: 'Inter', sans-serif;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  background: transparent;
  cursor: pointer;
  transition: all var(--transition);
  flex: 1;
  justify-content: center;
}
.arrivals-tab-btn i { font-size: 14px; }

.arrivals-tab-btn:hover {
  color: var(--gold);
  background: rgba(201, 168, 76, 0.08);
}
.arrivals-tab-btn.active {
  background: var(--gold);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(201, 168, 76, 0.35);
}

/* Tab content fade-in */
.arrivals-tab-content .tab-pane {
  animation: tabFadeIn 0.4s ease both;
}
@keyframes tabFadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Mobile: make tabs scroll horizontally */
@media (max-width: 575px) {
  .arrivals-tabs {
    border-radius: 12px;
    gap: 4px;
    padding: 4px;
  }
  .arrivals-tab-btn {
    padding: 9px 14px;
    font-size: 11px;
    flex: 0 0 auto;
  }
}

/* =========================================
   VIDEO BANNER
   ========================================= */
.video-banner-section {
  position: relative;
  overflow: hidden;
}

.video-banner-wrap {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
}

/* Background video */
.video-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  filter: brightness(0.55) saturate(1.1);
  transform: scale(1.03);
  transition: transform 8s ease;
}
.video-banner-section:hover .video-bg {
  transform: scale(1.0);
}

/* Dark gradient overlay */
.video-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10, 8, 6, 0.45) 0%,
    rgba(10, 8, 6, 0.72) 50%,
    rgba(10, 8, 6, 0.55) 100%
  );
  z-index: 1;
}

/* Gold shimmer top/bottom borders */
.video-banner-wrap::before,
.video-banner-wrap::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    var(--gold) 30%,
    var(--gold-light) 50%,
    var(--gold) 70%,
    transparent 100%
  );
  z-index: 3;
}
.video-banner-wrap::before { top: 0; }
.video-banner-wrap::after  { bottom: 0; }

/* Content */
.video-banner-content {
  position: relative;
  z-index: 2;
  padding: 100px 0;
}

.video-banner-title {
  font-size: clamp(2.2rem, 5vw, 4rem);
  color: var(--white);
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: 20px;
}
.video-banner-title em {
  font-style: italic;
  color: var(--gold-light);
}

.video-banner-sub {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.8;
  max-width: 600px;
  margin: 0 auto 36px;
}

/* Play button */
.btn-play-video {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: rgba(255, 255, 255, 0.1);
  border: 1.5px solid rgba(255, 255, 255, 0.45);
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 10px 24px 10px 10px;
  border-radius: 50px;
  cursor: pointer;
  backdrop-filter: blur(6px);
  transition: all var(--transition);
}
.btn-play-video:hover {
  background: rgba(201, 168, 76, 0.2);
  border-color: var(--gold);
  color: var(--gold-light);
}

.play-icon {
  width: 42px;
  height: 42px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--white);
  flex-shrink: 0;
  transition: background var(--transition), transform var(--transition);
  box-shadow: 0 0 0 0 rgba(201, 168, 76, 0.5);
  animation: playPulse 2.2s ease-in-out infinite;
}
.btn-play-video:hover .play-icon {
  background: var(--gold-dark);
  transform: scale(1.08);
}

@keyframes playPulse {
  0%, 100% { box-shadow: 0 0 0 0   rgba(201, 168, 76, 0.45); }
  50%       { box-shadow: 0 0 0 12px rgba(201, 168, 76, 0);   }
}

/* Video Modal */
.video-modal-content {
  background: var(--charcoal);
  border: none;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.7);
}
.video-modal-close {
  position: absolute;
  top: -44px;
  right: 0;
  background: rgba(255, 255, 255, 0.12);
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  cursor: pointer;
  transition: all var(--transition);
  z-index: 10;
}
.video-modal-close:hover {
  background: var(--gold);
  border-color: var(--gold);
}

/* Responsive */
@media (max-width: 767px) {
  .video-banner-wrap   { min-height: 480px; }
  .video-banner-content { padding: 70px 0; }
  .video-banner-sub    { font-size: 14.5px; }
  .btn-play-video      { font-size: 11.5px; padding: 8px 18px 8px 8px; }
  .play-icon           { width: 36px; height: 36px; font-size: 15px; }
}

@media (max-width: 480px) {
  .video-banner-title  { font-size: 1.9rem; }
  .video-banner-content { padding: 55px 0; }
}

/* Modal close button */
.video-modal-content {
  position: relative; /* needed for absolute child */
  background: #000;
  border: none;
  border-radius: 10px;
  overflow: visible;  /* allow button to sit outside the box */
}

.video-modal-close {
  position: absolute;
  top: -46px;
  right: 0;
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.12);
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  color: var(--white);
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition);
  z-index: 10;
}

.video-modal-close:hover {
  background: var(--gold);
  border-color: var(--gold);
  transform: rotate(90deg);
}