/* ================= SOFA THEME VARIABLES ================= */
:root{

--sofa-bg:#2b1d1a;
--sofa-bg-light:#3a2a26;

--sofa-gold:#c89b3c;
--sofa-gold-soft:#e0b95a;

--sofa-cream:#f5f1eb;
--sofa-border:rgba(255,255,255,0.08);

--sofa-text:#f5f1eb;
--sofa-muted:#b7a8a4;

--sofa-shadow:0 12px 35px rgba(0,0,0,0.45);
--sofa-radius:10px;

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

}

/* HEADER */
.sofa-header{
background:linear-gradient(180deg,#2b1d1a,#241613);
position:sticky;
top:0;
z-index:9999;
box-shadow:var(--sofa-shadow);
font-family:var(--sofa-font);
}

/* TOPBAR */
/* ================= TOP BAR FIX ================= */

.sofa-topbar{
background:linear-gradient(90deg,#c89b3c,#a67c2e);
color:#fff;
font-size:13px;
padding:8px 0;
}

.sofa-topbar .container-xl{
display:flex;
align-items:center;
justify-content:space-between;
gap:10px;
}

/* LEFT TEXT */
.sofa-top-left{
font-weight:500;
}

/* CENTER TEXT */
.sofa-sale-text{
text-align:center;
flex:1;
font-weight:500;
letter-spacing:.3px;
}

/* RIGHT BUTTON */
.sofa-top-right{
display:flex;
align-items:center;
}

.sofa-top-right a{
display:inline-flex;
align-items:center;
gap:6px;
padding:6px 14px;
border-radius:20px;
background:#2b1d1a;
color:#fff;
font-size:13px;
text-decoration:none;
transition:.3s;
}

.sofa-top-right a:hover{
background:#fff;
color:#000;
}
/* LOGO */
.sofa-logo img{
height:65px;
transition:.4s;
}
.sofa-logo img:hover{
transform:scale(1.08);
}

/* NAV */
.sofa-menu{
display:flex;
gap:36px;
align-items:center;
}

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

.sofa-menu a,
.sofa-menu button{
color:#fff;
text-decoration:none;
font-size:15px;
font-weight:500;
position:relative;
background:none;
border:none;
cursor:pointer;
}

/* underline */
.sofa-menu a::after,
.sofa-menu button::after{
content:"";
position:absolute;
left:0;
bottom:-6px;
width:0;
height:2px;
background:linear-gradient(90deg,#c89b3c,#e0b95a);
transition:.4s;
}

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

.sofa-menu a:hover{
color:var(--sofa-gold-soft);
}

/* DROPDOWN */
.dropdown-menu{
position:absolute;
top:120%;
left:0;
background:linear-gradient(145deg,#2a1c19,#1f1412);
border-radius:12px;
min-width:240px;
padding:10px 0;
display:none;
box-shadow:0 20px 40px rgba(0,0,0,0.6);
}

@media(min-width:992px){
.dropdown:hover .dropdown-menu{
display:block;
}
}

.dropdown-menu a{
display:block;
padding:12px 20px;
color:#e6dcd8;
transition:.3s;
border-left:3px solid transparent;
}

.dropdown-menu a:hover{
background:rgba(200,155,60,0.08);
color:#fff;
border-left:3px solid var(--sofa-gold);
padding-left:26px;
}

/* ================= SEARCH FIX ================= */

.sofa-search {
  position: relative;
  width: 280px;
  font-family: sans-serif;
}

/* INPUT FIELD */
.sofa-search input {
  width: 100%;
  height: 44px;
  padding: 0 50px 0 18px;
  border-radius: 50px;
  border: 1px solid rgba(255,255,255,0.1);
  background: #1f1412;
  font-size: 14px;
  color: #fff;
  outline: none;
  transition: all 0.3s ease;
}

.sofa-search input::placeholder {
  color: #aaa;
}

/* FOCUS EFFECT */
.sofa-search input:focus {
  border-color: #c89b3c;
  box-shadow: 0 0 8px rgba(200,155,60,0.4);
}

/* SEARCH ICON */
.sofa-search i {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #c89b3c;
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  cursor: pointer;   /* clickable */
  pointer-events: auto;
  transition: 0.3s;
}

.sofa-search i:hover {
  background: #e0b24c;
}
/* SUGGESTIONS BOX */
.suggestions-box {
  position: absolute;
  top: 110%;
  left: 0;
  width: 100%;
  background: #2a1c18;
  border-radius: 12px;
  padding: 8px 0;
  box-shadow: 0 10px 25px rgba(0,0,0,0.4);
  z-index: 999;
  display: none; /* hidden by default */
}

/* EACH ITEM */
.suggestions-box a {
  display: block;
  padding: 10px 16px;
  font-size: 13px;
  color: #ddd;
  text-decoration: none;
  transition: 0.2s;
}

/* HOVER EFFECT */
.suggestions-box a:hover {
  background: #c89b3c;
  color: #000;
}

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

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

/* ICON STYLE */
.sofa-icon{
position:relative;
display:flex;
align-items:center;
justify-content:center;
width:38px;
height:38px;
border-radius:50%;
background:rgba(255,255,255,0.05);
color:#fff;
font-size:18px;
transition:.3s;
}

/* HOVER */
.sofa-icon:hover{
background:#c89b3c;
color:#000;
transform:translateY(-2px);
}

/* BADGE */
.sofa-badge{
position:absolute;
top:-5px;
right:-5px;
background:#c89b3c;
color:#000;
font-size:10px;
font-weight:600;
min-width:16px;
height:16px;
display:flex;
align-items:center;
justify-content:center;
border-radius:50%;
}
/* MOBILE */
#mobileToggle{
font-size:28px;
cursor:pointer;
color:#fff;
}

.mobile-nav{
display:none;
background:#241613;
}

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

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

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

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

/* RESPONSIVE */
@media(max-width:992px){
.sofa-search{
display:none;
}
.sofa-logo img{
height:50px;
}
}
/*--------------------------------------------------------------
# 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:#c89b3c;
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,#c89b3c,#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,#c89b3c,#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:#c89b3c;
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 */

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

.lux-contact-section{
background:linear-gradient(135deg,#f5f1eb,#ffffff);
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(200,155,60,0.15), transparent);
filter:blur(80px);
}

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

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

.contact-tag{
color:#c89b3c;
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:#c89b3c;
}

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

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

.contact-info-card{
background:#fff;
padding:35px;
border-radius:18px;
border:1px solid #eee;
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:#c89b3c;
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:#fff;
padding:35px;
border-radius:18px;
border:1px solid #eee;

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:#fafafa;
border:1px solid #ddd;
color:#333;
border-radius:10px;
padding:14px 16px;
transition:.3s;
}

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

.lux-input:focus{
border-color:#c89b3c;
box-shadow:0 0 0 2px rgba(200,155,60,0.2);
background:#fff;
color:#000;
}

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

.lux-contact-btn{
padding:14px 38px;
border-radius:40px;
border:none;
background:linear-gradient(135deg,#c89b3c,#a67c2e);
color:#fff;
font-weight:600;
cursor:pointer;
transition:.3s;
letter-spacing:.4px;

box-shadow:0 10px 25px rgba(200,155,60,0.35);
}

.lux-contact-btn:hover{
transform:translateY(-3px);
box-shadow:0 15px 40px rgba(200,155,60,0.5);
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:16px;
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: 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 */
}