@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: #6f4934;
  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{
      --showroom-bg: #F6F3EE;
      --showroom-title: #1C1C19;
      --showroom-text: #6D5C3A;
      --showroom-gold: #B7A27A;
      --showroom-icon-bg: #EFE9DF;
      --showroom-map-bg: #ECE8E2;
      --showroom-white: #FFFFFF;
      --showroom-border: #E6DED1;
      --showroom-shadow: 0 14px 40px rgba(28, 28, 25, 0.08);
      --showroom-radius: 20px;
    }

    *{
      margin:0;
      padding:0;
      box-sizing:border-box;
    }

    body{
     
      background:var(--showroom-bg);
      color:var(--showroom-title);
      overflow-x:hidden;
    }

    a{
      text-decoration:none;
    }

    .blog-page-section{
      padding:90px 0 80px;
      background:var(--showroom-bg);
    }

    .blog-page-head{
      text-align:center;
      max-width:760px;
      margin:0 auto 48px;
    }

    .blog-mini-title{
      display:inline-block;
      padding:10px 18px;
      border-radius:50px;
      background:var(--showroom-icon-bg);
      color:var(--showroom-gold);
      font-size:13px;
      font-weight:700;
      letter-spacing:.08em;
      text-transform:uppercase;
      margin-bottom:18px;
    }

    .blog-page-title{
      font-size:clamp(2rem,4vw,3.3rem);
      font-weight:800;
      color:var(--showroom-title);
      margin-bottom:14px;
      line-height:1.15;
    }

    .blog-page-text{
      font-size:1.02rem;
      color:var(--showroom-text);
      line-height:1.8;
      margin:0;
    }

    .blog-card{
      background:var(--showroom-white);
      border:1px solid var(--showroom-border);
      border-radius:var(--showroom-radius);
      overflow:hidden;
      box-shadow:var(--showroom-shadow);
      height:100%;
      display:flex;
      flex-direction:column;
      transition:all .35s ease;
      position:relative;
    }

    .blog-card:hover{
      transform:translateY(-8px);
      box-shadow:0 18px 45px rgba(28, 28, 25, 0.12);
    }

    .blog-card-image-wrap{
      position:relative;
      overflow:hidden;
    }

    .blog-card-image{
      width:100%;
      height:240px;
      object-fit:cover;
      transition:transform .45s ease;
      display:block;
    }

    .blog-card:hover .blog-card-image{
      transform:scale(1.06);
    }

    .blog-card-body{
      padding:24px 22px 22px;
      display:flex;
      flex-direction:column;
      flex-grow:1;
    }

    .blog-category-badge{
      display:inline-flex;
      align-items:center;
      gap:8px;
      width:fit-content;
      padding:8px 14px;
      background:var(--showroom-icon-bg);
      color:var(--showroom-gold);
      border-radius:40px;
      font-size:12px;
      font-weight:700;
      letter-spacing:.04em;
      text-transform:uppercase;
      margin-bottom:16px;
    }

    .blog-card-title{
      font-size:1.22rem;
      font-weight:700;
      color:var(--showroom-title);
      line-height:1.5;
      margin-bottom:14px;
      min-height:72px;
      transition:color .3s ease;
    }

    .blog-card:hover .blog-card-title{
      color:var(--showroom-gold);
    }

    .blog-card-desc{
      color:var(--showroom-text);
      font-size:15px;
      line-height:1.8;
      margin-bottom:18px;
      flex-grow:1;
    }

    .blog-card-footer{
      border-top:1px solid var(--showroom-border);
      padding-top:16px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:12px;
      flex-wrap:wrap;
    }

    .blog-meta{
      display:flex;
      align-items:center;
      gap:14px;
      flex-wrap:wrap;
    }

    .blog-meta-item{
      display:flex;
      align-items:center;
      gap:8px;
      color:var(--showroom-text);
      font-size:14px;
      font-weight:500;
    }

    .blog-meta-icon{
      width:34px;
      height:34px;
      border-radius:50%;
      background:var(--showroom-icon-bg);
      display:flex;
      align-items:center;
      justify-content:center;
      color:var(--showroom-gold);
      font-size:14px;
      flex-shrink:0;
    }

    .blog-read-btn{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:8px;
      padding:11px 18px;
      border-radius:50px;
      background:var(--showroom-title);
      color:#fff;
      font-size:14px;
      font-weight:600;
      transition:all .3s ease;
    }

    .blog-read-btn:hover{
      background:var(--showroom-gold);
      color:#fff;
    }

    .blog-pagination-wrap{
      margin-top:50px;
      display:flex;
      justify-content:center;
    }

    .blog-pagination{
      display:flex;
      align-items:center;
      gap:10px;
      flex-wrap:wrap;
      justify-content:center;
      background:var(--showroom-white);
      border:1px solid var(--showroom-border);
      border-radius:60px;
      padding:12px 14px;
      box-shadow:0 8px 25px rgba(28,28,25,0.05);
    }

    .blog-page-link{
      width:46px;
      height:46px;
      border-radius:50%;
      display:flex;
      align-items:center;
      justify-content:center;
      border:none;
      background:transparent;
      color:var(--showroom-title);
      font-weight:700;
      font-size:15px;
      transition:all .3s ease;
    }

    .blog-page-link:hover{
      background:var(--showroom-icon-bg);
      color:var(--showroom-gold);
    }

    .blog-page-link.active{
      background:linear-gradient(135deg, var(--showroom-gold), #9f8960);
      color:#fff;
      box-shadow:0 8px 20px rgba(183,162,122,0.35);
    }

    .blog-page-link.arrow{
      background:var(--showroom-icon-bg);
      color:var(--showroom-gold);
    }

    .blog-page-link.arrow:hover{
      background:var(--showroom-gold);
      color:#fff;
    }

    @media (max-width: 991.98px){
      .blog-page-section{
        padding:75px 0 70px;
      }

      .blog-card-image{
        height:220px;
      }

      .blog-card-title{
        min-height:auto;
      }
    }

    @media (max-width: 767.98px){
      .blog-page-head{
        margin-bottom:34px;
      }

      .blog-card-body{
        padding:20px;
      }

      .blog-card-image{
        height:210px;
      }

      .blog-card-title{
        font-size:1.1rem;
        line-height:1.45;
      }

      .blog-card-desc{
        font-size:14px;
      }

      .blog-card-footer{
        flex-direction:column;
        align-items:flex-start;
      }

      .blog-read-btn{
        width:100%;
      }

      .blog-pagination{
        gap:8px;
        padding:10px 12px;
        border-radius:22px;
      }

      .blog-page-link{
        width:42px;
        height:42px;
        font-size:14px;
      }
    }

    @media (max-width: 575.98px){
      .blog-page-section{
        padding:62px 0 60px;
      }

      .blog-card-image{
        height:200px;
      }

      .blog-mini-title{
        font-size:12px;
        padding:9px 15px;
      }

      .blog-page-text{
        font-size:.95rem;
      }
    }


    








































    :root{
  --footer-bg: #070809;
  --footer-bg-bottom: #0b0c0f;
  --footer-title: #ffffff;
  --footer-text: #9b9ca3;
  --footer-link: #d7d8dd;
 --footer-gold: #6f4934;
  --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;
  }
}