/* ==========================================================
   RAJSHREE INFINITY — Design Tokens
   ========================================================== */
:root{
  --navy:        #12234B;
  --navy-light:  #1E3A73;
  --gold:        #C79A4B;
  --gold-light:  #E3C27A;
  --cream:       #F7F4EF;
  --white:       #FFFFFF;
  --ink:         #1B1D22;
  --slate:       #5B6472;

  --font-display: 'Poppins', sans-serif;
  --font-body:    'Poppins', sans-serif;

  --radius: 16px;
  --shadow-soft: 0 12px 32px rgba(18,35,75,0.08);
  --shadow-lift: 0 20px 40px rgba(18,35,75,0.16);
}

*{box-sizing:border-box;}
html{scroll-behavior:smooth; scroll-padding-top:85px;}
body{
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--ink);
  background: var(--white);
  overflow-x: hidden;
}
h1,h2,h3,h4,h5,h6{ font-family: var(--font-display); color: var(--navy); font-weight: 700; }
p{ color: var(--slate); line-height: 1.7; }
a{ text-decoration: none; }

::selection{ background: var(--gold-light); color: var(--navy); }

/* Focus visibility */
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible{
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

/* ==========================================================
   PRELOADER
   ========================================================== */
#preloader{
  position:fixed; inset:0; background: var(--navy); z-index:9999;
  display:flex; align-items:center; justify-content:center;
  transition: opacity .5s ease, visibility .5s ease;
}
#preloader.loaded{ opacity:0; visibility:hidden; }
.paper-loader{ display:flex; gap:6px; }
.paper-loader span{
  width:8px; height:36px; background: var(--gold); border-radius:3px;
  animation: paperBounce 1s infinite ease-in-out;
}
.paper-loader span:nth-child(2){ animation-delay:.15s; }
.paper-loader span:nth-child(3){ animation-delay:.3s; }
@keyframes paperBounce{ 0%,100%{ transform: scaleY(0.4);} 50%{ transform: scaleY(1);} }

/* ==========================================================
   TOP HEADER & NAVBAR
   ========================================================== */
.top-header{
  background: var(--navy);
  color: rgba(255,255,255,0.85);
  padding: 8px 0;
  font-size: 0.85rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  position: relative;
  z-index: 1030;
}
.top-header-link{
  color: rgba(255,255,255,0.9);
  transition: color 0.2s ease;
  text-decoration: none;
}
.top-header-link:hover{
  color: var(--gold-light);
}
.top-header-divider{
  color: rgba(255,255,255,0.25);
  font-weight: 300;
}
.top-header-badge{
  background: rgba(199,154,75,0.18);
  color: var(--gold-light);
  border: 1px solid rgba(199,154,75,0.35);
  border-radius: 50px;
  padding: 2px 12px;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2px;
}
.top-header-socials a{
  color: rgba(255,255,255,0.75);
  font-size: 0.9rem;
  padding: 0 4px;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.top-header-socials a:hover{
  color: var(--gold-light);
  transform: translateY(-1px);
}

#mainNav{
  position: sticky;
  top: 0;
  z-index: 1030;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(10px);
  padding: 12px 0;
  transition: all .3s ease;
  box-shadow: 0 2px 20px rgba(18,35,75,0.06);
}
#mainNav.scrolled{ padding: 8px 0; box-shadow: 0 4px 24px rgba(18,35,75,0.12); }
.logo-img{ height:42px; width:auto; max-width:180px; object-fit:contain; }
.footer-logo-img{ height:40px; width:auto; max-width:180px; object-fit:contain; filter: brightness(0) invert(1); }
.brand-text{ font-family: var(--font-display); font-weight:700; letter-spacing:.5px; color: var(--navy); font-size:1.15rem; }
.brand-text em{ font-style:normal; color: var(--gold); }
.navbar .nav-link{ color: var(--navy); font-weight:500; font-size:.95rem; padding:.5rem 1rem !important; }
.navbar .nav-link:hover{ color: var(--gold); }
.dropdown-menu{ border:none; box-shadow: var(--shadow-soft); border-radius:12px; }
.dropdown-item:hover{ background: var(--cream); color: var(--navy); }

.btn{ border-radius:50px; font-weight:600; font-family:var(--font-body); transition: all .3s ease; }
.btn-navy{ background: var(--navy); border-color: var(--navy); color:#fff; }
.btn-navy:hover{ background: var(--navy-light); border-color: var(--navy-light); color:#fff; transform: translateY(-2px); }
.btn-outline-navy{ border:1.5px solid var(--navy); color: var(--navy); background:transparent; }
.btn-outline-navy:hover{ background: var(--navy); color:#fff; transform: translateY(-2px); }
.btn-gold{ background: var(--gold); border-color: var(--gold); color:#fff; }
.btn-gold:hover{ background:#B3873D; border-color:#B3873D; color:#fff; transform: translateY(-2px); }
.text-gold{ color: var(--gold) !important; }

/* ==========================================================
   HERO
   ========================================================== */
.hero{
  position:relative;
  padding: 80px 0 65px;
  background: linear-gradient(180deg, #FBFAF8 0%, var(--cream) 100%);
  overflow:hidden;
}
.hero-grain{
  position:absolute; inset:0; pointer-events:none; opacity:.4;
  background-image: radial-gradient(rgba(18,35,75,0.04) 1px, transparent 1px);
  background-size: 18px 18px;
}
.eyebrow{
  display:inline-flex; align-items:center; gap:8px;
  background:#fff; border:1px solid rgba(199,154,75,.35); color: var(--gold);
  padding:6px 16px; border-radius:50px; font-size:.8rem; font-weight:600; letter-spacing:.3px;
}
.hero-title{
  font-size: clamp(2.2rem, 4.2vw, 3.4rem);
  line-height:1.15; margin:22px 0 18px; letter-spacing:-.5px;
}
.hero-title span{ color: var(--gold); }
.hero-sub{ font-size:1.05rem; max-width:520px; }
.hero-stats{ max-width:480px; }
.hero-stats > div{ text-align:left; }
.hero-stats .counter{ font-family: var(--font-display); font-weight:800; font-size:1.9rem; color: var(--navy); }
.hero-stats small{ display:block; color: var(--slate); font-size:.78rem; }

.hero-slider-wrapper {
  position: relative;
  max-width: 520px;
  margin: 0 auto;
  padding: 5px;
}
.hero-slide-img {
  height: 380px;
  object-fit: cover;
  border-radius: 16px;
  transition: transform 0.6s ease;
}
@media (max-width: 768px) {
  .hero-slide-img {
    height: 250px;
  }
  .hero-slider-wrapper {
    max-width: 100%;
  }
}
.bg-dark-gradient {
  background: linear-gradient(180deg, rgba(18, 35, 75, 0) 0%, rgba(18, 35, 75, 0.85) 100%);
  bottom: 0;
  left: 0;
  right: 0;
}
.floating-badge {
  position: absolute;
  bottom: -15px;
  right: 15px;
  background: #ffffff;
  padding: 10px 20px;
  border-radius: 50px;
  box-shadow: var(--shadow-lift);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  z-index: 10;
  border: 1px solid rgba(199, 154, 75, 0.25);
}
.floating-badge i { color: var(--gold); margin-right: 6px; }

.deckle-divider {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  z-index: 5;
  pointer-events: none;
}
.deckle-divider svg {
  position: relative;
  display: block;
  width: 100%;
  height: 36px;
}

/* ==========================================================
   GENERIC SECTION
   ========================================================== */
.section-pad{ padding: 90px 0; }
.bg-cream{ background: var(--cream); }
.bg-navy{ background: var(--navy); }
.text-gold{ color: var(--gold) !important; }
.section-eyebrow{
  display:inline-block; color: var(--gold); font-weight:700; text-transform:uppercase;
  font-size:.78rem; letter-spacing:1.5px; margin-bottom:10px;
}
.section-title{ font-size: clamp(1.6rem, 2.6vw, 2.3rem); margin-bottom:16px; }
.section-text{ font-size:1rem; }

.about-img img{ width:100%; height:100%; object-fit:cover; box-shadow: var(--shadow-soft); }
.about-icon{ font-size:1.6rem; color: var(--gold); }

/* Range cards */
.range-card{ background:#fff; border-radius: var(--radius); overflow:hidden; box-shadow: var(--shadow-soft); transition: transform .35s ease, box-shadow .35s ease; height:100%; }
.range-card:hover{ transform: translateY(-6px); box-shadow: var(--shadow-lift); }
.range-card img{ width:100%; height:230px; object-fit:cover; }
.range-card-body{ padding:26px; }
.range-card-body h3{ font-size:1.3rem; margin-bottom:10px; }
.link-gold{ color: var(--gold); font-weight:600; font-size:.9rem; }
.link-gold i{ transition: transform .2s ease; display:inline-block; }
.link-gold:hover i{ transform: translateX(4px); }

/* Product cards */
.product-card{ position:relative; background:#fff; border-radius: var(--radius); overflow:hidden; box-shadow: var(--shadow-soft); transition: transform .35s ease, box-shadow .35s ease; height:100%; }
.product-card:hover{ transform: translateY(-6px); box-shadow: var(--shadow-lift); }
.product-card img{ width:100%; height:210px; object-fit:cover; transition: transform .5s ease; }
.product-card:hover img{ transform: scale(1.06); }
.product-card .tag{
  position:absolute; top:14px; left:14px; z-index:2; background: var(--gold); color:#fff;
  font-size:.7rem; font-weight:700; padding:5px 12px; border-radius:50px; text-transform:uppercase; letter-spacing:.5px;
}
.product-card-body{ padding:20px; }
.product-card-body h5{ font-size:1.05rem; margin-bottom:6px; }

/* Page banner & Breadcrumb Styling */
.page-banner{
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  padding: 60px 0;
  color: #fff;
  border-bottom: 3px solid var(--gold);
}
.page-banner h1{
  color: #fff;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 700;
}
.breadcrumb-custom{
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--navy);
  background: transparent;
  padding: 0;
  margin: 0;
}
.breadcrumb-custom a{
  color: var(--navy) !important;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s ease;
}
.breadcrumb-custom a:hover{
  color: var(--gold) !important;
}
.breadcrumb-custom .separator{
  color: #6B7280 !important;
  font-size: 0.75rem;
  display: inline-flex;
  align-items: center;
}
.breadcrumb-custom .active{
  color: var(--gold) !important;
  font-weight: 600;
}

/* Dark Page Banner Breadcrumb Override */
.page-banner .breadcrumb-custom{
  color: #fff;
}
.page-banner .breadcrumb-custom a{
  color: rgba(255, 255, 255, 0.85) !important;
  font-weight: 500;
}
.page-banner .breadcrumb-custom a:hover{
  color: var(--gold) !important;
}
.page-banner .breadcrumb-custom .separator{
  color: rgba(255, 255, 255, 0.45) !important;
}
.page-banner .breadcrumb-custom .active{
  color: var(--gold) !important;
}

/* CTA banner */
.cta-banner{ background: linear-gradient(120deg, var(--navy) 0%, var(--navy-light) 100%); padding:70px 0; color:#fff; }
.cta-banner h2{ color:#fff; font-size:clamp(1.5rem,2.6vw,2.1rem); }
.cta-banner p{ color:rgba(255,255,255,.75); max-width:560px; margin:0 auto 26px; }

/* Finder box */
.finder-box{ background:#fff; border-radius: var(--radius); padding:32px; box-shadow: var(--shadow-soft); }
.form-label{ font-weight:600; color: var(--navy); font-size:.88rem; }
.form-control,.form-select{ border-radius:10px; padding:.65rem .9rem; border:1px solid #E2E1DC; }
.form-control:focus,.form-select:focus{ border-color: var(--gold); box-shadow: 0 0 0 3px rgba(199,154,75,.15); }

/* Industry cards */
.industry-card{ background:#fff; border-radius: var(--radius); padding:30px 20px; text-align:center; box-shadow: var(--shadow-soft); transition: transform .3s ease, background .3s ease; height:100%; }
.industry-card:hover{ transform: translateY(-6px); background: var(--cream); }
.industry-card i{ font-size:2rem; color: var(--gold); margin-bottom:14px; display:block; }
.industry-card h6{ font-size:.95rem; margin-bottom:4px; }

/* Why cards (on navy) */
.why-card{ background: rgba(255,255,255,.06); border:1px solid rgba(255,255,255,.1); border-radius: var(--radius); padding:30px 22px; text-align:center; height:100%; transition: background .3s ease, transform .3s ease; }
.why-card:hover{ background: rgba(199,154,75,.15); transform: translateY(-6px); }
.why-card i{ font-size:1.9rem; color: var(--gold); margin-bottom:14px; display:block; }
.why-card h6{ color:#fff; font-size:1rem; }
.why-card p{ color: rgba(255,255,255,.65); }

/* Certifications */
.cert-badge{ background:#fff; border-radius: var(--radius); padding:30px 16px; box-shadow: var(--shadow-soft); transition: transform .3s ease; }
.cert-badge:hover{ transform: translateY(-6px); }
.cert-badge i{ font-size:2.1rem; color: var(--gold); display:block; margin-bottom:12px; }
.cert-badge span{ font-weight:600; color: var(--navy); font-size:.88rem; }

/* Steps */
.step-card{ text-align:center; padding:20px 10px; }
.step-card span{ font-family: var(--font-display); font-weight:800; font-size:1.6rem; color: var(--gold-light); display:block; margin-bottom:8px; }
.step-card h6{ font-size:.95rem; margin-bottom:4px; }

/* FAQ */
.accordion-button{ font-weight:600; color: var(--navy); font-family: var(--font-display); font-size:.98rem; }
.accordion-button:not(.collapsed){ background: var(--cream); color: var(--navy); box-shadow:none; }
.accordion-button:focus{ box-shadow:none; }
.accordion-item{ border-radius:12px !important; overflow:hidden; margin-bottom:12px; border:1px solid #EDEBE4 !important; }

/* Bulk CTA */
.bulk-cta{ background: var(--gold); padding:50px 0; }
.bulk-cta h3{ color:#fff; margin-bottom:6px; }
.bulk-cta p{ color: rgba(255,255,255,.85); margin:0; }
.bulk-cta .btn-gold{ background:#fff; color: var(--gold); border-color:#fff; }
.bulk-cta .btn-gold:hover{ background: var(--navy); color:#fff; border-color: var(--navy); }

/* Blog */
.blog-card{ background:#fff; border-radius: var(--radius); overflow:hidden; box-shadow: var(--shadow-soft); transition: transform .3s ease; height:100%; }
.blog-card:hover{ transform: translateY(-6px); }
.blog-card img{ width:100%; height:190px; object-fit:cover; }
.blog-card-body{ padding:22px; }
.blog-card-body h6{ margin:8px 0 10px; font-size:1rem; }

/* Testimonials */
.testimonial-card{ background:#fff; border-radius: var(--radius); padding:36px 30px; box-shadow: var(--shadow-soft); text-align:center; max-width:640px; margin:0 auto; }
.testimonial-card i{ font-size:1.8rem; color: var(--gold-light); }
.testimonial-card p{ font-size:1.05rem; color: var(--ink); font-style:italic; margin:14px 0 18px; }
.testimonial-card h6{ margin-bottom:2px; }
.swiper-pagination-bullet-active{ background: var(--gold) !important; }

/* Contact */
.contact-list{ list-style:none; padding:0; margin:24px 0 0; }
.contact-list li{ display:flex; align-items:flex-start; gap:12px; margin-bottom:16px; color: var(--slate); font-size:.95rem; }
.contact-list i{ color: var(--gold); margin-top:3px; }
.social-btn{ width:42px; height:42px; border-radius:50%; background: var(--cream); color: var(--navy); display:flex; align-items:center; justify-content:center; transition: all .3s ease; }
.social-btn:hover{ background: var(--gold); color:#fff; transform: translateY(-3px); }
.contact-form{ background:#fff; border-radius: var(--radius); padding:34px; box-shadow: var(--shadow-soft); }

/* Footer */
.footer{ background: var(--navy); color: rgba(255,255,255,.7); padding:70px 0 24px; }
.footer h6{ color:#fff; font-size:.9rem; text-transform:uppercase; letter-spacing:1px; margin-bottom:18px; }
.footer ul{ list-style:none; padding:0; }
.footer ul li{ margin-bottom:10px; }
.footer ul a{ color: rgba(255,255,255,.65); font-size:.9rem; }
.footer ul a:hover{ color: var(--gold); }
.footer hr{ border-color: rgba(255,255,255,.12); margin:40px 0 20px; }

/* Back to top */
#backToTop{
  position:fixed; bottom:26px; right:26px; z-index:999;
  width:46px; height:46px; border-radius:50%; border:none;
  background: var(--navy); color:#fff; font-size:1.1rem;
  display:flex; align-items:center; justify-content:center;
  opacity:0; visibility:hidden; transform: translateY(12px);
  transition: all .3s ease; box-shadow: var(--shadow-soft);
}
#backToTop.show{ opacity:1; visibility:visible; transform: translateY(0); }
#backToTop:hover{ background: var(--gold); }

/* ==========================================================
   SUBPAGE & ABOUT US STYLES
   ========================================================== */
.page-banner{
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  padding: 60px 0;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.page-banner::before{
  content:'';
  position:absolute; inset:0;
  background-image: radial-gradient(rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 20px 20px;
  pointer-events: none;
}
.page-banner h1{
  color: #fff;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  margin-bottom: 8px;
}


.mv-card{
  background: #fff;
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow-soft);
  height: 100%;
  border-top: 4px solid var(--gold);
}
.mv-card i{
  font-size: 2.2rem;
  color: var(--gold);
  margin-bottom: 14px;
  display: block;
}

.value-card{
  background: #fff;
  border-radius: var(--radius);
  padding: 30px 24px;
  box-shadow: var(--shadow-soft);
  text-align: center;
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.value-card:hover{
  transform: translateY(-6px);
  box-shadow: var(--shadow-lift);
}
.value-card .icon-wrapper{
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--cream);
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 18px;
  transition: all 0.3s ease;
}
.value-card:hover .icon-wrapper{
  background: var(--gold);
  color: #fff;
}

/* Industry Detail Cards */
.industry-detail-card{
  background: #fff;
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow-soft);
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-top: 4px solid var(--gold);
}
.industry-detail-card:hover{
  transform: translateY(-6px);
  box-shadow: var(--shadow-lift);
}
.industry-icon-box{
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: var(--cream);
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 20px;
}
.spec-chip{
  display: inline-block;
  background: rgba(199,154,75,0.12);
  color: var(--navy);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 50px;
  margin-right: 6px;
  margin-bottom: 8px;
}

/* Resource & Download Cards */
.resource-card{
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  border: 1px solid #EDEBE4;
}
.resource-card:hover{
  transform: translateY(-6px);
  box-shadow: var(--shadow-lift);
}
.resource-card img{
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.download-card{
  background: #fff;
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow-soft);
  display: flex;
  align-items: center;
  gap: 16px;
  transition: transform 0.3s ease;
  border-left: 4px solid var(--gold);
}
.download-card:hover{
  transform: translateY(-4px);
}
.download-icon{
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: var(--cream);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

/* Contact Page Cards */
.contact-info-card{
  background: #fff;
  border-radius: var(--radius);
  padding: 30px 24px;
  box-shadow: var(--shadow-soft);
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-top: 4px solid var(--gold);
}
.contact-info-card:hover{
  transform: translateY(-6px);
  box-shadow: var(--shadow-lift);
}
.contact-icon-box{
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--cream);
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 18px;
}
.map-container{
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  height: 400px;
  width: 100%;
  background: #e9ecef;
}

/* FAQ Subpage Styles */
.faq-nav .nav-link{
  color: var(--navy);
  font-weight: 600;
  border-radius: 50px;
  padding: 10px 24px !important;
  transition: all 0.3s ease;
  background: #fff;
  border: 1.5px solid #e0e4ec;
  box-shadow: 0 4px 12px rgba(18,35,75,0.03);
}
.faq-nav .nav-link:hover{
  background: var(--cream);
  color: var(--gold);
  border-color: var(--gold);
}
.faq-nav .nav-link.active{
  background: var(--gold) !important;
  color: #fff !important;
  border-color: var(--gold) !important;
  box-shadow: 0 6px 18px rgba(199,154,75,0.28);
}

/* WhatsApp Button & CTA Fixes */
.btn-whatsapp{
  background: #ffffff !important;
  color: var(--navy) !important;
  border: 2px solid #ffffff !important;
  font-weight: 600;
  transition: all 0.3s ease;
}
.btn-whatsapp:hover{
  background: var(--navy) !important;
  color: #ffffff !important;
  border-color: var(--navy) !important;
}
.btn-whatsapp:hover i{
  color: #25D366 !important;
}

.btn-outline-navy{
  border: 2px solid var(--navy);
  color: var(--navy);
  background: transparent;
  font-weight: 600;
  transition: all 0.3s ease;
}
.btn-outline-navy:hover{
  background: var(--navy) !important;
  color: #ffffff !important;
  border-color: var(--navy) !important;
}

/* Quote Modal Responsive Styling */
#quoteModal .modal-header{
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  border-bottom: 2px solid var(--gold);
}
#quoteModal .modal-content{
  border-radius: 20px;
}

/* Legal Pages Styling */
.legal-card{
  background: #fff;
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow-soft);
  border: 1px solid #EDEBE4;
}
.legal-card h4{
  color: var(--navy);
  margin-top: 32px;
  margin-bottom: 14px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--cream);
}
.legal-card h4:first-of-type{
  margin-top: 0;
}
.legal-sidebar{
  background: #fff;
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow-soft);
  position: sticky;
  top: 100px;
  border: 1px solid #EDEBE4;
}
.legal-sidebar ul{
  list-style: none;
  padding: 0;
  margin: 0;
}
.legal-sidebar li{
  margin-bottom: 6px;
}
.legal-sidebar a{
  color: var(--slate);
  font-size: 0.9rem;
  font-weight: 500;
  display: block;
  padding: 8px 12px;
  border-radius: 8px;
  transition: all 0.3s ease;
}
.legal-sidebar a:hover{
  color: var(--gold);
  background: var(--cream);
}

/* Product Archive & Category Pages */
.product-sidebar{
  background: #fff;
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow-soft);
  border: 1px solid #EDEBE4;
  position: sticky;
  top: 100px;
}
.filter-title{
  font-size: 1rem;
  color: var(--navy);
  font-weight: 700;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--cream);
}
.product-price-badge{
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  display: block;
  margin: 8px 0;
}
.product-price-unit{
  font-size: 0.8rem;
  color: var(--slate);
  font-weight: 400;
}

/* Product Single Page Styling */
.product-single-gallery{
  background: #fff;
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow-soft);
  border: 1px solid #EDEBE4;
  text-align: center;
}
.product-single-main-img{
  max-height: 400px;
  width: 100%;
  object-fit: cover;
  border-radius: var(--radius);
}
.thumb-img{
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 8px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
}
.thumb-img.active, .thumb-img:hover{
  border-color: var(--gold);
}
.spec-table th{
  background: var(--navy);
  color: #fff;
  font-weight: 600;
  font-size: 0.9rem;
  border-bottom: 2px solid var(--gold);
}

/* ==========================================================
   PREMIUM FOOTER DESIGN
   ========================================================== */
.footer {
  background: linear-gradient(180deg, #0b1530 0%, #060c1d 100%);
  color: rgba(255, 255, 255, 0.75);
  padding: 65px 0 35px;
  position: relative;
  border-top: 4px solid var(--gold);
}

.footer-logo-img {
  max-height: 50px;
  width: auto;
  filter: brightness(0) invert(1);
}

.footer-about-text {
  font-size: 0.88rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
}

.footer-contact-list {
  list-style: none !important;
  padding: 0 !important;
  margin: 18px 0 0 0 !important;
}
.footer-contact-list li {
  margin-bottom: 14px !important;
  font-size: 0.88rem !important;
  line-height: 1.5 !important;
}
.footer-contact-list li a,
.footer-contact-list li span,
.footer-contact-link {
  color: rgba(255, 255, 255, 0.85) !important;
  text-decoration: none !important;
  transition: all 0.25s ease !important;
  display: flex !important;
  align-items: flex-start !important;
  gap: 10px !important;
}
.footer-contact-list li i,
.footer-contact-link i {
  color: var(--gold) !important;
  font-size: 1.05rem !important;
  margin-top: 2px !important;
  flex-shrink: 0 !important;
}
.footer-contact-list li a:hover {
  color: var(--gold) !important;
  transform: translateX(3px) !important;
}

.footer h6 {
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 8px;
}
.footer h6::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 32px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}

.footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer ul li {
  margin-bottom: 12px;
}
.footer ul:not(.footer-contact-list) li a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 400;
  transition: all 0.25s ease;
  display: inline-flex;
  align-items: center;
}
.footer ul:not(.footer-contact-list) li a::before {
  content: "\f285" !important;
  font-family: 'bootstrap-icons' !important;
  font-size: 0.72rem !important;
  color: var(--gold) !important;
  margin-right: 8px !important;
  display: inline-block !important;
  opacity: 1 !important;
  transition: transform 0.25s ease !important;
}
.footer ul:not(.footer-contact-list) li a:hover {
  color: #ffffff;
  transform: translateX(4px);
}
.footer ul:not(.footer-contact-list) li a:hover::before {
  transform: translateX(3px) !important;
  color: #ffffff !important;
}

.footer-social-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 1rem;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.12);
}
.footer-social-btn:hover {
  background: var(--gold);
  color: #ffffff;
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: 0 6px 15px rgba(199, 154, 75, 0.4);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  margin-top: 40px;
  font-size: 0.83rem;
  color: rgba(255, 255, 255, 0.6);
}
.footer-bottom a {
  color: var(--gold);
  text-decoration: none;
}
.footer-bottom a:hover {
  text-decoration: underline;
}

.spec-table td{
  font-size: 0.9rem;
}
.product-enquiry-card{
  background: #fff;
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-soft);
  border: 2px solid var(--gold);
  position: sticky;
  top: 100px;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce){
  *{ animation-duration:.01ms !important; transition-duration:.01ms !important; }
}

/* Responsive */
@media (max-width: 991px){
  .hero{ padding:140px 0 70px; text-align:center; }
  .hero-sub{ margin:0 auto; }
  .hero-stats > div{ text-align:center; }
  .paper-stack{ margin-top:40px; }
}
@media (max-width: 767px){
  .section-pad{ padding:60px 0; }
  .finder-box{ padding:22px; }
  .contact-form{ padding:24px; }
}
