:root {
  --primary: #b23a32;
  --dark: #2b2b2b;
  --gray: #6e6a67;
  --bg: #f8f6f2;
  --section-bg: #efeae2;
  --cream: #e6d7c3;
  --beige: #cbb89d;
  --brown: #8a6d52;
  --stone: #a8a39a;
  --border: #ddd5cc;
  --heading-font: "Alan Sans", sans-serif;
  --body-font: "Montserrat", sans-serif;
}

body {
  max-width:100%;
  font-family: "Alan Sans", sans-serif;
  font-family: "Montserrat", sans-serif;
}

.left-rail {
  position: fixed;
  left: 0px;
  top: 63px;
  width: 80px;
  height: 6px;
  background: #292928;
  z-index: 1;
}

.cs-page-wrap {
  display: flex;
  min-height: 100vh;
  width: 100%;
}

.cs-content {
  margin-left: 120px;
  width: calc(100% - 120px);
  min-width: 0;
}
/* 
.cs-rail__text.fading {
  opacity: 0;
} */

.cs-rail__line {
  width: 32px;
  height: 1.5px;
  background: #1f1e1d;
  cursor: pointer;
  flex-shrink: 0;
  transition: width 0.3s ease;
  margin-bottom: 8px;
}

.cs-rail {
  position: fixed;
  left: 0;
  top: 0;
  width: 110px;
  height: 100vh;
  background: #ffffff!important;
  border-right: 1px solid #e8e4df;
  z-index: 9998;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;

  padding: 30px 0;
}

.cs-rail__text {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(180deg);

  font-family: "Montserrat", sans-serif;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #1f1e1d;

  white-space: nowrap;
  transition: opacity 0.45s ease;

  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cs-rail__icons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;

  opacity: 1;
  visibility: visible;
  transform: none;

  padding-bottom: 20px;
}

.cs-rail__icons a {
  color: #1f1e1d;
  padding-bottom: 10px;
  font-size: 25px;
  transition: all 0.3s ease;
}

.cs-rail__icons a:hover {
  background: #1f1e1d;
  color: #fff;
  transform: translateY(-3px);
}

.cs-side-strip {
  display: none !important;
}
.cs-contact-bar {
  display: none !important;
}
/* Tablet */
@media (max-width: 991px) {
  .cs-rail {
   
    display: none!important;
  }

}

/* ============================================
   NAVBAR
   ============================================ */
.navbar-brand {
  padding-left: 60px;
}
.custom-navbar {
  font-family: var(--body-font);
  background: #fff;
  /* padding: 15px 0; */
  position: relative;
  z-index: 10;
}

.navbar-brand img {
  height: 70px;
  width: auto;
}

.navbar-nav {
  gap: 28px;
}

.nav-link {
  color: #4b4949;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.5px;
  position: relative;
  text-transform: uppercase;
}

.nav-link:hover {
  color: var(--primary);
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 100%;
  height: 1px;
  background: var(--primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: 0.3s;
}

.nav-link:hover::after {
  transform: scaleX(1);
}

/* Search Button */
.search-btn {
  border: none;
  background: none;
  color: var(--dark);
  transition: 0.3s;
}

.search-btn:hover {
  color: var(--primary);
}

.search-overlay {
  position: fixed;
  top: -140px;
  left: 0;
  width: 100%;
  background: #faf8f5;
  border-bottom: 1px solid #ddd5cc;
  z-index: 9999;
  transition: all 0.45s ease;
  padding: 30px 0;
}

.search-overlay.active {
  top: 0;
}

.search-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 30px;
  position: relative;
}

.search-box {
  display: flex;
  align-items: center;
  gap: 15px;
  border-bottom: 1px solid #d9d1c7;
  padding-bottom: 15px;
}

.search-box input {
  width: 100%;
  border: none;
  background: transparent;
  outline: none;
  font-family: var(--body-font);
  font-size: 20px;
  font-weight: 400;
  color: #222;
}

.search-box input::placeholder {
  color: #888;
}

.close-search {
  position: absolute;
  right: 30px;
  top: -5px;
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
}

/* ============================================
   SOCIAL LEFT RAIL
   ============================================ */

.cs-contact-bar {
  position: fixed;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 9999;
}

.cs-contact-trigger {
  width: 70px;
  height: 2px;
  background: #fff;
  cursor: pointer;
  position: relative;
}

.cs-contact-icons {
  position: absolute;
  left: -60px;
  top: -70px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}

.cs-contact-bar:hover .cs-contact-icons {
  opacity: 1;
  visibility: visible;
  left: 25px;
}

.cs-contact-icons a {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #111;
  transition: 0.3s;
}

.cs-contact-icons a:hover {
  transform: scale(1.1);
}

/* ============================================
   HERO SLIDER
   ============================================ */
/* 
.cs-hero-slider {
  height: 90vh;
}

.csHeroSwiper,
.csHeroSwiper .swiper-slide {
  height: 100%;
}

.cs-slide-bg {
  position: absolute;
  inset: 0;
}

.cs-slide-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cs-slide-content {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.cs-brand-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 35px;
  padding-top: 140px;
}

.cs-brand-name {
  display: flex;
  flex-direction: column;
  text-align: right;
}

.cs-brand-name span {
  color: #fff;
  line-height: 0.85;
  font-size: 110px;
  font-family: var(--heading-font);
  font-weight: 400;
}

.cs-divider {
  width: 4px;
  height: 180px;
  background: #fff;
}

.cs-brand-tag {
  display: flex;
  flex-direction: column;
}

.cs-brand-tag span {
  line-height: 1.2;
  font-size: 70px;
  color: #fff;
  font-weight: 400;
}

.cs-btn {
  margin: 50px auto 0;
  color: #fff;
  border: 1px solid #fff;
  padding: 16px 42px;
  text-decoration: none;
  transition: 0.4s;
}

.cs-btn:hover {
  background: #fff;
  color: #111;
}

.cs-side-strip {
  flex: 0 0 60px;
  background: #f0efee;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.cs-vertical-text {
  font-family: var(--body-font);
  font-size: 10px;
  letter-spacing: 0.18em;
  font-weight: 600;
  color: #1f1e1d;
  white-space: nowrap;
  text-transform: uppercase;
  transform: rotate(-90deg);
} */
.cs-hero-video {
    position: relative;
    width: 100%;
    height: 100vh;
    height: 90dvh;
    overflow: hidden;
}

.cs-bg-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Optional overlay */
.cs-hero-video::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.25);
    pointer-events: none;
}
@media (max-width: 991px) {
    .cs-hero-video {
        height: 75vh;
        min-height: 450px;
    }
}
@media (max-width: 767px) {
    .cs-hero-video {
        height: 60vh;
        min-height: 350px;
    }
}
@media (max-width: 480px) {
    .cs-hero-video {
        height: 50vh;
        min-height: 280px;
    }
}
/* ============================================
   SECTION 1
   ============================================ */

.cs-s1 {
  display: flex;
  width: 100%;
  min-height: 1040px;
}

.cs-s1__main {
  flex: 1;
  position: relative;
}

.cs-s1__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.cs-s1__overlay {
  position: absolute;
  top: 20%;
  right: 8%;
  width: 40%;
  height: 100%;
  padding: 32px 40px 48px 40px;
  display: flex;
  flex-direction: column;
}

.cs-tag-box {
  align-self: flex-end;
  border-left: 2px solid #a7a9ab;
  font-family: var(--body-font);
  font-size: 40px;
  letter-spacing: 0.1em;
  line-height: 1.2;
  text-align: left;
  color: #a7a9ab;
  padding-left: 15px;
  font-weight: 300;
}

.cs-tag-box span {
  font-weight: 400;
}

.cs-s1__top {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-bottom: 15px;
}

.cs-s1__bottom {
  display: flex;
  flex-direction: column;
  text-align: justify;
}

/* ============================================
   SECTION 2
   ============================================ */

.cs-s2 {
  display: flex;
  width: 100%;
  min-height: 60vh;
}

.cs-s2__main {
  flex: 1;
  display: flex;
}

.cs-s2__text {
  flex: 0 0 50%;
  margin-left: 50px;
  padding: 60px 80px;
  width: 40%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.cs-s2__img {
  width: 100%;
  max-width: 600px;
  height: auto;
  margin-left: 75px;
  object-fit: cover;
  margin-top: -100px;
  position: relative;
}

.cs-s2__img img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* ============================================
   SECTION 3
   ============================================ */

.cs-s3 {
  display: flex;
  width: 100%;
  min-height: 60vh;
}

.cs-s3__img {
  flex: 0 0 50%;
  overflow: hidden;
  margin-left: 130px;
}

.cs-s3__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.cs-s3__text {
  max-width: 34.8%;
  flex: 1;
  padding: 60px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* ============================================
   SHARED TYPOGRAPHY
   ============================================ */

.cs-heading {
  font-family: var(--heading-font);
  font-size: 27px;
  font-weight: 500 !important;
  color: #010004;
  margin: 0;
  line-height: 1.3;
}

.cs-subheading {
  font-family: var(--heading-font);
  font-size: 15px;
  font-style: italic;
  color: #181716;
  margin-bottom: 0px;
}

.cs-body {
  font-family: var(--body-font);
  font-size: 15px;
  font-weight: 500 !important;
  color: #1d1e14;
  text-align: justify;
}

/* ============================================
   TESTIMONIAL SECTION
   ============================================ */

.ccs-section {
  position: relative;
  width: 100%;
  padding: 180px 0 60px 0;
  font-family: var(--body-font);
  overflow: hidden;
  /* background: #f5f0ea; */
}

.story-testimonial {
  max-width: 1200px;
  width: 100%;
  margin: auto;
}

.ccs-tagline {
  position: absolute;
  left: -84px;
  top: 30%;
  transform: translateY(-50%) rotate(-90deg);
  font-family: var(--body-font);
  font-size: 10px;
  letter-spacing: 0.18em;
  font-weight: 600;
  color: #1f1e1d;
  white-space: nowrap;
  text-transform: uppercase;
}

.ccs-headline {
  text-align: center;
  font-family: var(--heading-font);
  font-size: clamp(20px, 2.6vw, 33px);
  font-weight: 400;
  color: #2c2520;
  letter-spacing: 0.03em;
  margin: 0 0 15px 0;
}

.ccs-swiper {
  width: 100%;
  overflow: visible;
  padding: 0 !important;
}

.ccs-swiper-wrapper-outer {
  overflow: visible;
  position: relative;
  width: 100%;
}

.ccs-slide {
      padding: 0 20px;
  height: 450px;
  /* border-radius: 6px; */
  overflow: hidden;
  position: relative;
  transition:
    transform 0.5s ease,
    opacity 0.5s ease;
}

.ccs-swiper .swiper-slide:not(.swiper-slide-active) .ccs-slide {
  transform: scaleY(0.92);
  opacity: 0.75;
}

.ccs-slide-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ccs-slide-overlay {
  position: absolute;
  margin: 0 20px;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(8, 6, 4, 0.72) 0%,
    rgba(8, 6, 4, 0.52) 30%,
    rgba(8, 6, 4, 0.1) 60%,
    transparent 100%
  );
}

.ccs-slide-content {
  position: absolute;
  left: 90px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  max-width: 50%;
  width: 100%;
  color: #fff;
}

.ccs-slide-title {
  font-family: var(--heading-font);
  font-size: 43px;
  font-weight: 400;
  margin-bottom: 18px;
  color: #fff;
}

.ccs-slide-desc {
  font-family: var(--body-font);
  font-size: 16px;
  letter-spacing: 0.1px;
  line-height: 1.8;
  margin-bottom: 80px;
  color: rgba(255, 255, 255, 0.9);
}

.ccs-slide-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  background-color: #262525;
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  /* border-bottom: 1px solid rgba(255, 255, 255, 0.5); */
  padding: 6px;
}

.ccs-nav-zone {
  /* position: relative; */
}

.ccs-nav-btn {
  position: absolute;
  top: 60%;
  transform: translateY(-50%);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  color: #3a2e26;
  background: #605d5de6;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 20;
  box-shadow: 0 2px 14px rgba(0, 0, 0, 0.13);
  transition:
    background 0.2s,
    transform 0.2s;
}
.ccs-nav-btn:hover {
  background: var(--primary);
  transform: translateY(-50%) scale(1.07);
}

.ccs-nav-btn svg {
  width: 16px;
  height: 16px;
  stroke: #fff;
  fill: none;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.ccs-btn-prev {
  /* left: calc(11% - 19px); */
  left: 16%;  
}

.ccs-btn-next {
  /* right: calc(12% - 19px); */
  right: 16%;
}

/* ============================================
   FINISHES SECTION
   ============================================ */
.your-new-section {
  position: relative;
  overflow-x: hidden;
  overflow-y: visible;
  padding: 120px 0;
}

.finishes-wrapper {
  max-width: 1340px;
  margin: 0 auto;
}

.section-heading {
  text-align: center;
  margin-bottom: 80px;
}

.section-heading h2 {
  font-size: clamp(20px, 2.6vw, 33px);
  font-weight: 400;
  color: #2c2520;
  line-height: 1.2;
}

/* =========================
   Vertical Strip
========================= */

.section-strip {
  position: absolute;
  left: 0;
  top: 0;
  width: 110px;
  height: 100%;
  border-right: 1px solid rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}

.section-strip span {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-size: 24px;
  letter-spacing: 4px;
  color: #222;
}

/* =========================
   Slider
========================= */

.finishSlider {
  overflow: visible !important;
  padding: 45px 180px;
}

.finishSlider .swiper-wrapper {
  width: 100%;
  align-items: flex-end;
}

.finishSlider .swiper-slide {
  opacity: 0.35;
  filter: blur(4px);
  transform: translateY(70px) scale(0.82);
  transition: all 0.8s ease;
  will-change: transform;
}

.finishSlider .swiper-slide-prev,
.finishSlider .swiper-slide-next {
  opacity: 0.75;
  filter: blur(1px);
  transform: translateY(40px) scale(0.9);
}

.finishSlider .swiper-slide-active {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0) scale(1.12);
  z-index: 20;
}

/* =========================
   Card
========================= */

.finish-card {
  position: relative;
  width: 100%;
}

.finish-image {
  overflow: hidden;
}

.finish-image img {
  width: 100%;
  display: block;
  object-fit: cover;
  transition: all 0.8s ease;
}

.finishSlider .swiper-slide .finish-image img {
  height: 300px;
}

.finishSlider .swiper-slide-active .finish-image img {
  height: 420px;
}

.finish-content {
  transition: all 0.6s ease;
}

.finish-label {
  display: inline-block;
  background: #000;
  color: #fff;
  padding: 10px 20px;
  font-size: 26px;
  font-weight: 400;
  margin-bottom: 15px;
}

.finish-content p {
  font-size: 15px;
  line-height: 1.7;
  color: #2c2520;
  max-width: 95%;
}

.finishSlider .swiper-slide:not(.swiper-slide-active) .finish-content p {
  opacity: 0;
  visibility: hidden;
}

.finishSlider .swiper-slide-active .finish-content p {
  opacity: 1;
  visibility: visible;
}

/* ==========================================
   TABLET
========================================== */

@media (max-width: 1199px) {

  .finishSlider {
    padding: 40px 80px;
  }

  .finishSlider .swiper-slide {
    transform: translateY(40px) scale(0.9);
  }

  .finishSlider .swiper-slide-active {
    transform: translateY(0) scale(1.05);
  }

  .finishSlider .swiper-slide .finish-image img {
    height: 280px;
  }

  .finishSlider .swiper-slide-active .finish-image img {
    height: 360px;
  }

  .finish-label {
    font-size: 22px;
  }

}

/* ==========================================
   MOBILE
========================================== */

@media (max-width: 767px) {

  .your-new-section {
    padding: 80px 0;
  }

  .section-strip {
    display: none;
  }

  .section-heading {
    margin-bottom: 50px;
    padding: 0 20px;
  }

  .finishSlider {
    padding: 20px 15px;
  }

  .finishSlider .swiper-slide {
    opacity: 0.6;
    filter: blur(0);
    transform: translateY(15px) scale(0.9);
  }

  .finishSlider .swiper-slide-prev,
  .finishSlider .swiper-slide-next {
    opacity: 0.8;
    transform: translateY(10px) scale(0.92);
  }

  .finishSlider .swiper-slide-active {
    opacity: 1;
    transform: translateY(0) scale(1);
  }

  .finishSlider .swiper-slide .finish-image img {
    height: 260px;
  }

  .finishSlider .swiper-slide-active .finish-image img {
    height: 320px;
  }

  .finish-label {
    font-size: 18px;
    padding: 8px 16px;
  }

  .finish-content p {
    font-size: 14px;
    line-height: 1.6;
    max-width: 100%;
  }

}

/* ==========================================
   SMALL MOBILE
========================================== */

@media (max-width: 480px) {

  .finishSlider {
    padding: 15px 10px;
  }

  .finishSlider .swiper-slide .finish-image img {
    height: 230px;
  }

  .finishSlider .swiper-slide-active .finish-image img {
    height: 290px;
  }

  .finish-label {
    font-size: 16px;
  }

}
/* ============================================
   TESTIMONIAL CARDS
   ============================================ */

.cs-testi-section {
  position: relative;
  width: 100%;
  padding: 300px 0 80px;
  overflow: hidden;
}

.cs-testi-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(248, 243, 236, 0.72);
  z-index: 0;
}

.cs-testi__header {
        position: relative;
    /* top: 85%; */
    margin-top: 150px;
    /* margin-left: 160px; */
    margin-bottom: 30px;
    z-index: 1;
    text-align: center;
   
}

.cs-testi__title {
  font-family: var(--heading-font);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 400;
  color: #2c2520;
  letter-spacing: 0.02em;

  line-height: 1;
}

.cs-testi__sub {
  font-family: var(--body-font);
  font-size: 13px;
  font-weight: 600;
  color: #171717;
  letter-spacing: 0.04em;
  margin: 0;
  line-height: 1.7;
}

.cs-testi__swiper-outer {
  position: relative;
  z-index: 1;
  width: 100%;
  overflow: hidden;
  padding: 0px 0 30px;
}

.cs-testi-swiper {
  overflow: visible !important;
  width: 60%;
  margin: 0 auto;
}

.cs-testi-swiper .swiper-slide {
  transition:
    transform 0.5s ease,
    opacity 0.5s ease;
  opacity: 0.35;
  transform: scale(0.92);
  pointer-events: none;
}

.cs-testi-swiper .swiper-slide-active {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}

.cs-testi-card {
 position: relative;
  width: 100%;
  /* min-height: 400px; */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  /* padding-left: 120px; */
  /* padding: 0px 80px 100px; */
  text-align: center;
  overflow: hidden;
  z-index: 1;
}

.cs-testi-card__q-open,
.cs-testi-card__q-close {
  position: absolute;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(80px, 10vw, 130px);
  line-height: 1;
  color: #cbb89d;
  opacity: 0.55;
  pointer-events: none;
  user-select: none;
}

.cs-testi-card__q-open {
  top: -10px;
  left: 24px;
}

.cs-testi-card__q-close {
  bottom: 60px;
  right: 24px;
}

.cs-testi-card__text {
     font-family: var(--body-font);
    font-size: clamp(13px, 1.4vw, 16px);
    font-weight: 600;
    color: #1d1d1c;
    /* line-height: 1.85; */
    /* letter-spacing: 0.01em; */
    max-width: 440px;
    margin: 0 auto 28px;
    position: relative;
    z-index: 1;
}

.cs-testi-card__divider {

    width: 80%;
    height: 1px;
    margin: 30px auto;
    background: linear-gradient(
        to right,
        transparent,
        rgba(150,130,100,0.35),
        transparent
    );
}

.cs-testi-card__author {
  display: flex;
  align-items: center;
  gap: 14px;
  position: relative;
  z-index: 1;
}

.cs-testi-card__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  background: #e6d7c3;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cs-testi-card__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.cs-testi-card__avatar-initials {
  font-family: var(--heading-font);
  font-size: 16px;
  font-weight: 600;
  color: #8a6d52;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.cs-testi-card__info {
  text-align: left;
}

.cs-testi-card__name {
  font-family: var(--heading-font);
  font-size: 15px;
  font-weight: 600;
  color: #2c2520;
  margin: 0 0 3px 0;
  letter-spacing: 0.02em;
}

.cs-testi-card__role {
  font-family: var(--body-font);
  font-size: 11px;
  font-weight: 400;
  color: #6e6a67;
  letter-spacing: 0.04em;
  margin: 0;
}

.cs-testi__nav {
  position: absolute;
  top: 30%;
  transform: translateY(-50%);
  z-index: 10;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(203, 184, 157, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
  transition:
    background 0.25s ease,
    transform 0.25s ease;
}

.cs-testi__nav:hover {
  background: #fff;
  transform: translateY(-50%) scale(1.08);
}

.cs-testi__nav svg {
  width: 16px;
  height: 16px;
  stroke: #3a2e26;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.cs-testi__prev {
  left: 18%;
}
.cs-testi__next {
  right: 18%;
}

.cs-testi-swiper .swiper-pagination {
  bottom: -24px;
}

.cs-testi-swiper .swiper-pagination-bullet {
  width: 6px;
  height: 6px;
  background: #cbb89d;
  opacity: 0.5;
  transition:
    opacity 0.3s,
    transform 0.3s;
}

.cs-testi-swiper .swiper-pagination-bullet-active {
  opacity: 1;
  transform: scale(1.3);
  background: #8a6d52;
}

/* ============================================
   INSTAGRAM GALLERY SECTION
   ============================================ */

.social-gallery-section {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
}

.gallery-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 80px;
}

.gallery-heading {
  text-align: center;
  margin-bottom: 60px;
}

.gallery-heading h2 {
  font-size: 42px;
  font-weight: 400;
  color: #111;
  margin: 0;
}

.gallery-slider-wrap {
  position: relative;
  display: flex;
  align-items: center;
  gap: 30px;
}

.gallerySwiper {
  width: 100%;
}

.gallerySwiper .swiper-slide {
  height: auto;
}

.insta-card {
  position: relative;
  display: block;
  overflow: hidden;
  text-decoration: none;
}

.insta-video {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}

.insta-overlay {
  position: absolute;
  inset: 0;
 
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s ease;
}

.insta-card:hover .insta-overlay {
  background: rgba(0, 0, 0, 0.55);
}

.insta-overlay i {
        width: 60px;
    height: 60px;
    font-size: 40px;
    border-radius: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    /* padding: 15px; */
    background-color: #1f1f1e;
    color: #fff;
    bacground-color: #1e1d1d color: #fff;
    transition: 0.3s ease;
}

.insta-card:hover .insta-overlay i {
  transform: scale(1.1);
}

.gallery-prev,
.gallery-next {
  width: 50px;
  height: 50px;
  border: none;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
}

.gallery-prev i,
.gallery-next i {
  font-size: 28px;
  color: #111;
}

.gallery-prev:hover i,
.gallery-next:hover i {
  transform: scale(1.1);
}

/* ============================================
   CLIENTS + COUNTER SECTION
   ============================================ */

.cs-clients-section {
  width: 100%;
  padding: 70px 120px;
  background: #ffffff;
}

.cs-clients__heading {
  font-family: var(--heading-font);
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 400;
  color: #2c2520;
  text-align: center;
  letter-spacing: 0.02em;
  margin: 0 0 28px 0;
}

.cs-clients__grid {
  margin-bottom: 56px;
}
/* 
.cs-clients__logo-wrap {
  padding: 40px;
} */

.cs-clients__logo-box {
  width: 100%;
 

  overflow: hidden;
  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.cs-clients__logo-box:hover {
  border-color: #cbb89d;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.07);
}

.cs-clients__logo-box img {
  width: 100%;
  height: 80%;
  object-fit: contain;
  display: block;
  /* filter: grayscale(100%);
  opacity: 0.65; */
  transition:
    filter 0.3s ease,
    opacity 0.3s ease;
}

.cs-clients__logo-box:hover img {
  filter: grayscale(0%);
  opacity: 1;
}

.cs-counters {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
  background: #d93832;
  padding: 40px 0;
}

.cs-counter-item {
  /* flex: 1 100 100px; */
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 20px 30px;
  position: relative;
}

.cs-counter-item__icon img {
  font-size: 28px;
  line-height: 1;
  flex-shrink: 0;
  color: #fff;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cs-counter-item__body {
  display: flex;
  flex-direction: column;
  margin-right: 22px;
}

.cs-counter-item__number {
  font-family: var(--heading-font);
  font-size: clamp(26px, 3.2vw, 38px);
  font-weight: 600;
  color: #fff;
  line-height: 1;
  letter-spacing: 0.01em;
}

.cs-counter-item__label {
  font-family: var(--body-font);
  font-size: 11px;
  font-weight: 600;
  color: #fff;
  margin-top: 5px;
}

.cs-counter-item__number[data-target] {
  transition: none;
}
.col-2-custom {
  width: 14.2857%;
  /* flex: 0 0 14.2857%; */
}

/* ============================================
   VIDEO & FORM SECTION
   ============================================ */

.section {
  background: #fff;
  padding: 40px 0 60px;
}

.section-wrap {
  display: flex;
  align-items: flex-start;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  gap: 0;
}

.vertical-label {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-size: 12px;
  letter-spacing: 2px;
  color: #555;
  white-space: nowrap;
  flex-shrink: 0;
  padding-right: 24px;
  padding-top: 10px;
}

.content {
  flex: 1;
}
.video-box {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 12px;
    background: #000;
}

.stone-video {
    width: 100%;
    display: block;
    aspect-ratio: 16 / 6.5;
    object-fit: cover;
}
.form-section {
  margin-top: 28px;
}

.form-heading {
  font-size: 22px;
  font-weight: 600;
  color: #111;
  margin-bottom: 20px;
}

.fields-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 20px;
}

.field {
  margin-bottom: 18px;
}

.field input {
  width: 100%;
  border: none;
  border-bottom: 1px solid #999;
  outline: none;
  padding: 6px 0;
  font-size: 13px;
  color: #333;
  background: transparent;
}

.field input::placeholder {
  color: #555;
  font-size: 13px;
}

.radio-row {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}

.radio-row .radio-label {
  font-size: 13px;
  color: #333;
  flex-shrink: 0;
}

.radio-row label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: #333;
  cursor: pointer;
}

.radio-row input[type="radio"] {
  width: 14px;
  height: 14px;
  accent-color: #333;
  cursor: pointer;
}

.field-full {
  grid-column: 1 / -1;
}

.field-full input {
  width: 100%;
  border: none;
  border-bottom: 1px solid #999;
  outline: none;
  padding: 6px 0;
  font-size: 13px;
  color: #333;
  background: transparent;
}

.field-full input::placeholder {
  color: #555;
  font-size: 13px;
}

.form-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 20px;
  flex-wrap: wrap;
  gap: 12px;
}

.captcha {
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid #ccc;
  padding: 10px 14px;
  background: #f9f9f9;
  font-size: 13px;
  color: #444;
  width: 200px;
}

.captcha input[type="checkbox"] {
  width: 16px;
  height: 16px;
  cursor: pointer;
}

.btn-submit {
  background: #111;
  color: #fff;
  border: none;
  padding: 12px 36px;
  font-size: 14px;
  cursor: pointer;
  letter-spacing: 0.5px;
}

.btn-submit:hover {
  background: #333;
}

/* ============================================
   FOOTER
   ============================================ */

.footer-overlay {
  /* background: rgba(245, 240, 235, 0.82); */
  width: 100%;
  padding: 120px 0 0;
}

.footer-inner {
  display: flex;
  align-items: flex-start;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  gap: 0;
}

.footer-grid {
  flex: 1;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 40px;
}

.col-brand .logo {
  margin-bottom: 20px;
}

.logo-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}

.logo-icon {
  width: 52px;
  height: 52px;
}

.logo-text h2 {
  font-size: 22px;
  font-weight: 700;
  color: #111;
  letter-spacing: 1px;
  line-height: 1.1;
}

.logo-text span {
  font-size: 9px;
  letter-spacing: 2px;
  color: #888;
  text-transform: uppercase;
}

.col-brand h4 {
  font-size: 17px;
  font-weight: 600;
  color: #111;
  margin-bottom: 8px;
}

.col-brand p {
  font-size: 14px;
  color: #555;
  line-height: 1.65;
  margin-bottom: 18px;
}

.col-brand .stay-connected {
  margin-bottom: 16px;
}

.col-brand .appointment {
  font-size: 13px;
  font-weight: 700;
  color: #111;
  line-height: 1.6;
  text-transform: uppercase;
}

.col-links h4 {
  font-size: 16px;
  font-weight: 700;
  color: #201a1a;
  margin-bottom: 40px;
  margin-left: 30px;
}

.col-links ul {
  list-style: none;
}

.col-links ul li {
  margin-bottom: 10px;
}

.col-links ul li a {
  font-size: 15px;
  color: #2f2e31;
  text-decoration: none;
}

.col-links ul li a:hover {
  color: #111;
}

.col-contact h4 {
  font-size: 14px;
  font-weight: 700;
  color: #111;
  margin-bottom: 16px;
}

.col-contact p {
  font-size: 14px;
  color: #444;
  line-height: 1.7;
  margin-bottom: 6px;
}

.col-contact .contact-label {
  font-size: 13px;
  font-weight: 600;
  color: #111;
  margin-top: 10px;
}

.footer-bottom {
  border-top: 1px solid rgba(0, 0, 0, 0.15);
  padding: 14px 20px;
  max-width: 1100px;
  margin: 0 auto;
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-bottom-content {
  flex: 1;
  padding-left: 80px;
  font-size: 11px;
  color: #555;
}

.footer-bottom-content a {
  color: #555;
  text-decoration: none;
}

.footer-bottom-content a:hover {
  color: #111;
}

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

/* Tablet */
@media (max-width: 1024px) {
  .footer {
    padding-left: 10px;
  }
  .section {
    padding-left: 10px;
  }
  .cs-clients-section {
    padding-left: 60px;
  }
    .ccs-slide-content{
    position: absolute;
    left: 30%!important;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    max-width: 50%;
    width: 100%;
    color: #fff;

  }

  .social-gallery-section {
    padding-left: 60px;
  }
  .cs-testi-section {
    padding-left: 60px;
  }
  /* .cs-s3{
  padding-left: 60px;
} */
  /* .cs-s1 {
    padding-left: 60px;
  }
  .cs-s2 {
    padding-left: 60px;
  } */

  .cs-clients__logo-wrap.col-2-custom {
    width: 25%;
  }
  .cs-testi-swiper {
    width: 76%;
  }
  .cs-testi__prev {
    left: 8%;
  }
  .cs-testi__next {
    right: 8%;
  }
  .cs-testi-card {
    padding: 44px 40px 36px;
  }
}
/* Desktop */
@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }
    .cs-rail {
  display: none!important;
}

}
/* Tablet: Finishes section */
@media (max-width: 991px) {
  .left-rail {
    display: none;
  }
  .navbar-brand{
    padding-left:0px!important;
  }
  .navbar-collapse {
    background: #fff;
    padding: 20px;
    margin-top: 20px;
    border: 1px solid var(--border);
  }
  .navbar-nav {
    gap: 10px;
    align-items: flex-start !important;
  }
  .navbar-brand img {
    height: 40px;
  }
  .finishSlider {
    padding: 50px 80px;
  }
  .finishSlider .swiper-slide {
    width: 260px !important;
  }
  .finishSlider .swiper-slide .finish-image img {
    height: 320px;
  }
  .finishSlider .swiper-slide-active .finish-image img {
    height: 450px;
  }

  .gallery-wrapper {
    padding-left: 50px;
  }
  .insta-video {
    height: 100%;
  }
  .gallery-heading h2 {
    font-size: 34px;
  }

  .ccs-slide-title{
    font-size: 30px;
    margin-bottom: 12px;
  }
  .ccs-slide-desc{
    font-size: 14px;
    margin-bottom: 30px;
    line-height: 1.2;
    letter-spacing: 0;
    width: 100%;
  }
    .your-new-section {
    padding: 80px 90px;
  }
}

/* Mobile */
@media (max-width: 767px) {
  .cs-content {
    margin-left: 0;
    width: 100%;
    padding-bottom: 52px;
  }
     .cs-clients-section {
        padding: 50px 80px 0 80;
    }
  .cs-clients__logo-wrap.col-2-custom {
    width: 33.333%;
  }
  .cs-s3__text {
    max-width: 100% !important;
  }
  .cs-counter-item {
    flex: 1 1 140px;
    padding: 16px 12px;
    gap: 10px;
  }
  .cs-counter-item__icon img {
   width: 40px;
   height: 40px;
  }
  .cs-testi-section {
    padding: 60px 0 60px;
  }
  .cs-testi-swiper {
    width: 88%;
  }
  .cs-testi__prev {
    left: 2%;
  }
  .cs-testi__next {
    right: 2%;
  }
  .cs-testi-card {
    padding: 36px 28px 30px;
    min-height: auto;
  }
  .cs-testi-card__q-open {
    font-size: 70px;
    left: 12px;
    top: -6px;
  }
  .cs-testi-card__q-close {
    font-size: 70px;
    right: 12px;
    bottom: 48px;
  }
  .cs-testi__nav {
    width: 36px;
    height: 36px;
  }
  .social-gallery-section {
    padding: 80px 0;
  }
  .section-strip {
    display: none;
  }
  
  .insta-video {
    height: 100%;
  }
  .gallery-heading h2 {
    font-size: 28px;
  }
  .gallery-slider-wrap {
    gap: 15px;
  }
  .gallery-prev,
  .gallery-next {
    width: 40px;
    height: 40px;
  }
  .gallery-prev i,
  .gallery-next i {
    font-size: 22px;
  }
  .finishSlider {
    padding: 40px 30px;
  }
  .finishSlider .swiper-slide {
    width: 100%!important;
  }
  .finishSlider .swiper-slide .finish-image img {
    height: 280px;
  }
  .finishSlider .swiper-slide-active .finish-image img {
    height: 380px;
  }
  
  .vertical-label {
    display: none;
  }
  .fields-grid {
    grid-template-columns: 1fr;
  }
  .radio-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .form-footer {
    flex-direction: column;
    align-items: stretch;
  }
  .captcha {
    width: 100%;
  }
  .btn-submit {
    width: 100%;
    text-align: center;
  }
  .video-box {
    aspect-ratio: 16 / 9;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .footer-bottom-content {
    padding-left: 0;
  }

}

/* Small mobile */
@media (max-width: 480px) {
  /* .cs-clients__logo-wrap.col-2-custom {
    width: 50%;
  } */
  .cs-counter-item:not(:last-child)::after {
    display: none;
  }
  .cs-counters {
    gap: 0;
    justify-content: space-around;
  }
  /* .cs-counter-item {
    flex: 0 0 48%;
    padding: 14px 8px;
    border-bottom: 1px solid #e8e4df;
  } */
  .cs-testi-swiper {
    width: 94%;
  }
  .cs-testi__prev {
    left: 0;
  }
  .cs-testi__next {
    right: 0;
  }
  .cs-testi-card {
    padding: 32px 22px 28px;
  }
  .cs-testi-card__author {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
  .cs-testi-card__info {
    text-align: center;
  }
}

/* Large desktop */
@media (max-width: 1200px) {
  .cs-testi-swiper {
    width: 68%;
  }
  .cs-testi__prev {
    left: 12%;
  }
  .cs-testi__next {
    right: 12%;
  }
}

/* ==========================================
   TABLET
   ========================================== */
@media (max-width: 900px) {
  .ccs-section{
    padding: 60px 0;
  }
  .ccs-btn-prev {
    left: 10px;
  }
  .ccs-btn-next {
    right: 10px;
  }
  .custom-navbar {
    padding: 20px 40px;
  }
  .cs-hero-slider {
    height: 80vh;
  }

  .cs-brand-wrapper {
    gap: 24px;
    padding-top: 60px;
  }

  .cs-brand-name span {
    font-size: 70px;
  }

  .cs-brand-tag span {
    font-size: 45px;
  }

  .cs-divider {
    height: 120px;
  }

  /* SECTION 1 */
  .cs-s1 {
    display: block;
    min-height: auto;
  }

  .cs-s1__main {
    display: flex;
    flex-direction: column;
  }

  .cs-s1__bg {
    position: relative;
    height: 450px;
  }

  .cs-s1__overlay {
    position: relative;
    width: 100%!important;
    height: auto;
    top: 6%;
    right: 0;
    padding: 20px;
    background: rgba(255, 255, 255, 0.95);
  }


  .cs-tag-box {
    align-self: flex-start;
  }

  /* SECTION 2 */
  .cs-s2__main {
    flex-direction: column;
  }

  .cs-s2__text {
    flex: 100%;
    width: 100%;
    padding: 20px;
    margin-left: 0 !important;
    margin-bottom: 90px;
    order: 1;
  }

  .cs-s2__img {
    width: 100%;
    max-width: 100%;
    margin-left: 0;
    order: 2;
  }

  .cs-s3__img {
    margin-left: 0 !important;
  }

  .cs-s2__img img {
    width: 100%;
    height: 500px;
    object-fit: cover;
  }

  /* SECTION 3 */
  .cs-s3 {
    flex-direction: column-reverse;
  }

  .cs-s3__img {
    flex: unset;
  }

  .cs-s3__img img {
    height: 500px;
  }
  .cs-s3__text {
    padding: 20px;
  }
}

@media (max-width: 768px) {
  .cs-testi__header{
        margin-top: 450px;
    margin-left: 0;
    margin-bottom: 30px;
  }
  .cs-hero-slider {
    height: 75vh;
  }

  .cs-slide-content {
    height: 100%;
    justify-content: center;
    align-items: center;
  }

  .cs-brand-wrapper {
    flex-direction: column;
    gap: 15px;
    padding-top: 0;
    text-align: center;
  }

  .cs-brand-name {
    text-align: center;
  }

  .cs-brand-name span {
    font-size: 48px;
    line-height: 1;
  }

  .cs-divider {
    width: 120px;
    height: 1px;
  }

  .cs-brand-tag {
    align-items: center;
  }

  .cs-brand-tag span {
    font-size: 30px;
    line-height: 1;
  }

  .cs-btn {
    margin-top: 30px;
    padding: 14px 30px;
  }

  .cs-s1__bg {
    height: 350px;
  }

  .cs-s2__img img,
  .cs-s3__img img {
    height: 350px;
  }

  /* .cs-s1__overlay,
  .cs-s2__text,
  .cs-s3__text {
    padding: 40px 24px;
  } */

  .cs-heading {
    font-size: 18px;
    width: 250px;
  }

  .cs-body {
    font-size: 14px;
  }

  .cs-tag-box {
    font-size: 24px;
    padding: 8px 14px;
  }
  /* .story-testimonial {
 
    margin: 0 45px;
} */
}
@media (max-width: 575px) {
  .cs-hero-slider {
    height: 70vh;
  }

  .cs-brand-name span {
    font-size: 36px;
  }

  .cs-brand-tag span {
    font-size: 22px;
  }

  .cs-divider {
    width: 80px;
  }

  .cs-btn {
    padding: 12px 24px;
    font-size: 14px;
  }

}

@media (max-width: 480px) {
  .cs-brand-name span {
    font-size: 30px;
  }

  .cs-brand-tag span {
    font-size: 18px;
  }

  .cs-brand-wrapper {
    gap: 12px;
  }
  .cs-s1__bg {
    height: 280px;
  }

  .cs-s2__img img,
  .cs-s3__img img {
    height: 260px;
  }

  .cs-heading {
    font-size: 26px;
  }

  .cs-body {
    font-size: 14px;
  }

  /* .cs-s1__overlay,
  .cs-s2__text,
  .cs-s3__text {
    padding: 30px 20px;
  } */

  .cs-tag-box {
    font-size: 16px;
    letter-spacing: 1px;
  }
}

@media (max-width: 1024px) {
  .cs-clients-section {
    padding: 60px 40px;
  }

  .col-2-custom {
    flex: 0 0 25%;
    max-width: 25%;
  }

  .cs-clients__logo-wrap {
    padding: 20px;
  }
   .cs-s1__overlay {
    position: relative;
    width: 100%!important;
    height: auto;
    top: 50%;
    right: 0;
    padding: 20px;
    background: rgba(255, 255, 255, 0.95);
  }
}

/* ==========================================
   TABLET
========================================== */

@media (max-width: 768px) {
  /* .cs-clients-section {
    padding: 50px 20px;
  } */

  .col-2-custom {
    flex: 0 0 33.333%;
    max-width: 33.333%;
  }

  .cs-clients__logo-wrap {
    padding: 12px;
  }

  .cs-clients__logo-box {
    min-height: auto;
  }

  .cs-clients__logo-box img {
    width: 100%;
    height: 100%;
  }
}

/* ==========================================
   MOBILE
========================================== */

@media (max-width: 575px) {
  /* .col-2-custom {
    flex: 0 0 50%;
    max-width: 50%;
  } */

  .cs-clients__logo-wrap {
    padding: 10px;
  }

  .cs-clients__logo-box {
    min-height: auto;
  }

}

/* ==========================================
   SMALL MOBILE
========================================== */

@media (max-width: 400px) {
  /* .col-2-custom {
    flex: 0 0 100%!important;
    max-width: 100%!important;
  } */

  .cs-clients__logo-wrap {
    padding: 8px;
  }

  .cs-clients__logo-box {
    min-height: auto;
  }
}
