:root {
  /* BACKGROUNDS */
  --bg: #0b0f14;
  --bg-soft: #101820;
  --bg-card: #0e1620;

  /* TEXT */
  --text: #0f172a;
  --text-soft: #64748b;
  --white: #ffffff;
  --light: #f4f7fa;

  /* LINES */
  --line: rgba(255, 255, 255, 0.08);
  --line-dark: rgba(15, 23, 42, 0.08);

  /* PRIMARY BRAND (FROM LOGO) */
  --primary: #007CC2;
  --primary-dark: #005f94;   /* darker shade */
  --primary-light: #3399d6;  /* lighter shade */
  --primary-soft: rgba(0, 124, 194, 0.1); /* subtle background */
  
/* ACCENT (SAME FAMILY – KEEP IT CLEAN) */
  --accent: #007CC2;
  --accent-dark: #005f94;
  
/*   --radius: 14px;
--radius-lg: 22px; */
  
  --border: rgba(255,255,255,0.08);
  --border: rgba(255,255,255,0.2);

  /* UI */
  --radius: 28px;
  --radius-sm: 18px;

  /* SHADOWS */
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
  --shadow-dark: 0 20px 60px rgba(0, 0, 0, 0.4);

  /* LAYOUT */
  --container: 1200px;
  --transition: 0.35s ease;
}


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  transition: var(--transition);
}

html {
  scroll-behavior: smooth;
}

body {
  /* font-family: "Inter", sans-serif; */
  font-family: "Rubik", sans-serif;
  /* background: var(--light); */
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
}

button,
input,
select,
textarea {
  font: inherit;
}

.container {
  width: min(100% - 32px, var(--container));
  margin-inline: auto;
}

.section {
  padding: 110px 0;
}

.section-dark {
  background: var(--bg);
  color: var(--white);
}

.section-light {
  background: #fff;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 18px;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--accent);
  display: inline-block;
}

.section-head {
  max-width: 760px;
  margin: 0 auto 60px;
  text-align: center;
}

.section-head h2 {
  font-size: clamp(2.4rem, 5vw, 4.8rem);
  line-height: 0.95;
  letter-spacing: -0.05em;
  margin-bottom: 18px;
}

.section-head p:last-child {
  color: var(--text-soft);
  max-width: 640px;
  margin-inline: auto;
}

.section-dark .section-head p:last-child {
  color: rgba(255,255,255,0.72);
}

 /* HEADER */
.site-header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(15, 17, 21, 0.7);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.site-header.scrolled {
  background: rgba(15, 17, 21, 0.92);
}

.nav-wrap {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo img {
  width: 200px;  
  margin-left: -50px;
}

.logo .fas {
  font-size: 24px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.logo-head {
  line-height: 0.1;
  font-weight: bold;
  font-size: 14px;
  text-transform: uppercase;
}

.logo small {
  font-size: 12px;
  font-weight: normal;
}

.logo i {
  color: var(--accent);
}

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
  color: rgba(255,255,255,0.85);
}

.nav a {
  transition: var(--transition);
}

.nav a:hover {
  color: var(--white);
}

.nav-cta {
  background: var(--primary);
  color: var(--white);
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 700;
}

.menu-toggle {
  display: none;
  background: transparent;
  border: none;
  color: var(--white);
  font-size: 1.3rem;
  cursor: pointer;
}
 







/* HERO */
.hero {
  /* background:
    radial-gradient(circle at top right, rgba(0, 124, 194, 0.15), transparent 28%),
    linear-gradient(180deg, #0f1115 0%, #12151b 100%); */
  color: var(--white);
  padding: 80px 0 70px;
  background: url(../images/projects.jpg) no-repeat center/cover;
  background-attachment: fixed;
  position: relative;
}

.hero::before {
  position: absolute;
  content: '';
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
}

.hero-grid {
  display: grid;
  /* grid-template-columns: 1.05fr 0.95fr; */
  grid-template-columns: 1.05fr 0.75fr;
  gap: 60px;
  align-items: center;
}

.hero-content h1 {
  font-size: clamp(3rem, 7vw, 6.4rem);
  line-height: 0.9;
  /* letter-spacing: -0.06em; */
  margin-bottom: 22px;
  max-width: 11ch;
}

.hero-text {
  font-size: 1.08rem;
  color: rgba(255,255,255,0.76);
  color: #fff;
  max-width: 620px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: none;
  border-radius: 999px;
  /* border-radius: 6px; */
  border-radius: ;
  padding: 16px 24px;
  font-weight: 700;
  transition: var(--transition);
  cursor: pointer;
}

.btn i {
  margin: 0 10px;
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 12px 30px rgba(0, 124, 194, 0.12);;
}

.btn-primary:hover {
  transform: translateY(-2px);
  background: var(--primary-dark);
  box-shadow: 0 10px 25px rgba(0, 124, 194, 0.25);
}

.btn-secondary {
  background: rgba(255,255,255,0.08);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
}

.btn-secondary:hover {
  transform: translateY(-2px);
  background: rgba(255,255,255,0.12);
}

.hero-mini-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 42px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.hero-mini-proof .flex {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--card);
  background: rgba(225, 225, 225, 0.15);
  padding: 12px 15px;
  border-radius: 14px;
  border: 1px solid var(--border);
  border: 1px solid rgba(225, 225, 225, 0.3);
  min-width: 160px;
}


.hero-mini-proof .flex i {
  margin-top: 10px;
  color: var(--primary);
  /* font-size: 1.8rem; */
  font-size: 1.2rem;
}

.hero-mini-proof .text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hero-mini-proof strong {
  font-size: 1.35rem;
}

.hero-mini-proof span {
  color: rgba(255,255,255,0.68);
  color: #fff;
  font-size: 0.95rem;
}

.hero-visual {
  position: relative;
}

.hero-image-card {
  /* border-radius: 36px; */
  overflow: hidden;
  background: #1b1f27;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: var(--shadow-dark);
}

.hero-image-card img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.floating-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(255,255,255,0.95);
  color: #111;
  padding: 16px 18px;
  border-radius: 4px !important;
  box-shadow: var(--shadow);
  max-width: 260px;
}

.floating-card i {
  width: 56px;
  height: 56px;
  border-radius: 4px;
  display: grid;
  place-items: center;
  background: var(--primary-soft);
  color: var(--accent-dark);
  font-size: 1.8rem;
}

.floating-card h4 {
  font-size: 0.98rem;
  margin-bottom: 2px;
}

.floating-card p {
  font-size: 0.88rem;
  color: #6b7280;
}

.top-card {
  top: 40px;
  left: -30px;
}

.bottom-card {
  right: -20px;
  bottom: 40px;
}

/* TRUST STRIP */
.trust-strip {
  background: #fff;
  padding: 22px 0;
  border-bottom: 1px solid var(--line-dark);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.trust-item {
  background: rgba(0, 124, 194, 0.06);
  border: 1px solid rgba(0, 124, 194, 0.15);
  border-radius: 4px;
  padding: 16px 18px;
  font-weight: 600;
  /* font-size: 0.96rem; */
  display: flex;
  align-items: center;
}

.trust-item i {
  color: var(--accent);
  margin-right: 16px;
  /* font-size: 1.8rem; */
}

/* SERVICES */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--line-dark);
  /* border-radius: var(--radius); */
  border-radius: 8px;
  padding: 30px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  overflow: hidden;
}

.service-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), transparent);
}

.service-card:hover {
  transform: translateY(-8px);
}

.service-number {
  position: absolute;
  top: 24px;
  top: 0px;
  right: 24px;
  /* font-size: 0.92rem; */
  font-size: 4.5rem;
  font-weight: 800;
  /* color: rgba(17, 24, 39, 0.18); */
  color: rgba(17, 24, 39, 0.05);
}

.service-icon {
  width: 62px;
  width: 80px;
  height: 62px;
  height: 80px;
  /* border-radius: 18px; */
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--primary-soft);
  color: var(--accent-dark);
  font-size: 1.8rem;
  margin-bottom: 22px;
}

.service-card h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
  letter-spacing: -0.03em;
}

.service-card p {
  color: var(--text-soft);
}

/* PROJECTS */
.projects-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 22px;
}

#projects .btn {
  margin: 20px;
}

.project-card {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  height: 350px;
  background: #1a1d24;
}

.project-card.large {
  /* min-height: 520px; */
  /* min-height: 400px; */
  max-height: 350px;
}

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

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

.project-overlay {
  position: absolute;
  inset: auto 0 0 0;
  padding: 28px;
  background: linear-gradient(to top, rgba(0,0,0,0.78), rgba(0,0,0,0.06));
}

.project-overlay span {
  display: inline-block;
  background: rgba(0,0,0,0.5);
  border: 1px solid rgba(255,255,255,0.12);
  color: #fff;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.85rem;
  margin-bottom: 14px;
}

.project-overlay h3 {
  font-size: 1.6rem;
  color: #fff;
  margin-bottom: 8px;
  line-height: 1.2;
}

.project-overlay p {
  color: rgba(255,255,255,0.74);
}

/* WHY */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.why-card {
  background: #fff;
  border-radius: var(--radius);
  /* border-radius: 8px; */
  padding: 30px;
  border: 1px solid var(--line-dark);
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.why-card:hover {
  transform: translateY(-6px);
}

.why-card i {
  width: 58px;
  height: 58px;
  /* border-radius: 16px; */
  display: grid;
  place-items: center;
  background: var(--primary-soft);
  color: var(--accent-dark);
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.why-card h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.why-card p {
  color: var(--text-soft);
}

/* STATS */
.stats-section {
  padding-top: 20px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.stat-card {
  background: linear-gradient(180deg, #14171d 0%, #0f1115 100%);
  color: #fff;
  padding: 38px 30px;
  border-radius: 28px;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: var(--shadow-dark);
}

.stat-card h3 {
  font-size: clamp(2.4rem, 4vw, 4rem);
  letter-spacing: -0.05em;
  margin-bottom: 10px;
}

.stat-card p {
  color: rgba(255,255,255,0.7);
}

/* ABOUT */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 42px;
  align-items: start;
}

.about-content h2 {
  font-size: clamp(2.4rem, 5vw, 4.6rem);
  line-height: 0.96;
  letter-spacing: -0.05em;
  margin-bottom: 18px;
}

.about-content > p {
  color: var(--text-soft);
  max-width: 620px;
}

.about-points {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.about-points div {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
}

.about-points i {
  color: var(--accent);
}

.about-cards {
  display: grid;
  gap: 20px;
}

.about-box {
  background: #fff;
  border: 1px solid var(--line-dark);
  border-radius: 24px;
  padding: 28px;
  box-shadow: var(--shadow);
}

.about-box i {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: var(--primary-soft);
  color: var(--accent-dark);
  margin-bottom: 18px;
  font-size: 1.8rem;
}

.about-box h3 {
  margin-bottom: 10px;
  font-size: 1.25rem;
}

.about-box p {
  color: var(--text-soft);
}

/* FAQ */
.faq-section {
  background: #fff;
}

.faq-list {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  gap: 18px;
}

.faq-item {
  background: #fff;
  border: 1px solid var(--line-dark);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.faq-question {
  width: 100%;
  background: transparent;
  border: none;
  padding: 26px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  cursor: pointer;
  text-align: left;
}

.faq-question span {
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  font-weight: 700;
  line-height: 1.35;
}

.faq-question i {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #f3f4f6;
  transition: var(--transition);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-answer p {
  padding: 0 28px 26px;
  color: var(--text-soft);
}

.faq-item.active .faq-question i {
  transform: rotate(45deg);
  background: var(--accent);
  color: #111;
}

/* CONTACT */
.contact-section {
  background: linear-gradient(180deg, #11141a 0%, #0f1115 100%);
  color: #fff;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 36px;
  align-items: start;
}

.contact-copy h2 {
  font-size: clamp(2.4rem, 5vw, 4.8rem);
  line-height: 0.96;
  letter-spacing: -0.05em;
  margin-bottom: 18px;
}

.contact-copy p {
  color: rgba(255,255,255,0.72);
  max-width: 560px;
}

.contact-points {
  display: grid;
  gap: 16px;
  margin-top: 28px;
}

.contact-points div {
  display: flex;
  align-items: center;
  gap: 16px;
  font-weight: 600;
}

.contact-points i {
  color: var(--accent);
}

.form {
  /* border: 3px solid blue; */
}

.contact-form {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 32px;
  padding: 24px;
  backdrop-filter: blur(10px);
  width: 100%;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 18px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.contact-form label {
  font-weight: 600;
  color: rgba(255,255,255,0.9);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  color: #fff;
  border-radius: 18px;
  padding: 16px 18px;
  outline: none;
  width: 100%;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255,255,255,0.45);
}

.contact-form textarea {
  resize: vertical;
}

.full-btn {
  width: 100%;
  justify-content: center;
  margin-top: 10px;
}



/* REVEAL ANIMATION */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: 0.8s ease;
}

.reveal.show {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 { transition-delay: 0.08s; }
.delay-2 { transition-delay: 0.16s; }
.delay-3 { transition-delay: 0.24s; }

/* RESPONSIVE */
@media (max-width: 1100px) {
  .services-grid,
  .why-grid,
  .stats-grid,
  .materials-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .projects-grid {
    grid-template-columns: 1fr 1fr;
  }

  .project-card.large {
    grid-column: span 2;
  }

  .about-grid,
  .contact-grid,
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    max-width: 700px;
  }

  .top-card {
    left: 10px;
  }

  .bottom-card {
    right: 10px;
  }

  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }

}

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

  .nav {
    position: absolute;
    top: 82px;
    left: 16px;
    right: 16px;
    background: rgba(15, 17, 21, 0.98);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 24px;
    padding: 20px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    box-shadow: var(--shadow-dark);
  }

  .nav.active {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }

  .hero {
    padding-top: 60px;
  }

  .hero-content h1,
  .section-head h2,
  .about-content h2,
  .contact-copy h2 {
    line-height: 0.95;
  }

  .floating-card {
    position: static;
    margin-top: 16px;
    max-width: 100%;
  }

  .hero-mini-proof {
    gap: 18px;
  }

  .trust-grid,
  .services-grid,
  .why-grid,
  .stats-grid,
  .materials-grid,
  .projects-grid,
  .form-row {
    grid-template-columns: 1fr;
  }

  .project-card.large {
    grid-column: auto;
  }

  .faq-question {
    padding: 22px 20px;
  }

  .faq-answer p {
    padding: 0 20px 22px;
  }

  .contact-form {
    padding: 24px;
  }

  .footer-wrap {
    flex-direction: column;
    align-items: flex-start;
  }
}




/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 50px;
    right: 10%;
    border-radius: 50%;
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #1A9810;
    /* 
    bottom: 50px;
    right: 10%;
    z-index: 1000;
    width: 50px;
    height: 50px; 
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #fff; */
    animation: pulse2 2s infinite; /* Apply pulse animation */
    transition: transform 0.3s ease;
}

.whatsapp-float img {
    width: 200px;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

.whatsapp-float img {
    width: 50px;
}

/* Pulse animation */
@keyframes pulse2 {
    0% {
        box-shadow: 0 0 0 0  rgba(33,255,125,0.5);
    }
    70% {
        box-shadow: 0 0 0 20px rgba(79, 70, 229, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(79, 70, 229, 0);
    }
}

.project-filters {
  text-align: center;
  margin-bottom: 30px;
}

.filter-btn {
  background: transparent;
  border: 1px solid #ccc;
  padding: 8px 15px;
  margin: 5px;
  cursor: pointer;
  border-radius: 20px;
  transition: 0.3s;
  color: #ccc;
}

.filter-btn.active,
.filter-btn:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

.filter-item {
  transition: all 0.4s ease;
}

.filter-hide {
  opacity: 0;
  transform: scale(0.9);
  pointer-events: none;
  position: absolute;
}

/* MATERIAL CARD */
.material-card {
  margin-bottom: 32px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 72px;
}

#materials .btn {
  color: var(--primary);
  padding-left: 0;
}

/* MATERIAL GRID */
.material-image-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 16px;
  margin-bottom: 32px;
}

.material-card .list-item {
  margin-bottom: 16px;
}

.material-card .list-item i {
  color: var(--primary);
}

.material-item {
  height: 200px;
  overflow: hidden;
  transition: transform 0.3s ease;
  /* box-shadow: 0 10px 30px rgba(0,0,0,0.12); */
  border-radius: 16px;
  position: relative;
}

.material-item:hover {
  transform: scale(1.02);
}

.material-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* border-radius: 16px; */
}

.material-body h3 {
  margin-bottom: 20px;
}

.material-body > p {
  margin-bottom: 20px;
}

.overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 14px;
  color: #fff;
  font-weight: 600;
  font-size: 1rem;

  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.75),
    rgba(0, 0, 0, 0.3),
    transparent
  );
}

/* VIDEO SECTION */
.videos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.video-card h3 {
  margin-top: 12px;
  font-size: 1.05rem;
  color: #fff;
}

.video-wrapper {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9 ratio */
  /* border-radius: 20px; */
  overflow: hidden;
  border: 1px solid var(--line);
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* FURNITURE SECTION */
.furniture-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 40px;
}

#furniture .btn {
  color: var(--primary);
  padding: 0;
  margin: 30px auto;
}

.furniture-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
}

.furniture-item img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: 0.4s ease;
}

/* OVERLAY */
.furniture-item .overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 15px;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
  color: #fff;
}

.furniture-item .overlay h3 {
  font-size: 16px;
}

/* HOVER EFFECT */
.furniture-item:hover img {
  transform: scale(1.05);
}

/* MOBILE */
@media(max-width: 992px){
  .furniture-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(max-width: 500px){
  .furniture-grid {
    grid-template-columns: 1fr;
  }

  .furniture-item img {
    height: 220px;
  }
}


@media (max-width: 600px) {

  .hero-mini-proof {
    flex-direction: column;
  }
  
  .review-top {
    display: grid;
    grid-template-columns: column;
  }
}

/* FOOTER */ 
.footer {
  background: #0f172a;
  color: #cbd5f5;
  padding: 80px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.footer-col h3 {
  color: #fff;
  margin-bottom: 18px;
}

.footer-col p {
  line-height: 1.6;
  font-size: 14px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

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

.footer-col ul li a {
  color: #cbd5f5;
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s;
}

.footer-col ul li a:hover {
  color: #38bdf8;
  padding-left: 5px;
}

/* BRAND */
.footer-contact {
  margin-top: 15px;
  font-size: 14px;
}

#footer-logo {
  width: 300px;
  margin-left: -75px;
  margin-bottom: 24px;
}

.footer-contact div {
  margin-bottom: 6px;
}

/* INFO */
.footer-info .info-item {
  display: flex;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 14px;
  align-items: center;
}

/* SOCIALS */
.footer-socials {
  margin-top: 20px;
  display: flex;
  gap: 10px;
}

.footer-socials a {
  width: 35px;
  height: 35px;
  background: #1e293b;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fff;
  transition: 0.3s;
}

.footer-socials a:hover {
  background: #38bdf8;
  color: #000;
}

/* DIVIDER */
.footer-divider {
  height: 1px;
  background: #1e293b;
  margin: 40px 0 20px;
}

/* BOTTOM */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  font-size: 13px;
  color: #94a3b8;
}

.footer-bottom .credit {
  opacity: 0.7;
}

/* MOBILE */
@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
}

@media (max-width: 500px) {
  .material-card {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
  }
  
}

/* FEATURED VIDEO */
.featured-video {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 30px;
  margin-top: 40px;
  align-items: center;
}

.featured-info h3 {
  font-size: 22px;
  margin-bottom: 10px;
}


.testimonial {
  padding: 100px 0;
}

.testimonial-wrapper {
  display: flex;
  background: #fff;
  padding: 50px 10px;
  border-radius: 8px;
  gap: 30px;
}

.testimonial-wrapper .left {
  display: flex;
  align-items: center;
}

.testimonial-wrapper span {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid #fff;
}

.testimonial-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-wrapper .second {
  margin-left: -20px;
}

.testimonial-wrapper .third {
  margin-left: -20px;
}

/* ==============================
   STAT SECTION
============================== */
/* STATS OVERLAY (premium depth) */
.stats-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(216,148,28,0.15), transparent);
}

/* ITEM CARD FEEL */
.stats-item {
  position: relative;
  padding: 20px 10px;
  transition: 0.4s;
}

/* ICON STYLE */
.stats-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 15px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(216,148,28,0.1);
  transition: 0.4s;
}

.stats-icon i {
  font-size: 28px;
  color: var(--primary-color);
}

/* COUNTER TEXT */
.stats-item h1 {
  font-size: 42px;
  margin-bottom: 5px;
}

/* LABEL */
.stats-item p {
  opacity: 0.8;
  font-size: 14px;
}

/* HOVER EFFECT */
.stats-item:hover {
  transform: translateY(-8px);
}

.stats-item:hover .stats-icon {
  background: var(--primary-color);
}

.stats-item:hover .stats-icon i {
  color: #fff;
  transform: scale(1.1);
}

#stats {
  background: linear-gradient(135deg, #212529, #2c2c2c);
}


/* VIDEO SECTION */
.video-section {
  padding: 60px 20px;
  background: #f9f9f9;
  text-align: center;
}

.video-section h2 {
  font-size: 28px;
  margin-bottom: 30px;
}

/* GRID (premium look) */
.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-bottom: 50px;
}

.video-grid iframe {
  width: 100%;
  height: 200px;
  border-radius: 10px;
  border: none;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.video-grid .video-card:hover {
  transform: scale(1.03);
}

.video-group-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
}

/* AUTO SECTION */
.video-auto h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
}

.video-auto iframe {
  width: 100%;
  max-width: 900px;
  height: 400px;
  border: none;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.video-cta {
  text-align: center;
  margin-top: 50px;
  padding: 30px;
  background: #f9fafb;
  border-radius: 10px;
}

.video-cta h3 {
  margin-bottom: 10px;
}

.video-cta p {
  margin-bottom: 20px;
  color: #666;
}

.cta-button {
  display: inline-block;
  padding: 12px 25px;
  background: #111;
  color: #fff;
  border-radius: 6px;
  text-decoration: none;
  transition: 0.3s ease;
}

.cta-button:hover {
  background: #333;
}

/* REVIEW SECTION */
.review-top {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-bottom: 36px;
}

.review-card hr {
  margin-bottom: 12px;
  border: 0;
  height: 1px;
  background: rgba(225, 225, 225, 0.8);
}

.reviews-header {
  text-align: center;
}

.reviews-header h2 {
  font-size: 32px;
  margin-bottom: 10px;
}

.reviews-header p {
  color: #666;
  margin-bottom: 20px;
}

.rating-summary {
  margin-bottom: 40px;
}

.stars {
  color: #f5b301;
  font-size: 20px;
  display: block;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  /* max-width: 1100px; */
  margin: 0 auto 40px;
}

.review-card {
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

.review-card:hover {
  transform: translateY(-5px);
}

.review-text {
  font-size: 14px;
  color: #333;
  margin-bottom: 15px;
  line-height: 1.5;
}

.review-card h4 {
  font-size: 13px;
  color: #777;
}

.review-btn {
  display: inline-block;
  padding: 12px 25px;
  background: var(--primary);
  color: #fff;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
}

.review-btn:hover {
  background: var(--primary-dark);
}

.review-badge {
  background: rgba(0, 124, 194, 0.06);
  border: 1px solid rgba(0, 124, 194, 0.15);
  padding: 14px 18px;
  border-radius: 999px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 16px
}

.review-badge i {
  color: var(--accent);
  font-size: 1.8rem;
}

.review-card span {
  color: var(--primary-dark);
}

.reviews-header .eyebrow {
  color: var(--primary);
}
/* 
Review Section Featurist */
.reviews-section {
  padding: 80px 20px;
  background: #f9fafb;
  text-align: center;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
}

.review-label {
  color: #888;
  font-size: 13px;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.review-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #111;
}

.review-subtitle {
  font-size: 16px;
  color: #555;
  max-width: 600px;
  margin: 0 auto 40px;
}

.reviews-widget {
  margin-top: 20px;
}


/* STATS SECTION */
.stats-wrapper {
  display: flex;
  justify-content: center;
  gap: 50px;
  margin: 20px 0 40px;
  text-align: center;
}

.stat-box h3 {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 5px;
}

.stat-box p {
  font-size: 14px;
  color: #666;
}

.counter {
  transition: all 0.3s ease;
}

.stats-wrapper:hover .counter {
  transform: scale(1.05);
}

/* Review Quote highlight */ 
.review-highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 15px;
  margin: 30px 0;
}

.highlight-card {
  background: #fff;
  padding: 15px 18px;
  border-radius: 10px;
  box-shadow: 0 4px 18px rgba(0,0,0,0.06);
  font-size: 14px;
  color: #444;
  transition: 0.3s ease;
}

.highlight-card p {
  margin-bottom: 10px;
  font-style: italic;
}

.highlight-card span {
  font-size: 12px;
  color: #888;
}

.highlight-card:hover {
  transform: translateY(-4px);
}

.review-top {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  margin: 20px 0 40px;
}

.review-badge {
  background: #111827;
  color: #fff;
  padding: 10px 16px;
  border-radius: 30px;
  font-size: 14px;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.review-card {
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.rating {
  color: #fbbf24;
  margin-bottom: 10px;
}

.review-card p {
  font-size: 15px;
  line-height: 1.6;
}

.review-card h4 {
  margin-top: 10px;
  font-size: 16px;
}

.review-card span {
  font-size: 13px;
  color: #6b7280;
}

.review-cta {
  margin-top: 40px;
  text-align: center;
}

/* MOBILE */
@media(max-width: 768px){
  .reviews-grid {
    grid-template-columns: 1fr;
  }
}