
:root{
  --burgundy: #3A0C12;
  --antique-gold: #D4B673;
  --vintage-gold: #C2A05A;
  --pale-gold: #E9D6A6;
  --cream: #FFF8EE;
  --charcoal: #1A1415;
}

/* *{box-sizing:border-box;} */
body{
  font-family:'Poppins',system-ui,-apple-system,'Segoe UI',Roboto,Arial; 
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
  color:var(--charcoal); 
  background:#fff;
  padding: 0;
}

/* Sticky glass navbar */
.site-header .navbar{
  /* background: linear-gradient(180deg, rgba(58,12,18,0.95), rgba(58,12,18,0.98)); */
  background-color: #3A0C12;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border-bottom:1px solid rgba(212,182,115,0.06);
  padding:0.6rem 0;
}
.logo{width:50%;}
.brand-title{font-family:'Playfair Display',serif; color:var(--pale-gold); font-size:20px; font-weight:700;}
.brand-sub{font-size:10px; color:rgba(233,214,166,0.85); letter-spacing:1px; margin-top:-4px;}

/* Nav links */
.navbar .nav-link{color:rgba(233,214,166,0.92); margin-right:6px; padding:10px 12px;}
.navbar .nav-link.active{position:relative;}
.navbar .nav-link.active::after{content:''; position:absolute; left:18px; right:18px; bottom:6px; height:2px; background:var(--antique-gold); border-radius:2px;}

/* Buttons in nav */
.btn-outline-gold{border:1.6px solid rgba(212,182,115,0.95); color:var(--antique-gold); background:transparent; padding:8px 12px; border-radius:8px;}

/* Hero */
.hero-section{
  min-height:78vh;
  background-image: linear-gradient(180deg, rgba(58,12,18,0.88), rgba(58,12,18,0.88)), url('../assets/hero-1.jpg');
  background-size:cover;
  background-position:center;
  color:var(--pale-gold);
  display:flex;
  align-items:center;
  text-align:center;
  position:relative;
}
.hero-tag{letter-spacing:6px; color:rgba(233,214,166,0.85); margin-bottom:10px;}
.hero-title{font-family:'Playfair Display',serif; font-size:64px; line-height:1.02; margin-bottom:18px; color:var(--pale-gold);}
.hero-sub{color:rgba(233,214,166,0.85); max-width:760px; margin:0 auto 8px;}

/* Buttons */
.btn-gold{background:#c2a05a; color:#3a0c12; border:none; padding:12px 26px; border-radius:8px; font-weight:600;}
.btn-gold:hover{background:#c2a05a; color:#3a0c12;}
.btn-outline-gold{color:var(--antique-gold); border:1.6px solid rgba(212,182,115,0.95); padding:11px 24px; border-radius:8px;}
.btn-outline-gold:hover{background:#c2a05a; color:#3a0c12;}
.ft-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #3A0C12;
  color: #e9d6a6;
  border-radius: 999px;
  padding: 12px 26px;
  border: none;
  font-weight: 600;
  text-decoration: none;
}
.ft-btn:hover {
  background: #c2a05a;
  color: #3a0c12;
}
/* Sections */
.bg-cream{background:var(--cream);}
.dark-bg{background:var(--burgundy); color:var(--pale-gold);}
.text-gold{color:var(--pale-gold);}

/* Services */
.service{background:rgba(255,255,255,0.02); border:1px solid rgba(212,182,115,0.06); border-radius:12px; padding:26px;}

/* Utility */
.lead{color:rgba(26,20,21,0.75);}

/* Responsive */
@media (max-width: 992px){
  .hero-title{font-size:38px;}
  .logo{width: 50%;}
  .brand-wrap{display:none;}
}
@media (max-width:576px){
  .hero-title{font-size:28px;}
  .hero-sub{font-size:14px;}
  .navbar .nav-link{padding:8px 6px;}
}
.story-section {
  background: #FCF7EF; /* warm off-white */
}

.story-label {
  text-align: left;
  letter-spacing: 3px;
  font-size: 13px;
  font-weight: 600;
  color: #d4b673; /* gold-ish tone */
  display: flex;
  align-items: center;
  gap: 10px;
}

.story-label span {
  height: 1px;
  width: 30px;
  background: #CDB896;
  display: inline-block;
}

.story-title {
  font-family: 'Playfair Display', serif;
  color: #3A0C12; /* burgundy tone */
  font-size: 36px;
  margin-bottom: 20px;
}

.story-text {
  font-size: 17px;
  line-height: 1.7;
  color: #5F4B3C; 
  margin-bottom: 18px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .story-title {
    font-size: 28px;
  }

  .story-text {
    font-size: 16px;
  }

  .story-label {
    font-size: 12px;
  }

  .story-label span {
    width: 20px;
  }
}
.service-img {
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
}

.service-heading {
  font-family: 'Playfair Display', serif;
  font-size: 30px;
  color: var(--pale-gold);
}

.service-text {
  color: rgba(233,214,166,0.85);
  font-size: 16px;
  line-height: 1.7;
}

.service-list {
  list-style: none;
  padding: 0;
  margin: 0;
  color: rgba(233,214,166,0.9);
}

.service-list li {
  margin-bottom: 8px;
  font-size: 16px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .service-heading { font-size: 26px; }
  .service-text { font-size: 15px; }
  .service-list li { font-size: 15px; }
}
/* Before & After Section */
.beforeafter-section {
  background: #FCF7EF; /* cream background */
  color: #5F4B3C; /* warm brown text */
}

.ba-subtitle {
  letter-spacing: 3px;
  font-size: 13px;
  color: #d4b673; /* gold tone */
  margin-bottom: 5px;
}

.ba-title {
  font-family: 'Playfair Display', serif;
  font-size: 40px;
  color: #3a0c12; /* burgundy */
  margin-bottom: 10px;
}

.ba-desc {
  color: #6B584A;
  max-width: 600px;
  margin: 0 auto;
  font-size: 16px;
}

/* Image container */
.ba-image-wrap {
  max-width: 900px;
  border: 2px solid #CDB896; /* gold border */
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
}

.ba-image {
  width: 100%;
  display: block;
  border-radius: 10px;
}

/* Caption */
.ba-caption {
  font-size: 14px;
  color: #6B584A;
}

/* Responsive */
@media (max-width: 768px) {
  .ba-title {
    font-size: 30px;
  }
  .ba-desc {
    font-size: 14px;
  }
}
.ppf-section {
  background: #FCF7EF;
}

/* IMAGE BOX */
.ppf-img-wrap {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.08);
}
.ppf-img {
  width: 100%;
  display: block;
  border-radius: 14px;
}

/* SUBTITLE */
.ppf-subtitle {
  font-size: 13px;
  letter-spacing: 3px;
  font-weight: 600;
  color: #d4b673;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}
.ppf-subtitle span {
  height: 1px;
  width: 28px;
  background: #CDB896;
}

/* TITLE */
.ppf-title {
  font-family: "Playfair Display", serif;
  font-size: 40px;
  color: #3a0c12;
  margin-bottom: 16px;
}

/* DESCRIPTION */
.ppf-desc {
  color: #6B584A;
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 24px;
}

/* FEATURES */
.ppf-feature {
  background: #F8EFE3;
  border-radius: 12px;
  padding: 14px 18px;
  font-size: 15px;
  color: #3a0c12;
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 500;
}

.ppf-icon {
  height: 38px;
  width: 38px;
  border-radius: 50%;
  background: #D4B673;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #3A0C12;
  font-size: 18px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .ppf-title { font-size: 30px; }
  .ppf-feature { font-size: 14px; }
  .ppf-icon { height: 34px; width: 34px; font-size: 16px; }
}
/* Section Background */
.whyus-section {
  background: #FCF7EF;
  color: #3a0c12;
}

/* Subtitle Line */
.whyus-subtitle {
  font-size: 13px;
  letter-spacing: 3px;
  font-weight: 600;
  color: #d4b673;
  display: flex;
  align-items: center;
  gap: 10px;
}
.whyus-subtitle span {
  width: 26px;
  height: 1px;
  background: #CDB896;
}

/* Title */
.whyus-title {
  font-family: "Playfair Display", serif;
  font-size: 40px;
  margin-bottom: 15px;
}

/* Description */
.whyus-desc {
  color: #6B584A;
  font-size: 16px;
  line-height: 1.7;
  max-width: 500px;
}

/* Feature List */
.whyus-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.whyus-list li {
  margin-bottom: 12px;
  font-size: 16px;
  color: #3a0c12;
  display: flex;
  align-items: center;
  gap: 10px;
}
.whyus-list i {
  color: #B68A4A; /* Gold-ish tone */
  font-size: 18px;
}

/* Stats Cards */
.whyus-card {
  background: #3A0C12;
  color: #E9D6A6;
  border-radius: 14px;
  padding: 35px 20px;
  text-align: center;
  height: 100%;
}
.whyus-card h3 {
  font-family: "Playfair Display", serif;
  font-size: 36px;
  margin-bottom: 6px;
}
.whyus-card p {
  margin: 0;
  font-size: 14px;
  letter-spacing: 0.5px;
}

/* Responsive */
@media (max-width: 768px) {
  .whyus-title { font-size: 30px; }
  .whyus-card h3 { font-size: 28px; }
}
/* Background Image CTA Section */
.cta-section-img {
  position: relative;
  background-image: url('../assets/cta-background.webp'); /* replace with your image */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 80px 0;
  color: #E9D6A6;
}

/* Burgundy overlay */
.cta-section-img .cta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(58, 12, 18, 0.88); /* burgundy transparency */
  backdrop-filter: blur(2px);
  z-index: 1;
}

.cta-section-img .container {
  position: relative;
  z-index: 2;
}

/* Divider */
.cta-divider {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  color: #CDB896;
  margin-bottom: 20px;
}
.cta-divider span {
  width: 40px;
  height: 1px;
  background: #CDB896;
}
.cta-divider i {
  font-size: 10px;
}

/* Heading */
.cta-title {
  font-family: "Playfair Display", serif;
  font-size: 42px;
  margin-bottom: 12px;
}

/* Description */
.cta-desc {
  max-width: 650px;
  color: rgba(233,214,166,0.88);
  font-size: 16px;
  line-height: 1.6;
}

/* Bottom Features */
.cta-features {
  max-width: 700px;
  margin: 0 auto;
}
.feature-col {
  border-right: 1px solid rgba(233,214,166,0.35);
  padding: 10px 0;
}
.feature-col:last-child {
  border-right: none;
}
.feature-col h4 {
  font-family: "Playfair Display", serif;
  font-size: 26px;
  margin-bottom: 4px;
}
.feature-col p {
  font-size: 14px;
  color: rgba(233,214,166,0.88);
  letter-spacing: 0.5px;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .cta-title { font-size: 32px; }

  .feature-col {
    border-right: none;
    border-bottom: 1px solid rgba(233,214,166,0.25);
    margin-bottom: 20px;
    padding-bottom: 15px;
  }
  .feature-col:last-child {
    border-bottom: none;
  }
}
/* FOOTER MAIN */
.furni-footer {
  background: #3A0C12;
  color: #E9D6A6;
}

/* LOGO */
.footer-logo-img {
  width: 100%;
  height: auto;
}
.footer-brand {
  font-family: "Playfair Display", serif;
  font-size: 22px;
  margin: 0;
}

/* TEXT */
.footer-text {
  font-size: 15px;
  color: rgba(233,214,166,0.85);
}

/* SOCIAL ICONS */
.footer-social a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(233,214,166,0.35);
  color: #E9D6A6;
  margin-right: 10px;
  transition: 0.3s;
}
.footer-social a:hover {
  background: rgba(233,214,166,0.15);
}

/* HEADINGS */
.footer-heading {
  font-family: "Playfair Display", serif;
  font-size: 20px;
  margin-bottom: 15px;
}

/* LINKS */
.footer-links {
  list-style: none;
  padding: 0;
}
.footer-links li {
  margin-bottom: 10px;
}
.footer-links a {
  color: rgba(233,214,166,0.85);
  text-decoration: none;
  transition: 0.3s;
}
.footer-links a:hover {
  color: #ffffff;
}

/* CONTACT ITEMS */
.footer-contact-item {
  display: flex;
  gap: 12px;
  margin-bottom: 15px;
  font-size: 15px;
}
.footer-contact-item i {
  color: #D4B673;
  font-size: 18px;
}

/* DIVIDER */
.footer-divider {
  border-color: rgba(233,214,166,0.25);
  margin-top: 30px;
}

/* COPYRIGHT */
.footer-bottom {
  font-size: 14px;
  color: rgba(233,214,166,0.85);
}

.footer-bottom a{
  text-decoration: none;
  color: rgba(233,214,166,0.85);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .footer-bottom {
    margin-top: 20px;
  }
}
.application-section {
  background: #FCF7EF;
  color: #3a0c12;
}

/* Subtitle */
.app-subtitle {
  font-size: 13px;
  letter-spacing: 3px;
  font-weight: 600;
  color: #d4b673;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.app-subtitle span {
  width: 30px;
  height: 1px;
  background: #CDB896;
}

/* Title */
.app-title {
  font-family: "Playfair Display", serif;
  font-size: 40px;
  margin-top: 10px;
}

/* Description */
.app-desc {
  max-width: 700px;
  color: #6B584A;
  font-size: 16px;
  line-height: 1.7;
}

/* Feature Cards */
.app-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
}
.app-card img {
  border-radius: 12px;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Card Overlay Text */
.app-overlay {
  position: absolute;
  bottom: 12px;
  left: 12px;
  color: #ffffff;
  font-family: "Playfair Display", serif;
  font-size: 18px;
  text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

/* Footer Text */
.app-footer-text {
  max-width: 800px;
  font-size: 15px;
  color: #6B584A;
  line-height: 1.7;
  margin: 0 auto;
}

/* Responsive */
@media (max-width: 768px) {
  .app-title { font-size: 30px; }
  .app-overlay { font-size: 16px; }
}
.furni-types-section {
  background: #FCF7EF; /* light warm background */
}

/* Left content */
.ft-title {
  font-family: "Playfair Display", serif;
  font-size: 40px;
  color: #121826; /* deep navy/dark */
  margin-bottom: 16px;
}

.ft-desc {
  font-size: 16px;
  color: #4F5665;
  max-width: 600px;
  margin-bottom: 18px;
}

/* Bullet list */
.ft-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}
.ft-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: #25313C;
  margin-bottom: 8px;
}
.ft-list i {
  color: #E48A18; /* accent orange */
  font-size: 16px;
}

/* Button */
.ft-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #3A0C12;
  color: #e9d6a6;
  border-radius: 999px;
  padding: 12px 26px;
  border: none;
  font-weight: 600;
  text-decoration: none;
}
.ft-btn:hover {
  background: #c2a05a;
  color: #3a0c12;
}
.ft-btn i {
  font-size: 16px;
}

/* Right cards */
.ft-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 26px 22px;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.06);
  height: 100%;
}
.ft-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: #FFE8B2;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}
.ft-card-icon i {
  color: #E48A18;
  font-size: 22px;
}
.ft-card h5 {
  font-size: 18px;
  color: #121826;
  margin-bottom: 4px;
}
.ft-card p {
  font-size: 14px;
  color: #6B7280;
  margin: 0;
}

/* Responsive tweaks */
@media (max-width: 992px) {
  .ft-title { font-size: 32px; }
}
@media (max-width: 576px) {
  .ft-title { font-size: 26px; }
}


/* about pages css */
/* HERO SECTION BACKGROUND */
.about-hero-section {
  background: linear-gradient(180deg, #3A0C12 0%, #4A1A1D 100%);
  padding: 120px 0;
  color: #E9D6A6;
}

/* TOP LABEL */
.about-label {
  background: rgba(212,182,115,0.25);
  padding: 6px 18px;
  border-radius: 30px;
  font-size: 14px;
  color: #EBD8A4;
  width: fit-content;
  font-weight: 500;
}

/* TITLE */
.about-hero-title {
  font-family: "Playfair Display", serif;
  font-size: 48px;
  color: #ffffff;
  line-height: 1.3;
  margin-bottom: 16px;
}

.about-hero-title span {
  color: #D4B673; /* gold */
}

/* SUBTITLE */
.about-hero-subtitle {
  max-width: 700px;
  color: rgba(255,255,255,0.85);
  font-size: 18px;
  line-height: 1.6;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .about-hero-section {
    padding: 80px 20px;
  }

  .about-hero-title {
    font-size: 32px;
  }

  .about-hero-subtitle {
    font-size: 15px;
  }
}
/* TOP SECTION (Our Values) */
.values-section {
  background: #FCF7EF;
}

.values-subtitle {
  font-size: 13px;
  letter-spacing: 3px;
  color: #d4b673;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}
.values-subtitle span {
  width: 30px;
  height: 1px;
  background: #CDB896;
}

.values-title {
  font-family: "Playfair Display", serif;
  font-size: 36px;
  margin-bottom: 10px;
  color: #2D1A18;
}
.values-title span {
  color: #B6954E; /* Goldish */
}

.values-desc {
  max-width: 600px;
  color: #6B584A;
  font-size: 16px;
}

/* Value Cards */
.value-card {
  background: #FFFFFF;
  border: 1px solid rgba(0,0,0,0.1);
  padding: 28px 20px;
  text-align: center;
  border-radius: 14px;
  height: 100%;
}
.value-icon {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background: #F4EFEA;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 14px;
}
.value-icon i {
  color: #d4b673;
  font-size: 24px;
}
.value-card h5 {
  font-family: "Playfair Display", serif;
  font-size: 20px;
  margin-bottom: 8px;
  color: #2D1A18;
}
.value-card p {
  color: #6B584A;
  font-size: 14px;
}


/* MISSION & VISION SECTION */
.mission-vision-section {
  background: #3A0C12;
  padding-top: 70px;
  padding-bottom: 90px;
}

.mv-card {
  border: 1px solid rgba(233,214,166,0.2);
  border-radius: 14px;
  padding: 35px;
  height: 100%;
  background: rgba(255,255,255,0.03);
}

.mv-sub {
  color: #CDB896;
  font-size: 13px;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.mv-title {
  font-family: "Playfair Display", serif;
  font-size: 26px;
  color: #E9D6A6;
  margin-bottom: 14px;
}

.mv-text {
  color: rgba(233,214,166,0.85);
  line-height: 1.7;
  font-size: 15px;
}


/* Responsive */
@media(max-width: 768px) {
  .values-title { font-size: 28px; }
  .mv-title { font-size: 22px; }
}
/* ============================
   WHAT MAKES US DIFFERENT
============================ */

.difference-section {
  background: #FCF7EF; /* your requested background */
}

.diff-sub {
  color: #AA8F52;
  letter-spacing: 2px;
  font-size: 12px;
  font-weight: 600;
}

.diff-title {
  font-family: "Playfair Display", serif;
  font-size: 32px;
  color: #3A0C12;
}

/* Icons */
.diff-item .diff-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  border: 1px solid rgba(164,135,89,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
}
.diff-item i {
  font-size: 28px;
  color: #A47F4E;
}

.diff-item h5 {
  font-family: "Playfair Display", serif;
  font-size: 17px;
  color: #3A0C12;
  margin-bottom: 8px;
}

.diff-item p {
  font-size: 14px;
  color: #6B594D;
  max-width: 240px;
  margin: 0 auto;
}

/* ============================
          OUR PROCESS
============================ */

.process-section {
  background: #FCF7EF;
}

.process-sub {
  color: #AA8F52;
  letter-spacing: 2px;
  font-size: 12px;
  font-weight: 600;
}

.process-title {
  font-family: "Playfair Display", serif;
  font-size: 32px;
  color: #3A0C12;
}

/* Cards */
.process-card {
  background: #4A1A1D;
  padding: 40px 20px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.1);
  color: #fff;
  height: 100%;
}

.step-number {
  font-size: 20px;
  font-family: "Playfair Display", serif;
  color: #D5B57B;
  margin-bottom: 10px;
}

.process-card h5 {
  font-family: "Playfair Display", serif;
  font-size: 18px;
  margin-bottom: 12px;
}

.process-card p {
  font-size: 14px;
  color: rgba(255,255,255,0.75);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .process-title, .diff-title {
    font-size: 26px;
  }
}


/* contact page css */
/* =============================
      CONTACT HEADER SECTION
============================= */

.contact-top-section {
  background: linear-gradient(180deg, #3A0C12 0%, #4A1A1D 100%);
  padding: 80px 0;
  color: #fff;
}

.contact-label {
  background: rgba(212,182,115,0.25);
  padding: 6px 16px;
  border-radius: 30px;
  color: #E9D6A6;
  font-size: 13px;
  font-weight: 500;
  width: fit-content;
  margin: 0 auto 15px;
}

.contact-heading {
  font-family: "Playfair Display", serif;
  font-size: 38px;
  color: #ffffff;
  margin-bottom: 10px;
}

.contact-heading span {
  color: #D4B673;
}

.contact-subtext {
  color: rgba(255,255,255,0.85);
  font-size: 16px;
  max-width: 650px;
  margin: 0 auto;
}

/* =============================
      CONTACT CARDS
============================= */

.contact-cards-section {
  background: #FCF7EF;
  padding-top: 0;
}

.contact-card {
  background: #ffffff;
  padding: 25px 20px;
  border-radius: 12px;
  box-shadow: 0 10px 18px rgba(0,0,0,0.05);
  text-align: left;
  height: 100%; /* force equal height */
  display: flex;
  flex-direction: column;
}

.card-icon {
  width: 50px;
  height: 50px;
  background: #3A0C12;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
}

.card-icon i {
  color: #D4B673;
  font-size: 22px;
}

.contact-card h5 {
  font-family: "Playfair Display", serif;
  font-size: 18px;
  color: #3A0C12;
  margin-bottom: 10px;
}

.contact-card p {
  color: #5A4A42;
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
  margin-top: auto; /* anchor bottom if needed */
}

/* =============================
        RESPONSIVE
============================= */

@media (max-width: 768px) {
  .contact-heading {
    font-size: 28px;
  }
  .contact-subtext {
    font-size: 14px;
  }
}
/* Main Section */
.contact-form-map-section {
  background: #FCF7EF;
}

/* White boxes wrapping each side */
.contact-box {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.06);
  height: 100%; /* force equal height */
  display: flex;
  flex-direction: column;
}

/* Mini section label */
.mini-title {
  font-size: 12px;
  color: #AA8F52;
  letter-spacing: 2px;
  font-weight: 600;
}

/* Title */
.section-title {
  font-family: "Playfair Display", serif;
  font-size: 28px;
  margin: 6px 0 10px;
  color: #3A0C12;
}

/* Description */
.section-desc {
  font-size: 15px;
  color: var(--pale-gold);
  margin-bottom: 18px;
}

/* Form Controls */
.form-label {
  font-size: 13px;
  color: #4B3A34;
  font-weight: 600;
}

.form-control {
  border-radius: 8px;
  border: 1px solid #e5e2dd;
  padding: 10px 12px;
  font-size: 14px;
}

.form-control:focus {
  border-color: #C1A36B;
  box-shadow: 0 0 0 0.15rem rgba(193,163,107,0.25);
}

/* Send Button */
.send-btn {
  background: #3A0C12;
  color: #c2a05a;
  border-radius: 8px;
  padding: 10px 20px;
  font-weight: 600;
}
.send-btn:hover {
  background: #c2a05a;
  color: #3A0C12;
}

/* Map Box */
.map-frame {
  height: 280px;
  border-radius: 12px;
  overflow: hidden;
}

/* Quick Response Box */
.quick-box {
  background: #F8F2E9;
  padding: 18px;
  border-radius: 10px;
}

.quick-box h5 {
  font-family: "Playfair Display", serif;
  font-size: 17px;
  margin-bottom: 6px;
}

.quick-box p {
  color: #6B594D;
  font-size: 14px;
  margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
  .section-title { font-size: 22px; }
  .map-frame { height: 220px; }
}
/* Make both columns equal height */
.contact-form-map-section .row {
  display: flex;
  align-items: stretch;
}

.contact-form-map-section .col-lg-6 {
  display: flex;
}

.contact-box {
  flex: 1; /* stretch to fill parent height */
  display: flex;
  flex-direction: column;
}


/* service page css */
/* HERO SECTION */
.ppf-hero-section {
  position: relative;
  background: url('../assets/hero-1.jpg') center/cover no-repeat;
  height: 300px; /* Adjust height depending on your exact screenshot */
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

/* Dark burgundy overlay */
.ppf-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(58, 12, 18, 0.68); /* deep burgundy overlay */
}

/* Layer content above overlay */
.hero-content {
  position: relative;
  z-index: 2;
}

/* Label */
.hero-label {
  background: rgba(212, 182, 115, 0.25);
  padding: 6px 18px;
  border-radius: 30px;
  color: #E9D6A6;
  font-size: 13px;
  font-weight: 500;
  display: inline-block;
  margin-bottom: 15px;
}

/* Title */
.hero-title {
  font-family: "Playfair Display", serif;
  font-size: 36px;
  margin-bottom: 10px;
  color: #fff;
}

.hero-title span {
  color: #D4B673; /* gold */
}

/* Subtitle */
.hero-subtext {
  max-width: 700px;
  margin: 0 auto;
  color: rgba(255,255,255,0.85);
  font-size: 15px;
  line-height: 1.6;
}


/* RESPONSIVE */
@media (max-width: 768px) {
  .ppf-hero-section {
    height: 260px;
    padding: 20px;
  }

  .hero-title {
    font-size: 28px;
  }

  .hero-subtext {
    font-size: 14px;
  }
}
/* SECTION BACKGROUND */
.ppf-benefits-section {
  background: #3A0C12;  /* deep burgundy */
  color: #fff;
  padding-top: 70px;
  padding-bottom: 70px;
}

/* SECTION TITLE */
.benefits-title {
  font-family: "Playfair Display", serif;
  font-size: 30px;
  color: #F6EBD8;
  margin-bottom: 25px;
}

/* BENEFIT CARDS */
.benefit-card {
  background: rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #F4E6C6;
  font-size: 15px;
}

.benefit-icon {
  width: 28px;
  height: 28px;
  background: #D4B673;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.benefit-icon i {
  color: #3A0C12;
  font-size: 16px;
  font-weight: bold;
}

/* IMAGE STYLE */
.benefit-image-wrap img {
  border-radius: 10px;
  width: 100%;
  height: auto;
  display: block;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .benefits-title {
    font-size: 24px;
  }
}
/* Section background + general styling */
.ppf-gallery-section {
  background: #FCF7EF;
  padding-top: 70px;
  padding-bottom: 70px;
}

/* Subtitle */
.gallery-sub {
  color: #d4b673;
  letter-spacing: 3px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 8px;
}

/* Title */
.gallery-title {
  font-family: "Playfair Display", serif;
  font-size: 36px;
  color: #3a0c12;
  margin-bottom: 10px;
}

/* Description */
.gallery-desc {
  color: #6B584A;
  max-width: 650px;
  margin: 0 auto 25px;
}

/* Gallery Card */
.gallery-card {
  background: #ffffff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 18px rgba(0,0,0,0.08);
}

/* Image */
.gallery-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 14px;
}

/* Responsive title scaling */
@media (max-width: 768px) {
  .gallery-title {
    font-size: 28px;
  }
}


.floating-buttons {
              position: fixed;
              right: 0px;
              bottom: 200px;
              display: flex;
              flex-direction: column;
              align-items: center;
              background-color: #3A0C12!important; /* Match purple/maroon from image */
              padding: 15px 10px;
              border-radius: 15px 0px 0px 15px;
              z-index: 9999;
              box-shadow: 0 4px 10px rgba(0,0,0,0.2);
            }
            
            .icon-btn {
              color: #D4B673;
              font-size: 24px;
              margin: 10px 0;
              text-decoration: none;
              transition: transform 0.3s ease;
            }
            
            .icon-btn:hover {
              transform: scale(1.2);
            }
            
            .divider {
              width: 30px;
              height: 2px;
              background: #D4B673;
              margin: 5px 0;
              border-radius: 2px;
        }


















/* FIX Navbar Mobile Alignment */
@media (max-width: 576px) {
  
  /* Shrink logo so toggler fits */
  .navbar .logo {
    width: 140px !important;
    height: auto !important;
  }
  .navbar-nav {
    text-align: left !important;
    width: 100%;
    align-items: flex-start !important;
  }
  .navbar-nav .nav-link {
    text-align: left !important;
    justify-content: flex-start !important;
    padding-left: 10px !important;
  }

  /* remove center alignment from collapse container */
  .navbar-collapse {
    text-align: left !important;
    justify-content: flex-start !important;
  }
  /* Make navbar items align properly */
  .navbar {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
  }

  .navbar-brand {
    display: flex !important;
    align-items: center !important;
  }

  /* Ensure toggler stays to the right */
  .navbar-toggler {
    margin-left: auto !important;
    padding: 6px 8px !important;
  }
}
/* MOBILE NAV ITEMS LEFT ALIGN */
@media (max-width: 768px) {

  /* ensure nav items align left */
  .navbar-nav {
    text-align: left !important;
    width: 100%;
    align-items: flex-start !important;
  }

  .navbar-nav .nav-link {
    text-align: left !important;
    justify-content: flex-start !important;
    padding-left: 10px !important;
  }

  /* remove center alignment from collapse container */
  .navbar-collapse {
    text-align: left !important;
    justify-content: flex-start !important;
  }
  /* 1: Restore normal row behavior in mobile */
  .contact-form-map-section .row {
    display: block !important;
  }

  /* 2: Floating button adjust */
  .floating-buttons {
    bottom: 100px !important;
    right: 10px !important;
  }

  /* 3: Prevent any element from creating horizontal scroll */
  html, body {
    overflow-x: hidden !important;
  }

  /* 4: Remove any accidental 100vh strict height */
  section, div {
    max-height: 100% !important;
  }
}
