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

body {
  font-family: "Inter", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  background-color: #fafafa;
}

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

/* -------------------- Navbar -------------------- */
.navbar-custom {
  background: #c4b7a6;
  position: relative;
  padding: 1rem 2rem;
}

.navbar-custom::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -55px;
  width: 240px;
  height: 110px;
  background: #e6e2d3;
  border-radius: 50%;
  pointer-events: none;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.06);
  z-index: 1;
}

.navbar-brand {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
}

.navbar-brand img {
  height: 68px;
  position: relative;
  top: 30px;
}

.nav-link {
  font-size: 17px;
  font-weight: 500;
  color: #000 !important;
  position: relative;
  display: flex;
  align-items: center;
}

.nav-link:hover {
  color: #7e4a35 !important;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: #7e4a35;
  transition: width 0.3s ease;
}

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

.social-icons a {
  color: #333;
  font-size: 18px;
  margin-left: 12px;
  transition: color 0.3s ease;
}

.social-icons a:hover {
  color: #7e4a35;
}

/* Dropdown */
.dropdown-menu {
  background-color: #e6e2d3;
  border: none;
  border-radius: 12px;
  padding: 8px 0;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
  min-width: 180px;
  margin-top: 8px;
  z-index: 1050;
}

.dropdown-item {
  font-size: 16px;
  font-weight: 500;
  padding: 10px 18px;
  color: #333;
  transition: all 0.3s ease;
  border-radius: 8px;
}

.dropdown-item:hover {
  background-color: #c4b7a6;
  color: #7e4a35;
}

.dropdown-item.active,
.dropdown-item:active {
  background-color: #7e4a35 !important;
  color: #fff !important;
}

/* Dropdown Animation */
.dropdown-menu.show {
  animation: dropdownFade 0.25s ease;
}

@keyframes dropdownFade {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}

.dropdown-toggle::after {
  display: none !important;
}

.nav-link i {
  font-size: 12px;
  margin-left: 5px;
  transition: transform 0.3s ease;
}

.nav-item.dropdown.show .nav-link i {
  transform: rotate(180deg);
}



/* -------------------- Hero Section -------------------- */
.hero-section {
  background: #e6e2d3;
  padding: 4rem 2rem;
  min-height: 80vh;
}

.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.text-content h1 {
  font-size: 3rem;
  font-weight: 700;
  color: hsl(25, 47%, 15%);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.highlight-text {
  color: hsl(25, 47%, 35%);
}

.hero-description {
  font-size: 1.125rem;
  color: hsl(25, 47%, 25%);
  margin-bottom: 2rem;
  max-width: 600px;
}

.benefits-list {
  margin-bottom: 2rem;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.benefit-item i {
  color: hsl(142, 76%, 36%);
  font-size: 1.25rem;
  margin-top: 0.125rem;
  flex-shrink: 0;
}

.benefit-item strong {
  color: hsl(25, 47%, 15%);
  font-weight: 600;
}

.benefit-item span {
  color: hsl(25, 47%, 25%);
  margin-left: 0.5rem;
}

.highlight-card {
  background: hsl(25, 47%, 97%);
  border-left: 4px solid hsl(25, 47%, 35%);
  padding: 1.5rem;
  border-radius: 8px;
  margin: 2rem 0;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.highlight-card i {
  color: hsl(25, 47%, 35%);
  font-size: 1.25rem;
}

.highlight-card p {
  color: hsl(25, 47%, 15%);
  font-weight: 500;
  margin: 0;
}

.why-stand-out,
.commitment {
  margin: 2rem 0;
}

.why-stand-out h2,
.commitment h2 {
  font-size: 1.5rem;
  color: hsl(25, 47%, 35%);
  margin-bottom: 1rem;
}

.why-stand-out ul {
  list-style: none;
  padding: 0;
}

.why-stand-out li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  color: hsl(25, 47%, 25%);
}

.why-stand-out li i {
  color: hsl(142, 76%, 36%);
  font-size: 1rem;
}

.commitment p {
  color: hsl(25, 47%, 25%);
}

.cta-button {
  background: hsl(25, 47%, 35%);
  color: white;
  border: none;
  padding: 1rem 2rem;
  font-size: 1.125rem;
  font-weight: 600;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cta-button:hover {
  background: hsl(25, 47%, 25%);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Image Scroll */
.image-scroll {
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.image-track {
  display: flex;
  width: max-content;
  animation: scroll 20s linear infinite;
}

.image-track img {
  width: 600px;
  height: 1000px;
  object-fit: cover;
  border-radius: 12px;
  margin-right: 1rem;
}

@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* -------------------- Product Sections -------------------- */
.product-section {
  padding: 5rem 2rem;
  background: #e6e2d3;
}

.product-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.product-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.product-text h1 {
  font-size: 2rem;
  color: hsl(25, 47%, 35%);
  margin-bottom: 1rem;
  font-weight: 700;
}

.product-text h2 {
  font-size: 1.25rem;
  color: hsl(25, 47%, 15%);
  margin: 1.5rem 0 1rem;
}

.product-button {
  background: hsl(25, 47%, 35%);
  color: white;
  border: none;
  padding: 0.875rem 1.75rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 1.5rem;
  display: inline-block;
  text-decoration: none;
}

.product-button:hover {
  background: hsl(25, 47%, 25%);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* -------------------- Footer -------------------- */
.footer {
  background: #c4b7a6;
  padding: 3rem 2rem 1rem;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-logo img {
  height: 80px;
  margin-bottom: 1rem;
}

.footer-logo p {
  color: hsl(25, 47%, 25%);
  font-size: 0.875rem;
  line-height: 1.6;
}

.footer-column h2 {
  color: hsl(25, 47%, 15%);
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

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

.footer-column li {
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-column a {
  color: hsl(25, 47%, 25%);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  transition: color 0.3s ease;
}

.footer-column a:hover {
  color: hsl(25, 47%, 35%);
}

.footer-column i {
  color: hsl(25, 47%, 35%);
  width: 16px;
}

.social-links {
  display: flex;
  gap: 0.75rem;
}

.social-links a {
  width: 40px;
  height: 40px;
  background: hsl(25, 47%, 88%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: hsl(25, 47%, 15%);
  transition: all 0.3s ease;
}

.social-links a:hover {
  color: white;
  transform: translateY(-2px);
}

.footer-bottom {
  border-top: 1px solid hsl(25, 47%, 70%);
  padding-top: 1.5rem;
}

.footer-bottom-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: hsl(25, 47%, 25%);
  font-size: 0.875rem;
}

/* -------------------- WhatsApp Floating Button -------------------- */
.whatsapp-float {
  position: fixed;
  width: 55px;
  height: 55px;
  bottom: 20px;
  left: 20px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50%;
  text-align: center;
  font-size: 28px;
  box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  transition: transform 0.3s ease;
}

.whatsapp-float i {
  line-height: 55px;
}

.whatsapp-float:hover {
  background-color: #1ebe57;
  transform: scale(1.1);
}

/* -------------------- Tidio Chatbot Position Fix -------------------- */
#tidio-chat,
.tidio-chat,
[id^="tidio-chat-"] {
  right: 20px !important;
  left: auto !important;
  z-index: 999;
}

/* -------------------- Responsive Hero + Footer -------------------- */
@media (max-width: 991px) {
  /* Hero Section */
  .hero-content {
    grid-template-columns: 1fr;   /* stack text & image */
    gap: 2rem;
    text-align: center;           /* center text for mobile */
  }

  .text-content h1 {
    font-size: 2rem;              /* smaller heading */
  }

  .hero-description {
    font-size: 1rem;
    margin: 0 auto 1.5rem;
  }

  .image-track img {
    width: 100%;                  /* images scale down */
    height: auto;
    margin-right: 0.5rem;
  }

  /* Product Sections */
  .product-content {
    grid-template-columns: 1fr;   /* stack image & text */
    text-align: center;
  }

  .product-text h1 {
    font-size: 1.5rem;
  }

  .product-text h2 {
    font-size: 1.125rem;
  }

  /* Footer */
  .footer-content {
    grid-template-columns: 1fr;   /* stack footer columns */
    text-align: center;
    gap: 1.5rem;
  }

  .footer-column h2 {
    font-size: 1.25rem;
  }

  .footer-logo img {
    height: 60px;                 /* smaller logo in footer */
  }

  .social-links {
    justify-content: center;
  }

  .footer-bottom-content {
    flex-direction: column;
    gap: 0.75rem;
    text-align: center;
  }
}

/* ==============================
   Mobile Fix for Navbar Logo
   ============================== */
@media (max-width: 991px) {
  /* Keep logo centered inside U-shape */
  .navbar-brand {
    position: absolute;
    left: 50%;
    top: 20px;                  /* fix logo from top */
    transform: translateX(-50%);
    z-index: 20;
  }

  .navbar-brand img {
    height: 55px;               /* smaller for mobile */
    top: 0;
  }

  /* Adjust U-shape for mobile */
  .navbar-custom::after {
    top: 15px;                  /* place U-shape below logo */
    width: 180px;
    height: 90px;
    bottom: auto;               /* override desktop bottom positioning */
  }

  /* Push menu down so it opens below logo + U-shape */
  .navbar-collapse {
    margin-top: 120px;          /* ensures menu doesn’t overlap logo */
    text-align: center;
  }
}

