:root {
  --theme-color: #0e674f;
  --section-padding: 50px;
  --col-padding: 30px;
  --bg-dark-theme: #1a1a18;
  scroll-padding-top: 80px;
}

html {
  scroll-behavior: smooth;
}

body {
  scroll-snap-type: y mandatory;
  overflow-y: scroll;
}

section {
  scroll-snap-align: start;
}
.section {
  padding: var(--section-padding) 0;
}

.bt-text-theme {
  color: var(--theme-color) !important;
}

.bt-bg-theme {
  background-color: var(--theme-color) !important;
  color: #fff;
}

.bt-col-padding {
  padding: var(--col-padding);
}

.bt-bg-dark {
  background-color: var(--bg-dark-theme) !important;
  color: #fff;
}

.nav-item {
  padding: 10px;
}

.nav-link {
  color: var(--bg-dark-theme) !important;
  transition: all 0.3s ease;
  font-size: 1rem;
  font-weight: 600;
}
.dropdown-item:hover,
.dropdown-item.active {
  color: white !important;
  background-color: var(--theme-color) !important;
}

.nav-link:hover,
.nav-link.active {
  color: var(--theme-color) !important;
}

main {
  padding-top: 110px !important;
}
.nav-bg {
  background-color: #fff;
}
.navbar {
  justify-content: space-between;
}
.navbar-nav {
  margin: 0 auto;
}
.navbar-brand span {
  font-weight: bold;
  color: #00695c;
}
.nav-item.dropdown:hover .dropdown-menu {
  display: block;
  animation: fadeIn 0.3s ease-in-out;
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.hero {
  position: relative;
  color: white;
  border-radius: 15px;
  overflow: hidden;
}
.hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.carousel-caption {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 10%;
}
.carousel-caption h1 {
  font-size: 4rem;
  font-weight: bold;
}
.carousel-caption .highlight {
  color: #39b28b;
}
.carousel-caption p {
  max-width: 600px;
}
@media (max-width: 767.98px) {
  .carousel-caption {
    align-items: center;
    text-align: center;
    padding: 10%;
  }
  .carousel-caption h1 {
    font-size: 1.5rem;
  }
  .carousel-caption p {
    font-size: 0.7rem;
  }
}
.service-img {
  border-radius: 15px;
  overflow: hidden;
  position: relative;
}
.service-img img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.service-img button {
  position: absolute;
  bottom: 15px;
  right: 15px;
  background-color: rgba(255, 255, 255, 0.9);
}
.btn-primary {
  background-color: #00695c;
  border: none;
}
.btn-outline-light {
  background-color: #333;
  border: none;
  color: #fff;
}
.dropdown-menu {
  background-color: #ffffff;
  border: 1px solid #dee2e6;
}
.dropdown-item:hover {
  background-color: #e9ecef;
}

.feature-box {
  position: relative;
  background-size: cover;
  background-position: center;
  height: 250px;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: transform 0.4s ease;
}
.feature-box:hover {
  transform: translateY(-5px);
}
.feature-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 0;
}
.feature-content {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 80%;
}

td {
  width: 40%;
}

.btn-success {
  background-color: var(--theme-color) !important;
}

.promo-section {
  background: url("../assets/xdj.jpg") no-repeat center center/cover;
  width: 100%;
  color: white;
  position: relative;
  display: flex;
  align-items: center;
  padding: 30px 0;
}

.promo-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 60%;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.75), transparent);
  z-index: 1;
}

.promo-text {
  position: relative;
  z-index: 2;
}

.promo-text h1 {
  font-size: 4rem;
  font-weight: bold;
}

.sale-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background-color: #066b57;
  color: white;
  padding: 0.5rem 1rem;
  font-size: 1.5rem;
  font-weight: bold;
  border-radius: 0.3rem;
}

@media (max-width: 767px) {
  .promo-section::before {
    width: 100%;
    background: rgba(0, 0, 0, 0.75);
  }

  .promo-text h1 {
    font-size: 2.5rem;
  }
}

.gallery-img {
  cursor: pointer;
  transition: transform 0.3s;
}

.gallery-img:hover {
  transform: scale(1.05);
}

.fade-title {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1s forwards;
}

.gallery-item:nth-child(1) .fade-title {
  animation-delay: 0.1s;
}

.gallery-item:nth-child(2) .fade-title {
  animation-delay: 0.2s;
}

.gallery-item:nth-child(3) .fade-title {
  animation-delay: 0.3s;
}

.gallery-item:nth-child(4) .fade-title {
  animation-delay: 0.4s;
}

.gallery-item:nth-child(5) .fade-title {
  animation-delay: 0.5s;
}

.gallery-item:nth-child(6) .fade-title {
  animation-delay: 0.6s;
}

.gallery-item:nth-child(7) .fade-title {
  animation-delay: 0.7s;
}

.gallery-item:nth-child(8) .fade-title {
  animation-delay: 0.8s;
}

.gallery-item:nth-child(9) .fade-title {
  animation-delay: 0.9s;
}

.gallery-item:nth-child(10) .fade-title {
  animation-delay: 1s;
}

.gallery-item:nth-child(11) .fade-title {
  animation-delay: 1.1s;
}

.gallery-item:nth-child(12) .fade-title {
  animation-delay: 1.2s;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.product-card {
  transition: transform 0.3s, box-shadow 0.3s;
}
.product-card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}
.product-card .order-btn {
  transition: background 0.3s, color 0.3s, box-shadow 0.3s;
}
.product-card .order-btn:hover {
  background: #0e674f;
  color: #fff;
  box-shadow: 0 4px 12px rgba(14, 103, 79, 0.2);
}

.footer-column {
    transition: transform 0.3s ease;
}

.footer-column:hover {
    transform: translateY(-5px);
}

.contact-info i,
.social-links a {
    transition: all 0.3s ease;
}

.contact-info i:hover,
.social-links a:hover {
    color: #000 !important;
    transform: scale(1.1);
}

.list-unstyled li {
    transition: transform 0.3s ease;
}

.list-unstyled li:hover {
    transform: translateX(5px);
}

.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 1000;
}

.whatsapp-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
    color: white;
}

.whatsapp-btn i {
    font-size: 28px;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-btn {
        width: 55px;
        height: 55px;
    }
    
    .whatsapp-btn i {
        font-size: 24px;
    }
}