/* ================= ROOT VARIABLES (Shreyansh Infra — sage & forest green palette) ================= */
:root {
  --primary: #2E6357;
  /* softer, lighter forest green - headings / wordmark */
  --primary-dark: #1E463C;
  /* lighter than before, still dark enough for white text */
  --accent: #C5A66A;
  /* champagne gold */
  --accent-light: #E0CB9C;
  /* light champagne gold */
  --accent2: #A3854F;
  /* deeper bronze-gold */
  --green: #4B5E45;
  /* muted olive, kept for legacy icon use */
  --grey-swan: #B9AF9C;
  /* warm taupe */
  --dark: #27332F;
  /* charcoal-green text */
  --light-bg: #F8F9F5;
  /* very light, near-white sage section background */
  --white: #FFFFFF;
  --gray: #6b6f76;
  --transition: all 0.4s cubic-bezier(0.22, 0.85, 0.32, 1);
  --gold-line: linear-gradient(90deg, var(--accent), var(--accent-light));
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  color: var(--dark);
  overflow-x: hidden;
  background: var(--light-bg);
}

h1,
h2,
h3,
h4,
h5 {
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  letter-spacing: 0.2px;
}

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

img {
  max-width: 100%;
  display: block;
}

.section-padding {
  padding: 90px 0;
}

@media (max-width: 767px) {
  .section-padding {
    padding: 56px 0;
  }
}

.section-tag {
  color: var(--accent);
  letter-spacing: 4px;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.section-tag::before {
  content: '';
  width: 30px;
  height: 2px;
  background: var(--accent);
  display: inline-block;
}

.section-title {
  font-size: 2.8rem;
  color: var(--primary-dark);
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}

.btn-brand {
  background: var(--accent);
  color: var(--white);
  border: none;
  padding: 14px 34px;
  border-radius: 50px;
  font-weight: 500;
  letter-spacing: 1px;
  transition: var(--transition);
  box-shadow: 0 8px 20px rgba(197, 166, 106, 0.3);
}

.btn-brand:hover {
  background: var(--primary-dark);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 12px 24px rgba(23, 72, 63, 0.35);
}

.btn-outline-brand {
  border: 2px solid var(--white);
  color: var(--white);
  padding: 12px 32px;
  border-radius: 50px;
  font-weight: 500;
  background: transparent;
  transition: var(--transition);
}

.btn-outline-brand:hover {
  background: var(--white);
  color: var(--primary-dark);
}

/* ================= PRELOADER ================= */
#preloader {
  position: fixed;
  inset: 0;
  /* background: var(--primary-dark); */
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

#preloader .loader-ring {
  width: 60px;
  height: 60px;
  border: 4px solid rgba(255, 255, 255, 0.2);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: spin 0.9s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

#preloader.hide {
  opacity: 0;
  visibility: hidden;
}

/* ================= SITE HEADER (logos row + nav row, stacked & centered) ================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1030;
  width: 100%;
}

/* -- Row 1: Shreyansh + GSN logos together, centered -- */
.header-top {
  background: var(--primary-dark);
  padding: 10px 0;
  transition: var(--transition);
}

.header-top .container {
  display: flex;
  justify-content: center;
}

.brand-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.brand-main {
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 1.3rem;
  color: var(--white) !important;
  display: flex;
  align-items: center;
  gap: 12px;
  letter-spacing: 0.3px;
}

.brand-main img {
  height: 46px;
  width: auto;
  flex-shrink: 0;
}

.brand-main small {
  display: block;
  font-family: 'Jost', sans-serif;
  font-size: 0.58rem;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--accent-light);
  font-weight: 400;
  margin-top: 2px;
  white-space: nowrap;
}

.brand-main span {
  color: var(--white);
  line-height: 1.15;
  white-space: nowrap;
  display: inline-block;
}

.brand-sep {
  width: 1px;
  height: 34px;
  background: rgba(255, 255, 255, 0.25);
  flex-shrink: 0;
}

.brand-partner {
  display: flex;
  align-items: center;
  background: var(--white);
  border-radius: 10px;
  padding: 4px 10px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18);
  transition: var(--transition);
  flex-shrink: 0;
}

.brand-partner img {
  height: 38px;
  width: auto;
  display: block;
}

.brand-partner:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.24);
}

/* -- Row 2: simple centered menu tab -- */
.header-nav {
  padding: 10px 0;
  background: var(--white);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
  transition: var(--transition);
}

.header-nav.scrolled {
  padding: 6px 0;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.1);
}

.header-nav .container {
  justify-content: center;
}

.navbar-nav .nav-link {
  color: var(--primary-dark) !important;
  font-weight: 500;
  font-size: 0.95rem;
  margin: 0 10px;
  white-space: nowrap;
  position: relative;
}

.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: var(--transition);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
  width: 100%;
}

.nav-cta {
  background: var(--accent);
  color: var(--white) !important;
  padding: 10px 24px !important;
  border-radius: 50px;
  margin-left: 10px;
}

.nav-cta:hover {
  background: var(--primary-dark);
  color: var(--white) !important;
}

.nav-cta::after {
  display: none;
}

/* Keep the wordmark on one line at every width instead of wrapping mid-word */
@media (max-width: 460px) {
  .brand-main {
    font-size: 1rem;
    gap: 8px;
  }

  .brand-main img {
    height: 34px;
  }

  .brand-main small {
    font-size: 0.48rem;
    letter-spacing: 1px;
  }

  .brand-partner img {
    height: 26px;
  }
}

/* -- Simple hover dropdown (Designs: 1 BHK / 2 BHK / 3 & 4 BHK) -- */
.nav-item.has-dropdown {
  position: relative;
}

.simple-dropdown {
  list-style: none;
  margin: 0;
  padding: 0;
}

@media (min-width: 992px) {
  .simple-dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    min-width: 150px;
    background: var(--white);
    border-radius: 8px;
    padding: 8px 0;
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.14);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, visibility 0.2s ease;
    z-index: 20;
  }

  .nav-item.has-dropdown:hover .simple-dropdown {
    opacity: 1;
    visibility: visible;
  }

  .simple-dropdown li a {
    display: block;
    padding: 8px 20px;
    font-size: 0.88rem;
    color: var(--dark);
    white-space: nowrap;
  }

  .simple-dropdown li a:hover {
    background: var(--light-bg);
    color: var(--primary);
  }
}

@media (max-width: 991px) {
  .simple-dropdown {
    padding-left: 18px;
    margin: 4px 0 8px;
  }

  .simple-dropdown li a {
    display: block;
    padding: 6px 0;
    font-size: 0.88rem;
    color: var(--gray);
  }

  .simple-dropdown li a:hover {
    color: var(--primary);
  }
}

/* Filter/tab pills (e.g. Designs page) never wrap their label mid-line */
.nav-pills .nav-link {
  white-space: nowrap;
  font-family: 'Jost', sans-serif;
  font-weight: 500;
  color: var(--primary-dark);
}

/* ================= HERO (Full-Bleed International Slider) ================= */
.hero {
  min-height: 78vh;
  position: relative;
  display: flex;
  align-items: center;
  color: var(--white);
  background: var(--primary-dark);
  overflow: hidden;
}

.hero-slider {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-slider .slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.08);
  transition: opacity 1.8s ease, transform 7s ease;
}

.hero-slider .slide.active {
  opacity: 1;
  transform: scale(1);
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
}

.hero-badge {
  position: absolute;
  bottom: 40px;
  right: 40px;
  z-index: 3;
  background: rgba(15, 46, 40, 0.55);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(217, 192, 139, 0.35);
  border-radius: 4px;
  padding: 18px 26px;
  color: var(--white);
  text-align: center;
}

.hero-badge .yrs {
  font-family: 'Outfit', sans-serif;
  font-size: 2rem;
  color: var(--accent-light);
  font-weight: 600;
  line-height: 1;
}

.hero-badge .lbl {
  font-size: 0.68rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  opacity: 0.85;
}

.hero-content-wrap {
  position: relative;
  z-index: 3;
  width: 100%;
}

.hero-content {
  max-width: 620px;
  padding: 0 6vw;
}

.hero-tagline {
  color: var(--accent-light);
  letter-spacing: 4px;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 18px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  animation: fadeUp 1s ease 0.1s both;
}

.hero-tagline::before {
  content: '';
  width: 30px;
  height: 2px;
  background: var(--accent);
}

.hero h1 {
  font-size: 3.1rem;
  line-height: 1.18;
  margin-bottom: 22px;
  animation: fadeUp 1s ease 0.2s both;
}

.hero h1 em {
  font-style: normal;
  color: var(--accent-light);
}

.hero p {
  font-size: 1.08rem;
  margin-bottom: 32px;
  max-width: 480px;
  opacity: 0.85;
  animation: fadeUp 1s ease 0.4s both;
  line-height: 1.7;
}

.hero .hero-stats {
  animation: fadeUp 1s ease 0.6s both;
}

.hero-btns {
  animation: fadeUp 1s ease 0.5s both;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-stats {
  display: flex;
  gap: 36px;
  margin-top: 46px;
  flex-wrap: wrap;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 30px;
}

.hero-stats .stat-num {
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--accent-light);
  font-family: 'Outfit', sans-serif;
}

.hero-stats .stat-label {
  font-size: 0.8rem;
  opacity: 0.75;
  letter-spacing: 0.5px;
}

.scroll-down {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--white);
  z-index: 5;
  animation: bounce 2s infinite;
}

@keyframes bounce {

  0%,
  100% {
    transform: translate(-50%, 0);
  }

  50% {
    transform: translate(-50%, 10px);
  }
}

@media (max-width: 991px) {
  .hero {
    min-height: 70vh;
    align-items: flex-end;
    padding-bottom: 60px;
  }

  .hero-content {
    padding: 0 6vw;
    max-width: 100%;
  }

  .hero-badge {
    bottom: auto;
    top: 16px;
    right: 6vw;
  }

  .scroll-down {
    display: none;
  }
}

@media (max-width: 576px) {
  .hero {
    min-height: 62vh;
  }
}

/* -- Manual prev/next arrows (no auto-scroll) -- */
.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 6;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: rgba(15, 46, 40, 0.45);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  backdrop-filter: blur(6px);
  transition: var(--transition);
}

.hero-arrow:hover {
  background: var(--accent);
  border-color: var(--accent);
}

.hero-prev {
  left: 20px;
}

.hero-next {
  right: 20px;
}

@media (max-width: 576px) {
  .hero-arrow {
    width: 36px;
    height: 36px;
    font-size: 0.8rem;
  }

  .hero-prev {
    left: 10px;
  }

  .hero-next {
    right: 10px;
  }
}

/* ================= SUB PAGE HERO ================= */
.page-hero {
  min-height: 45vh;
  display: flex;
  align-items: center;
  position: relative;
  color: var(--white);
  background-size: cover;
  background-position: center;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15, 46, 40, 0.88), rgba(15, 46, 40, 0.58));
}

.page-hero h1 {
  font-size: 2.8rem;
}

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

.breadcrumb-custom a {
  color: var(--accent-light);
}

.breadcrumb-custom span {
  color: var(--white);
  opacity: 0.8;
}

@media (max-width: 767px) {
  .page-hero {
    min-height: 34vh;
  }

  .page-hero h1 {
    font-size: 2rem;
  }
}

@media (max-width: 460px) {
  .page-hero h1 {
    font-size: 1.6rem;
  }

  .breadcrumb-custom {
    font-size: 0.85rem;
  }
}

/* ================= WHO WE SERVE CARDS ================= */
.serve-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  height: 320px;
  cursor: pointer;
}

.serve-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.serve-card:hover img {
  transform: scale(1.1);
}

.serve-card .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.1) 60%);
  display: flex;
  align-items: flex-end;
  padding: 24px;
}

.serve-card h5 {
  color: var(--white);
  margin: 0;
  font-size: 1.3rem;
}

/* ================= BENEFIT ICONS ================= */
.benefit-box {
  text-align: center;
  padding: 40px 24px;
  border-radius: 16px;
  background: var(--white);
  transition: var(--transition);
  height: 100%;
  border: 1px solid #EDE4D3;
}

.benefit-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  border-color: transparent;
}

.benefit-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  background: var(--light-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 1.8rem;
  transition: var(--transition);
}

.benefit-box:hover .benefit-icon {
  background: var(--accent);
  color: var(--white);
  transform: rotateY(360deg);
}

/* ================= DESIGN / PRODUCT CARDS ================= */
.design-card {
  border-radius: 16px;
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  transition: var(--transition);
  height: 100%;
  display: block;
  text-decoration: none;
  color: inherit;
}

.design-card .view-details {
  color: var(--primary);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
}

.design-card:hover .view-details {
  color: var(--accent);
}

.design-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.design-card .img-wrap {
  overflow: hidden;
  height: 230px;
  position: relative;
}

.design-card .img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.design-card:hover .img-wrap img {
  transform: scale(1.12);
}

.design-card .price-tag {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--accent);
  color: var(--white);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
}

.design-card .card-body {
  padding: 22px;
}

/* Material / specification chips shown under each design card */
.design-card .specs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 16px 0 18px;
  padding-top: 16px;
  border-top: 1px solid #E7E1D2;
}

.design-card .specs span {
  font-family: 'Jost', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.2px;
  color: var(--primary);
  background: var(--light-bg);
  border: 1px solid #E2D7B8;
  padding: 5px 12px;
  border-radius: 30px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

.design-card .specs span i {
  color: var(--accent);
  font-size: 0.68rem;
}

/* ================= PROCESS TIMELINE ================= */
.process-step {
  text-align: center;
  position: relative;
  padding: 20px;
}

.process-step .step-num {
  width: 60px;
  height: 60px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 700;
  margin: 0 auto 20px;
  font-family: 'Outfit', sans-serif;
  position: relative;
  z-index: 2;
}

/* ================= COUNTER SECTION ================= */
.counter-section {
  background: linear-gradient(rgba(15, 46, 40, 0.94), rgba(15, 46, 40, 0.94)), url('https://picsum.photos/seed/counterbg/1920/600') center/cover;
  color: var(--white);
  position: relative;
}

.counter-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold-line);
}

.counter-box {
  text-align: center;
}

.counter-box .num {
  font-size: 3rem;
  font-weight: 700;
  color: var(--accent-light);
  font-family: 'Outfit', sans-serif;
  word-break: break-word;
  line-height: 1.15;
}

@media (max-width: 767px) {
  .counter-box .num {
    font-size: 2rem;
  }
}

@media (max-width: 400px) {
  .counter-box .num {
    font-size: 1.65rem;
  }
}

/* ================= TESTIMONIALS ================= */
.testimonial-card {
  background: var(--white);
  border-radius: 16px;
  padding: 34px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  height: 100%;
}

.testimonial-card .stars {
  color: var(--accent);
  margin-bottom: 14px;
}

.testimonial-card .author {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 20px;
}

.testimonial-card .author img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-card .avatar-initials {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  flex-shrink: 0;
}

/* ================= FAQ ACCORDION ================= */
.accordion-button {
  font-weight: 600;
  color: var(--primary-dark);
  background: var(--light-bg);
}

.accordion-button:not(.collapsed) {
  background: var(--primary);
  color: var(--white);
  box-shadow: none;
}

.accordion-button:focus {
  box-shadow: none;
  border-color: transparent;
}

/* ================= FOOTER ================= */
footer {
  background: var(--primary-dark);
  color: #C7CDD6;
  padding-top: 70px;
}

footer h5 {
  color: var(--white);
  margin-bottom: 22px;
  font-size: 1.15rem;
}

footer a {
  color: #D8C9A9;
}

footer a:hover {
  color: var(--accent-light);
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--accent);
  transform: translateY(-4px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 40px;
  padding: 22px 0;
  font-size: 0.9rem;
  text-align: center;
}

/* ================= CONTACT FORM ================= */
.contact-form-wrap {
  background: var(--white);
  border-radius: 20px;
  padding: 45px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.form-control,
.form-select {
  padding: 12px 16px;
  border-radius: 10px;
  border: 1px solid #DED0B6;
  margin-bottom: 18px;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(163, 133, 79, 0.18);
}

.contact-info-box {
  background: var(--primary-dark);
  color: var(--white);
  border-radius: 20px;
  padding: 45px;
  height: 100%;
}

.contact-info-item {
  display: flex;
  gap: 18px;
  margin-bottom: 30px;
  align-items: flex-start;
}

.contact-info-item .icon {
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--accent-light);
}

/* ================= BACK TO TOP ================= */
#backToTop {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 48px;
  height: 48px;
  background: var(--accent);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 999;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

#backToTop.show {
  opacity: 1;
  visibility: visible;
}

#backToTop:hover {
  background: var(--primary-dark);
  transform: translateY(-5px);
}

/* ================= FLOATING WHATSAPP ================= */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  left: 30px;
  width: 56px;
  height: 56px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.6rem;
  z-index: 999;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
  }

  70% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* ================= MISC ================= */
.divider-accent {
  width: 70px;
  height: 4px;
  background: var(--gold-line);
  margin: 18px 0 26px;
  border-radius: 4px;
}

/* Premium logo badge used in footer */
.footer-logo-badge {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(163, 133, 79, 0.25);
  border-radius: 14px;
  padding: 10px 16px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.footer-logo-badge img {
  height: 46px;
  width: auto;
}

.bg-light-brand {
  background: var(--light-bg);
}

.project-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  height: 280px;
}

.project-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.project-card:hover img {
  transform: scale(1.1);
}

.project-card .info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.85), transparent);
  color: white;
  transform: translateY(20px);
  opacity: 0;
  transition: var(--transition);
}

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

.knowledge-card {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  transition: var(--transition);
  background: white;
}

.knowledge-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.knowledge-card img {
  height: 200px;
  object-fit: cover;
  width: 100%;
}

.knowledge-card .cat-badge {
  background: var(--accent);
  color: white;
  padding: 4px 14px;
  border-radius: 50px;
  font-size: 0.75rem;
  display: inline-block;
  margin-bottom: 12px;
}

@media (max-width: 991px) {
  .hero h1 {
    font-size: 2.4rem;
  }

  .section-title {
    font-size: 2rem;
  }
}

@media (max-width: 576px) {
  .hero h1 {
    font-size: 2rem;
  }

  .hero-stats {
    gap: 20px;
  }

  .contact-form-wrap,
  .contact-info-box {
    padding: 26px;
  }
}

/* ================= DESIGN DETAIL PAGE ================= */
.page-hero-sm {
  min-height: 32vh;
}

.detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  background: var(--light-bg);
  border: 1px solid #E7E1D2;
  border-radius: 10px;
  padding: 18px 20px;
  margin-bottom: 22px;
}

.detail-meta>div {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1 1 150px;
}

.detail-meta i {
  color: var(--accent);
  font-size: 1.2rem;
  width: 24px;
  text-align: center;
}

.detail-meta span {
  display: block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: var(--gray);
}

.detail-meta strong {
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  color: var(--primary-dark);
  font-size: 0.95rem;
}

/* -- Slider -- */
.detail-slider-main {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 14px;
  overflow: hidden;
  background: var(--primary-dark);
  box-shadow: 0 20px 45px rgba(15, 46, 40, 0.18);
}

.detail-slider-track {
  position: absolute;
  inset: 0;
}

.detail-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 0.7s ease, transform 6s ease;
}

.detail-slide.active {
  opacity: 1;
  transform: scale(1);
}

.detail-slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: none;
  background: rgba(15, 46, 40, 0.55);
  color: var(--white);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  transition: var(--transition);
}

.detail-slider-arrow:hover {
  background: var(--accent);
}

.detail-slider-arrow.prev {
  left: 16px;
}

.detail-slider-arrow.next {
  right: 16px;
}

.detail-slider-counter {
  position: absolute;
  bottom: 14px;
  right: 16px;
  z-index: 3;
  background: rgba(15, 46, 40, 0.6);
  color: var(--white);
  font-size: 0.72rem;
  letter-spacing: 0.5px;
  padding: 4px 12px;
  border-radius: 30px;
  backdrop-filter: blur(6px);
}

.detail-slider-thumbs {
  display: flex;
  gap: 10px;
  margin-top: 14px;
  overflow-x: auto;
  padding-bottom: 4px;
  scroll-behavior: smooth;
}

.detail-slider-thumbs::-webkit-scrollbar {
  height: 6px;
}

.detail-slider-thumbs::-webkit-scrollbar-thumb {
  background: var(--grey-swan);
  border-radius: 4px;
}

.detail-thumb {
  flex: 0 0 84px;
  height: 64px;
  border-radius: 8px;
  background-size: cover;
  background-position: center;
  cursor: pointer;
  opacity: 0.55;
  border: 2px solid transparent;
  transition: var(--transition);
}

.detail-thumb:hover {
  opacity: 0.85;
}

.detail-thumb.active {
  opacity: 1;
  border-color: var(--accent);
}

/* -- Prev / Next design row -- */
.detail-nav-row {
  margin-top: 55px;
  padding-top: 28px;
  border-top: 1px solid #E7E1D2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.detail-nav-row a {
  display: flex;
  align-items: center;
  color: var(--primary);
  font-weight: 500;
  text-decoration: none;
  transition: var(--transition);
}

.detail-nav-row a:hover {
  color: var(--accent);
}

.detail-nav-row a.all-designs {
  background: var(--primary-dark);
  color: var(--white);
  padding: 10px 22px;
  border-radius: 50px;
}

.detail-nav-row a.all-designs:hover {
  background: var(--accent);
  color: var(--white);
}

/* -- CTA strip -- */
.cta-strip {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  color: var(--white);
  padding: 70px 0;
}

.cta-strip h2 {
  font-size: 2rem;
  margin-bottom: 12px;
}

.cta-strip p {
  color: #C7CDD6;
  max-width: 560px;
  margin: 0 auto 26px;
}

@media (max-width: 576px) {
  .detail-slider-main {
    aspect-ratio: 1 / 1;
  }

  .detail-nav-row {
    justify-content: center;
    text-align: center;
  }

  .detail-nav-row a.all-designs {
    order: -1;
    width: 100%;
    justify-content: center;
  }
}

/* ================= STANDARD INCLUSIONS CAROUSEL ================= */
.inclusions-section {
  margin-top: 60px;
  padding-top: 45px;
  border-top: 1px solid #E7E1D2;
}

.docs-section {
  margin-top: 50px;
}

.inclusions-head h6 {
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 1.3rem;
  color: var(--primary-dark);
  margin-bottom: 4px;
}

.inclusions-carousel {
  position: relative;
  margin-top: 26px;
}

.inclusions-track {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 6px 4px 14px;
  scrollbar-width: none;
}

.inclusions-track::-webkit-scrollbar {
  display: none;
}

.inc-item {
  flex: 0 0 auto;
  width: 130px;
  text-align: center;
}

.inc-icon {
  width: 96px;
  height: 96px;
  margin: 0 auto 12px;
  border-radius: 50%;
  background: var(--light-bg);
  border: 1px solid #E7E1D2;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.1rem;
  color: var(--primary);
  transition: var(--transition);
}

.inc-item:hover .inc-icon {
  background: var(--primary);
  color: var(--accent-light);
  transform: translateY(-4px);
}

.inc-item span {
  font-family: 'Jost', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--dark);
}

.inc-arrow {
  position: absolute;
  top: 40%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid #E7E1D2;
  background: var(--white);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  transition: var(--transition);
}

.inc-arrow:hover {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}

.inc-arrow.prev {
  left: -18px;
}

.inc-arrow.next {
  right: -18px;
}

.inclusions-note {
  color: var(--accent2);
  font-size: 0.8rem;
  font-weight: 500;
  margin-top: 6px;
}

/* -- Spec sheet document cards -- */
.docs-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 24px;
}

.doc-card {
  flex: 1 1 160px;
  max-width: 190px;
  background: var(--white);
  border: 1px solid #E7E1D2;
  border-radius: 12px;
  padding: 22px 16px;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
}

.doc-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 30px rgba(15, 46, 40, 0.1);
  border-color: var(--accent);
}

.doc-card .doc-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 14px;
  border-radius: 10px;
  background: var(--light-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--accent2);
}

.doc-card h6 {
  font-size: 0.92rem;
  color: var(--primary-dark);
  margin-bottom: 4px;
}

.doc-card p {
  font-size: 0.75rem;
  color: var(--gray);
  margin: 0;
}

/* -- Lightbox for spec sheets -- */
.lightbox-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 26, 22, 0.88);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.lightbox-overlay.active {
  display: flex;
}

.lightbox-box {
  position: relative;
  width: min(560px, 100%);
  background: var(--white);
  border-radius: 16px;
  padding: 46px 34px;
}

.lightbox-content {
  text-align: center;
}

.lightbox-content .doc-icon {
  width: 84px;
  height: 84px;
  font-size: 2.1rem;
  margin: 0 auto 20px;
}

.lightbox-content h5 {
  color: var(--primary-dark);
  margin-bottom: 10px;
}

.lightbox-content p {
  color: var(--gray);
  line-height: 1.75;
}

.lightbox-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: none;
  background: var(--light-bg);
  color: var(--primary-dark);
}

.lightbox-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: none;
  background: var(--primary-dark);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
}

.lightbox-arrow:hover {
  background: var(--accent);
}

.lightbox-arrow.prev {
  left: -55px;
}

.lightbox-arrow.next {
  right: -55px;
}

@media (max-width: 650px) {
  .lightbox-arrow.prev {
    left: 4px;
  }

  .lightbox-arrow.next {
    right: 4px;
  }

  .lightbox-box {
    padding: 46px 22px;
  }

  .inc-arrow.prev {
    left: 2px;
  }

  .inc-arrow.next {
    right: 2px;
  }
}