/* ================================================================
   RESET & GLOBAL
================================================================ */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  color: #333;
  overflow-x: hidden;
}

/* ================================================================
   HERO SECTION
================================================================ */

.hero-section {
  position: relative;
  height: 100vh;
  background-image: url("assets/Group 48095438.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: white;
  overflow: hidden;
}

/* Dark overlay */
.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  z-index: 1;
}

/* --- Navbar --- */
.hero-nav {
  position: absolute;
  width: 100%;
  top: 0;
  z-index: 3;
  padding: 25px 0;
  background: transparent;
}

.logo {
  font-size: 28px;
  font-weight: 600;
  letter-spacing: 0.4px;
  color: #fff !important;
}

.nav-link {
  font-size: 15px;
  font-weight: 400;
  margin-left: 24px;
  color: rgba(255, 255, 255, 0.85) !important;
  transition: color 0.25s ease;
}

.nav-link:hover {
  color: #fff !important;
}

/* --- Hero Content --- */
.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-content .container {
  transform: translateY(-80px);
}

.hero-title {
  font-weight: 600;
  font-size: clamp(32px, 4vw, 62px);
  line-height: 1.18;
  margin-bottom: 28px;
  letter-spacing: -0.5px;
}

.hero-subtext {
  font-weight: 400;
  font-size: clamp(13px, 1.1vw, 17px);
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
}

/* ================================================================
   WHY CHOOSING US SECTION
================================================================ */

.why-section {
  padding: 100px 0;
  background: #fff;
}

.why-heading-col {
  display: flex;
  align-items: flex-start;
}

.why-heading {
  font-size: 34px;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.3;
}

.why-feature {
  padding-right: 20px;
}

.feature-title {
  font-size: 19px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 12px;
}

.feature-desc {
  font-size: 14px;
  font-weight: 400;
  color: #6e6e6e;
  line-height: 1.95;
  margin-bottom: 14px;
}

.feature-link {
  font-size: 13px;
  font-weight: 500;
  color: #e8a84a;
  text-decoration: none;
  transition: opacity 0.2s;
}

.feature-link:hover {
  opacity: 0.7;
  color: #e8a84a;
}

/* ================================================================
   BEST SELLING PRODUCT SECTION
================================================================ */

.products-section {
  background: #ebebeb;
  padding: 72px 0 60px;
}

.section-title {
  font-size: 32px;
  font-weight: 700;
  color: #1a1a1a;
  text-align: center;
  margin-bottom: 50px;
  letter-spacing: -0.3px;
}

/* --- Slider Layout --- */
.products-slider-wrapper {
  display: flex;
  align-items: center;
  gap: 40px;
}

/* Arrow buttons */
.slider-arrow {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border: 1px solid #ddd;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 13px;
  color: #555;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: background 0.22s, color 0.22s, box-shadow 0.22s;
  z-index: 2;
}

.slider-arrow:hover {
  background: #2b2b2b;
  color: #fff;
  border-color: #2b2b2b;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
}

/* Clip container - hides overflow */
.slider-clip {
  flex: 1;
  overflow: hidden;
  padding-top: 28px;
  margin-top: -28px;
}

/* Sliding track - translates with JS */
.products-track {
  display: flex;
  gap: 20px;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
  padding-top: 4px;
}

/* --- Product Card --- */
.product-card {
  background: #fff;
  border-radius: 14px;
  padding: 0;
  min-width: calc(25% - 15px);
  flex-shrink: 0;
  text-align: left;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: box-shadow 0.22s;
  overflow: visible;
}

.product-card:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.13);
}

.product-img-wrap {
  width: 100%;
  height: 250px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  background: #ebebeb;
  border-radius: 14px 14px 0 0;
  overflow: visible;
  padding: 0 16px 14px;
}

.product-img-wrap img {
  max-height: 215px;
  max-width: 88%;
  object-fit: contain;
  display: block;
  margin-top: -24px;
  position: relative;
  z-index: 1;
}

.product-category {
  font-size: 11.5px;
  font-weight: 400;
  color: #aaa;
  margin: 18px 18px 5px;
  letter-spacing: 0.1px;
}

.product-name {
  font-size: 17px;
  font-weight: 600;
  color: #1c1c1c;
  margin: 0 18px 12px;
  line-height: 1.25;
}

.product-price {
  font-size: 17px;
  font-weight: 500;
  color: #1c1c1c;
  margin: 0 18px 22px;
  font-family: 'Poppins', sans-serif;
}

/* View All */
.view-all-wrap {
  margin-top: 38px;
}

.view-all-link {
  font-size: 12.5px;
  font-weight: 500;
  color: #e8a84a;
  text-decoration: none;
  letter-spacing: 0.2px;
  padding-bottom: 2px;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s;
}

.view-all-link:hover {
  border-color: #e8a84a;
  color: #e8a84a;
}

/* ================================================================
   BEST EXPERIENCE SECTION
================================================================ */

.experience-section {
  background: #fff;
  padding: 80px 0 70px;
  overflow: hidden;
}

.experience-row {
  align-items: center;
}

/* Image column — flush to the left edge of the section */
.experience-img-col {
  padding: 0;
}

/* The image: left side is flat (touches edge), right side is rounded */
.experience-img {
  width: 100%;
  height: 430px;
  object-fit: cover;
  display: block;
  border-radius: 0 20px 20px 0;
  /* Orange brand-colour shadow beneath the image */
  box-shadow: 0 24px 50px rgba(232, 168, 74, 0.45);
}

/* Text column */
.experience-text-col {
  display: flex;
  align-items: center;
}

/* Generous left padding pushes text to the right */
.experience-text-inner {
  padding: 20px 60px 20px 80px;
  max-width: 530px;
}

.experience-heading {
  font-size: 32px;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.3;
  margin-bottom: 24px;
}

.experience-desc {
  font-size: 13.5px;
  font-weight: 400;
  color: #888;
  line-height: 1.85;
  margin-bottom: 0;
}

/* ================================================================
   CLIENT REVIEWS SECTION
================================================================ */

.reviews-section {
  background: #fff;
  padding: 80px 0 90px;
}

/* Auto-swipe slider wrapper */
.reviews-slider-clip {
  overflow: hidden;
  position: relative;
  width: 100%;
  max-width: 100%;
}

/* Track: all cards in a row, each card = 100% width of clip */
.reviews-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.review-card {
  background: #F3EDED;
  border-radius: 10px;
  padding: 48px 54px 44px;
  min-width: 100%;
  width: 100%;
  flex-shrink: 0;
  text-align: center;
  box-shadow: none;
  box-sizing: border-box;
}

.reviewer-name {
  font-size: 16px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 4px;
}

.reviewer-role {
  font-size: 12px;
  font-weight: 400;
  color: #585858;
  margin-bottom: 20px;
}

.reviewer-text {
  font-size: 14px;
  font-weight: 400;
  color: #000000;
  line-height: 1.95;
  margin-bottom: 0;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
  word-break: break-word;
  overflow-wrap: break-word;
}

/* ================================================================
   FOOTER SECTION
================================================================ */

.footer-section {
  background: #F3F3F3;
  padding: 90px 0 90px;
}

.footer-section .container {
  padding-left: 40px;
  padding-right: 40px;
}

.footer-section .row {
  display: flex;
  align-items: flex-start;
  gap: 0;
}

.footer-col {
  margin-bottom: 0;
}

.footer-brand {
  font-size: 22px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 24px;
}

.footer-brand-desc {
  font-size: 14px;
  font-weight: 400;
  color: #555;
  line-height: 2.0;
  max-width: 350px;
}

.footer-col-title {
  font-size: 17px;
  font-weight: 500;
  color: #e8a84a;
  margin-bottom: 28px;
}

.footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-list li {
  margin-bottom: 18px;
}

.footer-list li:last-child {
  margin-bottom: 0;
}

.footer-list li a {
  font-size: 14px;
  font-weight: 400;
  color: #444;
  text-decoration: none;
  transition: color 0.2s;
  line-height: 1.5;
}

.footer-list li a:hover {
  color: #e8a84a;
}

.footer-socials {
  display: flex;
  align-items: center;
  gap: 18px;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1a1a1a;
  font-size: 18px;
  text-decoration: none;
  transition: color 0.2s;
}

.social-icon:hover {
  color: #e8a84a;
}

/* ================================================================
   RESPONSIVE — TABLET (max 992px)
================================================================ */

@media (max-width: 992px) {

  /* Hero */
  .hero-content .container {
    transform: translateY(-55px);
  }

  /* Why Section */
  .why-section {
    padding: 60px 0 50px;
  }

  .why-heading-col {
    margin-bottom: 30px;
  }

  .why-heading {
    font-size: 26px;
  }

  /* Products — show 3 cards */
  .product-card {
    min-width: calc(33.333% - 14px);
  }

  .products-slider-wrapper {
    gap: 10px;
  }

  /* Experience */
  .experience-section {
    padding: 60px 0 50px;
  }

  .experience-img {
    height: 360px;
  }

  .experience-text-inner {
    padding: 36px 30px 36px 40px;
    max-width: 100%;
  }

  /* Reviews */
  .reviews-section {
    padding: 60px 0 70px;
  }

  .review-card {
    padding: 38px 36px;
  }
     

}

/* ================================================================
   RESPONSIVE — MOBILE (max 768px)
================================================================ */

@media (max-width: 768px) {

  /* --- Hero --- */
  .hero-nav {
    padding: 15px 0;
  }

  .hero-title br,
  .hero-subtext br {
    display: none;
  }

  .hero-content .container {
    transform: translateY(-80px);
  }

  .hero-title {
    font-size: 30px;
    line-height: 1.3;
  }

  .hero-subtext {
    font-size: 14px;
  }

  /* Mobile nav menu */
  .navbar-collapse {
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 14px;
    padding: 20px;
    margin-top: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.22);
  }

  .navbar-nav {
    text-align: center;
  }

  .nav-link {
    margin-left: 0;
    padding: 11px 0;
    font-size: 15px;
  }

  /* --- Why Section --- */
  .why-section {
    padding: 50px 20px 40px;
  }

  .why-heading-col {
    margin-bottom: 26px;
  }

  .why-feature {
    margin-bottom: 26px;
    padding-right: 10px;
  }

  /* --- Products — show 2 per view --- */
  .product-card {
    min-width: calc(50% - 10px);
  }

  /* --- Experience — stack vertically --- */
  .experience-section {
    padding: 40px 0 36px;
  }

  .experience-row {
    flex-direction: column;
  }

  .experience-img-col {
    width: 100%;
    padding: 0 16px;
  }

  .experience-img {
    height: 260px;
    border-radius: 20px;
    box-shadow: 0 16px 36px rgba(232, 168, 74, 0.35);
  }

  .experience-text-col {
    width: 100%;
  }

  .experience-text-inner {
    padding: 32px 24px;
    max-width: 100%;
  }

  .experience-heading {
    font-size: 26px;
  }

  .experience-heading br {
    display: none;
  }

  /* --- Reviews --- */
  .reviews-section {
    padding: 52px 0 60px;
  }

  .review-card {
    padding: 32px 24px;
  }

  /* --- Footer — center everything on mobile --- */
  .footer-section {
    padding: 56px 0 48px;
  }

  .footer-section .container {
    padding-left: 24px;
    padding-right: 24px;
  }

  .footer-col {
    text-align: center;
    margin-bottom: 36px;
  }

  .footer-col:last-child {
    margin-bottom: 0;
  }

  .footer-brand-desc {
    max-width: 100%;
    margin: 0 auto;
  }

  .footer-socials {
    justify-content: center;
  }

  .footer-list {
    display: inline-block;
    text-align: center
  }

}

/* ================================================================
   RESPONSIVE — SMALL MOBILE (max 480px)
================================================================ */

@media (max-width: 480px) {

  .hero-title {
    font-size: 26px;
  }

  .section-title {
    font-size: 22px;
  }

  /* Products — 1 card */
  .product-card {
    min-width: calc(88% - 5px);
  }

  .experience-heading {
    font-size: 22px;
  }

  .experience-img {
    height: 220px;
    border-radius: 20px;
  }

  .experience-img-col {
    padding: 0 16px;
  }

  .review-card {
    padding: 26px 18px;
  }

  .reviewer-text {
    font-size: 13px;
  }

  .footer-col-title {
    font-size: 15px;
  }

  .footer-brand-desc {
    font-size: 13px;
  }

}