/* ================= SOFA THEME VARIABLES ================= */
/* ROOT */
:root{
  --primary:#0f172a;
  --secondary:#f97316;
  --accent:#2563eb;
  --bg:#ffffff;
  --light:#f8fafc;
  --text:#1e293b;
  --muted:#64748b;
  --border:#e2e8f0;
}

/* RESET */
*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body{
  font-family:'Segoe UI',sans-serif;
  background:var(--bg);
  color:var(--text);
}

/* TOPBAR (GREEN REMOVED) */
.topbar{
  background:#111827;
  color:#e5e7eb;
  font-size:13px;
  padding:8px 0;
}

.topbar div:last-child a{
  background:transparent;
  color:#e5e7eb;
  font-size:13px;
  padding:6px 14px;
  border-radius:20px;
  border:1px solid rgba(255,255,255,0.3);
  text-decoration:none;
  transition:0.3s ease;
}

/* HOVER */
.topbar div:last-child a:hover{
  background:var(--secondary);
  border-color:var(--secondary);
  color:#fff;
}

/* HEADER */
.main-header{
  background:#fff;
  border-bottom:1px solid var(--border);
  position:sticky;
  top:0;
  z-index:999;
}

.header-inner{
  padding:12px 0;
}

/* LOGO */
.logo img{
  height:60px;
}

/* NAV DESKTOP */
.nav-desktop ul{
  display:flex;
  gap:28px;
  list-style:none;
  align-items:center;
}

.nav-desktop a,
.dropdown-btn{
  text-decoration:none;
  color:var(--text);
  font-weight:500;
  background:none;
  border:none;
  cursor:pointer;
  font-size:15px;
}

/* ===== DROPDOWN FIXED ===== */
/* ===== DROPDOWN ===== */
.dropdown{
  position:relative;
}

/* MENU */
.dropdown-menu{
  position:absolute;
  top:100%;           /* 🔥 GAP FIX (110% → 100%) */
  left:0;

  margin-top:4px;     /* small clean gap */

  background:#ffffff;
  border:1px solid #e5e7eb;
  min-width:240px;
  max-width:280px;

  border-radius:8px;
  box-shadow:0 10px 25px rgba(0,0,0,0.08);

  display:flex;
  flex-direction:column;

  opacity:0;
  visibility:hidden;
  transform:translateY(8px);
  transition:0.2s ease;

  z-index:999;
  padding:4px 0;      /* 🔥 GAP REDUCED */
}

/* SHOW */
.nav-desktop .dropdown:hover .dropdown-menu{
  opacity:1;
  visibility:visible;
  transform:translateY(0);
}

/* ITEMS */
.dropdown-menu a{
  display:block;
  padding:3px 14px;   /* 🔥 COMPACT SPACING */
  font-size:13px;
  color:#1e293b;
  text-decoration:none;
  line-height:1.3;
  transition:0.2s;
}

/* HOVER */
.dropdown-menu a:hover{
  background:#f8fafc;
  color:#f97316;
  padding-left:18px;
}

/* LEFT BORDER ACCENT */
.dropdown-menu a{
  border-left:2px solid transparent;
}

.dropdown-menu a:hover{
  border-left:2px solid #f97316;
}

/* OPTIONAL LEFT BAR */
.dropdown-menu a{
  border-left:3px solid transparent;
}

.dropdown-menu a:hover{
  border-left:3px solid #f97316;
}

/* REMOVE EXTRA EFFECTS (clean look) */
.dropdown-menu::after{
  display:none;
}
/* HEADER RIGHT */
.header-right{
  display:flex;
  align-items:center;
  gap:18px;
}

/* ===== SEARCH BAR (IMPROVED) ===== */
.search-box{
  position:relative;
  width:240px;
}

.search-box input{
  width:100%;
  padding:10px 42px 10px 14px;
  border:1px solid var(--border);
  border-radius:25px;
  outline:none;
  font-size:14px;
  background:#f9fafb;
  transition:0.3s;
}

.search-box input:focus{
  background:#fff;
  border-color:var(--secondary);
}

/* ICON */
.search-box i{
  position:absolute;
  right:14px;
  top:50%;
  transform:translateY(-50%);
  color:var(--muted);
  pointer-events:none;
}

/* ===== SUGGESTIONS (FULL FIX) ===== */
.suggestions{
  position:absolute;
  top:115%;
  left:0;
  width:100%;
  background:#fff;
  border:1px solid var(--border);
  border-radius:10px;
  max-height:260px;
  overflow-y:auto;

  display:none;
  z-index:9999;
  box-shadow:0 10px 30px rgba(0,0,0,0.08);
}

/* IMPORTANT: anchor support */
.suggestions a,
.suggestions div{
  display:block;
  padding:10px 14px;
  font-size:14px;
  color:var(--text);
  text-decoration:none;
  border-bottom:1px solid #f1f1f1;
}

.suggestions a:last-child{
  border-bottom:none;
}

.suggestions a:hover,
.suggestions div:hover{
  background:#f1f5f9;
  color:var(--secondary);
}

/* ICONS */
.sofa-icon{
  position:relative;
  font-size:20px;
  color:var(--text);
}

.sofa-badge{
  position:absolute;
  top:-5px;
  right:-8px;
  background:var(--secondary);
  color:#fff;
  font-size:11px;
  padding:2px 6px;
  border-radius:50%;
}

/* MOBILE TOGGLE */
/* MOBILE TOGGLE */
#mobileToggle{
  display:none;
  font-size:26px;
  cursor:pointer;
  color:var(--text);
}

/* ===== MOBILE NAV ===== */
.mobile-nav{
  position:fixed;
  top:0;
  left:-100%;
  width:270px;
  height:100%;
  background:#0f172a;
  padding:20px;
  transition:0.3s ease;
  z-index:1000;
  overflow-y:auto;
}

.mobile-nav.active{
  left:0;
}

/* MENU LIST */
.mobile-nav ul{
  list-style:none;
  margin-top:25px;
}

.mobile-nav li{
  margin-bottom:12px;
}

/* LINKS */
.mobile-nav a,
.mobile-nav .dropdown-btn{
  color:#e5e7eb;
  text-decoration:none;
  display:flex;
  justify-content:space-between;
  align-items:center;
  font-size:15px;
  padding:8px 0;
}

/* ===== MOBILE DROPDOWN (MAIN FIX) ===== */
.mobile-nav .dropdown-menu{
  display:none;

  /* IMPORTANT FIX */
  opacity:1 !important;
  visibility:visible !important;
  transform:none !important;

  padding-left:12px;
  margin-top:6px;
}

/* ACTIVE STATE */
.mobile-nav .dropdown.active .dropdown-menu{
  display:block;
}

/* DROPDOWN ITEMS */
.mobile-nav .dropdown-menu a{
  padding:6px 0;
  font-size:14px;
  color:black;
  transition:0.2s;
}

.mobile-nav .dropdown-menu a:hover{
  color:#f97316;
  padding-left:6px;
}

/* CLOSE BUTTON */
#closeMobileMenu{
  font-size:22px;
  cursor:pointer;
  color:#fff;
}

/* ===== RESPONSIVE ===== */
@media(max-width:992px){

  .nav-desktop{
    display:none;
  }

  #mobileToggle{
    display:block;
  }

  .search-box{
    width:170px;
  }
}

@media(max-width:576px){
  .search-box{
    display:none;
  }
}
/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: var(--background-color);
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #ffffff;
  border-color: var(--accent-color) transparent var(--accent-color) transparent;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1.5s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: -15px;
  z-index: 99999;
  background-color: var(--med-secondary); /* Using new accent color */
  width: 44px;
  height: 44px;
  border-radius: 50px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: #fff; /* White icon */
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--med-secondary), transparent 20%);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
  bottom: 15px;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  --background-color: color-mix(in srgb, var(--default-color), transparent 96%);
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 25px 0;
  position: relative;
}

.page-title h1 {
  font-size: 24px;
  font-weight: 700;
}

.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
  font-weight: 400;
}

.page-title .breadcrumbs ol li+li {
  padding-left: 10px;
}

.page-title .breadcrumbs ol li+li::before {
  content: "/";
  display: inline-block; /* Keep as is */
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 0px 0;
  scroll-margin-top: 100px;
  overflow: clip;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 66px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding: 30px 0;
  margin-bottom: 30px;
  position: relative;
}

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 15px; /* Slightly reduced margin */
  padding-bottom: 0;
  position: relative;
  z-index: 2;
}

.section-title span {
  position: absolute;
  top: 0px; /* Adjusted for better alignment */
  color: color-mix(in srgb, var(--heading-color), transparent 95%);
  left: 0;
  right: 0;
  z-index: 1;
  font-weight: 700;
  font-size: 52px;
  text-transform: uppercase;
  line-height: 1;
}

.section-title p {
  margin-bottom: 0;
  position: relative;
  z-index: 2;
}

@media (max-width: 575px) {
  .section-title h2 {
    font-size: 28px;
    margin-bottom: 15px;
  }

  .section-title span {
    font-size: 38px;
  }
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%;
  min-height: 70vh;
  position: relative;
  padding: 120px 0 60px 0;
  display: flex; /* Keep as is */
  align-items: center;
}

.hero h1 {
  margin: 0;
  font-size: 48px;
  font-weight: 700;
  line-height: 56px;
}

.hero p {
  color: var(--med-muted); /* Using muted color for description */
  margin: 5px 0 30px 0;
  font-size: 20px;
  font-weight: 400;
}

.hero .btn-get-started {
  color: var(--contrast-color);
  background: var(--med-secondary); /* Using new accent color */
  font-family: var(--heading-font);
  font-weight: 400;
  font-size: 15px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 28px 12px 28px;
  border-radius: 50px;
  transition: 0.5s;
  box-shadow: 0 8px 28px rgba(255,111,0,0.25); /* Accent color shadow */
}

.hero .btn-get-started:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--med-secondary), transparent 15%);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
}

.hero .btn-watch-video {
  font-size: 16px;
  transition: 0.5s;
  margin-left: 25px;
  color: var(--default-color);
  font-weight: 600;
}

.hero .btn-watch-video i {
  color: var(--med-secondary); /* Accent color for video icon */
  font-size: 32px;
  transition: 0.3s;
  line-height: 0;
  margin-right: 8px;
}

.hero .btn-watch-video:hover {
  color: var(--med-secondary);
}

.hero .btn-watch-video:hover i {
  color: color-mix(in srgb, var(--med-secondary), transparent 15%);
}

.hero .animated {
  animation: up-down 2s ease-in-out infinite alternate-reverse both;
}

@media (max-width: 640px) {
  .hero h1 {
    font-size: 28px;
    line-height: 36px;
  }

  .hero p {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }

  .hero .btn-get-started,
  .hero .btn-watch-video {
    font-size: 13px;
  }
}

@keyframes up-down {
  0% {
    transform: translateY(10px);
  }

  100% {
    transform: translateY(-10px);
  }
}


.whatsapp-button {

position:fixed;

bottom:25px;
right:25px;

width:60px;
height:60px;

background: #25D366; /* Keep WhatsApp green */

color:white;

border-radius:50%;

display:flex;
align-items:center;
justify-content:center;

font-size:30px;

box-shadow: 0 6px 15px rgba(0,0,0,0.3); /* Keep as is */

z-index:999;

text-decoration:none;

animation: whatsapp-pulse 2s infinite;

}

.whatsapp-button:hover{

transform:scale(1.1);

background:#20b858;

}

/* Tooltip */

.whatsapp-tooltip {

position:absolute;

right:70px;

background:black;

color:white;

padding:6px 12px;

border-radius:6px;

font-size:13px;

opacity:0;

white-space:nowrap;

transition:0.3s;

}

.whatsapp-button:hover .whatsapp-tooltip{

opacity:1;

}

/* Pulse animation */

@keyframes whatsapp-pulse{

0%{
box-shadow:0 0 0 0 rgba(37,211,102,.7);
}

70%{
box-shadow:0 0 0 15px rgba(37,211,102,0);
}

100%{
box-shadow:0 0 0 0 rgba(37,211,102,0);
}

}
/*--------------------------------------------------------------
# Certificate Section
--------------------------------------------------------------*/
.certification-section {
  background: var(--med-bg);
  padding: 15px 0;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
  overflow: hidden;
}

.certification-track {
  display: flex;
  gap: 60px;
  animation: scrollCert 10s linear infinite;
  align-items: center;
}

.cert-item {
  display: flex;
  align-items: center;
  gap: 10px; /* Slightly reduced gap */
  min-width: 220px;
  font-weight: 600;
  color: var(--charcoal);
  font-size: 16px;
  white-space: nowrap;
}

.cert-item img {
  height: 42px;
  object-fit: contain;
  filter: grayscale(80%); /* Slightly less grayscale */
  opacity: 0.8; /* Slightly less opaque */
  transition: 0.3s ease;
}

.cert-item:hover img {
  filter: grayscale(0%); /* Full color on hover */
  transform: scale(1.05);
}

/* Animation */
@keyframes scrollCert {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* Mobile */
@media(max-width: 768px) {
  .certification-track {
    animation-duration: 2s; /* Mobile speed = 10 seconds */
  }

  .cert-item {
    min-width: 180px;
    font-size: 14px;
  }

  .cert-item img {
    height: 34px;
  }
}

.about-banner {
  width: 100%;
  height: 300px;
  background: url('../../assets/images/industrial-banner.webp') center/cover no-repeat; /* Changed banner image */
  position: relative;
  display: flex;
  align-items: center;
}

/* Dark overlay for text readability */
.banner-overlay {
  width: 100%;
  height: 100%; /* Keep as is */
  background: linear-gradient(to right, rgba(0,0,0,0.55), rgba(0,0,0,0.25));
  display: flex;
  align-items: center;
}

/* Text Styling */
.about-banner h1 {
  color: white;
  font-size: 42px;
  font-weight: 600;
  margin-bottom: 6px;
}

.about-banner p {
  color: rgba(255,255,255,0.85);
  font-size: 16px;
  max-width: 520px;
}

/* MOBILE RESPONSIVE */
@media(max-width: 768px) {
  .about-banner {
    height: 220px;
  }

  .about-banner h1 {
    font-size: 28px;
  }

  .about-banner p {
    font-size: 14px;
  }
}


/*--------------------------------------------------------------
# Category Section
--------------------------------------------------------------*/
/* -------------------- */


/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about-handloom {
  background: var(--med-bg-light); /* Using light background variable */
}

/* IMAGE AREA */
.about-image-wrap {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--med-shadow); /* Using new shadow variable */
}

.about-main-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.about-image-wrap:hover .about-main-img {
  transform: scale(1.08);
}

/* FLOATING FABRIC BADGE */
.fabric-badge {
  position: absolute;
  bottom: 18px;
  left: 25px; /* Slightly more offset */
  background: rgba(198,90,58,0.95);
  color: white;
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.4px;
}

/* TEXT SIDE */
.about-label {
  display: inline-block;
  color: var(--med-secondary); /* Using new accent color */
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 1.2px;
  margin-bottom: 14px;
}

.about-title {
  font-size: 42px; /* Slightly smaller */
  font-weight: 800; /* Slightly less bold */
  color: var(--med-primary); /* Using new primary color */
  line-height: 1.15;
}

.about-title span {
  color: var(--med-secondary); /* Using new accent color */
}

/* DESCRIPTION */
.about-description {
  font-size: 17px;
  font-weight: 600;
  color: #444;
  line-height: 1.7; /* Slightly reduced line height */
  margin-top: 16px;
  max-width: 560px;
}

/* HIGHLIGHT LIST */
.about-highlights {
  margin-top: 18px;
  padding-left: 0;
  list-style: none;
}

.about-highlights li {
  font-size: 15px;
  font-weight: 600;
  color: var(--med-text);
  margin-bottom: 10px;
  padding-left: 26px;
  position: relative;
}

.about-highlights li::before {
  content: "✓"; /* Changed bullet point to checkmark */
  position: absolute;
  left: 0;
  color: #CFAE70;
  font-size: 16px;
}

/* BUTTON */
.about-btn-premium {
  display: inline-block;
  margin-top: 26px;
  padding: 12px 30px; /* Slightly smaller button */
  border-radius: var(--med-radius); /* Using new radius */
  background: var(--med-secondary); /* Solid accent color */
  color: white;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-decoration: none;
  box-shadow: 0 10px 25px rgba(255,111,0,0.35); /* Accent color shadow */
  transition: all 0.3s ease;
}

.about-btn-premium:hover {
  transform: translateY(-2px);
  background: color-mix(in srgb, var(--med-secondary), black 10%); /* Slightly darker on hover */
}

/* MOBILE RESPONSIVE */
@media (max-width: 768px) {

  .about-title {
    font-size: 34px;
  }

  .about-description {
    font-size: 16px;
  }

  .about-image-wrap {
    border-radius: 16px;
  }

  .fabric-badge {
    font-size: 12px;
    padding: 6px 14px;
  }
}

/*--------------------------------------------------------------
# Prefooter Section
--------------------------------------------------------------*/
/* ================================
LUXURY SOFA HOME SECTION
================================ */

.luxury-sofa-section{
background:#0b0b0b;
padding: 60px 20px; /* Slightly reduced padding */
position:relative;
overflow:hidden;
color:#fff;
font-family:var(--sofa-font);
}

/* CONTAINER */

.luxury-sofa-section .container{
max-width:1200px;
margin:auto;
}

/* LAYOUT */

.luxury-sofa-wrapper{
display:flex;
align-items:center;
justify-content:space-between;
gap:70px;
}

/* ================================
TEXT AREA
================================ */

.luxury-sofa-text{
flex:1;
max-width: 580px; /* Slightly wider text area */
}

/* BADGE */

/* .sofa-badge{
display:inline-block;
background:rgba(255,106,0,0.12);
border:1px solid rgba(255,106,0,0.35);
color:#c89b3c;
padding:7px 18px;
border-radius:40px;
font-size:12px;
letter-spacing:1px;
font-weight:600;
margin-bottom:18px;
} */

/* HEADING */

.luxury-heading{
font-size: 38px; /* Slightly smaller heading */
font-weight: 700;
line-height:1.2;
margin-bottom:18px;
}

.luxury-heading span{
background: var(--med-secondary); /* Solid accent color */
-webkit-background-clip:text;
color:transparent;
}

/* DESCRIPTION */

.luxury-desc{
color: rgba(255,255,255,0.7); /* Lighter white for contrast */
font-size:16px;
line-height:1.7;
margin-bottom:34px;
}

/* ================================
BUTTON
================================ */

.luxury-btn{
display:inline-flex;
align-items:center;
gap:12px;
padding:15px 36px;
border-radius: var(--med-radius); /* Using new radius */
background: var(--med-secondary); /* Solid accent color */
color:#fff;
font-weight:600;
text-decoration:none;
font-size:15px;
position: relative;
overflow:hidden;
transition:.35s;
box-shadow:0 10px 30px rgba(255,106,0,0.35);
}

/* BUTTON ICON */

.luxury-btn i{
transition:.35s;
}

/* BUTTON HOVER */

.luxury-btn:hover{
transform:translateY(-4px);
box-shadow: 0 18px 40px rgba(255,111,0,0.5); /* Accent color shadow */
}

.luxury-btn:hover i{
transform:translateX(6px);
}

/* LIGHT SWEEP */

.luxury-btn::before{
content:"";
position:absolute;
top:0;
left:-100%;
width:100%;
height:100%;
background:linear-gradient(
120deg,
transparent,
rgba(255,255,255,0.35),
transparent
);
transition:.6s;
}

.luxury-btn:hover::before{
left:100%;
}

/* ================================
IMAGE
================================ */

.luxury-sofa-image{
flex:1;
text-align:center;
position:relative;
}

.luxury-sofa-image img{
max-width:100%;
border-radius: var(--med-radius); /* Using new radius */
transition:.5s;
box-shadow:0 20px 60px rgba(0,0,0,0.6);
}

/* IMAGE HOVER */

.luxury-sofa-image:hover img{
transform:scale(1.05);
}

/* ================================
ORANGE GLOW BACKGROUND
================================ */

.sofa-glow{
position:absolute;
border-radius:50%;
filter:blur(100px);
opacity:.35;
pointer-events:none;
}

.glow1{
width:380px;
height: 380px;
background: var(--med-secondary); /* Accent color glow */
top:-150px;
right:-150px;
}

.glow2{
width: 420px;
height: 420px;
background: var(--med-primary); /* Primary color glow */
bottom:-180px;
left:-160px;
}

/* ================================
RESPONSIVE
================================ */

@media(max-width:992px){

.luxury-sofa-wrapper{
flex-direction:column;
text-align:center;
gap:50px;
}

.luxury-sofa-text{
max-width:100%;
}

.luxury-heading{
font-size:34px;
}

}

/* MOBILE */

@media(max-width:600px){

.luxury-sofa-section{
padding:80px 20px;
}

.luxury-heading{
font-size:28px;
}

.luxury-desc{
font-size:14px;
}

.luxury-btn{
padding:13px 28px;
font-size:14px;
}

.luxury-sofa-image img{
border-radius: var(--med-radius);
}

}
/*--------------------------------------------------------------
# Section Banner
--------------------------------------------------------------*/
.section-banner {
  width: 100%;
  height: 320px;
  background: url('../../assets/images/industrial-contact-banner.webp') center/cover no-repeat; /* Changed banner image */
  position: relative;
  margin: 0px 0px 0px;
}

/* Overlay */
.banner-overlay {
  width: 100%;
  height: 100%; /* Keep as is */
  background: linear-gradient(to right, rgba(0,0,0,0.65), rgba(0,0,0,0.2));
  display: flex;
  align-items: center;
}

/* Content */
.banner-content {
  max-width: 1200px;
  margin: auto; /* Keep as is */
  padding: 0 20px;
  color: white;
}

.banner-content h2 {
  font-size: 34px;
  font-weight: 800;
  margin-bottom: 10px;
}

.banner-content p {
  font-size: 16px;
  opacity: 0.9;
  margin-bottom: 18px;
}

/* Button */
.banner-btn {
  display: inline-block; /* Keep as is */
  background: var(--med-secondary); /* Accent color */
  color: white;
  padding: 10px 22px;
  border-radius: var(--med-radius); /* New radius */
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.banner-btn:hover {
  background: #9f4228;
  transform: translateY(-2px);
}

/* Mobile */
@media (max-width: 768px) {
  .section-banner {
    height: 220px;
  }

  .banner-content h2 {
    font-size: 22px;
  }

  .banner-content p {
    font-size: 14px;
  }
}
/*--------------------------------------------------------------
# Why Choose Us Section
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Bulk Section
--------------------------------------------------------------*/
.bulk-section {
  padding: 60px 0; /* Slightly more padding */
  background: var(--med-bg-light); /* Using light background variable */
  font-family: 'Poppins', sans-serif;
}

.bulk-wrapper {
  max-width: 1200px;
  margin: auto; /* Keep as is */
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(0,0,0,0.1);
}

/* LEFT IMAGE */
.bulk-image {
  width: 60%; /* Slightly wider image */
  height: 360px;
}

.bulk-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* RIGHT CARD */
.bulk-content {
  width: 40%; /* Slightly narrower content */
  background: var(--med-bg);
  padding: 35px; /* Slightly reduced padding */
}

.bulk-content h2 {
  font-size: 26px; /* Slightly smaller heading */
  font-weight: 700; /* Bolder heading */
  margin-bottom: 10px;
}

.subtitle {
  font-size: 15px;
  color: #666;
  margin-bottom: 18px;
}

/* BULLET POINTS */
.bulk-points {
  list-style: none;
  padding: 0;
  margin-bottom: 18px;
}

.bulk-points li {
  font-size: 14.5px;
  margin-bottom: 8px;
  padding-left: 20px;
  position: relative;
}

.bulk-points li::before {
  content: "✔";
  position: absolute;
  left: 0; /* Keep as is */
  color: #c07a3f;
}

/* CONTACT ROW */
.bulk-contact {
  font-size: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 12px;
  font-weight: 500;
}

/* RESPONSIVE */
@media(max-width: 992px){
  .bulk-wrapper {
    flex-direction: column;
  }

  .bulk-image,
  .bulk-content {
    width: 100%;
  }

  .bulk-image {
    height: 280px;
  }
}

@media(max-width: 600px){
  .bulk-content {
    padding: 26px 20px;
  }

  .bulk-content h2 {
    font-size: 22px;
  }
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
/* CONTACT SECTION */

/* ================= CONTACT SECTION ================= */

.lux-contact-section{
background: var(--med-bg-light); /* Using light background variable */
padding:40px 20px;
color:#2b2b2b;
position:relative;
overflow:hidden;
}

/* subtle wood glow */
.lux-contact-section::before{
content:"";
position:absolute;
top:-100px;
left:-100px;
width:300px;
height:300px;
background:radial-gradient(circle, rgba(44,62,80,0.15), transparent); /* Primary color glow */
filter:blur(80px);
}

/* ================= HEADER ================= */

.contact-header{
max-width:750px;
margin:auto;
margin-bottom:60px;
text-align:center;
}

.contact-tag{
color: var(--med-secondary); /* Accent color for tag */
font-weight:600;
letter-spacing:3px;
font-size:12px;
display:block;
margin-bottom:10px;
}
 
.contact-title{
font-size:40px;
font-weight:800;
margin-bottom:12px;
color:#1a1a1a;
}

.contact-title span{
color: var(--med-secondary); /* Accent color for title span */
}

.contact-subtext{
color:#6b6b6b;
font-size:15px;
line-height:1.7;
}

/* ================= INFO CARD ================= */

.contact-info-card{
background: var(--med-bg);
padding:35px;
border-radius: var(--med-radius);
border:1px solid var(--med-border);
height:100%;

box-shadow:0 15px 40px rgba(0,0,0,0.08);
transition:.3s;
}

.contact-info-card:hover{
transform:translateY(-5px);
box-shadow:0 25px 60px rgba(0,0,0,0.12);
}

.contact-info-card h4{
margin-bottom:25px;
font-weight:700;
color:#1a1a1a;
}

/* INFO ITEM */

.info-item{
display:flex;
gap:14px;
margin-bottom:20px;
}

.info-item i{
color: var(--med-secondary); /* Accent color for icons */
font-size:20px;
background:#f5f1eb;
width:40px;
height:40px;
display:flex;
align-items:center;
justify-content:center;
border-radius:50%;
}

.info-item h6{
margin:0;
font-size:14px;
color:#1a1a1a;
}

.info-item p{
margin:0;
font-size:13px;
color:#666;
}

/* NOTE */

.contact-note{
margin-top: 20px;
background:#f5f1eb;
border-left:4px solid #c89b3c;
padding:14px 16px;
border-radius:10px;
font-size:14px;
color:#555;
}

/* ================= FORM CARD ================= */

.contact-form-card{
background: var(--med-bg);
padding:35px;
border-radius: var(--med-radius);
border:1px solid var(--med-border);

box-shadow:0 15px 40px rgba(0,0,0,0.08);
transition:.3s;
}

.contact-form-card:hover{
transform:translateY(-5px);
box-shadow:0 25px 60px rgba(0,0,0,0.12);
}

.contact-form-card h4{
margin-bottom:25px;
font-weight:700;
color:#1a1a1a;
}

/* ================= INPUTS ================= */

.lux-input{
background: var(--med-bg-light);
border:1px solid var(--med-border);
color: var(--med-text);
border-radius: var(--med-radius);
padding:14px 16px;
transition:.3s;
}

.lux-input::placeholder{
color: var(--med-muted);
}

.lux-input:focus{
border-color: var(--med-secondary); /* Accent color on focus */
box-shadow:0 0 0 2px rgba(255,111,0,0.2); /* Accent color shadow */
background:#fff;
color:#000;
}

/* ================= BUTTON ================= */

.lux-contact-btn{
padding:14px 38px;
border-radius:40px;
border: none;
background: var(--med-secondary); /* Solid accent color */
color:#fff;
font-weight:600;
cursor:pointer;
transition:.3s;
letter-spacing:.4px;

box-shadow:0 10px 25px rgba(255,111,0,0.35); /* Accent color shadow */
}

.lux-contact-btn:hover{
transform: translateY(-2px);
box-shadow:0 15px 40px rgba(255,111,0,0.5); /* Accent color shadow */
background:#2b1d1a;
}

/* ================= MAP SECTION ================= */

.contact-map-section{
margin-top:70px;
}

.map-header h3{
font-size:26px;
font-weight:700;
margin-bottom:8px;
color:#1a1a1a;
}

.map-header p{
color:#777;
margin-bottom:25px;
}

/* MAP */

.map-container{
border-radius: var(--med-radius);
overflow: hidden;
border:1px solid #eee;

box-shadow:0 20px 50px rgba(0,0,0,0.1);
}

/* MAP EFFECT */

.map-container iframe{
filter:grayscale(.6);
transition:.4s;
}

.map-container:hover iframe{
filter:grayscale(0);
}

/* ================= MOBILE ================= */

@media(max-width:768px){

.lux-contact-section{
padding:60px 15px;
}

.contact-title{
font-size:28px;
}

.contact-info-card,
.contact-form-card {
padding:25px;
}

.info-item{
gap:10px;
}

.info-item i{
width:35px;
height:35px;
font-size:16px;
}

}
/*--------------------------------------------------------------
# Contact Page
--------------------------------------------------------------*/
.service-details .service-box {
  background-color: var(--surface-color);
  padding: 20px;
  box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.1);
}

.service-details .service-box+.service-box {
  margin-top: 30px;
}

.service-details .service-box h4 {
  font-size: 20px;
  font-weight: 700;
  border-bottom: 2px solid color-mix(in srgb, var(--default-color), transparent 92%);
  padding-bottom: 15px;
  margin-bottom: 15px;
}

.service-details .services-list {
  background-color: var(--surface-color);
}

.service-details .services-list a {
  color: var(--med-primary); /* Primary color for service list links */
  background-color: color-mix(in srgb, var(--default-color), transparent 96%);
  padding-right: 15px; /* Ensure consistent padding */
  display: flex;
  align-items: center;
  padding: 12px 15px;
  margin-top: 15px;
  transition: 0.3s;
}

.service-details .services-list a:first-child {
  margin-top: 0;
}

.service-details .services-list a i {
  font-size: 16px;
  margin-right: 8px; /* Keep as is */
  color: var(--med-secondary); /* Accent color for icons */
}

.service-details .services-list a.active {
  color: #fff; /* White text for active */
  background-color: var(--accent-color);
}

.service-details .services-list a.active i {
  color: var(--contrast-color);
}

.service-details .services-list a:hover {
  background-color: color-mix(in srgb, var(--med-secondary), transparent 90%);
  color: var(--accent-color);
}

.service-details .download-catalog a {
  color: var(--default-color);
  display: flex;
  align-items: center;
  padding: 10px 0;
  transition: 0.3s;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.service-details .download-catalog a:first-child {
  border-top: 0;
  padding-top: 0;
}

.service-details .download-catalog a:last-child {
  padding-bottom: 0;
}

.service-details .download-catalog a i {
  font-size: 24px;
  margin-right: 8px; /* Keep as is */
  color: var(--med-secondary); /* Accent color for icons */
}

.service-details .download-catalog a:hover {
  color: var(--med-secondary);
}

.service-details .help-box {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  margin-top: 30px;
  padding: 30px 15px;
}

.service-details .help-box .help-icon {
  font-size: 48px;
}

.service-details .help-box h4,
.service-details .help-box a {
  color: var(--contrast-color);
}

.service-details .services-img {
  margin-bottom: 20px;
}

.service-details h3 {
  font-size: 26px;
  font-weight: 700;
}

.service-details p {
  font-size: 15px;
}

.service-details ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.service-details ul li {
  padding: 5px 0;
  display: flex;
  align-items: center;
}

.service-details ul i {
  font-size: 20px;
  margin-right: 8px; /* Keep as is */
  color: var(--med-secondary); /* Accent color for icons */
}

/*--------------------------------------------------------------