@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{
      --primary:#c7b181;
      --primary-dark:#af9f7c;
      --accent:#f4b400;
      --light-bg:#f8fafc;
      --white:#ffffff;
      --text:#1f2937;
      --muted:#6b7280;
      --border:#e5e7eb;
      --shadow:0 18px 45px rgba(15, 23, 42, 0.08);
      --radius:22px;
    }

    *{
      margin:0;
      padding:0;
      box-sizing:border-box;
    }

    body{
      font-family: "Poppins", sans-serif;
      background:#ffffff;
      color:var(--text);
      overflow-x:hidden;
    }

    a{
      text-decoration:none;
    }

    .contact-hero{
  position: relative;
  padding: 100px 0 80px;
  background:
    linear-gradient(135deg, rgba(228,213,181,0.9), rgba(199,177,129,0.88), rgba(174,144,88,0.9)),
    url('https://images.unsplash.com/photo-1521791136064-7986c2920216?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
  color: #2f2417;
  overflow: hidden;
}
    .contact-hero::before{
      content:"";
      position:absolute;
      width:320px;
      height:320px;
      border-radius:50%;
      background:rgba(255,255,255,0.07);
      top:-80px;
      right:-80px;
    }

    .contact-hero::after{
      content:"";
      position:absolute;
      width:220px;
      height:220px;
      border-radius:50%;
      background:rgba(244,180,0,0.12);
      bottom:-70px;
      left:-70px;
    }

    .contact-hero-content{
      position:relative;
      z-index:2;
      max-width:760px;
      text-align:center;
      margin:auto;
    }

    .contact-badge{
      display:inline-block;
      padding:9px 18px;
      background:rgba(255,255,255,0.14);
      border:1px solid rgba(255,255,255,0.18);
      border-radius:50px;
      font-size:14px;
      font-weight:500;
      margin-bottom:20px;
      backdrop-filter:blur(8px);
    }

    .contact-hero h1{
      font-size:clamp(2.2rem, 5vw, 4rem);
      font-weight:700;
      margin-bottom:16px;
      line-height:1.12;
    }

    .contact-hero p{
      font-size:1.05rem;
      color:rgba(255,255,255,0.9);
      max-width:640px;
      margin:0 auto;
      line-height:1.8;
    }

    .contact-main{
      margin-top:-55px;
      position:relative;
      z-index:5;
      padding-bottom:70px;
    }

    .contact-form-card,
    .contact-info-card,
    .map-card{
      background:var(--white);
      border-radius:var(--radius);
      box-shadow:var(--shadow);
      border:1px solid rgba(229,231,235,0.85);
    }

    .contact-form-card{
      padding:38px;
      height:100%;
    }

    .section-mini-title{
      color:var(--primary);
      font-size:14px;
      font-weight:600;
      letter-spacing:.08em;
      text-transform:uppercase;
      margin-bottom:10px;
      display:block;
    }

    .section-title{
      font-size:2rem;
      font-weight:700;
      margin-bottom:12px;
      color:var(--text);
    }

    .section-desc{
      color:var(--muted);
      line-height:1.8;
      margin-bottom:28px;
    }

    .form-label{
      font-weight:600;
      color:#111827;
      margin-bottom:8px;
    }

    .form-control{
      height:54px;
      border-radius:14px;
      border:1px solid var(--border);
      padding:12px 16px;
      font-size:15px;
      box-shadow:none !important;
      transition:all .3s ease;
    }

    textarea.form-control{
      height:auto;
      min-height:150px;
      resize:none;
    }

    .form-control:focus{
      border-color:rgba(14,75,139,0.45);
      box-shadow:0 0 0 4px rgba(14,75,139,0.08) !important;
    }

    .contact-btn{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:10px;
      width:100%;
      min-height:56px;
      border:none;
      border-radius:14px;
      background:linear-gradient(135deg, var(--primary), var(--primary-dark));
      color:#fff;
      font-weight:600;
      font-size:16px;
      transition:all .35s ease;
    }

    .contact-btn:hover{
      transform:translateY(-2px);
      background:linear-gradient(135deg, var(--primary-dark), var(--primary));
      color:#fff;
      box-shadow:0 14px 30px rgba(14,75,139,0.18);
    }

    .contact-info-wrap{
      display:flex;
      flex-direction:column;
      gap:22px;
    }

    .contact-info-card{
      padding:24px;
      transition:all .35s ease;
      height:100%;
    }

    .contact-info-card:hover{
      transform:translateY(-5px);
      box-shadow:0 22px 40px rgba(15,23,42,0.1);
    }

    .contact-info-icon{
      width:62px;
      height:62px;
      border-radius:18px;
      display:flex;
      align-items:center;
      justify-content:center;
      background:linear-gradient(135deg, rgba(14,75,139,0.12), rgba(244,180,0,0.18));
      color:var(--primary);
      font-size:1.55rem;
      margin-bottom:18px;
    }

    .contact-info-card h5{
      font-size:1.12rem;
      font-weight:700;
      margin-bottom:10px;
      color:#111827;
    }

    .contact-info-card p,
    .contact-info-card a{
      font-size:15px;
      line-height:1.8;
      color:var(--muted);
      margin:0;
    }

    .contact-info-card a:hover{
      color:var(--primary);
    }

    .map-section{
      padding:10px 0 80px;
    }

    .map-card{
      overflow:hidden;
      padding:0;
    }

    .map-top{
      padding:28px 30px 12px;
    }

    .map-title{
      font-size:1.7rem;
      font-weight:700;
      margin-bottom:10px;
      color:var(--text);
    }

    .map-text{
      color:var(--muted);
      margin-bottom:0;
      line-height:1.8;
    }

    .map-frame{
      width:100%;
      height:430px;
      border:0;
      display:block;
    }

    .contact-floating-box{
      background:linear-gradient(135deg, #ffffff, #f9fbff);
      border:1px solid rgba(14,75,139,0.08);
      border-radius:20px;
      padding:16px 18px;
      display:flex;
      align-items:center;
      gap:14px;
      margin-top:22px;
    }

    .contact-floating-box i{
      width:46px;
      height:46px;
      border-radius:50%;
      display:flex;
      align-items:center;
      justify-content:center;
      background:rgba(14,75,139,0.1);
      color:var(--primary);
      font-size:1.2rem;
      flex-shrink:0;
    }

    .contact-floating-box span{
      display:block;
      font-size:13px;
      color:var(--muted);
      margin-bottom:4px;
    }

    .contact-floating-box strong{
      font-size:15px;
      color:var(--text);
      font-weight:600;
    }

    @media (max-width: 991.98px){
      .contact-form-card{
        padding:28px;
      }

      .contact-main{
        margin-top:-40px;
      }

      .map-frame{
        height:360px;
      }
    }

    @media (max-width: 767.98px){
      .contact-hero{
        padding:85px 0 70px;
      }

      .contact-hero p{
        font-size:.98rem;
      }

      .section-title{
        font-size:1.7rem;
      }

      .contact-form-card,
      .contact-info-card{
        padding:22px;
      }

      .map-top{
        padding:22px 20px 10px;
      }

      .map-frame{
        height:300px;
      }
    }

    @media (max-width: 575.98px){
      .contact-hero{
        padding:75px 0 60px;
      }

      .contact-main{
        margin-top:-28px;
        padding-bottom:50px;
      }

      .contact-form-card{
        padding:20px;
      }

      .contact-info-card{
        padding:20px;
      }

      .contact-info-icon{
        width:56px;
        height:56px;
        font-size:1.35rem;
        border-radius:16px;
      }

      .form-control{
        height:50px;
        font-size:14px;
      }

      textarea.form-control{
        min-height:130px;
      }

      .contact-btn{
        min-height:52px;
        font-size:15px;
      }

      .map-frame{
        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;
  }
}