/* ---------- CSS Variables ---------- */
:root {
  --clr-brown: #5a3e2b;
  --clr-dark: #1a1209;
  --clr-amber: #c07d3a;
  --clr-sand: #f5ede0;
  --clr-white: #ffffff;
  --clr-offwhite: #faf7f3;
  --clr-text: #3b2f22;
  --clr-muted: #7a6a5a;
  --clr-border: rgba(255, 255, 255, 0.5);

  --ff-heading: 'Playfair Display', serif;
  --ff-body: 'DM Sans', sans-serif;
  --ff-label: 'DM Mono', monospace;

  --transition: 0.35s ease;
  --shadow-card: 0 8px 40px rgba(90, 62, 43, 0.13);
  --radius: 4px;
}

/* ---------- Reset & Base ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--ff-body);
  color: var(--clr-text);
  background: var(--clr-white);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

p{
  color:white;
  font-size: clamp(0.9rem, 2.5vw, 1.5rem);
}

/* ---------- Utility ---------- */
.section-label {
  font-family: var(--ff-label);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--clr-amber);
}

.section-title {
  font-family: var(--ff-heading);
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.15;
  color: var(--clr-dark);
}

.section-sub {
  font-size: 1.05rem;
  color: var(--clr-muted);
  line-height: 1.75;
  max-width: 620px;
}

@media (max-width: 768px) {
  .section-label {
    font-size: 0.65rem;
  }

  .section-title {
    font-size: clamp(1.4rem, 3vw, 2.2rem);
  }

  .section-sub {
    font-size: 0.95rem;
    line-height: 1.6;
  }
}

.btn-primary {
  display: inline-block;
  padding: 14px 32px;
  border: 2px solid var(--clr-white);
  color: var(--clr-white);
  font-family: var(--ff-label);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  background: transparent;
  cursor: pointer;
  transition: background var(--transition), color var(--transition);
}

.btn-primary:hover {
  background: var(--clr-white);
  color: var(--clr-dark);
}

.btn-secondary {
  display: inline-block;
  padding: 13px 32px;
  border: 2px solid var(--clr-white);
  color: var(--clr-white);
  font-family: var(--ff-label);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  background: transparent;
  cursor: pointer;
  transition: background var(--transition), color var(--transition);
}

.btn-secondary:hover {
  background: var(--clr-brown);
  color: var(--clr-white);
}

.btn-amber {
  display: inline-block;
  padding: 13px 30px;
  border: 1.5px solid var(--clr-amber);
  color: var(--clr-amber);
  font-family: var(--ff-label);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  background: transparent;
  cursor: pointer;
  transition: background var(--transition), color var(--transition);
}

.btn-amber:hover {
  background: var(--clr-amber);
  color: var(--clr-white);
}

/* =============================================
   NAVBAR
   ============================================= */
.navbar-wonderwoods {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 48px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  /* background: rgba(26, 18, 9, 0.98); */
  backdrop-filter: blur(12px);
  transition: background var(--transition), box-shadow var(--transition);
}

.navbar-wonderwoods.scrolled {
  background: rgba(26, 18, 9, 0.98);
  box-shadow: 0 2px 24px rgba(0, 0, 0, 0.3);
}

.navbar-logo {
  font-family: var(--ff-heading);
  font-size: 1.5rem;
  color: var(--clr-white);
  letter-spacing: 0.02em;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.navbar-logo img {
  height: auto;
  width: 240px;
  object-fit: contain;
}

.navbar-logo span {
  color: var(--clr-amber);
}

.navbar-logo-icon {
  width: 8rem;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.navbar-nav {
  display: flex;
  align-items: center;
  gap: 40px;
  flex: 1;
  justify-content: center;
  margin: 0 30px;
}

.navbar-nav li {
  list-style: none;
}

.navbar-nav a {
  font-family: var(--ff-label);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  transition: color var(--transition);
  position: relative;
  text-decoration: none;
  display: block;
}

.navbar-nav a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  right: 100%;
  height: 1px;
  background: var(--clr-amber);
  transition: right var(--transition);
}

.navbar-nav a:hover {
  color: var(--clr-white);
}

.navbar-nav a:hover::after {
  right: 0;
}

.navbar-cta {
  padding: 9px 22px;
  border: 1px solid var(--clr-amber);
  color: var(--clr-white);
  font-family: var(--ff-label);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: background var(--transition), color var(--transition);
  flex-shrink: 0;
  text-decoration: none;
  display: inline-block;
  white-space: nowrap;
}

.navbar-cta:hover {
  background: var(--clr-amber);
  color: var(--clr-white);
}

.navbar-toggler {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  flex-shrink: 0;
}

.navbar-toggler span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--clr-white);
  transition: var(--transition);
}

/* Desktop: Show navbar, hide toggler */
@media (min-width: 992px) {
  .navbar-wonderwoods {
    padding: 0 48px;
  }

  .navbar-toggler {
    display: none !important;
  }

  .navbar-nav {
    display: flex !important;
  }
}

/* Tablet: Adjust logo and spacing */
@media (max-width: 1199px) {
  .navbar-wonderwoods {
    padding: 0 30px;
  }

  .navbar-logo img {
    height: 55px;
  }

  .navbar-nav {
    gap: 25px;
    margin: 0 15px;
  }

  .navbar-cta {
    padding: 8px 18px;
    font-size: 0.65rem;
  }
}

/* Mobile: Hide navbar items, show toggler */
@media (max-width: 991px) {
  .navbar-wonderwoods {
    padding: 0 16px;
    height: 64px;
  }

  .navbar-logo img {
    height: 50px;
  }

  .navbar-logo-icon {
    width: 5rem;
  }

  .navbar-nav {
    display: none;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    flex-direction: column;
    background: rgba(26, 18, 9, 0.98);
    padding: 16px;
    gap: 16px;
    align-items: flex-start;
  }

  .navbar-nav li a {
    font-size: 0.75rem;
  }

  .navbar-nav.open {
    display: flex;
  }

  .navbar-toggler {
    display: flex !important;
  }

  .navbar-cta {
    display: none;
  }
}

/* =============================================
   BANNER CAROUSEL SLIDER
   ============================================= */




/* Banner Slide */
.banner-slide {
  position: relative;
  width: 100%;
  height: clamp(400px, 90vh, 100vh);
  overflow: hidden;

  display: flex;
  align-items: center;
}

/* Background */
.banner-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #5a3e2b 0%, #8b6647 100%);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  transform: scale(1.05);
  transition: transform 6s ease;
  z-index: 1;
}

/* Overlay */
.banner-overlay {
  position: absolute;
  inset: 0;

  background: rgba(0, 0, 0, 0.45);

  z-index: 2;
}

/* Content */
.banner-content {
  position: relative;
  z-index: 3;
  max-width: 780px;
  padding: 0 clamp(20px, 5vw, 80px);
  color: #fff;
}

/* Eyebrow */
.banner-eyebrow {
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 15px;

  color: #d4a373;
}

/* Heading */
.banner-heading {
  font-size: clamp(28px, 6vw, 72px);
  line-height: 1.1;
  font-weight: 700;

  margin-bottom: 20px;
}

/* Description */
.banner-desc {
  font-size: clamp(13px, 2vw, 18px);
  line-height: 1.7;
  margin-bottom: 35px;
  color: rgba(255, 255, 255, 0.85);
}

.banner-desci{
   font-size: clamp(16px, 2.5vw, 23px);
  line-height: 1.7;
  margin-bottom: 35px;
  color: rgba(255, 255, 255, 0.85);
}

/* Buttons */
.banner-actions {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
  padding: 14px 28px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  font-size: 15px;
  border:2px solid #fff;
}

.btn-primary {
  background: transparant;
  color: #fff;
}

.btn-primary:hover {
  background: #b08968;
}

.btn-secondary {
  border: 2px solid #fff;
  color: #fff;
}

.btn-secondary:hover {
  background: #fff;
  color: #111;
}

/* Mobile */
@media (max-width: 991px) {
  .btn-primary,
  .btn-secondary {
    padding: 11px 22px;
    font-size: 13px;
  }

  .banner-heading {
    font-size: clamp(22px, 4.5vw, 32px);
  }

  .banner-desci {
    font-size: clamp(14px, 2.2vw, 18px);
  }
}

@media (max-width: 767px) {

  .banner-slide {
    height: clamp(350px, 75vh, 600px);
  }

  .banner-content {
    padding: clamp(10px, 2vw, 20px);
    text-align: center;
  }

  .banner-heading {
    font-size: clamp(20px, 4vw, 32px);
    margin-bottom: clamp(12px, 2vw, 15px);
  }

  .banner-desc {
    font-size: clamp(12px, 1.8vw, 14px);
    margin-bottom: clamp(15px, 3vw, 25px);
  }

  .banner-desci {
    font-size: clamp(14px, 2.2vw, 18px);
    line-height: 1.6;
    margin-bottom: clamp(15px, 3vw, 25px);
  }

  .banner-eyebrow {
    font-size: clamp(10px, 1.5vw, 12px);
  }

  .banner-actions {
    justify-content: center;
  }

  .btn-primary,
  .btn-secondary {
    padding: clamp(8px, 1.5vw, 10px) clamp(14px, 2.5vw, 18px);
    font-size: clamp(10px, 1.3vw, 12px);
  }
}

/* Extra Small Mobile */
@media (max-width: 480px) {

  .banner-slide {
    height: clamp(300px, 65vh, 500px);
  }

  .banner-content {
    padding: clamp(8px, 1.5vw, 15px);
  }

  .banner-heading {
    font-size: clamp(18px, 3.5vw, 28px);
    margin-bottom: clamp(10px, 1.5vw, 12px);
  }

  .banner-desc {
    font-size: clamp(11px, 1.6vw, 12px);
    margin-bottom: clamp(12px, 2.5vw, 20px);
  }

  .banner-desci {
    font-size: clamp(13px, 2vw, 16px);
    line-height: 1.6;
    margin-bottom: clamp(15px, 2.5vw, 25px);
  }

  .banner-actions {
    flex-direction: column;
    gap: clamp(8px, 1.5vw, 12px);
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    text-align: center;
    padding: clamp(8px, 1.2vw, 9px) clamp(12px, 2vw, 14px);
    font-size: clamp(9px, 1.1vw, 11px);
  }
}

.banner-section {
  position: relative;
  height: clamp(500px, 100vh, 100vh);
  min-height: 500px;
  overflow: hidden;
}

/* Owl Carousel custom for full-height hero */
.banner-owl {
  position: relative;
  width: 100%;
  height: 100%;
  display: block;
}

.banner-section .owl-carousel,
.banner-section .owl-stage-outer,
.banner-section .owl-stage,
.banner-section .owl-item {
  height: 100%;
}

.banner-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.6s ease-out, visibility 0.6s ease-out;
}

.banner-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  transition: transform 6s ease;
}

.owl-item.active .banner-bg {
  transform: scale(1);
}

/* Slide-specific backgrounds via inline style — set in HTML */
.banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right,
      rgba(10, 7, 3, 0.65) 0%,
      rgba(10, 7, 3, 0.3) 55%,
      transparent 100%);
}

.banner-content {
  position: relative;
  z-index: 2;
  padding: 0 80px;
  max-width: 800px;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease 0.3s, transform 0.8s ease 0.3s;
}

.owl-item.active .banner-content {
  opacity: 1;
  transform: translateY(0);
}

/* ============ CAROUSEL ANIMATIONS ============ */
@keyframes slideInFromRight {
  from {
    opacity: 0;
    transform: translateX(100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInFromLeft {
  from {
    opacity: 0;
    transform: translateX(-100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes bgZoom {
  from {
    transform: scale(1.1);
  }
  to {
    transform: scale(1);
  }
}

@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

/* Custom Carousel Styles */
.banner-slide {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.6s ease-out, visibility 0.6s ease-out;
}

.banner-slide.active {
  display: flex;
  opacity: 1;
  visibility: visible;
  animation: fadeInUp 0.8s ease-out;
}

.banner-slide.prev {
  opacity: 0;
  animation: fadeOut 0.6s ease-out forwards;
}

.banner-slide.active .banner-content {
  opacity: 0;
  animation: slideInFromRight 0.8s ease-out 0.2s forwards;
}

.banner-slide.active .banner-bg {
  animation: bgZoom 0.8s ease-out;
}

/* Stagger animation for content elements */
.banner-slide.active .banner-eyebrow {
  animation: slideInFromLeft 0.7s ease-out 0.3s forwards;
  opacity: 0;
}

.banner-slide.active .banner-heading {
  animation: slideInFromLeft 0.8s ease-out 0.4s forwards;
  opacity: 0;
}

.banner-slide.active .banner-desc {
  animation: slideInFromLeft 0.8s ease-out 0.5s forwards;
  opacity: 0;
}

.banner-slide.active .banner-actions {
  animation: zoomIn 0.8s ease-out 0.6s forwards;
  opacity: 0;
}

.banner-eyebrow {
  font-family: var(--ff-label);
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--clr-amber);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.banner-eyebrow::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--clr-amber);
}

.banner-heading {
  font-family: var(--ff-heading);
  font-size: clamp(2.6rem, 5.5vw, 3.2rem);
  font-weight: 700;
  color: var(--clr-white);
  line-height: 1.1;
  margin-bottom: 22px;
}

.banner-desc {
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.75;
  margin-bottom: 40px;
  max-width: 540px;
}
.catalog-btn 
.banner-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Owl nav / dots */
.banner-section .owl-dots,
.banner-section .carousel-dots {
  position: absolute;
  bottom: clamp(15px, 3vh, 36px);
  left: 50%;
  display: flex;
  gap: 8px;
  z-index: 5;
}

.banner-section .owl-dot span,
.banner-section .carousel-dot span {
  width: 15px;
  height: 15px;
  background: rgba(255, 255, 255, 0.35);
  border-radius: 20px;
  display: block;
  transition: background var(--transition), width var(--transition);
}

.banner-section .owl-dot.active span,
.banner-section .carousel-dot.active span {
  background: var(--clr-amber);
  width: 36px;
}

.banner-section .carousel-dot {
  cursor: pointer;
  padding: 0;
  border: none;
  background: none;
  transition: transform 0.3s ease;
}

.banner-section .carousel-dot:hover span {
  background: rgba(255, 255, 255, 0.6);
  width: 20px;
}

.banner-section .owl-nav {
  position: absolute;
  bottom: 32px;
  right: 80px;
  display: flex;
  gap: 10px;
  z-index: 5;
}

.banner-section .owl-prev,
.banner-section .owl-next {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  cursor: pointer;
  transition: border-color var(--transition), background var(--transition);
  background: transparent;
}

.banner-section .owl-prev:hover,
.banner-section .owl-next:hover {
  border-color: var(--clr-amber);
  background: rgba(192, 125, 58, 0.15);
}


/* banner logo start */

/* Banner Logo */
.banner-logo{
    position: absolute;
    top: 30px;
    right: 30px;
    z-index: 10;
}

.banner-logo img{
    width: 160px;
    height: auto;
    display: block;
}

/* Responsive */
@media (max-width: 992px){

    .banner-logo{
        top: 20px;
        right: 20px;
    }

    .banner-logo img{
        width: 110px;
    }

}

@media (max-width: 576px){

    .banner-logo{
        top: 15px;
        right: 15px;
    }

    .banner-logo img{
        width: 85px;
    }

}
/* banner logo end */



/* section -2 styling */


/* Section */
.wood-showcase-section {
  position: relative;
  width: 100%;
  min-height: 90vh;

  overflow: hidden;

  display: flex;
  align-items: flex-end;
}

/* Background */
.wood-showcase-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.wood-showcase-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Overlay */
.wood-showcase-overlay {
  position: absolute;
  inset: 0;

  background: linear-gradient(to top,
      rgba(0, 0, 0, 0.75),
      rgba(0, 0, 0, 0.15));

  z-index: 2;
}

/* Content */
.wood-showcase-stats {
  position: relative;
  z-index: 3;

  display: grid;
  grid-template-columns: repeat(3, 1fr);

  gap: 40px;

  padding: 80px 0;
}

/* Item */
.showcase-item {
  text-align: center;
  color: #fff;

  padding: 40px 25px;

  background: rgba(0, 0, 0, 0.28);

  backdrop-filter: blur(6px);

  border: 1px solid rgba(255, 255, 255, 0.08);

  border-radius: 12px;

  transition: all 0.4s ease;
}

/* Hover */
.showcase-item:hover {
  transform: translateY(-8px);

  background: rgba(0, 0, 0, 0.4);
}

/* Heading */
.showcase-item h2 {
  font-size: 44px;
  font-weight: 800;

  margin-bottom: 20px;

  letter-spacing: 1px;

  color: #f5e6c8;
}

/* Paragraph */
.showcase-item p {
  font-size: 16px;
  line-height: 1.7;

  font-weight: 400;

  color: rgba(255, 255, 255, 0.92);
}

/* Responsive */
@media (max-width: 991px) {

  .wood-showcase-stats {
    grid-template-columns: 1fr;
    gap: 25px;

    padding: 60px 0;
  }

  .showcase-item h2 {
    font-size: 42px;
  }

  .showcase-item p {
    font-size: 18px;
  }

}

/* Mobile */
@media (max-width: 767px) {

  .wood-showcase-section {
    min-height: auto;
  }

  .wood-showcase-stats {
    padding: 40px 15px;
  }

  .showcase-item {
    padding: 30px 20px;
  }

  .showcase-item h2 {
    font-size: 34px;
  }

  .showcase-item p {
    font-size: 16px;
    line-height: 1.6;
  }

}

/* =============================================
   ABOUT US
   ============================================= */
.about-section {
  background: var(--clr-offwhite);
}

/* -- About: Problem Statement -- */
.about-problem {
  padding: 100px 80px;
  display: flex;
  flex-direction: column;
  gap: 80px;
  align-items: center;
  justify-content: center;
  max-width: 1400px;
  margin: 0 auto;
  text-align: center;
}

.about-problem-left .overline {
  font-family: var(--ff-label);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--clr-amber);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.about-problem-left .overline::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--clr-amber);
}

.about-problem-heading {
  font-family: var(--ff-heading);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  color: var(--clr-dark);
  line-height: 1.15;
  margin-bottom: 24px;
}

.about-problem-text {
  font-size: 1.02rem;
  color: var(--clr-muted);
  line-height: 1.85;
  margin-bottom: 36px;
}

.about-problem-right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  width: 100%;
  max-width: 800px;
}

.about-stat-card {
  background: var(--clr-white);
  padding: 32px 24px;
  border-left: 3px solid var(--clr-amber);
  box-shadow: var(--shadow-card);
  transition: transform var(--transition);
}

.about-stat-card:hover {
  transform: translateY(-4px);
}

.stat-number {
  font-family: var(--ff-heading);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--clr-brown);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-family: var(--ff-label);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--clr-muted);
  line-height: 1.6;
}

/* -- About: 360 Partner -- */
.about-partner {
  background: var(--clr-dark);
  padding: 90px 80px;
  position: relative;
  overflow: hidden;
}

.about-partner::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 320px;
  height: 320px;
  border: 1px solid rgba(192, 125, 58, 0.15);
  border-radius: 50%;
}

.about-partner::after {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 480px;
  height: 480px;
  border: 1px solid rgba(192, 125, 58, 0.08);
  border-radius: 50%;
}

.about-partner-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-partner-label {
  font-family: var(--ff-label);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--clr-amber);
  margin-bottom: 16px;
}

.about-partner-title {
  font-family: var(--ff-heading);
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  color: var(--clr-white);
  line-height: 1.1;
  margin-bottom: 20px;
}

.about-partner-title em {
  color: var(--clr-amber);
  font-style: normal;
}

.about-partner-sub {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.8;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  max-width: 480px;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.about-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(255, 255, 255, 0.03);
  transition: border-color var(--transition), background var(--transition);
}

.about-feature-item:hover {
  border-color: rgba(192, 125, 58, 0.3);
  background: rgba(192, 125, 58, 0.06);
}

.feature-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border: 1px solid var(--clr-amber);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-amber);
  font-size: 1.2rem;
}

.feature-title {
  font-family: var(--ff-label);
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--clr-white);
  margin-bottom: 6px;
}

.feature-text {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.7;
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .navbar-wonderwoods {
    padding: 0 32px;
  }

  .about-problem,
  .about-partner-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about-problem {
    padding: 72px 32px;
  }

  .about-partner {
    padding: 72px 32px;
  }

  .banner-content {
    padding: 0 48px;
  }

  .banner-section .owl-dots,
  .banner-section .owl-nav {
    left: 48px;
    right: 48px;
  }
}


@media (max-width: 768px) {
  .navbar-nav {
    display: none;
  }

  .navbar-nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(26, 18, 9, 0.97);
    padding: 32px 24px;
    gap: 24px;
    align-items: flex-start;
  }

  .navbar-toggler {
    display: flex;
  }

  .navbar-cta {
    display: none;
  }

  .about-problem-right {
    grid-template-columns: 1fr 1fr;
  }

  .banner-content {
    padding: 0 24px;
  }

  .about-problem {
    padding: 60px 24px;
  }

  .about-partner {
    padding: 60px 24px;
  }

  .banner-section .owl-dots {
    left: 24px;
  }

  .banner-section .owl-nav {
    right: 24px;
  }
}

@media (max-width: 480px) {
  .about-problem-right {
    grid-template-columns: 1fr;
  }

  .banner-actions {
    flex-direction: column;
  }

  .banner-actions .btn-primary,
  .banner-actions .btn-secondary {
    text-align: center;
  }
}

/* =============================================
   SCROLL-REVEAL UTILITY
   ============================================= */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal-on-scroll.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children */
.about-problem-right .about-stat-card:nth-child(2) {
  transition-delay: 0.1s;
}

.about-problem-right .about-stat-card:nth-child(3) {
  transition-delay: 0.2s;
}

.about-features .about-feature-item:nth-child(2) {
  transition-delay: 0.1s;
}

.about-features .about-feature-item:nth-child(3) {
  transition-delay: 0.2s;
}



/* section-4 */
.wood-showcase-section {
  display: flex;
  gap: 30px;
  width: 100%;
  padding: 40px;
  background: #111;
}

/* Card */
.trainer {
  position: relative;
  flex: 1;
  height: 700px;
  overflow: hidden;
  border-radius: 20px;
}

/* Image */
.trainer-img {
  width: 100%;
  height: 100%;
}

.trainer-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: 0.5s ease;
}

/* Overlay */
.trainer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
      rgba(0, 0, 0, 0.85),
      rgba(0, 0, 0, 0.15));
  z-index: 1;
}

/* Content Bottom Center */
.trainer-cnt {
  position: absolute;
  bottom: 50px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  width: 85%;
  text-align: center;
  color: #fff;
}

/* Heading */
.trainer-cnt h1 {
  font-size: 28px;
  margin-bottom: 15px;
  font-weight: 700;
  line-height: 1.2;
}

/* Paragraph */
.trainer-cnt p {
  font-size: 24px;

  color: rgba(255, 255, 255, 0.85);
}

/* Hover Effect */
.trainer:hover img {
  transform: scale(1.05);
}

/* Responsive */
@media (max-width: 1199px) {

  .wood-showcase-section {
    flex-direction: column;
    padding: 30px 20px;
  }

  .trainer {
    height: 550px;
  }

  .trainer-cnt h1 {
    font-size: 36px;
    margin-bottom: 12px;
  }

  .trainer-cnt p {
    font-size: 16px;
  }
}

@media (max-width: 991px) {

  .wood-showcase-section {
    flex-direction: column;
    padding: 20px;
  }

  .trainer {
    height: 500px;
  }

  .trainer-cnt h1 {
    font-size: 30px;
    margin-bottom: 10px;
  }

  .trainer-cnt p {
    font-size: 15px;
  }
}

@media (max-width: 768px) {

  .wood-showcase-section {
    flex-direction: column;
    padding: 15px 12px;
  }

  .trainer {
    height: 420px;
  }

  .trainer-cnt {
    bottom: 30px;
    width: 90%;
  }

  .trainer-cnt h1 {
    font-size: 24px;
    margin-bottom: 8px;
  }

  .trainer-cnt p {
    font-size: 13px;
    line-height: 1.5;
  }
}

/* Extra Small Mobile - Trainer */
@media (max-width: 480px) {

  .wood-showcase-section {
    flex-direction: column;
    padding: 12px 10px;
    gap: 15px;
  }

  .trainer {
    height: clamp(280px, 50vh, 350px);
    border-radius: 12px;
  }

  .trainer-cnt {
    bottom: clamp(15px, 2vh, 25px);
    width: 90%;
  }

  .trainer-cnt h1 {
    font-size: clamp(16px, 3vw, 20px);
    margin-bottom: 6px;
    line-height: 1.2;
    font-weight: 700;
  }

  .trainer-cnt p {
    font-size: clamp(11px, 1.5vw, 12px);
    line-height: 1.4;
  }
}


/* section 5  */

.brand-hero-section {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

/* Background */
.brand-hero-bg {
  width: 100%;
  height: 100%;
}

.brand-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Overlay */
.brand-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
      rgba(0, 0, 0, 0.65),
      rgba(0, 0, 0, 0.15));
  z-index: 1;
}

/* Content */
.brand-content {
  position: absolute;
  left: 50%;
  bottom: 80px;
  transform: translateX(-50%);
  z-index: 2;
  width: 100%;
  text-align: center;
  padding: 0 20px;
}

/* Logos */
.brand-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 70px;
  flex-wrap: wrap;
  margin-bottom: 45px;
}

.brand-logos img {
  max-height: 70px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.95;
}

/* Subtitle */
.brand-subtitle {
  font-size: 28px;
  color: #fff;
  letter-spacing: 2px;
  margin-bottom: 20px;
  font-weight: 300;
}

/* Main Title */
.brand-title {
  font-size: 48px;
  line-height: 1.1;
  color: #decdaa;
  font-weight: 900;
  text-transform: uppercase;
  margin: 0;
}

/* Responsive */
@media (max-width: 991px) {

  .brand-hero-section {
    height: 700px;
  }

  .brand-content {
    bottom: 40px;
  }

  .brand-logos {
    gap: 19px;
    margin-bottom: 20px;
  }

  .brand-logos img {
    max-height: 45px;
  }

  .brand-subtitle {
    font-size: 18px;
  }

  .brand-title {
    font-size: 26px;
    line-height: 1.3;
  }
}

/* Tablet */
@media (max-width: 768px) {

  .brand-hero-section {
    height: 500px;
    min-height: 500px;
  }

  .brand-content {
    bottom: 30px;
    padding: 0 15px;
  }

  .brand-logos {
    gap: 15px;
    margin-bottom: 18px;
  }

  .brand-logos img {
    max-height: 35px;
  }

  .brand-subtitle {
    font-size: 14px;
    letter-spacing: 1px;
    margin-bottom: 12px;
  }

  .brand-title {
    font-size: 22px;
    line-height: 1.2;
  }
}

/* Small Mobile */
@media (max-width: 480px) {

  .brand-hero-section {
    height: clamp(350px, 60vh, 450px);
    min-height: 350px;
  }

  .brand-content {
    bottom: clamp(20px, 3vh, 25px);
    padding: 0 12px;
  }

  .brand-logos {
    gap: clamp(12px, 2vw, 18px);
    margin-bottom: clamp(12px, 2vw, 15px);
  }

  .brand-logos img {
    max-height: clamp(25px, 4vw, 35px);
  }

  .brand-subtitle {
    font-size: clamp(11px, 1.8vw, 13px);
    letter-spacing: 0.5px;
    margin-bottom: 8px;
    font-weight: 300;
  }

  .brand-title {
    font-size: clamp(14px, 2.8vw, 18px);
    line-height: 1.15;
  }
}


/* section-6... */


.wood-flooring-banner {
  position: relative;
  width: 100%;
  height: clamp(450px, 100vh, 100vh);
  overflow: hidden;
}

/* Background */
.wood-flooring-bg {
  width: 100%;
  height: 100%;
}

.wood-flooring-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Overlay */
.wood-flooring-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.15);
  z-index: 1;
}

/* Content */
.wood-flooring-content {
  position: absolute;
  top: 30%;
  right: 8%;
  transform: translateY(-50%);
  z-index: 2;
  text-align: right;
  max-width: 700px;
  padding: clamp(40px, 8vw, 100px) clamp(15px, 3vw, 30px);
}

.wood-flooring-logo{
  position: absolute;

}

.wood-flooring-content-2 {
  position: absolute;
  top: 50%;
  left: 8%;
  transform: translateY(-50%);
  z-index: 2;
  text-align: left;
  max-width: 700px;
}

.wood-flooring-content-2 h1{
  font-size: 48px;
  font-weight: 800;
  color: #d4b84a;
  margin-bottom: -15px;
  text-transform: uppercase;
}
.partner{
  font-size: 68px;
  font-weight: 900;
  color: #d4b84a;
  text-transform: uppercase;
}

/* Logo */
.wood-logo {
  position: relative;
  /* top: 40px; */
  right: 8%;
  margin-bottom: 5rem;
  display: flex;
  justify-content: flex-end;
}

/* Small laptops */
@media (max-width: 1366px) {

  .wood-logo {
    right: 4%;
    margin-bottom: 2rem;
  }

}

@media (max-width:768px){
  .wood-logo {
    top: 2%;
    margin-bottom: 1rem;
  }
}

.wood-logo img {
  max-width: 320px;
  width: 100%;
}

/* Deck Logo */
.deck-logo {
  margin-bottom: 50px;
  display: flex;
  justify-content: flex-start;
}

.deck-logo img {
  max-width: 220px;
  width: 100%;
}

/* Heading */
.wood-flooring-content h1 {
  font-size: clamp(24px, 5vw, 40px);
  line-height: 1.1;
  font-weight: 800;
  color: #f2e2c9;
  margin-bottom: 35px;
  text-transform: uppercase;
}


#decking{
  margin-bottom: 6px;
  color:#efece8;
  font-size: clamp(32px, 6vw, 60px);
  font-weight: 900;
}

#decking2{
  margin-bottom: 6px;
  color:#efece8;
  font-size: clamp(32px, 6vw, 60px);
  font-weight: 900;
}

#decking3{
  margin-bottom: 6px;
  color:#efece8;
  font-size: clamp(32px, 6vw, 60px);
  font-weight: 900;
}

/* White Text */
.wood-flooring-content h1 span {
  display: block;
  color: #fff;
  font-size: clamp(18px, 4vw, 48px);
  /* text-transform: lowercase; */
  margin-top: 10px;
}

/* Button */
.catalog-btn {
  display: inline-block;
  padding: clamp(12px, 2.5vw, 20px) clamp(24px, 5vw, 40px);
  background: #6e3f2b;
  color: #fff;
  font-size: clamp(14px, 2vw, 20px);
  font-weight: 600;
  text-decoration: none;
  transition: 0.4s ease;
  margin-top: clamp(20px, 3vw, 40px);
}

.catalog-btn:hover {
  background: #8a5239;
  transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 1199px) {

  .wood-flooring-banner {
    height: clamp(400px, 90vh, 750px);
  }

  .wood-flooring-content {
    right: clamp(15px, 3vw, 30px);
    left: clamp(15px, 3vw, 30px);
    top: 50%;
    text-align: center;
    padding-top: clamp(40px, 6vw, 60px);
  }

  .wood-logo {
    position: absolute;
    top: clamp(15px, 2vw, 20px);
    right: clamp(15px, 3vw, 30px);
    margin-bottom: 0;
  }

  .wood-logo img {
    max-width: clamp(100px, 12vw, 170px);
  }

  .wood-flooring-content h1 {
    font-size: clamp(24px, 4vw, 42px);
  }

  .wood-flooring-content h1 span {
    font-size: clamp(16px, 3.5vw, 32px);
  }

  .catalog-btn {
    padding: clamp(12px, 2vw, 16px) clamp(24px, 3vw, 32px);
    font-size: clamp(12px, 1.8vw, 16px);
  }
}

@media (max-width: 991px) {

  .wood-flooring-banner {
    height: clamp(350px, 85vh, 700px);
  }

  .wood-flooring-content {
    right: clamp(15px, 3vw, 20px);
    left: clamp(15px, 3vw, 20px);
    text-align: center;
    padding-top: clamp(40px, 6vw, 50px);
  }
  
.wood-flooring-content-2 {
  position: absolute;
  top: 70%;
  left: 8%;
  transform: translateY(-50%);
  z-index: 2;
  text-align: left;
  max-width: 700px;
}

  .wood-logo {
    position: absolute;
    top: clamp(12px, 2vw, 20px);
    right: clamp(12px, 2.5vw, 20px);
    margin-bottom: 0;
  }

  .wood-logo img {
    max-width: clamp(90px, 10vw, 140px);
  }

  .wood-flooring-content h1 {
    font-size: clamp(20px, 3.5vw, 36px);
  }

  .wood-flooring-content h1 span {
    font-size: clamp(14px, 3vw, 26px);
  }

  .catalog-btn {
    padding: clamp(11px, 1.8vw, 14px) clamp(20px, 2.8vw, 26px);
    font-size: clamp(12px, 1.5vw, 14px);
  }
}

@media (max-width: 768px) {

  .wood-flooring-banner {
    height: clamp(300px, 75vh, 600px);
  }

  .wood-flooring-content {
    right: clamp(12px, 2vw, 16px);
    left: clamp(12px, 2vw, 16px);
    text-align: center;
    padding-top: clamp(30px, 4vw, 40px);
    padding-left: clamp(12px, 2vw, 20px);
    padding-right: clamp(12px, 2vw, 20px);
  }

  .wood-flooring-content-2 {
    position: absolute;
    top: 50%;
    left: clamp(12px, 2vw, 16px);
    right: clamp(12px, 2vw, 16px);
    transform: translateY(-50%);
    z-index: 2;
    text-align: center;
    max-width: none;
    padding: clamp(20px, 3vw, 30px);
  }

  .wood-flooring-content-2 h1 {
    font-size: clamp(20px, 3.5vw, 32px);
    margin-bottom: 12px;
  }

  .wood-logo {
    position: absolute;
    top: clamp(10px, 1.5vw, 15px);
    right: clamp(10px, 2vw, 16px);
    margin-bottom: 0;
    justify-content: flex-end;
  }

  .deck-logo {
    position: absolute;
    top: clamp(10px, 1.5vw, 15px);
    left: clamp(10px, 2vw, 16px);
    justify-content: flex-start;
    margin-bottom: 0;
  }

  .wood-logo img {
    max-width: clamp(80px, 8vw, 110px);
  }

  .deck-logo img {
    max-width: clamp(70px, 8vw, 100px);
  }

  .wood-flooring-content h1 {
    font-size: clamp(18px, 3vw, 28px);
    line-height: 1.3;
  }

  .wood-flooring-content h1 span {
    font-size: clamp(12px, 2.2vw, 20px);
  }

  .wood-flooring-content p {
    font-size: clamp(11px, 1.8vw, 13px);
    line-height: 1.6;
  }

  .wood-flooring-content-2 p {
    font-size: clamp(12px, 1.8vw, 16px);
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
  }

  .catalog-btn {
    padding: clamp(10px, 1.5vw, 13px) clamp(16px, 2.5vw, 22px);
    font-size: clamp(10px, 1.3vw, 12px);
    display: inline-block;
    margin-top: clamp(12px, 2vw, 20px);
  }
}

/* Extra Small Mobile */
@media (max-width: 480px) {

  .wood-flooring-banner {
    height: clamp(280px, 65vh, 500px);
    min-height: 280px;
  }

  .wood-flooring-content {
    right: clamp(10px, 2vw, 12px);
    left: clamp(10px, 2vw, 12px);
    text-align: center;
    padding: clamp(20px, 3vw, 25px) clamp(10px, 2vw, 15px);
    top: 45%;
    max-width: none;
  }

  .wood-flooring-content-2 {
    position: absolute;
    top: 75%;
    left: clamp(10px, 2vw, 12px);
    right: clamp(10px, 2vw, 12px);
    transform: translateY(-50%);
    z-index: 2;
    text-align: center;
    max-width: none;
    padding: clamp(15px, 2.5vw, 20px);
  }

  .wood-flooring-content-2 h1 {
    font-size: clamp(18px, 3vw, 26px);
    margin-bottom: 8px;
    line-height: 1.2;
  }

  .wood-logo {
    position: absolute;
    top: clamp(8px, 1vw, 12px);
    right: clamp(8px, 1.5vw, 12px);
    margin-bottom: 0;
  }

  .deck-logo {
    position: absolute;
    top: clamp(8px, 1vw, 12px);
    left: clamp(8px, 1.5vw, 12px);
    margin-bottom: 0;
  }

  .wood-logo img {
    max-width: clamp(60px, 5vw, 80px);
  }

  @media (max-width: 768px) {
    .wood-logo{
      top:-90px;
    }
    .wood-logo img{
      width:90px;
    }
  }

  .deck-logo img {
    max-width: clamp(55px, 5vw, 75px);
  }

  @media (max-width: 768px) {
    .deck-logo{
      top:-180px;
    }
    .deck-logo img{
      width:120px;
    }
  }
  .wood-flooring-content h1 {
    font-size: clamp(16px, 2.5vw, 22px);
    line-height: 1.2;
    margin-bottom: 8px;
  }

  .wood-flooring-content h1 span {
    font-size: clamp(11px, 1.8vw, 16px);
    margin-top: 5px;
  }

  .wood-flooring-content p {
    font-size: clamp(10px, 1.5vw, 12px);
    line-height: 1.5;
    margin-bottom: 8px;
  }

  .wood-flooring-content-2 p {
    font-size: clamp(10px, 1.5vw, 13px);
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 10px;
  }

  .catalog-btn {
    padding: clamp(9px, 1.2vw, 11px) clamp(14px, 2vw, 18px);
    font-size: clamp(9px, 1.1vw, 11px);
    display: inline-block;
    margin-top: clamp(10px, 1.5vw, 15px);
    touch-action: manipulation;
  }

  .catalog-btn:active {
    transform: scale(0.98);
  }
}



/* section-7 */


.floor-benefits-section {
  width: 100%;
  overflow: hidden;
}

/* Card */
.benefit-card {
  position: relative;
  height: clamp(350px, 70vh, 85vh);
  overflow: hidden;
}

/* Image */
.benefit-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: 0.5s ease;
}

/* Dark Overlay */
.benefit-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
      rgba(0, 0, 0, 0.75),
      rgba(0, 0, 0, 0.15));
  z-index: 1;
}

/* Content */
.benefit-content {
  position: absolute;
  left: 40px;
  bottom: 40px;
  z-index: 2;
  color: #fff;
}

/* Icon */
.benefit-icon {
  margin-bottom: 25px;
}

.benefit-icon img {
  width: 65px;
  height: 65px;
  object-fit: contain;
}

/* Heading */
.benefit-content h3 {
  font-size: clamp(18px, 4vw, 25px);
  font-weight: 700;
  margin-bottom: 15px;
  text-transform: uppercase;
}

/* Paragraph */
.benefit-content p {
  font-size: clamp(14px, 2.5vw, 20px);
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
}

/* Hover Zoom */
.benefit-card:hover img {
  transform: scale(1.05);
}

/* Tablet */
@media (max-width: 991px) {

  .benefit-card {
    height: clamp(300px, 60vh, 700px);
  }

  .benefit-content {
    left: clamp(15px, 3vw, 25px);
    bottom: clamp(15px, 3vw, 25px);
  }

  .benefit-content h3 {
    font-size: clamp(16px, 3.5vw, 30px);
  }

  .benefit-content p {
    font-size: clamp(12px, 2vw, 18px);
  }

  .benefit-icon img {
    width: clamp(45px, 6vw, 60px);
    height: clamp(45px, 6vw, 60px);
  }
}

/* Mobile */
@media (max-width: 767px) {

  .benefit-card {
    height: clamp(250px, 50vh, 500px);
  }

  .benefit-content {
    left: clamp(12px, 2.5vw, 20px);
    bottom: clamp(12px, 2.5vw, 20px);
  }

  .benefit-content h3 {
    font-size: clamp(14px, 2.8vw, 24px);
  }

  .benefit-content p {
    font-size: clamp(11px, 1.8vw, 16px);
    line-height: 1.5;
  }

  .benefit-icon {
    margin-bottom: clamp(12px, 2vw, 25px);
  }

  .benefit-icon img {
    width: clamp(40px, 5vw, 50px);
    height: clamp(40px, 5vw, 50px);
  }
}

/* Small Mobile */
@media (max-width: 480px) {

  .benefit-card {
    height: clamp(200px, 45vh, 400px);
  }

  .benefit-content {
    left: clamp(10px, 2vw, 15px);
    bottom: clamp(10px, 2vw, 15px);
  }

  .benefit-content h3 {
    font-size: clamp(12px, 2.2vw, 18px);
    margin-bottom: clamp(8px, 1.5vw, 12px);
  }

  .benefit-content p {
    font-size: clamp(10px, 1.5vw, 13px);
    line-height: 1.4;
  }

  .benefit-icon {
    margin-bottom: clamp(8px, 1.5vw, 15px);
  }

  .benefit-icon img {
    width: clamp(35px, 4vw, 45px);
    height: clamp(35px, 4vw, 45px);
  }
}


/* footer */

/* Footer */
.premium-footer{
    position: relative;
    overflow: hidden;

    padding: 100px 0 40px;

    color: #fff;
}

/* Background */
.footer-bg{
    position: absolute;
    inset: 0;
    z-index: 1;
}

.footer-bg img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Overlay */
.footer-overlay{
    position: absolute;
    inset: 0;

    background: rgba(0,0,0,0.58);

    z-index: 2;
}

/* Content */
.premium-footer .container{
    position: relative;
    z-index: 3;
}

/* Top */
.footer-top{
    text-align: center;
    margin-bottom: 60px;
}

/* Logo */
.footer-logo img{
    width: 290px;
    height: auto;
    display: inline-block;
    transition: transform 0.3s ease;
}

.footer-logo img:hover{
    transform: scale(1.05);
}

.footer-logo h2{
    font-size: 62px;
    font-weight: 300;
    letter-spacing: 4px;

    margin-bottom: 15px;
}

.footer-logo p{
    font-size: 18px;
    color: rgba(255,255,255,0.8);

    margin-bottom: 35px;
}

/* Button */
.footer-btn{
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 18px 42px;

    border-radius: 60px;

    background: rgba(255,255,255,0.18);

    backdrop-filter: blur(8px);

    color: #fff;
    text-decoration: none;

    font-size: 18px;
    font-weight: 600;

    transition: all 0.3s ease;
}

.footer-btn:hover{
    background: #c89b6d;
    color: #fff;

    transform: translateY(-4px);
}

/* Divider */
.footer-divider{
    width: 100%;
    height: 1px;

    background: rgba(255,255,255,0.18);

    margin-bottom: 45px;
}

/* Bottom */
.footer-bottom{
    display: grid;
    grid-template-columns: repeat(5,1fr);

    gap: 30px;
}

/* Info Box */
.footer-info-box{
    display: flex;
    align-items: flex-start;
    gap: 18px;
}

/* Icon */
.footer-icon{
    min-width: 54px;
    width: 54px;
    height: 54px;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(255,255,255,0.12);

    font-size: 20px;

    transition: all 0.3s ease;
}

.footer-info-box:hover .footer-icon{
    background: #c89b6d;
    transform: translateY(-3px);
}

/* Info */
.footer-info h4{
    font-size: 14px;
    font-weight: 700;

    letter-spacing: 1px;

    margin-bottom: 10px;

    color: #fff;
}

.footer-info p{
    font-size: 15px;
    line-height: 1.7;

    color: rgba(255,255,255,0.82);

    margin: 0;
}

/* Social Media Section */
.footer-social-divider{
    width: 100%;
    height: 1px;
    background: rgba(255,255,255,0.18);
    margin: 45px 0;
}

.footer-social{
    text-align: center;
    padding: 20px 0;
}

.footer-social h3{
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 25px;
    color: #fff;
}

.social-icons{
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.social-icon{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    color: #fff;
    font-size: 20px;
    transition: all 0.3s ease;
    text-decoration: none;
    border: 1px solid rgba(255,255,255,0.3);
}

.social-icon:hover{
    background: #c89b6d;
    border-color: #c89b6d;
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(192, 125, 58, 0.3);
}

/* Tablet */
@media (max-width: 1199px){

    .footer-bottom{
        grid-template-columns: repeat(2,1fr);
    }

}

/* Mobile */
@media (max-width: 991px){

    .premium-footer{
        padding: 60px 0 25px;
    }

    .footer-logo img {
        width: 110px;
    }

    .footer-logo h2{
        font-size: 32px;
    }

    .footer-logo p{
        font-size: 14px;
    }

    .footer-btn{
        width: 100%;
        padding: 14px 18px;
        font-size: 15px;
    }

    .footer-bottom{
        grid-template-columns: 1fr;
        gap: 20px;
    }

}

@media (max-width: 767px){

    .premium-footer{
        padding: 50px 0 20px;
    }

    .footer-logo img {
        width: 100px;
    }

    .footer-logo h2{
        font-size: 28px;
        letter-spacing: 2px;
    }

    .footer-logo p{
        font-size: 13px;
        margin-bottom: 25px;
    }

    .footer-btn{
        width: 100%;
        padding: 12px 16px;
        font-size: 13px;
    }

    .footer-bottom{
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .footer-info-box{
        padding-bottom: 18px;

        border-bottom: 1px solid rgba(255,255,255,0.08);
    }

    .footer-icon {
        width: 48px;
        height: 48px;
        font-size: 18px;
    }

    .footer-info h4{
        font-size: 12px;
    }

    .footer-info p{
        font-size: 13px;
    }

    .footer-social h3{
        font-size: 14px;
        margin-bottom: 18px;
    }

    .social-icons{
        gap: 12px;
    }

    .social-icon{
        width: 42px;
        height: 42px;
        font-size: 16px;
    }

}


/* form */

.footer-top {
  display: flex;
  gap: 60px;
  flex-wrap: wrap;
  align-items: flex-start;
  padding: 60px 0 40px;
}

.footer-left {
  flex: 1;
  min-width: 280px;
}

.footer-form {
  flex: 1;
  min-width: 320px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
  padding: 35px 30px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-form h3 {
  color: white;
  margin-bottom: 20px;
  font-size: clamp(1.2rem, 3vw, 1.5rem);
  text-align: center;
}

.form-row {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
  flex-wrap: wrap;
}

.form-row input,
.form-row select,
textarea {
  flex: 1;
  min-width: 150px;
  padding: 12px 14px;
  border: none;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
  color: #333;
}

.form-row input:focus,
.form-row select:focus,
textarea:focus {
  outline: none;
  background: white;
  box-shadow: 0 0 0 3px rgba(139, 69, 19, 0.3);
}

textarea {
  width: 100%;
  resize: vertical;
  min-height: 100px;
}

.form-submit-btn {
  width: 100%;
  padding: 12px 16px;
  margin-top: 10px;
  background: #8B4513;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}

.form-submit-btn:hover {
  background: #A0522D;
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 1199px) {
  .footer-top {
    flex-wrap: wrap;
    gap: 35px;
  }

  .footer-form {
    padding: 30px 24px;
    min-width: 100%;
  }

  .form-row input,
  .form-row select,
  textarea {
    padding: 11px 13px;
    font-size: 0.95rem;
  }
}

@media (max-width: 992px) {
  .footer-top {
    flex-direction: column;
    gap: 40px;
  }

  .footer-form {
    padding: 28px 22px;
    width: 100%;
  }

  .footer-form h3 {
    font-size: 1.3rem;
    margin-bottom: 18px;
  }

  .form-row {
    margin-bottom: 13px;
    gap: 12px;
  }

  .form-row input,
  .form-row select,
  textarea {
    padding: 11px 12px;
    font-size: 0.95rem;
  }

  .form-submit-btn {
    padding: 11px 14px;
    font-size: 0.95rem;
    margin-top: 8px;
  }
}

@media (max-width: 768px) {
  .footer-form {
    padding: 24px 18px;
  }

  .footer-form h3 {
    font-size: 1.2rem;
    margin-bottom: 16px;
  }

  .form-row {
    flex-direction: column;
    margin-bottom: 12px;
    gap: 10px;
  }

  .form-row input,
  .form-row select {
    width: 100%;
    padding: 10px 11px;
    font-size: 0.9rem;
  }

  textarea {
    padding: 10px 11px;
    font-size: 0.9rem;
    min-height: 80px;
  }

  .form-submit-btn {
    padding: 10px 12px;
    font-size: 0.9rem;
    margin-top: 6px;
  }
}

@media (max-width: 480px) {
  .footer-form {
    padding: 20px 16px;
  }

  .footer-form h3 {
    font-size: 1.1rem;
    margin-bottom: 14px;
  }

  .form-row {
    flex-direction: column;
    margin-bottom: 10px;
    gap: 8px;
  }

  .form-row input,
  .form-row select {
    width: 100%;
    padding: 9px 10px;
    font-size: 0.85rem;
  }

  textarea {
    padding: 9px 10px;
    font-size: 0.85rem;
    min-height: 70px;
  }

  .form-submit-btn {
    padding: 9px 10px;
    font-size: 0.85rem;
    margin-top: 5px;
  }
}

/* form */



/* cursor-effect */

/* Hide Default Cursor */
/* body{
    cursor: none;
} */

/* Main Cursor */
.custom-cursor{
    position: fixed;
    top: 0;
    left: 0;

    width: 40px;
    height: 40px;

    border: 2px solid #c89b6d;
    border-radius: 50%;

    pointer-events: none;

    transform: translate(-50%, -50%);

    transition:
        width 0.3s ease,
        height 0.3s ease,
        background 0.3s ease,
        transform 0.08s linear;

    z-index: 999999;
}

/* Dot Cursor */
.cursor-dot{
    position: fixed;
    top: 0;
    left: 0;

    width: 8px;
    height: 8px;

    background: #c89b6d;

    border-radius: 50%;

    pointer-events: none;

    transform: translate(-50%, -50%);

    z-index: 999999;
}

/* Hover Effect */
.custom-cursor.hover{
    width: 70px;
    height: 70px;

    background: rgba(200,155,109,0.15);
}

/* Hide On Mobile */
@media (max-width: 991px){

    .custom-cursor,
    .cursor-dot{
        display: none;
    }

    body{
        cursor: auto;
    }

}



/* section-2 */

 .wood-stats-section {
    height: 100vh;
    min-height: 700px;
  }

  .wood-bg-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .wood-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.15);
  }

  .stats-box {
    background: rgba(60, 40, 20, 0.45);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border-radius: 28px;
    padding: 50px 35px;
  }

  .stat-item h2 {
    color: #fff4d6;
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 25px;
    line-height: 1;
    letter-spacing: 1px;
  }

  .stat-item p {
    color: #ffffff;
    font-size: 22px;
    line-height: 1.4;
    font-weight: 400;
    margin: 0;
  }

  @media (max-width: 991px) {
    .wood-stats-section {
      height: auto;
      padding: 100px 0;
    }

    .stats-box {
      padding: 40px 25px;
    }

    .stat-item h2 {
      font-size: 38px;
    }

    .stat-item p {
      font-size: 18px;
    }
  }

  @media (max-width: 767px) {
    .stats-box {
      border-radius: 22px;
    }

    .stat-item h2 {
      font-size: 32px;
      margin-bottom: 18px;
    }

    .stat-item p {
      font-size: 16px;
    }
  }

  @media (max-width: 480px) {
    .wood-stats-section {
      height: auto;
      min-height: auto;
      padding: 60px 0;
    }

    .stats-box {
      padding: clamp(20px, 3vw, 30px);
      border-radius: clamp(16px, 4vw, 20px);
      background: rgba(60, 40, 20, 0.5);
    }

    .stat-item {
      margin-bottom: clamp(15px, 2vw, 20px);
      padding-bottom: clamp(15px, 2vw, 20px);
      border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .stat-item:last-child {
      margin-bottom: 0;
      padding-bottom: 0;
      border-bottom: none;
    }

    .stat-item h2 {
      font-size: clamp(20px, 3.5vw, 26px);
      margin-bottom: clamp(10px, 1.5vw, 14px);
      letter-spacing: 0.5px;
    }

    .stat-item p {
      font-size: clamp(13px, 2vw, 15px);
      line-height: 1.5;
    }
  }

  /* go to form  */
 /* Fixed Go to Form Button */
.fixed-form-btn {
    position: fixed;
    bottom: 25px;
    right: 20px;
    background: linear-gradient(135deg, #e11d48, #be123c);
    color: white;
    border: none;
    border-radius: 50px;
    padding: 14px 22px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(225, 29, 72, 0.35);
    transition: all 0.3s ease;
    z-index: 1000;
    cursor: pointer;
}

.fixed-form-btn:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 12px 30px rgba(225, 29, 72, 0.45);
    background: linear-gradient(135deg, #be123c, #9f1239);
}

.fixed-form-btn i {
    font-size: 22px;
    transition: transform 0.3s ease;
}

.fixed-form-btn:hover i {
    transform: translateY(-2px) rotate(-12deg);
}

/* Responsive */
@media (max-width: 768px) {
    .fixed-form-btn {
        bottom: 20px;
        right: 16px;
        padding: 12px 18px;
        font-size: 14px;
    }
    
    .fixed-form-btn span {
        display: block;  
        font-size: 14px;
    }
    
    .fixed-form-btn i {
        font-size: 20px;
    }
}