@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap');
    
    
    body {
       font-family: "Manrope", sans-serif !important;
      background: #fff;
      margin: 0;
      padding: 0;
    }

/* Navbar */
.custom-navbar {
  background: #fff;
  padding: 14px 0;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  position: sticky;
  top: 0;
  z-index: 999;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.nav-logo img {
  max-height: 46px;
  width: auto;
  display: block;
}

.nav-center {
  flex: 1;
  display: flex;
  justify-content: center;
}

.nav-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 34px;
}

.nav-links li a {
  text-decoration: none;
  color: #666;
  font-size: 14px;
  font-weight: 500;
  position: relative;
  padding-bottom: 6px;
  transition: 0.3s ease;
}

.nav-links li a:hover,
.nav-links li a.active {
  color: #c6ae7b;
}

.nav-links li a.active::after,
.nav-links li a:hover::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: #c6ae7b;
}

/* desktop right */
.nav-right {
  display: flex;
  align-items: center;
  gap: 18px;
}

.search-btn {
  font-size: 18px;
  color: #4b4b4b;
  text-decoration: none;
  transition: 0.3s ease;
}

.search-btn:hover {
  color: #c6ae7b;
}

.quote-btn {
  background: #c8b184;
  color: #fff;
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
  transition: 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.quote-btn:hover {
  background: #b59d71;
  color: #fff;
}

/* mobile right */
.mobile-right {
  display: none;
  align-items: center;
  gap: 12px;
}

.mobile-toggle {
  display: none;
  border: none;
  background: transparent;
  font-size: 28px;
  color: #333;
  padding: 0;
  line-height: 1;
}

/* Sidebar */
.mobile-sidebar {
  position: fixed;
  top: 0;
  right: -320px;
  width: 300px;
  max-width: 85%;
  height: 100vh;
  background: #fff;
  box-shadow: -8px 0 20px rgba(0,0,0,0.12);
  z-index: 2000;
  transition: right 0.4s ease;
  padding: 24px 20px;
}

.mobile-sidebar.active {
  right: 0;
}

.mobile-sidebar-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

.mobile-sidebar-top img {
  max-height: 40px;
}

.close-sidebar {
  border: none;
  background: transparent;
  font-size: 26px;
  color: #333;
}

.mobile-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-menu li {
  margin-bottom: 18px;
}

.mobile-menu li a {
  text-decoration: none;
  color: #444;
  font-size: 16px;
  font-weight: 500;
}

.mobile-menu li a:hover,
.mobile-menu li a.active {
  color: #c6ae7b;
}

/* overlay */
.sidebar-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.35);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease;
  z-index: 1500;
}

.sidebar-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Responsive */
@media (max-width: 991.98px) {
  .nav-center,
  .nav-right {
    display: none;
  }

  .mobile-right {
    display: flex;
  }

  .mobile-toggle {
    display: block;
  }

  .nav-inner {
    gap: 10px;
  }
}

@media (max-width: 767.98px) {
  .nav-logo img {
    max-height: 30px;
  }

  .mobile-search-btn {
    font-size: 17px;
  }

  .mobile-quote-btn {
    padding: 8px 14px;
    font-size: 13px;
  }

  .mobile-toggle {
    font-size: 26px;
  }
}

@media (max-width: 575.98px) {
  .custom-navbar {
    padding: 10px 0;
  }

  .nav-logo img {
    max-height: 34px;
  }

  .mobile-right {
    gap: 10px;
  }

  .mobile-quote-btn {
    padding: 7px 12px;
    font-size: 12px;
  }

  .mobile-search-btn {
    font-size: 16px;
  }

  .mobile-toggle {
    font-size: 24px;
  }
}

/* Search section */
.nav-search-wrap {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-10px);
  transition: max-height 0.45s ease, opacity 0.35s ease, transform 0.35s ease, padding-top 0.35s ease;
  padding-top: 0;
}

.nav-search-wrap.active {
  max-height: 120px;
  opacity: 1;
  transform: translateY(0);
  padding-top: 16px;
}

.nav-search-form {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 0;
  border: 1px solid #e5dccb;
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
}

.nav-search-input {
  flex: 1;
  height: 50px;
  border: none;
  outline: none;
  padding: 0 16px;
  font-size: 14px;
  color: #333;
  background: #fff;
}

.nav-search-input::placeholder {
  color: #9c9c9c;
}

.nav-search-submit {
  width: 58px;
  height: 50px;
  border: none;
  background: #c8b184;
  color: #fff;
  font-size: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s ease;
}

.nav-search-submit:hover {
  background: #b59d71;
}

/* remove default anchor jump feel */
.search-btn {
  cursor: pointer;
}

/* Responsive search bar */
@media (max-width: 767.98px) {
  .nav-search-wrap.active {
    padding-top: 14px;
  }

  .nav-search-input {
    height: 46px;
    font-size: 13px;
    padding: 0 14px;
  }

  .nav-search-submit {
    width: 52px;
    height: 46px;
    font-size: 16px;
  }
}
















:root{
  --horeca-bg: #F6F3EE;
  --horeca-gold: #B7A27A;
  --horeca-gold-dark: #B59963;
  --horeca-text: #1C1C19;
  --horeca-muted: #1C1C19;
  --horeca-border: #DDD3C3;
  --horeca-white: #ffffff;
}

/* body{
  font-family: 'Poppins', sans-serif;
} */

.horeca-hero{
  background: var(--horeca-bg);
  padding: 70px 0 50px;
  position: relative;
  overflow: hidden;
}

.horeca-hero-content{
  position: relative;
  z-index: 2;
}

.horeca-badge{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #F8E0B4;
  color: #544524;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  padding: 8px 14px;
  border-radius: 30px;
  margin-bottom: 25px;
}

.horeca-badge span{
  width: 8px;
  height: 8px;
  background: var(--horeca-gold);
  border-radius: 50%;
  display: inline-block;
}

.horeca-title{
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 78px;
  line-height: 0.95;
  font-weight: 700;
  color: var(--horeca-text);
  margin-bottom: 26px;
}

.horeca-title span{
  color: var(--horeca-gold);
}

.horeca-text{
  max-width: 500px;
  font-size: 18px;
  line-height: 1.8;
  color: var(--horeca-muted);
  margin-bottom: 32px;
}

.horeca-btn-group{
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.horeca-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 17px;
  font-weight: 600;
  padding: 16px 28px;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.horeca-btn-primary{
  background: var(--horeca-gold);
  color: var(--horeca-white);
  border: 1px solid var(--horeca-gold);
}

.horeca-btn-primary:hover{
  background: var(--horeca-gold-dark);
  border-color: var(--horeca-gold-dark);
  color: var(--horeca-white);
}

.horeca-btn-outline{
  background: transparent;
  color: var(--horeca-text);
  border: 1px solid var(--horeca-border);
}

.horeca-btn-outline:hover{
  background: var(--horeca-white);
  color: var(--horeca-text);
}

.horeca-stats{
  display: flex;
  align-items: center;
  gap: 60px;
  padding-top: 28px;
  border-top: 1px solid rgba(0,0,0,0.08);
  flex-wrap: wrap;
}

.horeca-stat-item h3{
  font-size: 42px;
  line-height: 1;
  margin-bottom: 8px;
  color: var(--horeca-gold);
  font-weight: 700;
}

.horeca-stat-item p{
  margin: 0;
  font-size: 14px;
  color: #7C7268;
  letter-spacing: 0.5px;
  font-weight: 500;
}

.horeca-hero-image-wrap{
  position: relative;
  max-width: 100%;
}

.horeca-hero-image{
  width: 100%;
  height: 680px;
  object-fit: cover;
  border-radius: 28px;
  display: block;
  box-shadow: 0 20px 45px rgba(0,0,0,0.08);
}

/* Optional soft background shape */
.horeca-hero::before{
  content: "";
  position: absolute;
  right: -80px;
  bottom: 50px;
  width: 280px;
  height: 280px;
  background: rgba(200, 175, 122, 0.18);
  border-radius: 40px;
  transform: rotate(25deg);
}

.horeca-hero::after{
  content: "";
  position: absolute;
  left: 10%;
  bottom: -30px;
  width: 420px;
  height: 120px;
  
  filter: blur(3px);
  border-radius: 100px;
}

/* Responsive */
@media (max-width: 1399.98px){
  .horeca-title{
    font-size: 68px;
  }

  .horeca-hero-image{
    height: 620px;
  }
}

@media (max-width: 1199.98px){
  .horeca-title{
    font-size: 58px;
  }

  .horeca-text{
    font-size: 17px;
  }

  .horeca-hero-image{
    height: 560px;
  }
}

@media (max-width: 991.98px){
  .horeca-hero{
    padding: 60px 0 45px;
  }

  .horeca-title{
    font-size: 50px;
  }

  .horeca-text{
    max-width: 100%;
  }

  .horeca-hero-image{
    height: 500px;
  }

  .horeca-stats{
    gap: 35px;
  }
}

@media (max-width: 767.98px){
  .horeca-hero{
    padding: 45px 0 35px;
  }

  .horeca-badge{
    font-size: 10px;
    padding: 7px 12px;
    margin-bottom: 18px;
  }

  .horeca-title{
    font-size: 40px;
    line-height: 1.05;
    margin-bottom: 18px;
  }

  .horeca-text{
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 24px;
  }

  .horeca-btn-group{
    gap: 12px;
    margin-bottom: 32px;
  }

  .horeca-btn{
    padding: 14px 22px;
    font-size: 15px;
  }

  .horeca-stat-item h3{
    font-size: 34px;
  }

  .horeca-stat-item p{
    font-size: 12px;
  }

  .horeca-hero-image{
    height: 420px;
    border-radius: 22px;
  }
}

@media (max-width: 575.98px){
  .horeca-title{
    font-size: 34px;
  }

  .horeca-text{
    font-size: 15px;
  }

  .horeca-btn-group{
    flex-direction: column;
    align-items: stretch;
  }

  .horeca-btn{
    width: 100%;
  }

  .horeca-stats{
    justify-content: space-between;
    gap: 20px;
  }

  .horeca-stat-item{
    width: 48%;
  }

  .horeca-stat-item h3{
    font-size: 28px;
  }

  .horeca-hero-image{
    height: 340px;
    border-radius: 18px;
  }
}



















:root{
  --catalog-bg: #F6F3EE;
  --catalog-heading: #1C1C19;
  --catalog-text: #6D5C3A;
  --catalog-white: #ffffff;
  --catalog-radius: 22px;
}

.curator-catalog-section{
  background: var(--catalog-bg);
  padding: 70px 0;
}

.catalog-heading-wrap{
  margin-bottom: 40px;
  max-width: 680px;
}

.catalog-main-title{
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 52px;
  font-weight: 700;
  line-height: 1.1;
  color: var(--catalog-heading);
  margin-bottom: 14px;
}

.catalog-sub-text{
  font-size: 18px;
  line-height: 1.7;
  color: var(--catalog-text);
  margin: 0;
}

.catalog-card{
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: var(--catalog-radius);
  text-decoration: none;
  background: #ddd;
  height: auto;
}

.catalog-card-image-wrap{
  position: relative;
  overflow: hidden;
  border-radius: var(--catalog-radius);
}

.catalog-card-image{
  width: 100%;
  height: auto;
  display: block;
  object-fit: unset;
  filter: brightness(0.78);
  transform: scale(1);
  transition: transform 0.6s ease, filter 0.4s ease;
}

.catalog-card:hover .catalog-card-image{
  transform: scale(1.08);
  filter: brightness(0.68);
}

.catalog-card-overlay{
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.55) 0%,
    rgba(0, 0, 0, 0.20) 35%,
    rgba(0, 0, 0, 0.05) 100%
  );
  z-index: 1;
  border-radius: var(--catalog-radius);
}

.catalog-card-content{
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  z-index: 2;
}

.catalog-card-content h3{
  margin: 0;
  color: var(--catalog-white);
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.15;
}

/* Remove all fixed heights */
.catalog-card-tall,
.catalog-card-small,
.catalog-card-wide,
.catalog-card-bottom{
  min-height: auto;
}

/* Responsive */
@media (max-width: 1199.98px){
  .catalog-main-title{
    font-size: 46px;
  }

  .catalog-sub-text{
    font-size: 17px;
  }

  .catalog-card-content h3{
    font-size: 25px;
  }
}

@media (max-width: 991.98px){
  .curator-catalog-section{
    padding: 60px 0;
  }

  .catalog-heading-wrap{
    margin-bottom: 30px;
  }

  .catalog-main-title{
    font-size: 40px;
  }
}

@media (max-width: 767.98px){
  .curator-catalog-section{
    padding: 50px 0;
  }

  .catalog-main-title{
    font-size: 34px;
  }

  .catalog-sub-text{
    font-size: 15px;
    line-height: 1.6;
  }

  .catalog-card-content{
    left: 18px;
    right: 18px;
    bottom: 18px;
  }

  .catalog-card-content h3{
    font-size: 24px;
  }
}

@media (max-width: 575.98px){
  .catalog-main-title{
    font-size: 30px;
  }

  .catalog-card-content h3{
    font-size: 22px;
  }
}



















:root{
  --signature-bg: #F6F3EE;
  --signature-card-bg: #ffffff;
  --signature-title: #1b1b1b;
  --signature-text: #7c6f63;
  --signature-gold: #C8AF7A;
  --signature-border: #eee7dc;
  --signature-btn-border: #e7dfd1;
  --signature-radius: 14px;
}

body{
  font-family: 'Poppins', sans-serif;
}

.signature-section{
  background: var(--signature-bg);
  padding: 80px 0;
}

.signature-heading{
  max-width: 700px;
  margin: 0 auto 45px;
}

.signature-subtitle{
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.8px;
  color: var(--signature-gold);
  text-transform: uppercase;
  margin-bottom: 10px;
}

.signature-title{
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 48px;
  font-weight: 700;
  color: var(--signature-title);
  margin: 0;
  line-height: 1.1;
}

.signature-card{
  background: var(--signature-card-bg);
  border: 1px solid rgba(0,0,0,0.04);
  border-radius: 12px;
  padding: 10px;
  height: 100%;
  transition: all 0.35s ease;
}

.signature-card:hover{
  transform: translateY(-6px);
  box-shadow: 0 18px 35px rgba(0,0,0,0.06);
}

.signature-image-wrap{
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  background: #f3f3f3;
}

.signature-image{
  width: 100%;
  height: 190px;
  object-fit: cover;
  display: block;
}

.signature-badge{
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--signature-gold);
  color: #fff;
  font-size: 10px;
  font-weight: 600;
  padding: 5px 10px;
  border-radius: 4px;
  letter-spacing: 0.4px;
  text-transform: uppercase;
}

.signature-card-body{
  padding: 16px 2px 2px;
}

.signature-card-title{
  font-size: 22px;
  font-weight: 600;
  color: var(--signature-title);
  margin-bottom: 10px;
  line-height: 1.3;
}

.signature-card-text{
  font-size: 14px;
  line-height: 1.7;
  color: var(--signature-text);
  margin-bottom: 18px;
  min-height: 72px;
}

.signature-btn{
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border: 1px solid var(--signature-btn-border);
  color: var(--signature-gold);
  background: transparent;
  padding: 12px 18px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.signature-btn:hover{
  background: var(--signature-gold);
  color: #fff;
  border-color: var(--signature-gold);
}

/* Responsive */
@media (max-width: 1199.98px){
  .signature-title{
    font-size: 42px;
  }

  .signature-card-title{
    font-size: 20px;
  }
}

@media (max-width: 991.98px){
  .signature-section{
    padding: 65px 0;
  }

  .signature-heading{
    margin-bottom: 35px;
  }

  .signature-title{
    font-size: 38px;
  }

  .signature-image{
    height: 220px;
  }
}

@media (max-width: 767.98px){
  .signature-section{
    padding: 55px 0;
  }

  .signature-subtitle{
    font-size: 10px;
    letter-spacing: 1.4px;
  }

  .signature-title{
    font-size: 32px;
  }

  .signature-card-title{
    font-size: 19px;
  }

  .signature-card-text{
    font-size: 14px;
    min-height: auto;
  }

  .signature-image{
    height: 210px;
  }
}

@media (max-width: 575.98px){
  .signature-title{
    font-size: 28px;
  }

  .signature-card{
    padding: 8px;
    border-radius: 10px;
  }

  .signature-image-wrap{
    border-radius: 8px;
  }

  .signature-image{
    height: 200px;
  }

  .signature-card-body{
    padding-top: 14px;
  }

  .signature-btn{
    font-size: 13px;
    padding: 11px 14px;
  }
}






















:root{
  --heritage-bg:#FCF9F4;
  --heritage-title:#1C1C19;
  --heritage-text:#6D5C3A;
  --heritage-gold:#B7A27A;
  --heritage-radius:24px;
}



/* SECTION */
.heritage-section{
  background: var(--heritage-bg);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

/* SOFT BACKGROUND SHAPE */
.heritage-section::after{
  content:"";
  position:absolute;
  top:40px;
  right:18%;
  width:160px;
  height:160px;
  border-radius:50%;
  z-index:0;
}

/* IMAGE */
.heritage-image-wrap{
  position: relative;
  z-index: 2;
}

.heritage-image{
  width:100%;
  height:520px;
  object-fit:cover;
  border-radius: var(--heritage-radius);
  display:block;
  box-shadow: 0 25px 60px rgba(0,0,0,0.12);
}

/* CONTENT */
.heritage-content{
  position: relative;
  z-index: 2;
}

.heritage-subtitle{
  display:block;
  font-size:12px;
  letter-spacing:2px;
  color: var(--heritage-gold);
  font-weight:600;
  margin-bottom:12px;
}

.heritage-title{
  font-family: Georgia, 'Times New Roman', serif;
  font-size:54px;
  line-height:1.1;
  font-weight:700;
  color: var(--heritage-title);
  margin-bottom:22px;
}

.heritage-text{
  font-size:17px;
  line-height:1.8;
  color: var(--heritage-text);
  margin-bottom:40px;
  max-width:520px;
}

/* STATS */
.heritage-stats{
  display:flex;
  align-items:center;
  gap:60px;
  flex-wrap:wrap;
}

.heritage-stat h3{
  font-size:42px;
  color: var(--heritage-gold);
  margin-bottom:6px;
  font-weight:700;
}

.heritage-stat p{
  margin:0;
  font-size:12px;
  letter-spacing:0.5px;
  color:#4C463C;
  font-weight:500;
}

/* ================= RESPONSIVE ================= */

/* Large tablets */
@media (max-width:1199px){
  .heritage-title{
    font-size:46px;
  }

  .heritage-image{
    height:480px;
  }
}

/* Tablet */
@media (max-width:991px){
  .heritage-section{
    padding:65px 0;
  }

  .heritage-title{
    font-size:40px;
  }

  .heritage-text{
    font-size:16px;
  }

  .heritage-image{
    height:420px;
  }

  .heritage-stats{
    gap:40px;
  }
}

/* Mobile */
@media (max-width:767px){
  .heritage-section{
    padding:55px 0;
  }

  .heritage-title{
    font-size:34px;
  }

  .heritage-text{
    font-size:15px;
    margin-bottom:30px;
  }

  .heritage-image{
    height:360px;
    border-radius:18px;
  }

  .heritage-stats{
    justify-content:space-between;
    gap:20px;
  }

  .heritage-stat{
    width:48%;
  }

  .heritage-stat h3{
    font-size:32px;
  }
}

/* Small mobile */
@media (max-width:575px){
  .heritage-title{
    font-size:30px;
  }

  .heritage-image{
    height:300px;
  }

  .heritage-stat{
    width:100%;
  }

  .heritage-stats{
    gap:15px;
  }
}















:root{
  --brand-bg: #F6F3EE;
  --brand-heading: #6D5C3A;
  --brand-logo: #6d6d68;
}

.brand-strip-section{
  background: var(--brand-bg);
  padding: 55px 0 45px;
  overflow: hidden;
}

.brand-strip-heading{
  margin-bottom: 38px;
}

.brand-strip-subtitle{
  margin: 0;
  font-size: 13px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--brand-heading);
  font-weight: 500;
}

.brand-logo-item{
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand-logo-item img{
  max-width: 180px;
  max-height: 42px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.9;
  transition: all 0.3s ease;
}

.brand-logo-item:hover img{
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.04);
}

/* optional text-logo style support */
.brand-logo-text{
  font-size: 22px;
  font-weight: 700;
  color: var(--brand-logo);
  letter-spacing: 0.5px;
  text-align: center;
  white-space: nowrap;
}

@media (max-width: 991.98px){
  .brand-strip-section{
    padding: 45px 0 40px;
  }

  .brand-strip-subtitle{
    font-size: 12px;
    letter-spacing: 3px;
  }

  .brand-logo-item{
    height: 60px;
  }

  .brand-logo-item img{
    max-width: 150px;
    max-height: 36px;
  }
}

@media (max-width: 575.98px){
  .brand-strip-section{
    padding: 40px 0 35px;
  }

  .brand-strip-heading{
    margin-bottom: 28px;
  }

  .brand-strip-subtitle{
    font-size: 11px;
    letter-spacing: 2px;
    line-height: 1.7;
  }

  .brand-logo-item{
    height: 54px;
  }

  .brand-logo-item img{
    max-width: 120px;
    max-height: 30px;
  }
}


















:root{
  --industry-bg: #FCF9F4;
  --industry-title: #1C1C19;
  --industry-text: #6D5C3A;
  --industry-gold: #C8AF7A;
  --industry-gold-soft: #F8E0B4;
  --industry-icon: #B7A27A;
}



.industry-section{
  background: var(--industry-bg);
  padding: 80px 0;
}

.industry-head-wrap{
  max-width: 760px;
  margin-bottom: 50px;
}

.industry-title{
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 54px;
  line-height: 1.1;
  font-weight: 700;
  color: var(--industry-title);
  margin-bottom: 16px;
}

.industry-subtext{
  font-size: 18px;
  line-height: 1.7;
  color: var(--industry-text);
  margin: 0;
}

.industry-feature-card{
  height: 100%;
}

.industry-icon-box{
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--industry-gold-soft);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.industry-icon-box i{
  font-size: 22px;
  color: var(--industry-icon);
  line-height: 1;
}

.industry-feature-title{
  font-size: 22px;
  font-weight: 600;
  line-height: 1.35;
  color: #24211d;
  margin-bottom: 12px;
}

.industry-feature-text{
  font-size: 16px;
  line-height: 1.8;
  color: var(--industry-text);
  margin: 0;
  max-width: 260px;
}

/* Responsive */
@media (max-width: 1199.98px){
  .industry-title{
    font-size: 46px;
  }
}

@media (max-width: 991.98px){
  .industry-section{
    padding: 65px 0;
  }

  .industry-head-wrap{
    margin-bottom: 38px;
  }

  .industry-title{
    font-size: 40px;
  }

  .industry-subtext{
    font-size: 17px;
  }

  .industry-feature-title{
    font-size: 21px;
  }

  .industry-feature-text{
    max-width: 100%;
  }
}

@media (max-width: 767.98px){
  .industry-section{
    padding: 55px 0;
  }

  .industry-title{
    font-size: 34px;
    margin-bottom: 12px;
  }

  .industry-subtext{
    font-size: 15px;
    line-height: 1.65;
  }

  .industry-head-wrap{
    margin-bottom: 30px;
  }

  .industry-icon-box{
    width: 42px;
    height: 42px;
    border-radius: 10px;
    margin-bottom: 16px;
  }

  .industry-icon-box i{
    font-size: 20px;
  }

  .industry-feature-title{
    font-size: 20px;
    margin-bottom: 10px;
  }

  .industry-feature-text{
    font-size: 15px;
    line-height: 1.7;
  }
}

@media (max-width: 575.98px){
  .industry-title{
    font-size: 30px;
  }

  .industry-feature-card{
    padding-right: 10px;
  }
}

















:root{
  --faq-bg: #F6F3EE;
  --faq-title: #1C1C19;
  --faq-text: #6f6559;
  --faq-white: #FFFFFF;
  --faq-border: rgba(0,0,0,0.04);
}

body{
  font-family: 'Poppins', sans-serif;
}

.faq-section{
  background: var(--faq-bg);
  padding: 80px 0;
}

.faq-heading{
  margin-bottom: 40px;
}

.faq-heading h2{
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 52px;
  font-weight: 700;
  line-height: 1.1;
  color: var(--faq-title);
  margin: 0;
}

.faq-accordion-wrap{
  max-width: 720px;
  margin: 0 auto;
}

.custom-faq-accordion .accordion-item{
  background: var(--faq-white);
  border: none;
  border-radius: 14px !important;
  overflow: hidden;
  margin-bottom: 16px;
  box-shadow: none;
}

.custom-faq-accordion .accordion-header{
  border: none;
}

.custom-faq-accordion .accordion-button{
  background: var(--faq-white);
  color: #1C1C19;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  padding: 22px 24px;
  border: none;
  box-shadow: none;
  border-radius: 14px !important;
}

.custom-faq-accordion .accordion-button:not(.collapsed){
  background: var(--faq-white);
  color: #24211d;
  box-shadow: none;
}

.custom-faq-accordion .accordion-button:focus{
  box-shadow: none;
  outline: none;
  border: none;
}

.custom-faq-accordion .accordion-button::after{
  background-size: 16px;
  width: 16px;
  height: 16px;
}

.custom-faq-accordion .accordion-body{
  padding: 0 24px 22px;
  font-size: 16px;
  line-height: 1.8;
  color: var(--faq-text);
  background: var(--faq-white);
  border-top: none;
}

.custom-faq-accordion .accordion-collapse{
  border: none;
}

/* Remove bootstrap default line */
.custom-faq-accordion .accordion-item:first-of-type,
.custom-faq-accordion .accordion-item:last-of-type,
.custom-faq-accordion .accordion-item:not(:first-of-type){
  border: none;
}

/* Responsive */
@media (max-width: 991.98px){
  .faq-section{
    padding: 65px 0;
  }

  .faq-heading h2{
    font-size: 42px;
  }

  .custom-faq-accordion .accordion-button{
    font-size: 17px;
    padding: 20px 22px;
  }

  .custom-faq-accordion .accordion-body{
    font-size: 15px;
    padding: 0 22px 20px;
  }
}

@media (max-width: 767.98px){
  .faq-section{
    padding: 55px 0;
  }

  .faq-heading{
    margin-bottom: 28px;
  }

  .faq-heading h2{
    font-size: 34px;
  }

  .faq-accordion-wrap{
    max-width: 100%;
  }

  .custom-faq-accordion .accordion-item{
    border-radius: 12px !important;
    margin-bottom: 14px;
  }

  .custom-faq-accordion .accordion-button{
    font-size: 15px;
    padding: 18px 18px;
    border-radius: 12px !important;
  }

  .custom-faq-accordion .accordion-body{
    font-size: 14px;
    line-height: 1.7;
    padding: 0 18px 18px;
  }

  .custom-faq-accordion .accordion-button::after{
    background-size: 14px;
    width: 14px;
    height: 14px;
  }
}

@media (max-width: 575.98px){
  .faq-heading h2{
    font-size: 29px;
  }

  .custom-faq-accordion .accordion-button{
    font-size: 14px;
    line-height: 1.5;
  }

  .custom-faq-accordion .accordion-body{
    font-size: 13.5px;
  }
}















:root{
  --cta-white: #FFFFFF;
  --cta-gold: #B7A27A;
  --cta-gold-light: #CBB894;
  --cta-text-soft: rgba(255,255,255,0.92);
  --cta-shadow: 0 18px 35px rgba(0,0,0,0.08);
  --cta-btn-shadow: 0 12px 28px rgba(0,0,0,0.10);
}

body{
  font-family: 'Poppins', sans-serif;
}

.bulk-cta-section{
  background: #F6F3EE;
  padding: 80px 0;
}

.bulk-cta-box{
  background: linear-gradient(135deg, #CBB894 0%, #B7A27A 100%);
  border-radius: 34px;
  padding: 70px 20px;
  box-shadow: var(--cta-shadow);
}

.bulk-cta-title{
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 60px;
  line-height: 1.1;
  font-weight: 700;
  color: var(--cta-white);
  margin-bottom: 18px;
}

.bulk-cta-text{
  max-width: 760px;
  margin: 0 auto 34px;
  font-size: 20px;
  line-height: 1.6;
  font-weight: 300;
  color: var(--cta-text-soft);
}

.bulk-cta-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 260px;
  padding: 18px 34px;
  background: #FFFFFF;
  color: #B79A69;
  text-decoration: none;
  border-radius: 16px;
  font-size: 18px;
  font-weight: 600;
  box-shadow: var(--cta-btn-shadow);
  transition: all 0.3s ease;
}

.bulk-cta-btn:hover{
  transform: translateY(-3px);
  color: #a88954;
  background: #fff;
}

.bulk-cta-btn:focus{
  color: #a88954;
  background: #fff;
  box-shadow: var(--cta-btn-shadow);
}

/* Responsive */
@media (max-width: 1199.98px){
  .bulk-cta-title{
    font-size: 52px;
  }

  .bulk-cta-text{
    font-size: 18px;
  }
}

@media (max-width: 991.98px){
  .bulk-cta-section{
    padding: 65px 0;
  }

  .bulk-cta-box{
    border-radius: 28px;
    padding: 60px 24px;
  }

  .bulk-cta-title{
    font-size: 44px;
  }

  .bulk-cta-text{
    font-size: 17px;
    max-width: 640px;
  }
}

@media (max-width: 767.98px){
  .bulk-cta-section{
    padding: 55px 0;
  }

  .bulk-cta-box{
    border-radius: 24px;
    padding: 48px 20px;
  }

  .bulk-cta-title{
    font-size: 34px;
    margin-bottom: 14px;
  }

  .bulk-cta-text{
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 26px;
  }

  .bulk-cta-btn{
    min-width: 220px;
    padding: 16px 28px;
    border-radius: 14px;
    font-size: 16px;
  }
}

@media (max-width: 575.98px){
  .bulk-cta-box{
    border-radius: 20px;
    padding: 40px 16px;
  }

  .bulk-cta-title{
    font-size: 28px;
    line-height: 1.2;
  }

  .bulk-cta-text{
    font-size: 14px;
    margin-bottom: 22px;
  }

  .bulk-cta-btn{
    width: 100%;
    min-width: 100%;
    font-size: 15px;
    padding: 15px 20px;
  }
}
















:root{
  --showroom-bg: #F6F3EE;
  --showroom-title: #1C1C19;
  --showroom-text: #6D5C3A;
  --showroom-gold: #B7A27A;
  --showroom-icon-bg: #EFE9DF;
  --showroom-map-bg: #ECE8E2;
}

body{
  font-family: 'Poppins', sans-serif;
}

.showroom-section{
  background: var(--showroom-bg);
  padding: 80px 0;
}

.showroom-content{
  max-width: 470px;
}

.showroom-title{
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 54px;
  line-height: 1.1;
  font-weight: 700;
  color: var(--showroom-title);
  margin-bottom: 34px;
}

.showroom-info-list{
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.showroom-info-item{
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.showroom-icon-box{
  width: 42px;
  height: 42px;
  min-width: 42px;
  border-radius: 12px;
  background: var(--showroom-icon-bg);
  display: flex;
  align-items: center;
  justify-content: center;
}

.showroom-icon-box i{
  color: var(--showroom-gold);
  font-size: 20px;
  line-height: 1;
}

.showroom-info-text h4{
  font-size: 18px;
  font-weight: 600;
  color: #27231e;
  margin-bottom: 6px;
}

.showroom-info-text p{
  font-size: 16px;
  line-height: 1.7;
  color: var(--showroom-text);
  margin: 0;
}

.showroom-info-text a{
  color: var(--showroom-text);
  text-decoration: none;
  transition: 0.3s ease;
}

.showroom-info-text a:hover{
  color: var(--showroom-gold);
}

.showroom-map-wrap{
  background: var(--showroom-map-bg);
  border-radius: 24px;
  overflow: hidden;
  min-height: 380px;
  height: 100%;
  box-shadow: 0 10px 30px rgba(0,0,0,0.04);
}

.showroom-map-wrap iframe{
  width: 100%;
  height: 100%;
  display: block;
  min-height: 380px;
  /* filter: grayscale(100%); */
}

/* Responsive */
@media (max-width: 1199.98px){
  .showroom-title{
    font-size: 46px;
  }
}

@media (max-width: 991.98px){
  .showroom-section{
    padding: 65px 0;
  }

  .showroom-content{
    max-width: 100%;
  }

  .showroom-title{
    font-size: 40px;
    margin-bottom: 26px;
  }

  .showroom-map-wrap,
  .showroom-map-wrap iframe{
    min-height: 340px;
  }
}

@media (max-width: 767.98px){
  .showroom-section{
    padding: 55px 0;
  }

  .showroom-title{
    font-size: 34px;
    margin-bottom: 22px;
  }

  .showroom-info-list{
    gap: 22px;
  }

  .showroom-info-item{
    gap: 14px;
  }

  .showroom-icon-box{
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 10px;
  }

  .showroom-icon-box i{
    font-size: 18px;
  }

  .showroom-info-text h4{
    font-size: 17px;
  }

  .showroom-info-text p{
    font-size: 15px;
  }

  .showroom-map-wrap,
  .showroom-map-wrap iframe{
    min-height: 300px;
    border-radius: 18px;
  }
}

@media (max-width: 575.98px){
  .showroom-title{
    font-size: 30px;
  }

  .showroom-info-text h4{
    font-size: 16px;
  }

  .showroom-info-text p{
    font-size: 14px;
    line-height: 1.6;
  }

  .showroom-map-wrap,
  .showroom-map-wrap iframe{
    min-height: 260px;
  }
}




















:root{
  --footer-bg: #070809;
  --footer-bg-bottom: #0b0c0f;
  --footer-title: #ffffff;
  --footer-text: #9b9ca3;
  --footer-link: #d7d8dd;
  --footer-gold: #B89B67;
  --footer-border: rgba(255,255,255,0.08);
  --footer-input: #8f9199;
}

body{
  font-family: 'Poppins', sans-serif;
}

.cp-footer{
  background: var(--footer-bg);
  color: var(--footer-text);
}

.cp-footer-top{
  padding: 70px 0 42px;
}

.cp-footer-logo{
  display: inline-block;
  margin-bottom: 24px;
}

.cp-footer-logo img{
  max-width: 145px;
  height: auto;
  display: block;
}

.cp-footer-desc{
  max-width: 240px;
  font-size: 17px;
  line-height: 1.75;
  color: var(--footer-text);
  margin-bottom: 24px;
}

.cp-footer-social{
  display: flex;
  align-items: center;
  gap: 16px;
}

.cp-footer-social a{
  color: var(--footer-gold);
  font-size: 20px;
  text-decoration: none;
  transition: 0.3s ease;
}

.cp-footer-social a:hover{
  color: #d7ba86;
  transform: translateY(-2px);
}

.cp-footer-title{
  font-size: 28px;
  font-weight: 500;
  color: var(--footer-title);
  margin-bottom: 24px;
}

.cp-footer-links{
  list-style: none;
  padding: 0;
  margin: 0;
}

.cp-footer-links li{
  margin-bottom: 16px;
}

.cp-footer-links li:last-child{
  margin-bottom: 0;
}

.cp-footer-links a{
  text-decoration: none;
  color: var(--footer-link);
  font-size: 17px;
  line-height: 1.5;
  transition: 0.3s ease;
}

.cp-footer-links a:hover{
  color: var(--footer-gold);
  padding-left: 4px;
}

.cp-footer-news-text{
  max-width: 250px;
  font-size: 16px;
  line-height: 1.7;
  color: var(--footer-text);
  margin-bottom: 20px;
}

.cp-newsletter-form{
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: 280px;
}

.cp-newsletter-form input{
  flex: 1;
  height: 46px;
  background: rgba(255,255,255,0.10);
  border: none;
  outline: none;
  border-radius: 8px;
  padding: 0 14px;
  color: #fff;
  font-size: 14px;
}

.cp-newsletter-form input::placeholder{
  color: #bfc3cc;
}

.cp-newsletter-form button{
  width: 46px;
  height: 46px;
  border: none;
  border-radius: 8px;
  background: var(--footer-gold);
  color: #fff;
  font-size: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s ease;
}

.cp-newsletter-form button:hover{
  background: #c9ad7a;
}

.cp-footer-bottom{
  border-top: 1px solid var(--footer-border);
  background: var(--footer-bg-bottom);
  padding: 22px 0;
}

.cp-footer-copy{
  font-size: 13px;
  color: #7f8189;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.cp-footer-bottom-links{
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}

.cp-footer-bottom-links a{
  text-decoration: none;
  font-size: 13px;
  color: #8f9199;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: 0.3s ease;
}

.cp-footer-bottom-links a:hover{
  color: var(--footer-gold);
}

/* Responsive */
@media (max-width: 1199.98px){
  .cp-footer-title{
    font-size: 24px;
  }

  .cp-footer-desc,
  .cp-footer-links a,
  .cp-footer-news-text{
    font-size: 15px;
  }
}

@media (max-width: 991.98px){
  .cp-footer-top{
    padding: 60px 0 36px;
  }

  .cp-footer-title{
    margin-bottom: 18px;
  }

  .cp-footer-copy{
    text-align: center;
  }

  .cp-footer-bottom-links{
    justify-content: center;
  }
}

@media (max-width: 767.98px){
  .cp-footer-top{
    padding: 50px 0 30px;
  }

  .cp-footer-logo img{
    max-width: 130px;
  }

  .cp-footer-desc{
    max-width: 100%;
    margin-bottom: 20px;
  }

  .cp-footer-title{
    font-size: 22px;
    margin-bottom: 16px;
  }

  .cp-footer-links li{
    margin-bottom: 12px;
  }

  .cp-newsletter-form{
    max-width: 100%;
  }

  .cp-footer-bottom{
    padding: 18px 0;
  }

  .cp-footer-copy{
    font-size: 12px;
    line-height: 1.7;
  }

  .cp-footer-bottom-links{
    gap: 16px;
  }

  .cp-footer-bottom-links a{
    font-size: 12px;
  }
}

@media (max-width: 575.98px){
  .cp-footer-top{
    padding: 45px 0 28px;
  }

  .cp-footer-title{
    font-size: 20px;
  }

  .cp-footer-desc,
  .cp-footer-links a,
  .cp-footer-news-text{
    font-size: 14px;
  }

  .cp-footer-social a{
    font-size: 18px;
  }

  .cp-newsletter-form{
    flex-direction: row;
  }

  .cp-newsletter-form input{
    height: 44px;
    font-size: 13px;
  }

  .cp-newsletter-form button{
    width: 44px;
    height: 44px;
    font-size: 16px;
  }

  .cp-footer-bottom-links{
    flex-direction: column;
    gap: 10px;
  }
}