/* Jati Living - Premium Furniture Company Profile Styling */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400&display=swap');

:root {
  /* Color Palette */
  /* --primary-color: #704F38;        */
  /* --primary-dark: #362419;         */
  --primary-color: #4B547A;       
  --primary-dark: #2E3440;        
  --primary-blue: #263e51;        
  --primary-light: #A08060;       
  --accent-gold: #C5A880;        
  --accent-brown: #7A5A3A; 
  --accent-gold-dark: #A6875D;    
  --bg-cream: #FCFAF6;            
  --bg-white: #ffffff;             
  --bg-sand: #F5F8F8;             
  --bg-dark: #1E1510;             
  --bg-dark-blue: #39415E;

  /* Text Colors */
  --text-dark: #2B211A;          
  --text-muted: #6E6358;          
  --text-light: #F5EFE4;          
  
  /* Fonts */
  --font-serif: 'Playfair Display', serif;
  --font-sans: 'Inter', sans-serif;
  
  /* Transitions & Shadows */
  --transition-smooth: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  --shadow-premium: 0 15px 35px rgba(54, 36, 25, 0.04), 0 5px 15px rgba(54, 36, 25, 0.02);
  --shadow-hover: 0 25px 50px rgba(54, 36, 25, 0.08), 0 10px 20px rgba(54, 36, 25, 0.04);
}


/* Global Reset & Base */
html, body {
  font-family: var(--font-sans);
  background-color: var(--bg-white);
  color: var(--text-dark);
  overflow-x: hidden;
  max-width: 100vw;
  -webkit-font-smoothing: antialiased;
  padding-top: 66px; 
}

h1, h2, h3, h4, h5, h6, .font-serif {
  font-family: var(--font-serif);
  font-weight: 600;
  color: var(--primary-dark);
}

p {
  color: var(--text-muted);
  line-height: 1.7;
}

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: var(--transition-smooth);
}

a:hover {
  color: var(--primary-dark);
}

.title-line {
  width: 50px; 
  height: 2px; 
  color: var(--accent-brown); 
  opacity: 1;
}

/* Selection style */
::selection {
  background-color: var(--accent-gold);
  color: var(--primary-dark);
}

/* Buttons */
.btn-premium {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.9rem 2.2rem;
  border-radius: 0;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-premium-solid {
  background-color: var(--primary-color);
  color: var(--bg-cream);
  border: 1px solid var(--primary-color);
}

.btn-premium-solid::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background-color: var(--primary-dark);
  transition: var(--transition-smooth);
  z-index: -1;
}

.btn-premium-solid:hover::before {
  width: 100%;
}

.btn-premium-solid:hover {
  color: #fff;
  border-color: var(--bg-dark-blue);
}

.btn-premium-nav-solid:hover {
  color: #fff;
  border-color: var(--accent-gold-dark);
}

.btn-premium-outline {
  background-color: transparent;
  color: var(--bg-cream);
  border: 1px solid rgba(252, 250, 246, 0.4);
}

.btn-premium-outline:hover {
  background-color: var(--bg-cream);
  color: var(--primary-dark);
  border-color: var(--bg-cream);
}

.btn-premium-dark-outline {
  background-color: transparent;
  color: var(--primary-dark);
  border: 1px solid var(--primary-dark);
}

.btn-premium-dark-outline:hover {
  background-color: var(--primary-color);
  color: var(--bg-cream);
  border-color: var(--primary-color);
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-cream);
}
::-webkit-scrollbar-thumb {
  background: var(--primary-light);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--primary-color);
}

/* ==========================================================================
   Header & Promo Bar
   ========================================================================== */
.promo-bar {
  background-color: #efebff;
  color: var(--primary-dark);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  padding: 0.5rem 3rem;
  border-bottom: 1px solid rgba(112, 79, 56, 0.08);
}

.promo-bar span {
  white-space: nowrap;
}

.promo-bar i {
  color: var(--primary-color);
}

#mainHeader{
  transition: all 0.3s ease-in-out;
  z-index: 1030; /* Di atas elemen halaman */
}
.top-bar{
  transition: max-height 0.3s ease-out, opacity 0.3s ease-out, padding 0.3s ease;
  max-height: 50px; /* Sesuaikan dengan tinggi asli top bar */
  overflow: hidden;
  opacity: 1;
}
.is-scrolled .top-bar {
    max-height: 0;
    opacity: 0;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

.navbar-premium {
  background-color: var(--primary-blue);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(112, 79, 56, 0.06);
  padding: 1.2rem 0;
  transition: var(--transition-smooth);
  z-index: 1000;
}

.navbar-premium.scrolled {
  padding: 0.7rem 0;
  box-shadow: 0 10px 30px rgba(54, 36, 25, 0.05);
}

.navbar-brand-premium {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.35rem;
  letter-spacing: 0.08em;
  color: var(--text-light) !important;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.navbar-brand-logo {
  height: 42px;
  width: auto;
  border-radius: 50%;
}

.navbar-brand-premium span {
  font-size: 0.65rem;
  font-family: var(--font-sans);
  font-weight: 500;
  letter-spacing: 0.2em;
  display: block;
  color: var(--text-light);
  margin-top: -2px;
}

.nav-link-premium {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  color: var(--text-light) !important;
  padding: 0.5rem 1.1rem !important;
  text-transform: uppercase;
  position: relative;
  white-space: nowrap;
}

.nav-link-premium::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 1.1rem;
  right: 1.1rem;
  height: 1.5px;
  background-color: var(--primary-color);
  transform: scaleX(0);
  transition: var(--transition-smooth);
}

.nav-link-premium:hover::after,
.nav-link-premium.active::after {
  transform: scaleX(1);
}

.navbar-icons {
  display: flex;
  gap: 1.25rem;
  align-items: center;
}

.navbar-icon-link {
  color: var(--text-light);
  font-size: 1.05rem;
  position: relative;
  transition: var(--transition-smooth);
}

.navbar-icon-link:hover {
  color: var(--primary-color);
  transform: translateY(-2px);
}

.navbar-icon-badge {
  position: absolute;
  top: -6px;
  right: -8px;
  background-color: var(--primary-color);
  color: #fff;
  font-size: 0.6rem;
  font-family: var(--font-sans);
  font-weight: 700;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dropdown-submenu {
  position: relative;
}

.dropdown-item {
  font-size: 0.85rem !important;
  font-weight: 500;
  letter-spacing: 0.05em;
  transition: var(--transition-smooth);
}

.dropdown-item:hover {
  background-color: var(--primary-color) !important;
  color: #fff !important;
}

.dropdown-submenu:hover > .dropdown-item {
  background-color: var(--primary-color) !important;
  color: #fff !important;
}

.search-inline-container {
    width: 0;
    opacity: 0;
    overflow: hidden;
    transition: width 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.2s ease;
}

.search-inline-container.active {
    width: 130px;
    opacity: 1;
}

.search-capsule-inline {
    background-color: #f1f3f5;  
    border-radius: 50px !important;
    border: 1px solid rgba(0, 0, 0, 0.04);
    padding: 2px 5px;
}

.search-capsule-inline .form-control {
    background-color: transparent;
    font-size: 0.85rem;
    color: #2c2520;
    height: 32px;
}

.search-capsule-inline .form-control::placeholder {
    color: #9ca3af;
}

.mobile-search-capsule {
    background-color: #f1f3f5; /* Latar soft grey sesuai mockup */
    border-radius: 50px !important; /* Kapsul melingkar penuh */
    border: 1px solid rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.mobile-search-capsule .form-control {
    background-color: transparent;
    font-size: 0.9rem;
    color: #2c2520;
}

.mobile-search-capsule .form-control::placeholder {
    color: #9ca3af;
}

#navbarContent {
    transition: all 0.35s ease;
}


.hero-section {
  position: relative;
  min-height: 90vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to right, rgba(30, 21, 16, 0.75) 30%, rgba(30, 21, 16, 0.3) 100%);
  z-index: -1;
}

.hero-title {
  font-size: 3.2rem;
  font-weight: 500;
  line-height: 1.15;
  color: #fff;
  margin-bottom: 1.2rem;
}

.hero-desc {
  font-size: 0.98rem;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 300;
  max-width: 580px;
  margin-bottom: 2.2rem;
}

.hero-section .btn-premium {
  padding: 0.8rem 1.8rem;
  font-size: 0.8rem;
}

/* ==========================================================================
   Hero Carousel Section Styling
   ========================================================================== */
.hero-carousel-section {
  position: relative;
  z-index: 1;
}

.hero-carousel-section .carousel-item {
  position: relative;
  min-height: 90vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Dark Overlay specifically for Carousel Images */
.hero-carousel-section .hero-overlay {
  z-index: 1;
}

.hero-slide-content {
  position: relative;
  z-index: 2;
  min-height: 90vh;
  width: 100%;
  display: flex;
  align-items: center;
  padding-top: 100px;
  padding-bottom: 100px;
}

.hero-slide-content .container {
  position: relative;
  z-index: 2;
}

.hero-carousel-section .carousel-indicators {
  margin-bottom: 2rem;
  z-index: 3;
}

.hero-carousel-section .carousel-indicators [data-bs-target] {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.4);
  border: 2px solid transparent;
  transition: all 0.3s ease;
  margin: 0 5px;
}

.hero-carousel-section .carousel-indicators .active {
  background-color: var(--accent-brown);
  transform: scale(1.2);
}

.hero-carousel-section .carousel-control-prev,
.hero-carousel-section .carousel-control-next {
  width: 6%;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 3;
}

.hero-carousel-section:hover .carousel-control-prev,
.hero-carousel-section:hover .carousel-control-next {
  opacity: 0.7;
}

.hero-carousel-section:hover .carousel-control-prev:hover,
.hero-carousel-section:hover .carousel-control-next:hover {
  opacity: 1;
}

.hero-carousel-section .carousel-control-prev-icon,
.hero-carousel-section .carousel-control-next-icon {
  background-color: rgba(30, 21, 16, 0.5);
  padding: 1.5rem;
  border-radius: 50%;
  background-size: 50%;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Custom Text Animations inside Active Carousel Item */
@keyframes heroFadeInUp {
  from {
    opacity: 0;
    transform: translateY(35px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-carousel-section .hero-title,
.hero-carousel-section .hero-desc,
.hero-carousel-section .btn-premium {
  opacity: 0;
}

.hero-carousel-section .carousel-item.active .hero-title {
  animation: heroFadeInUp 0.8s cubic-bezier(0.25, 1, 0.5, 1) forwards;
  animation-delay: 0.3s;
}

.hero-carousel-section .carousel-item.active .hero-desc {
  animation: heroFadeInUp 0.8s cubic-bezier(0.25, 1, 0.5, 1) forwards;
  animation-delay: 0.5s;
}

.hero-carousel-section .carousel-item.active .btn-premium {
  animation: heroFadeInUp 0.8s cubic-bezier(0.25, 1, 0.5, 1) forwards;
  animation-delay: 0.7s;
}

/* ==========================================================================
   Features Highlight Bar
   ========================================================================== */
.features-bar {
  background-color: var(--bg-sand);
  border-bottom: 1px solid rgba(112, 79, 56, 0.08);
  padding: 2.2rem 0;
}

.feature-bar-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 0.5rem 1rem;
}

.feature-bar-icon-wrapper {
  color: var(--primary-color);
  font-size: 1.5rem;
  line-height: 1;
  padding-top: 2px;
}

.feature-bar-title {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary-dark);
  margin-bottom: 0.25rem;
  white-space: nowrap;
}

.feature-bar-desc {
  font-size: 0.72rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.4;
}

/* ==========================================================================
   Featured Collections Section
   ========================================================================== */
.featured-collections{
  background-color: var(--bg-white);
}

/* ==========================================================================
   Order Step Section
   ========================================================================== */
.order-step{
  background-color: var(--bg-sand);
  border-top: 1px solid rgba(112, 79, 56, 0.05);
}

/* ==========================================================================
   Section Styling & Typography
   ========================================================================== */
.section-padding {
  padding: 7rem 0;
}


.section-subtitle {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--primary-light);
  margin-bottom: 0.8rem;
  display: inline-block;
}

.section-title {
  font-size: 2.4rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  line-height: 1.25;
}

.section-title-line {
  position: relative;
  display: inline-block;
}

.section-title-line::after {
  content: '';
  display: block;
  width: 40px;
  height: 2px;
  background-color: var(--accent-brown);
  margin: 1.2rem auto 0 auto;
}

.section-title-line.left-align::after {
  margin: 1.2rem 0 0 0;
}

/* ==========================================================================
   Shop By Collection
   ========================================================================== */
.collection-card {
  position: relative;
  overflow: hidden;
  height: 380px;
  background-color: var(--primary-dark);
  box-shadow: var(--shadow-premium);
  transition: var(--transition-smooth);
}

.collection-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  opacity: 0.85;
}

.collection-card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem 1.5rem;
  background: linear-gradient(to top, rgba(30, 21, 16, 0.9) 0%, rgba(30, 21, 16, 0.4) 60%, rgba(30, 21, 16, 0) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  text-align: center;
  height: 50%;
  transition: var(--transition-smooth);
}

.collection-card-title {
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  margin: 0;
  transition: var(--transition-smooth);
}

.collection-card-subtitle {
  font-size: 0.72rem;
  color: var(--accent-gold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 0.35rem;
  opacity: 0;
  transform: translateY(10px);
  transition: var(--transition-smooth);
}

.collection-card:hover {
  box-shadow: var(--shadow-hover);
}

.collection-card:hover .collection-card-img {
  transform: scale(1.08);
  opacity: 0.7;
}

.collection-card:hover .collection-card-overlay {
  background: linear-gradient(to top, rgba(30, 21, 16, 0.95) 0%, rgba(30, 21, 16, 0.6) 70%, rgba(30, 21, 16, 0) 100%);
}

.collection-card:hover .collection-card-subtitle {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================================================
   About Us Section
   ========================================================================== */
.about-img-wrapper {
  position: relative;
  padding: 1.5rem;
  z-index: 1;
}

.about-img-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 80%;
  height: 80%;
  border: 1.5px solid var(--accent-gold);
  z-index: -1;
  pointer-events: none;
}

.about-img-wrapper::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 80%;
  height: 80%;
  border: 1.5px solid var(--primary-light);
  z-index: -1;
  pointer-events: none;
}

.about-img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  box-shadow: var(--shadow-premium);
}

/* ==========================================================================
   Why Choose Us
   ========================================================================== */
.why-card {
  background-color: #fff;
  border: 1px solid rgba(112, 79, 56, 0.05);
  padding: 1rem 0.5rem;
  text-align: center;
  transition: var(--transition-smooth);
  box-shadow: var(--shadow-premium);
  height: 100%;
}

.why-icon-wrapper {
  width: 60px;
  height: 60px;
  background-color: var(--bg-sand);
  color: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.8rem auto;
  font-size: 1.4rem;
  transition: var(--transition-smooth);
}

.why-card-title {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
  color: var(--primary-dark);
}

.why-card-desc {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 0;
  line-height: 1.6;
}

.why-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
  border-color: var(--accent-gold);
}

.why-card:hover .why-icon-wrapper {
  background-color: var(--primary-color);
  color: #fff;
  transform: rotateY(180deg);
}

/* ==========================================================================
   Our Projects
   ========================================================================== */
.project-card {
  position: relative;
  overflow: hidden;
  height: 400px;
  box-shadow: var(--shadow-premium);
  background-color: var(--primary-dark);
}

.project-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.9s cubic-bezier(0.16, 1, 0.3, 1);
  opacity: 0.85;
}

.project-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to top, rgba(30, 21, 16, 0.95) 0%, rgba(30, 21, 16, 0.4) 60%, rgba(30, 21, 16, 0.1) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.3rem;
  transition: var(--transition-smooth);
}

.project-tag {
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent-gold);
  margin-bottom: 0.5rem;
  transform: translateY(15px);
  opacity: 0;
  transition: var(--transition-smooth);
}

.project-title {
  font-size: 1.35rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.25rem;
  transform: translateY(10px);
  transition: var(--transition-smooth);
}

.project-location {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 300;
  margin: 0;
  transform: translateY(10px);
  transition: var(--transition-smooth);
}

.project-card:hover .project-img {
  transform: scale(1.06);
  opacity: 0.75;
}

.project-card:hover .project-tag {
  transform: translateY(0);
  opacity: 1;
}

.project-card:hover .project-title,
.project-card:hover .project-location {
  transform: translateY(0);
}

/* ==========================================================================
   Quality in Every Detail (Premium Materials)
   ========================================================================== */
.quality-gallery-item {
  position: relative;
  overflow: hidden;
  height: 240px;
  box-shadow: var(--shadow-premium);
  background-color: var(--primary-dark);
  transition: var(--transition-smooth);
}

.quality-gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.quality-gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.2rem;
  background: linear-gradient(to top, rgba(30, 21, 16, 0.9) 0%, rgba(30, 21, 16, 0) 100%);
  text-align: center;
}

.quality-gallery-title {
  font-size: 0.67rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  margin: 0;
}

.quality-gallery-item:hover {
  box-shadow: var(--shadow-hover);
}

.quality-gallery-item:hover .quality-gallery-img {
  transform: scale(1.08);
}

/* ==========================================================================
   How to Order Timeline
   ========================================================================== */
.timeline-section {
  position: relative;
  padding-bottom: 2rem;
}

.timeline-container {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
}

/* Process Timeline (Horizontal on desktop, vertical on mobile) */
.order-steps-grid {
  display: flex;
  justify-content: space-between;
  position: relative;
  margin-bottom: 4rem;
}

.order-steps-grid::before {
  content: '';
  position: absolute;
  top: 35px;
  left: 4%;
  right: 4%;
  height: 2px;
  background: repeating-linear-gradient(
    to right,
    var(--accent-gold) 0,
    var(--accent-gold) 6px,
    transparent 6px,
    transparent 12px
  );
  z-index: 1;
}

.order-step-item {
  width: 11%;
  text-align: center;
  position: relative;
  z-index: 2;
  transition: var(--transition-smooth);
}

.order-step-number-box {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background-color: var(--bg-sand);
  border: 2px solid var(--bg-dark-blue);
  color: var(--primary-dark);
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem auto;
  box-shadow: var(--shadow-premium);
  transition: var(--transition-smooth);
}

.order-step-title {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
}

.order-step-desc {
  font-size: 0.65rem;
  color: var(--text-muted);
  line-height: 1.4;
  margin: 0;
}

.order-step-item:hover {
  transform: translateY(-5px);
}

.order-step-item:hover .order-step-number-box {
  background-color: var(--primary-color);
  color: #fff;
  border-color: var(--primary-color);
  box-shadow: var(--shadow-hover);
}

/* Badges section below timeline */
.badges-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 3rem;
  border-top: 1px solid rgba(112, 79, 56, 0.06);
  padding-top: 2.5rem;
}

.badge-order-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.8rem 1.5rem;
  background-color: #fff;
  border: 1px dashed var(--primary-light);
  border-radius: 4px;
  box-shadow: var(--shadow-premium);
  transition: var(--transition-smooth);
}

.badge-order-item i {
  color: var(--primary-color);
  font-size: 1.1rem;
}

.badge-order-text {
  font-size: 0.72rem;
  font-weight: 600;
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--primary-dark);
}

.badge-order-item:hover {
  border-color: var(--primary-color);
  background-color: var(--bg-sand);
  transform: translateY(-2px);
}

/* ==========================================================================
   WhatsApp Testimonials (Interactive CSS Chat Simulator)
   ========================================================================== */
.wa-chat-wrapper {
  background-color: #ECE5DD; /* Original WhatsApp theme background color */
  border-radius: 12px;
  padding: 2rem;
  box-shadow: var(--shadow-premium);
  position: relative;
  overflow: hidden;
  max-width: 1200px;
  margin: 0 auto;
}

.wa-chat-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('https://user-images.githubusercontent.com/15075759/28719144-86dc0f70-73b1-11e7-911d-60d70fcded21.png');
  opacity: 0.06;
  z-index: 1;
}

.wa-chats-container {
  display: flex;
  gap: 1.5rem;
  position: relative;
  z-index: 2;
  overflow-x: auto;
  padding: 1rem 0.5rem;
  scroll-behavior: smooth;
  scrollbar-width: thin;
}

.wa-chat-card {
  cursor: default;
  flex: 0 0 285px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: var(--transition-smooth);
  border: 1px solid rgba(0, 0, 0, 0.02);
}

.wa-chat-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.wa-chat-header {
  background-color: #075E54;
  color: #fff;
  padding: 0.8rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.wa-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: #fff;
  color: #075E54;
  font-weight: 700;
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  overflow: hidden;
}

.wa-avatar-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.wa-header-info {
  display: flex;
  flex-direction: column;
}

.wa-user-name {
  color: white;
  font-size: 0.78rem;
  font-weight: 600;
  margin: 0;
  line-height: 1.2;
}

.wa-user-status {
  font-size: 0.6rem;
  color: #b3dfdb;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 4px;
}

.wa-user-status::before {
  content: '';
  display: inline-block;
  width: 5px;
  height: 5px;
  background-color: #25d366;
  border-radius: 50%;
}

.wa-chat-body {
  background-color: #ECE5DD;
  background-image: url('https://user-images.githubusercontent.com/15075759/28719144-86dc0f70-73b1-11e7-911d-60d70fcded21.png');
  background-size: 150px;
  padding: 1.2rem 0.8rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

/* Speech bubbles style */
.wa-bubble {
  max-width: 88%;
  padding: 0.6rem 0.8rem;
  border-radius: 7.5px;
  font-size: 0.74rem;
  line-height: 1.4;
  position: relative;
  box-shadow: 0 1px 1px rgba(0,0,0,0.1);
}

.wa-bubble-incoming {
  background-color: #fff;
  align-self: flex-start;
  border-top-left-radius: 0;
  color: #262626;
}

.wa-bubble-incoming::after {
  content: '';
  position: absolute;
  top: 0;
  left: -8px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 8px 8px 0;
  border-color: transparent #ffffff transparent transparent;
}

.wa-bubble-outgoing {
  background-color: #DCF8C6; /* Light green WhatsApp outgoing bubble */
  align-self: flex-end;
  border-top-right-radius: 0;
  color: #262626;
}

.wa-bubble-outgoing::after {
  content: '';
  position: absolute;
  top: 0;
  right: -8px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 8px 8px;
  border-color: transparent transparent transparent #DCF8C6;
}

.wa-time-meta {
  font-size: 0.58rem;
  color: #8c8c8c;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 4px;
  margin-top: 3px;
}

.wa-time-meta i {
  color: #34b7f1; /* Double blue ticks */
  font-size: 0.7rem;
}

.wa-bubble-incoming .wa-time-meta i {
  display: none;
}

.wa-chat-footer {
  background-color: #f0f0f0;
  padding: 0.6rem 1rem;
  border-top: 1px solid rgba(0,0,0,0.05);
  font-size: 0.68rem;
  font-weight: 500;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background-color: #fff;
}

.wa-chat-footer i {
  color: var(--primary-light);
  font-size: 0.8rem;
}

.wa-carousel-control {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--primary-dark);
  color: #fff;
  border: none;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.25);
  transition: var(--transition-smooth);
}

.wa-carousel-control:hover {
  background-color: var(--primary-color);
  transform: translateY(-50%) scale(1.1);
}

.wa-carousel-prev {
  left: 10px;
}

.wa-carousel-next {
  right: 10px;
}

/* ==========================================================================
   Need Custom Furniture? (CTA Banner)
   ========================================================================== */
.cta-banner {
  position: relative;
  padding: 4.5rem 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
  color: #fff;
}

.cta-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(30, 21, 16, 0.85) 0%, rgba(112, 79, 56, 0.4) 100%);
  z-index: -1;
}

.cta-title {
  font-size: 2.6rem;
  font-weight: 600;
  margin-bottom: 1.2rem;
  color: #fff;
}

.cta-desc {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 2.2rem;
  max-width: 600px;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer-premium {
  background-color: var(--primary-blue);
  color: rgba(255, 255, 255, 0.7);
  padding: 6rem 0 0 0 ;
  font-size: 0.8rem;
}

.footer-brand-title {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.4rem;
  color: #fff;
  letter-spacing: 0.08em;
  margin-bottom: 0.5rem;
}

.footer-brand-subtitle {
  font-size: 0.68rem;
  letter-spacing: 0.25em;
  color: var(--accent-gold);
  text-transform: uppercase;
  display: block;
  margin-bottom: 1.5rem;
}

.footer-title {
  color: #fff;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1.8rem;
  position: relative;
}
.footer-title-2 {
  color: #fff;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1.8rem;
  position: relative;
}

.footer-title::after {
  content: '';
  display: block;
  width: 25px;
  height: 1px;
  background-color: var(--accent-gold);
  margin-top: 0.6rem;
}


.footer-links-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links-list-2 {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0rem;
}

.footer-link-item a {
  color: rgba(255, 255, 255, 0.6);
  transition: var(--transition-smooth);
}

.footer-link-item a:hover {
  color: var(--bg-cream);
  padding-left: 5px;
}

.footer-contact-item {
  display: flex;
  gap: 0.8rem;
  align-items: flex-start;
  margin-bottom: 0.85rem;
}

.footer-contact-icon {
  color: var(--bg-sand);
  font-size: 0.9rem;
  margin-top: 2px;
}

.footer-socials {
  display: flex;
  gap: 0.85rem;
  margin-top: 1.8rem;
}

.footer-social-link {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.9rem;
  transition: var(--transition-smooth);
}

.footer-social-link:hover {
  background-color: var(--bg-sand);
  color: var(--primary-dark);
  transform: translateY(-3px);
}

.btn-wa-footer {
  background-color: #25D366;
  color: #fff;
  border: none;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.7rem 1.2rem;
  border-radius: 4px;
  transition: var(--transition-smooth);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
}

.btn-wa-footer:hover {
  background-color: #1ebea5;
  color: #fff;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.25);
  transform: translateY(-2px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 2rem 0;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.4);
}


.hero-about-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to right, rgba(255, 250, 246, 1) 50%, rgba(255, 250, 246, 0) 63%);
  /* background: linear-gradient(to right, rgba(30, 21, 16, 0.75) 30%, rgba(30, 21, 16, 0.3) 100%); */
  z-index: -1;
}

.hero-about-title {
  font-size: 3.2rem;
  font-weight: 500;
  line-height: 1.15;
  color: var(--primary-dark);
  margin-bottom: 1.2rem;
}

.section-title-about {
  font-size: 1.7rem;
  margin-bottom: 1.5rem;
  line-height: 1.25;
}



.hero-split-section {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  z-index: 1;
}

.hero-split-bg-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
}

.split-bg-left, .split-bg-right {
  flex: 1;
  background-size: cover;
  background-repeat: no-repeat;
  transition: var(--transition-smooth);
}

.split-bg-left {
  background-image: url('images/dinning collection.png');
  background-position: center right;
}

.split-bg-right {
  background-image: url('images/outdoor collection.png'); 
  background-position: center left;
}

.hero-split-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(to bottom, rgba(30, 21, 16, 0.2), rgba(30, 21, 16, 0.45)),
              radial-gradient(circle, rgba(30, 21, 16, 0.1) 0%, rgba(30, 21, 16, 0.35) 100%);
  z-index: -1;
}

.hero-split-content {
  z-index: 2;
}


.collection-block {
  background-color: transparent; 
}

.collection-text-content {
  flex: 1;
}

.collection-img-wrapper {
  flex: 1;
  width: 100%;
}

.collection-inline-img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  box-shadow: var(--shadow-premium);
  transition: var(--transition-smooth);
}

.collection-block:hover .collection-inline-img {
  box-shadow: var(--shadow-hover);
  transform: scale(1.02);
}

.collection-text-content .btn-premium-dark-outline {
  border-color: var(--primary-blue);
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  padding: 0.75rem 1.8rem;
}

/* ==========================================================================
   Featured Product Multi-Item Carousel
   ========================================================================== */
.featured-carousel-wrapper {
  position: relative;
  overflow: hidden;
  padding: 0 0 2.5rem 0;
}

.featured-carousel-track {
  display: flex;
  gap: 1.5rem;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}

.featured-carousel-card {
  flex: 0 0 calc((100% - 4.5rem) / 4); /* 4 cards visible on desktop */
  min-width: 0;
}

/* Navigation Arrows */
.featured-carousel-control {
  position: absolute;
  top: 40%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.95);
  color: var(--primary-dark);
  border: 1px solid rgba(112, 79, 56, 0.12);
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  box-shadow: 0 4px 15px rgba(54, 36, 25, 0.1);
  transition: var(--transition-smooth);
  cursor: pointer;
}

.featured-carousel-control:hover {
  background-color: var(--primary-color);
  color: #fff;
  border-color: var(--primary-color);
  transform: translateY(-50%) scale(1.08);
  box-shadow: 0 6px 20px rgba(112, 79, 56, 0.25);
}

.featured-carousel-prev {
  left: 3px;
}

.featured-carousel-next {
  right: 3px;
}

/* Dot Indicators */
.featured-carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem;
}

.featured-carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--primary-light);
  opacity: 0.3;
  border: none;
  cursor: pointer;
  transition: var(--transition-smooth);
  padding: 0;
}

.featured-carousel-dot:hover {
  opacity: 0.6;
}

.featured-carousel-dot.active {
  opacity: 1;
  background-color: var(--primary-color);
  width: 24px;
  border-radius: 4px;
}

/* Responsive card count adjustments */
@media (max-width: 1199.98px) {
  .featured-carousel-card {
    flex: 0 0 calc((100% - 3rem) / 3); /* 3 cards */
  }
}

@media (max-width: 991.98px) {
  .featured-carousel-card {
    flex: 0 0 calc((100% - 1.5rem) / 2); /* 2 cards */
  }
  .featured-carousel-prev {
    left: 4px;
  }
  .featured-carousel-next {
    right: 4px;
  }
}

@media (max-width: 575.98px) {
  .featured-carousel-card {
    flex: 0 0 100%; /* 1 card */
  }
  .featured-carousel-control {
    width: 36px;
    height: 36px;
    font-size: 0.75rem;
  }
}

.product-filter-nav {
  list-style: none;
  padding: 0;
}

.nav-link-filter {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-dark);
  padding: 0.6rem 1.2rem;
  transition: var(--transition-smooth);
}

.nav-link-filter:hover {
  color: var(--primary-color);
}

.nav-link-filter.active {
  background-color: var(--primary-color);
  color: var(--bg-cream) !important;
}

.product-premium-card {
  background: transparent;
  transition: var(--transition-smooth);
}

.product-img-container {
  position: relative;
  overflow: hidden;
  background-color: var(--bg-sand);
}

.product-card-img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.wishlist-btn {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: #ffffff;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-dark);
  font-size: 0.95rem;
  box-shadow: 0 4px 10px rgba(54, 36, 25, 0.08);
  transition: var(--transition-smooth);
  z-index: 5;
}

.wishlist-btn:hover {
  background-color: var(--primary-color);
  color: #ffffff;
  transform: scale(1.05);
}

.product-info-block {
  text-align: left;
}

.product-item-title {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--primary-dark);
}

.product-item-category {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 400;
}

.product-premium-card:hover .product-card-img {
  transform: scale(1.03);
  opacity: 0.95;
}

.custom-project-section {
  background-color: var(--bg-cream); 
  overflow: hidden;
  border-top: 1px solid rgba(112, 79, 56, 0.08);
  border-bottom: 1px solid rgba(112, 79, 56, 0.08);
}

.custom-project-img-wrapper {
  width: 100%;
  height: 450px; 
  overflow: hidden;
}

.custom-project-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.custom-project-content-box {
  padding: 4.5rem 5rem; 
  max-width: 750px;
}

.custom-project-text {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--text-dark);
  opacity: 0.85;
}

.btn-premium-solid {
  background-color: var(--primary-color);
  color: var(--bg-cream) !important;
  border: 1px solid var(--primary-color);
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  padding: 0.85rem 2rem;
  transition: var(--transition-smooth);
}

.btn-premium-solid:hover {
  background-color: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-2px);
}

.btn-premium-nav-solid {
  background-color: var(--primary-color);
  color: var(--bg-cream) !important;
  border: 1px solid var(--primary-color);
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  padding: 0.85rem 1rem;
  transition: var(--transition-smooth);
}

.btn-premium-nav-solid:hover {
  background-color: var(--accent-gold-dark);
  border-color: var(--accent-gold-dark);
  transform: translateY(-2px);
}

.custom-project-actions .btn-premium-dark-outline {
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  padding: 0.85rem 2rem;
  background-color: transparent;
}

/* ==========================================================================
   Catalog Page Filter & Collection Cards Styling
   ========================================================================== */
.filter-card {
  background-color: #ffffff;
  border: 1px solid rgba(112, 79, 56, 0.08) !important;
  box-shadow: var(--shadow-premium);
  transition: var(--transition-smooth);
}

.filter-card:hover {
  box-shadow: var(--shadow-hover);
}

.filter-group button:focus {
  outline: none;
  box-shadow: none;
}

.filter-group button[aria-expanded="true"] i {
  transform: rotate(180deg);
}

.filter-group button i {
  transition: transform 0.3s ease;
}

.search-input-group .form-control {
  border-radius: 4px 0 0 4px;
  border-color: rgba(0, 0, 0, 0.1);
  font-size: 0.85rem;
  transition: var(--transition-smooth);
}

.search-input-group .form-control:focus {
  border-color: var(--accent-gold);
  box-shadow: 0 0 0 0.2rem rgba(197, 168, 128, 0.25);
}

.search-input-group .input-group-text {
  border-radius: 0 4px 4px 0;
  border-color: rgba(0, 0, 0, 0.1);
  color: var(--text-muted);
}

.collection-card-premium {
  background-color: #ffffff;
  border: 1px solid rgba(112, 79, 56, 0.08) !important;
  box-shadow: var(--shadow-premium);
  transition: var(--transition-smooth);
}


.collection-card-premium ul li i {
  color: var(--accent-gold) !important;
  font-size: 0.45rem;
}


.product-catalog:hover {
  transform: translateY(-2px);
}

/* ==========================================================================
   Product Detail Page Styling
   ========================================================================== */
.product-detail-title {
  font-family: var(--font-serif);
  font-weight: 700;
  color: var(--primary-dark);
  font-size: 2.2rem;
  letter-spacing: 0.02em;
}

.specs-table {
  width: 100%;
}

.specs-table td {
  padding: 0.6rem 0;
  vertical-align: top;
  font-size: 0.95rem;
}

.specs-table td.spec-label {
  font-family: var(--font-sans);
  font-weight: 600;
  color: var(--primary-dark);
  width: 150px;
}

.specs-table td.spec-value {
  color: var(--text-muted);
}

.thumbnail-btn {
  border: 2px solid transparent !important;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  outline: none !important;
  background-color: transparent;
  padding: 0;
  cursor: pointer;
  width: 100%;
}

.thumbnail-btn.active,
.thumbnail-btn:hover {
  border-color: var(--primary-color) !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.08);
}

.product-detail-actions .btn {
  letter-spacing: 0.08em;
  font-size: 0.8rem;
  padding: 0.9rem 1.8rem;
  min-width: 180px;
}

/* Media Query styles for Product Details */
@media (max-width: 767.98px) {
  .product-detail-title {
    font-size: 1.8rem;
    margin-top: 1.5rem;
  }
  .product-detail-actions {
    flex-direction: column;
    width: 100%;
    gap: 0.75rem !important;
  }
  .product-detail-actions .btn {
    width: 100%;
    min-width: unset;
  }
  .specs-table td {
    font-size: 0.9rem;
    padding: 0.4rem 0;
  }
  .specs-table td.spec-label {
    width: 110px;
  }
}

/* ==========================================================================
   Responsive Breakpoints
   ========================================================================== */

/* Extra Large Screens */
@media (min-width: 1400px) {
  .hero-title {
    font-size: 3.6rem;
  }
  
}

/* Large Screens */
@media (max-width: 1199.98px) {
  .hero-title {
    font-size: 2.8rem;
  }
  .section-padding {
    padding: 5.5rem 0;
  }
  .order-step-number-box {
    width: 60px;
    height: 60px;
    font-size: 1.25rem;
  }
  .custom-project-content-box {
    padding: 3.5rem 3.5rem;
  }
}

@media (min-width: 992px) {
  .nav-item.dropdown:hover > .dropdown-menu {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    transform: translateY(0);
  }

  .nav-item.dropdown .dropdown-menu {
    display: block !important;
    visibility: hidden;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  }

  .dropdown-submenu .dropdown-menu {
    top: 0;
    left: 100%;
    margin-top: -8px;
    margin-left: 2px;
    display: block !important;
    visibility: hidden;
    opacity: 0;
    transform: translateX(10px);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  }

  .dropdown-submenu:hover > .dropdown-menu {
    visibility: visible !important;
    opacity: 1 !important;
    transform: translateX(0);
  }
}


/* Medium Screens (Tablets) */
@media (max-width: 991.98px) {
  
  .collection-inline-img {
    height: 320px; /* Sedikit lebih pendek di layar tablet */
  }
  .hero-section {
    min-height: 80vh;
  }
  .hero-carousel-section .carousel-item,
  .hero-slide-content {
    min-height: 80vh;
  }
  .hero-title {
    font-size: 2.4rem;
  }
  .feature-bar-item {
    padding: 0.5rem;
  }
  .collection-card {
    height: 320px;
  }
  .about-img {
    height: 380px;
    margin-top: 2rem;
  }
  .order-steps-grid::before {
    display: none; /* Hide horizontal line */
  }
  .order-steps-grid {
    flex-direction: column;
    gap: 2rem;
    align-items: center;
    margin-bottom: 2rem;
  }
  .order-step-item {
    width: 100%;
    max-width: 320px;
    display: flex;
    text-align: left;
    align-items: center;
    gap: 1.5rem;
  }
  .order-step-number-box {
    margin: 0;
    flex-shrink: 0;
  }
  .order-step-desc {
    font-size: 0.72rem;
  }
  
  .hero-about-overlay{
    
    background: linear-gradient(to right, rgba(255, 250, 246, 0.8) 100%);
  }
  
  .hero-split-section {
    height: 85vh;
  }
  .hero-split-bg-container {
    flex-direction: column !important;
  }
  .split-bg-left, .split-bg-right {
    height: 50%;
    width: 100%;
  }
  .custom-project-img-wrapper {
    height: 350px; /* Lebih pendek di tablet */
  }
  
  .custom-project-content-box {
    padding: 3.5rem 2.5rem;
  }
  .dropdown-submenu .dropdown-menu {
    position: static;
    float: none;
    display: block !important; 
    visibility: visible !important;
    border: none !important;
    box-shadow: none !important;
    background-color: rgba(112, 79, 56, 0.04) !important;
    padding-left: 1rem !important;
    margin: 0.5rem 0 !important;
    opacity: 1 !important;
    transform: none !important;
  }
  
  .dropdown-submenu .fa-chevron-right {
    transform: rotate(90deg); 
  }
  .search-inline-container.active {
        width: 140px; 
  }
  #mainNavbar .container-fluid {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    .navbar-nav .nav-link-premium {
        position: relative;
        display: block; 
        width: 100%;
        padding-left: 0 !important;
        margin-bottom: 0.5rem;
    }

    .navbar-nav .nav-link-premium::after {
        content: '';
        position: absolute;
        width: 100%;
        transform: scaleX(0);
        height: 2px;
        bottom: -2px;
        left: 0;
        background-color: #704F38;
        transform-origin: left; 
        transition: transform 0.65s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }

    .navbar-nav .nav-link-premium:hover::after,
    .navbar-nav .nav-link-premium:focus::after,
    .navbar-nav .nav-link-premium.active::after {
        transform: scaleX(1);
    }
}

/* Small Screens (Mobile) */
@media (max-width: 767.98px) {
  body{
    padding-top: 21px; 
  }
  .promo-bar {
    display: none; /* Simplify navbar on mobile */
  }
  .navbar-premium {
    padding: 0.8rem 0;
  }
  .hero-section {
    min-height: 70vh;
  }
  .hero-carousel-section .carousel-item,
  .hero-slide-content {
    min-height: 70vh;
  }
  .hero-title {
    font-size: 1.95rem;
  }
  .hero-desc {
    font-size: 0.9rem;
    margin-bottom: 1.8rem;
  }
  .hero-section .btn-premium {
    padding: 0.7rem 1.4rem;
    font-size: 0.75rem;
  }
  .btn-premium {
    padding: 0.75rem 1.6rem;
    font-size: 0.78rem;
  }
  .section-padding {
    padding: 4.5rem 0;
  }
  .section-title {
    font-size: 1.95rem;
  }
  .why-card {
    padding: 2.2rem 1.5rem;
  }
  .project-card {
    height: 320px;
  }
  .project-overlay {
    padding: 1.5rem;
  }
  .cta-title {
    font-size: 2rem;
  }
  .cta-desc {
    font-size: 0.95rem;
  }
    .collection-text-content {
    text-align: center;
    padding: 1.5rem 0 0 0 !important; 
  }
  .collection-inline-img {
    height: 280px;
  }
  .product-card-img {
    height: 260px; 
  }
  .product-item-title {
    font-size: 1.05rem;
  }

    .badges-container {
    gap: 0.75rem;
  }
  .badge-order-item {
    width: 100%;
    max-width: 340px;
    justify-content: center;
  }
  .badge-order-text {
    white-space: normal;
  }

}

@media (max-width: 575.98px) {
  .hero-title {
    font-size: 1.65rem;
  }
  .collection-card {
    height: 280px;
  }.custom-project-img-wrapper {
    height: 280px; 
  }

  .custom-project-content-box {
    padding: 3rem 1.5rem;
    text-align: center;
  }

  .custom-project-actions {
    flex-direction: column;
    width: 100%;
  }

  .custom-project-actions .btn {
    width: 100%;
    justify-content: center;
  }
}

