/* ================= SOFA THEME VARIABLES ================= */

:root{

--sofa-bg:#0f0f0f;
--sofa-bg-light:#1a1a1a;

--sofa-orange:#ff6a00;
--sofa-orange-hover:#ff7a00;

--sofa-white:#ffffff;
--sofa-border:#2a2a2a;

--sofa-text:#ffffff;
--sofa-muted:#999;

--sofa-shadow:0 10px 30px rgba(0,0,0,0.35);
--sofa-radius:8px;

--sofa-font:"Poppins", sans-serif;

}


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

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

.sofa-header{
background:var(--sofa-bg);
border-bottom:1px solid var(--sofa-border);
font-family:var(--sofa-font);
position:sticky;
top:0;
z-index:9999;
box-shadow:0 4px 18px rgba(0,0,0,0.4);
}


/* ================= TOP BAR ================= */

.sofa-topbar{
background:#ff7a00;
color:#fff;
font-size:14px;
padding:8px 0;
border-bottom:1px solid var(--sofa-border);
}

.sofa-topbar .container-xl{
position:relative;
}

.sofa-top-left span{
margin-right:15px;
}

.sofa-sale-text{
position:absolute;
left:50%;
transform:translateX(-50%);
font-weight:500;
color:#fff;
}

.sofa-top-right a{
display:inline-block;
padding:8px 18px;
border-radius:25px;
background:linear-gradient(135deg,#ff6a00,#ff8c32);
color:#fff;
font-size:14px;
font-weight:500;
text-decoration:none;
letter-spacing:.4px;
transition:.3s;
box-shadow:0 4px 10px rgba(255,106,0,0.35);
}

.sofa-top-right a:hover{
background:linear-gradient(135deg,#ff8c32,#ff6a00);
transform:translateY(-2px);
box-shadow:0 6px 16px rgba(255,106,0,0.55);
}

.sofa-top-right a i{
margin-right:6px;
}


/* ================= LOGO ================= */

.sofa-logo img{
height:70px;
width:auto;
transition:.3s;
}

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


/* ================= NAVIGATION ================= */

.sofa-nav{
position:relative;
z-index:9999;
}

.sofa-menu{
display:flex;
align-items:center;
gap:32px;
margin:0;
padding:0;
}

.sofa-menu li{
list-style:none;
position:relative;
}

.sofa-menu a,
.sofa-menu button{
text-decoration:none;
color:var(--sofa-text);
font-weight:500;
font-size:15px;
border:none;
background:none;
cursor:pointer;
padding:6px 0;
display:flex;
align-items:center;
gap:6px;
position:relative;
transition:.3s;
}

.sofa-menu a:hover,
.sofa-menu button:hover{
color:var(--sofa-orange);
}


/* ================= UNDERLINE HOVER ================= */

.sofa-menu li a::after,
.sofa-menu li button::after{
content:"";
position:absolute;
left:0;
bottom:-4px;
width:0;
height:2px;
background:var(--sofa-orange);
transition:.3s;
}

.sofa-menu li:hover a::after,
.sofa-menu li:hover button::after{
width:100%;
}


/* ================= DROPDOWN ================= */

/* ================= DROPDOWN PREMIUM ================= */

.dropdown-menu{
position:absolute;
top:110%;
left:0;
background:#1a1a1a;
border:1px solid rgba(255,255,255,0.08);
border-radius:10px;
min-width:230px;
padding:10px 0;

display:none;

box-shadow:0 12px 30px rgba(0,0,0,0.5);
backdrop-filter:blur(10px);

animation:dropdownFade .25s ease;
z-index:9999;
}

/* SHOW */

@media(min-width:992px){

.dropdown:hover .dropdown-menu{
display:block;
}

}

/* ITEMS */

.dropdown-menu li{
list-style:none;
}

.dropdown-menu a{
display:flex;
align-items:center;
gap:10px;

padding:11px 18px;

font-size:14px;
font-weight:500;

color:#e5e5e5;
background: #000;
text-decoration:none;

border-left:3px solid transparent;

transition:.25s;
}

/* HOVER EFFECT */

.dropdown-menu a:hover{

background:rgba(255,122,0,0.08);
color:#000;

border-left:3px solid #ff7a00;

padding-left:22px;

}

/* ANIMATION */

@keyframes dropdownFade{

from{
opacity:0;
transform:translateY(10px);
}

to{
opacity:1;
transform:translateY(0);
}

}
/* ================= SEARCH ================= */

.sofa-search{
position:relative;
width:260px;
}

.sofa-search input{
width:100%;
height:42px;
padding:0 48px 0 16px;
border-radius:30px;
border:1px solid rgba(255,255,255,0.08);
background:linear-gradient(145deg,#141414,#1f1f1f);
font-size:14px;
color:#fff;
outline:none;
transition:.35s;
box-shadow:0 4px 12px rgba(0,0,0,0.45);
}

.sofa-search input::placeholder{
color:#9a9a9a;
letter-spacing:.4px;
}

.sofa-search input:focus{
border-color:#ff6a00;
box-shadow:
0 0 0 2px rgba(255,106,0,0.25),
0 6px 18px rgba(0,0,0,0.6);
background:#181818;
}

.sofa-search i{
position:absolute;
right:10px;
top:50%;
transform:translateY(-50%);
background:#ff6a00;
color:#fff;
width:30px;
height:30px;
display:flex;
align-items:center;
justify-content:center;
border-radius:50%;
font-size:14px;
pointer-events:none;
}


/* ================= ICONS ================= */

.sofa-icons{
display:flex;
align-items:center;
gap:26px;
}

.sofa-icon{
position:relative;
font-size:22px;
color:#fff;
transition:.3s;
}

.sofa-icon:hover{
color:var(--sofa-orange);
transform:translateY(-2px);
}


/* ================= BADGES ================= */

.sofa-badge{
position:absolute;
top:-6px;
right:-8px;
background:var(--sofa-orange);
color:#fff;
font-size:10px;
font-weight:600;
min-width:18px;
height:18px;
display:flex;
align-items:center;
justify-content:center;
border-radius:50%;
}


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

#mobileToggle{
cursor:pointer;
font-size:28px;
color:#fff;
}

.mobile-nav{
display:none;
background:var(--sofa-bg);
border-top:1px solid var(--sofa-border);
}

.mobile-nav.active{
display:block;
}

.mobile-nav .sofa-menu{
flex-direction:column;
align-items:flex-start;
gap:18px;
padding:20px;
}

.mobile-nav .sofa-menu a,
.mobile-nav button{
font-size:16px;
}


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

.mobile-nav .dropdown-menu{
display:none;
position:static;
margin-top:10px;
padding-left:15px;
border-left:3px solid var(--sofa-orange);
background:#151515;
}

.mobile-nav .dropdown.active .dropdown-menu{
display:block;
}

.mobile-nav .dropdown-menu a{
padding:8px 0;
font-size:15px;
}


/* ================= SEARCH SUGGESTIONS ================= */

.suggestions-box{
position:absolute;
top:100%;
left:0;
width:100%;
background:#141414;
border:1px solid #333;
border-radius:8px;
z-index:9999;
display:none;
max-height:260px;
overflow-y:auto;
}

.suggest-item{
display:block;
padding:10px 15px;
color:#ddd;
text-decoration:none;
transition:.2s;
}

.suggest-item:hover{
background:#ff6a00;
color:#fff;
}


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

@media(max-width:992px){

  .sofa-topbar .container-xl{
flex-direction:row;
gap:4px;
text-align:center;
}

/* remove absolute positioning */

.sofa-sale-text{
position:static;
transform:none;
order:2;
font-size:13px;
display: none;
}

/* phone number */

.sofa-top-left{
order:1;
font-size:13px;
}

/* login button */

.sofa-top-right{
order:3;
}

.sofa-top-right a{
padding:5px 12px;
font-size:12px;
}
.sofa-search{
display:none;
}

.sofa-logo img{
height:50px;
}

}

@media(max-width:768px){

.sofa-icons{
gap:16px;
}

.sofa-logo img{
height:40px;
}

}
/*--------------------------------------------------------------
# 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(--accent-color);
  width: 44px;
  height: 44px;
  border-radius: 50px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), 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;
  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: 20px;
  padding-bottom: 0;
  position: relative;
  z-index: 2;
}

.section-title span {
  position: absolute;
  top: 4px;
  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;
  align-items: center;
}

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

.hero p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin: 5px 0 30px 0;
  font-size: 20px;
  font-weight: 400;
}

.hero .btn-get-started {
  color: var(--contrast-color);
  background: var(--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(0, 0, 0, 0.1);
}

.hero .btn-get-started:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--accent-color), 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(--accent-color);
  font-size: 32px;
  transition: 0.3s;
  line-height: 0;
  margin-right: 8px;
}

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

.hero .btn-watch-video:hover i {
  color: color-mix(in srgb, var(--accent-color), 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;

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);

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: #ffffff;
  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: 14px;
  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(100%);
  opacity: 0.9;
  transition: 0.3s ease;
}

.cert-item:hover img {
  filter: grayscale(0%);
  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/abc.webp') center/cover no-repeat;
  position: relative;
  display: flex;
  align-items: center;
}

/* Dark overlay for text readability */
.banner-overlay {
  width: 100%;
  height: 100%;
  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: linear-gradient(135deg, #FAF7F2, #ffffff);
}

/* IMAGE AREA */
.about-image-wrap {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.18);
}

.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: 18px;
  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: #C65A3A;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 1.2px;
  margin-bottom: 14px;
}

.about-title {
  font-size: 46px;
  font-weight: 900;
  color: #2E2E2E;
  line-height: 1.15;
}

.about-title span {
  color: #C65A3A;
}

/* DESCRIPTION */
.about-description {
  font-size: 17px;
  font-weight: 600;
  color: #444;
  line-height: 1.85;
  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: 700;
  color: #2E2E2E;
  margin-bottom: 10px;
  padding-left: 26px;
  position: relative;
}

.about-highlights li::before {
  content: "✦";
  position: absolute;
  left: 0;
  color: #CFAE70;
  font-size: 16px;
}

/* BUTTON */
.about-btn-premium {
  display: inline-block;
  margin-top: 26px;
  padding: 14px 38px;
  border-radius: 50px;
  background: linear-gradient(135deg, #C65A3A, #B24A2E);
  color: white;
  font-weight: 900;
  letter-spacing: 0.6px;
  text-decoration: none;
  box-shadow: 0 14px 40px rgba(198,90,58,0.35);
  transition: 0.3s ease;
}

.about-btn-premium:hover {
  transform: translateY(-3px) scale(1.04);
  background: linear-gradient(135deg, #B24A2E, #C65A3A);
}

/* 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:80px 20px;
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:520px;
}

/* BADGE */

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

/* HEADING */

.luxury-heading{
font-size:46px;
font-weight:800;
line-height:1.2;
margin-bottom:18px;
}

.luxury-heading span{
background:linear-gradient(90deg,#ff6a00,#ffa046);
-webkit-background-clip:text;
color:transparent;
}

/* DESCRIPTION */

.luxury-desc{
color:#bdbdbd;
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:50px;
background:linear-gradient(135deg,#ff6a00,#ff8a2b);
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,106,0,0.5);
}

.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:22px;
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:#ff6a00;
top:-150px;
right:-150px;
}

.glow2{
width:420px;
height:420px;
background:#ff8a2b;
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:18px;
}

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

/* Overlay */
.banner-overlay {
  width: 100%;
  height: 100%;
  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;
  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;
  background: #c65a3a;
  color: white;
  padding: 10px 22px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: 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: 50px 0;
  background: rgba(250,247,242,0.9), rgba(250,247,242,0.6);
  font-family: 'Poppins', sans-serif;
}

.bulk-wrapper {
  max-width: 1200px;
  margin: auto;
  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: 55%;
  height: 360px;
}

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

/* RIGHT CARD */
.bulk-content {
  width: 45%;
  background: white;
  padding: 40px 36px;
}

.bulk-content h2 {
  font-size: 28px;
  font-weight: 600;
  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;
  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 */

.lux-contact-section{
background:#0b0b0b;
padding:50px 20px;
color:#fff;
position:relative;
overflow:hidden;
}

/* HEADER */

.contact-header{
max-width:750px;
margin:auto;
margin-bottom:70px;
}

.contact-tag{
color:#ff6a00;
font-weight:600;
letter-spacing:2px;
font-size:13px;
display:block;
margin-bottom:10px;
}

.contact-title{
font-size:42px;
font-weight:800;
margin-bottom:15px;
}

.contact-title span{
background:linear-gradient(90deg,#ff6a00,#ffa24a);
-webkit-background-clip:text;
color:transparent;
}

.contact-subtext{
color:#bbb;
font-size:16px;
line-height:1.7;
}

/* INFO CARD */

.contact-info-card{
background:#111;
padding:40px;
border-radius:18px;
border:1px solid #1e1e1e;
height:100%;
}

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

.info-item{
display:flex;
gap:15px;
margin-bottom:22px;
}

.info-item i{
color:#ff6a00;
font-size:20px;
margin-top:3px;
}

.info-item h6{
margin:0;
font-size:15px;
}

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

.contact-note{
margin-top:20px;
background:#0b0b0b;
border:1px solid #ff6a00;
padding:14px 16px;
border-radius:10px;
font-size:14px;
color:#ddd;
}

/* FORM CARD */

.contact-form-card{
background:#111;
padding:40px;
border-radius:18px;
border:1px solid #1e1e1e;
}

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

/* INPUTS */

.lux-input{
background:#0b0b0b;
border:1px solid #333;
color:#fff;
border-radius:8px;
padding:14px 16px;
}

.lux-input::placeholder{
color:#888;
}

.lux-input:focus{
border-color:#ff6a00;
box-shadow:0 0 0 1px #ff6a00;
background:#0b0b0b;
color:#fff;
}

/* BUTTON */

.lux-contact-btn{
padding:14px 35px;
border-radius:40px;
border:none;
background:linear-gradient(135deg,#ff6a00,#ff8a2b);
color:#fff;
font-weight:600;
cursor:pointer;
transition:.3s;
box-shadow:0 10px 30px rgba(255,106,0,0.4);
}

.lux-contact-btn:hover{
transform:translateY(-3px);
box-shadow:0 15px 45px rgba(255,106,0,0.6);
}
/* MAP SECTION */

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

.map-header h3{
font-size:28px;
font-weight:700;
margin-bottom:8px;
}

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

/* MAP CONTAINER */

.map-container{
border-radius:16px;
overflow:hidden;
border:1px solid #1e1e1e;
box-shadow:0 20px 50px rgba(0,0,0,0.6);
}

/* MAP */

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

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

@media(max-width:768px){

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

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

}

/*--------------------------------------------------------------
# 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: color-mix(in srgb, var(--default-color), transparent 20%);
  background-color: color-mix(in srgb, var(--default-color), transparent 96%);
  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;
  color: var(--accent-color);
}

.service-details .services-list a.active {
  color: var(--contrast-color);
  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(--accent-color), transparent 95%);
  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;
  color: var(--accent-color);
}

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

.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;
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/
.starter-section {
  /* Add your styles here */
}