/* ===== CSS VARIABLES (ROOT COLORS) ===== */
:root {
  --yellow-primary: #f4c542;
  --yellow-light: #fff5d6;
  --yellow-dark: #e0b030;
  --green-primary: #2b6e3c;
  --green-light: #e8f5e9;
  --green-dark: #1b4a27;
  --green-soft: #f4f9f0;
  --white-pure: #ffffff;
  --white-off: #fdfdf5;
  --gray-light: #f5f5f5;
  --gray-medium: #e0e0e0;
  --text-dark: #1e2e1c;
  --text-muted: #4a6741;
  --shadow-sm: 0 4px 12px rgba(0, 40, 0, 0.04);
  --shadow-md: 0 8px 24px rgba(0, 40, 0, 0.08);
  --shadow-lg: 0 20px 40px rgba(0, 40, 0, 0.12);
  --border-radius-card: 28px;
  --border-radius-btn: 60px;
  --font-heading: "Space Grotesk", sans-serif;
  --font-body: "Inter", sans-serif;
}

/* ===== GLOBAL STYLES ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-body);
  background: var(--white-off);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.3;
}

a {
  text-decoration: none;
  transition: all 0.3s ease;
}

section {
  padding: 80px 0;
  position: relative;
}

/* ===== LOADER ===== */
#loader-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--yellow-light);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition:
    opacity 0.5s ease,
    visibility 0.5s;
}

body.loaded #loader-wrapper {
  opacity: 0;
  visibility: hidden;
}

.loader-veggie {
  text-align: center;
}

.loader-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 20px;
}

.loader-logo-text {
  font-size: 2.8rem;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.loader-buy {
  color: var(--yellow-primary);
}

.loader-num {
  color: var(--white-pure);
  background: var(--green-primary);
  padding: 0 8px;
  border-radius: 16px;
}

.loader-leaf-icon {
  color: var(--green-primary);
  font-size: 2.5rem;
  margin: 0 4px;
}

.bouncing-carrot {
  display: flex;
  gap: 10px;
  justify-content: center;
}

.bouncing-carrot i {
  font-size: 2rem;
  color: #f4a442;
  animation: veggieBounce 1.4s infinite ease-in-out;
}

.bouncing-carrot i:nth-child(2) {
  animation-delay: 0.2s;
  color: var(--green-primary);
}

.bouncing-carrot i:nth-child(3) {
  animation-delay: 0.4s;
  color: #e6b422;
}

.loader-text {
  margin-top: 24px;
  color: var(--green-primary);
  font-weight: 500;
}

@keyframes veggieBounce {
  0%,
  80%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-15px);
  }
}

/* ===== NAVBAR ===== */
.navbar {
  background: rgb(255 255 255 / 0%) !important;
  /* backdrop-filter: blur(8px);
  box-shadow: var(--shadow-sm); */
  padding: 0.8rem 0;
  transition: all 0.3s ease;
}
.navbar-brand {
  font-weight: 700;
  font-size: 1.9rem;
  background-color: #ffffff;
  border-radius: 20px;
  font-family: var(--font-heading);
}

.navbar-brand img {
  height: 100px;
}

.brand-yellow {
  color: var(--yellow-primary);
}

.brand-green-bg {
  background: var(--green-primary);
  color: var(--white-pure);
  padding: 2px 10px;
  border-radius: 30px;
  margin-left: 4px;
}

.brand-icon {
  color: var(--green-primary);
}

.navbar .nav-link {
  font-weight: 500;
  color: var(--text-dark) !important;
  margin: 0 6px;
  padding: 8px 12px !important;
  font-family: var(--font-body);
  transition: all 0.2s ease;
}

.navbar .nav-link:hover,
.navbar .nav-link.active {
  color: var(--green-primary) !important;
  text-decoration: underline wavy var(--yellow-primary) 2px;
  text-underline-offset: 6px;
}

.navbar-toggler {
  border: none;
  padding: 8px;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 165, 0, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    border: 2px solid green;
    height: 40px;
    width: 40px;
    
    border-radius: 8px;
}

/* Desktop menu always visible */
@media (min-width: 992px) {
  .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }

  .navbar-toggler {
    display: none !important;
  }
}

/* Mobile and Tablet - show hamburger, hide desktop menu */
@media (max-width: 991.98px) {
  .navbar-collapse {
    display: none !important;
  }

  .navbar-toggler {
    display: block !important;
  }
}

/* ===== OFFCANVAS MENU (MOBILE/TABLET SIDEBAR) ===== */
.offcanvas {
  background: linear-gradient(
    135deg,
    var(--white-off) 0%,
    var(--green-soft) 100%
  );
}

.offcanvas-header {
  border-bottom: 2px solid var(--yellow-primary);
  padding: 1.5rem;
}

.offcanvas-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.8rem;
}



.offcanvas-title img{
  height: 80px;
}

.offcanvas .nav-link {
  font-size: 1.2rem;
  padding: 15px 20px !important;
  color: var(--text-dark) !important;
  border-bottom: 1px solid rgba(43, 110, 60, 0.1);
  font-weight: 500;
  transition: all 0.3s ease;
}

.offcanvas .nav-link:hover {
  background: linear-gradient(90deg, var(--yellow-light) 0%, transparent 100%);
  color: var(--green-primary) !important;
  padding-left: 30px !important;
}

.offcanvas .nav-link i {
  margin-right: 12px;
  color: var(--green-primary);
  width: 24px;
}

.btn-close:focus {
  box-shadow: none;
}

/* ===== HERO SWIPER ===== */

#home {
  margin-top: -136px;
}

.hero-swiper {
  width: 100%;
  height: 100vh;
  min-height: 600px;
}

.hero-slide {
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  position: relative;
}

.hero-slide::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    90deg,
    rgba(0, 30, 0, 0.5) 0%,
    rgba(20, 60, 20, 0.3) 100%
  );
}

.slide-1 {
  background-image: url("../images/b1.png");
}

.slide-2 {
  background-image: url("../images/b3.jpg");
}

.slide-3 {
  background-image: url("../images/b5.jpg");
}

.hero-content {
  position: relative;
  z-index: 2;
  color: var(--white-pure);
  text-shadow: 2px 4px 12px rgba(0, 0, 0, 0.2);
  padding-top: 100px;
}

.hero-title {
  font-size: 3.8rem;
  font-weight: 800;
  font-family: var(--font-heading);
  line-height: 1.2;
}

.hero-highlight {
  color: #fce570;
}

.hero-description {
  font-size: 1.2rem;
  margin: 1.5rem 0;
}

/* Store Badges in Banner */
.store-badges {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  margin: 25px 0;
}

.store-badge {
  height: 52px;
  transition: transform 0.3s ease;
}

.store-badge:hover {
  transform: translateY(-3px);
}

/* Buttons */
.btn-primary-custom {
  background: var(--yellow-primary);
  color: var(--text-dark);
  font-weight: 600;
  padding: 12px 28px;
  border-radius: var(--border-radius-btn);
  border: none;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  font-family: var(--font-body);
}

.btn-primary-custom:hover {
  background: var(--yellow-dark);
  color: var(--green-dark);
  transform: scale(1.02);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.12);
}

.btn-outline-custom {
  border: 2px solid var(--white-pure);
  color: var(--white-pure);
  padding: 10px 24px;
  border-radius: var(--border-radius-btn);
  font-weight: 600;
  background: transparent;
  transition: all 0.3s ease;
}

.btn-outline-custom:hover {
  background: var(--white-pure);
  color: var(--text-dark);
  transform: translateY(-2px);
}

/* Custom Swiper Navigation */
.swiper-nav-container {
  position: relative;
  z-index: 10;
  margin-top: -70px;
}

.swiper-button-custom {
  width: 52px;
  height: 52px;
  background: rgba(255, 255, 240, 0.95);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-primary);
  font-size: 24px;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
  cursor: pointer;
  border: 2px solid var(--yellow-primary);
}

.swiper-button-custom:hover {
  background: var(--yellow-primary);
  color: var(--text-dark);
  /* transform: scale(1.1); */
}

.custom-pagination {
  display: flex;
  justify-content: center;
  gap: 0px;
  margin-top: 50px;
}

.custom-pagination .swiper-pagination-bullet {
  width: 14px;
  height: 14px;
  background: #d9d0b5;
  opacity: 0.9;
  border-radius: 30px;
  transition: all 0.3s ease;
  /* border: 1px solid var(--green-primary); */
  margin: 0 6px !important;
}

.custom-pagination .swiper-pagination-bullet-active {
  background: var(--yellow-primary);
  width: 32px;
  /* border-color: var(--text-dark); */
}

/* ===== SECTION TITLES ===== */
.section-title {
  font-weight: 700;
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: var(--text-dark);
  font-family: var(--font-heading);
  position: relative;
  display: inline-block;
}

/* .section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 4px;
  background: var(--yellow-primary);
  border-radius: 2px;
} */

.text-center .section-title::after {
  left: 50%;
  transform: translateX(-50%);
}

/* ===== ABOUT SECTION ===== */
.bg-soft-green {
  background: var(--green-soft);
}

.about-image {
  border-radius: 40px 8px 40px 8px;
  box-shadow: 20px 20px 0 #e3eccb;
  border: 4px solid var(--white-pure);
  max-width: 100%;
  transition: transform 0.3s ease;
}

.about-image:hover {
  transform: scale(1.02);
}

.about-list {
  list-style: none;
  padding: 0;
}

.about-list li {
  margin-bottom: 12px;
  font-size: 1.05rem;
}

.about-list i {
  color: var(--green-primary);
  margin-right: 10px;
}

.highlight-text {
  color: #f4a442;
  font-weight: 600;
}

/* ===== ENHANCED SERVICES SECTION STYLES ===== */
.services-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #fdfdf5 0%, #f4f9f0 100%);
  position: relative;
  overflow: hidden;
}

/* Decorative background elements */
.services-section::before {
  content: "";
  position: absolute;
  top: -50px;
  right: -50px;
  width: 300px;
  height: 300px;
  background: radial-gradient(
    circle,
    rgba(244, 197, 66, 0.08) 0%,
    transparent 70%
  );
  border-radius: 50%;
  z-index: 0;
}

.services-section::after {
  content: "";
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(43, 110, 60, 0.05) 0%,
    transparent 70%
  );
  border-radius: 50%;
  z-index: 0;
}

.container {
  position: relative;
  z-index: 1;
}

/* Section Header */
.section-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--yellow-primary) 0%, #ffd666 100%);
  color: var(--text-dark);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
  box-shadow: 0 4px 12px rgba(244, 197, 66, 0.3);
}

.section-badge i {
  margin-right: 8px;
  animation: pulse 2s infinite;
}

.section-title-enhanced {
  font-size: 3rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 0px;
  background: linear-gradient(135deg, #1e2e1c 0%, #2b6e3c 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle-enhanced {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.8;
}

/* Service Card Enhanced */
.service-card-enhanced {
  height: 100%;
  perspective: 1000px;
}

.service-card-inner {
  background: var(--white-pure);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  height: 100%;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(43, 110, 60, 0.08);
  position: relative;
}

.service-card-inner:hover {
  /* transform: translateY(-12px) scale(1.02); */
  box-shadow: 0 30px 50px rgba(43, 110, 60, 0.12);
  border-color: var(--yellow-primary);
}

/* Service Badge */
.service-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  z-index: 10;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.service-badge.popular {
  background: linear-gradient(135deg, #ff6b6b, #ee5a24);
  color: white;
}

.service-badge.express {
  background: linear-gradient(135deg, #f4c542, #f39c12);
  color: var(--text-dark);
}

.service-badge.organic {
  background: linear-gradient(135deg, #2b6e3c, #27ae60);
  color: white;
}

/* Image Container */
.service-image-container {
  position: relative;
  height: 250px;
  overflow: hidden;
}

.service-image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.2) 100%);
  z-index: 2;
  transition: all 0.3s ease;
}

.service-card-inner:hover .service-image-overlay {
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(43, 110, 60, 0.3) 100%
  );
}

.service-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-card-inner:hover .service-image {
  transform: scale(1.1);
}

.service-icon-floating {
  position: absolute;
  bottom: -20px;
  left: 25px;
  width: 50px;
  height: 50px;
  background: var(--yellow-primary);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;

  box-shadow: 0 8px 20px rgba(244, 197, 66, 0.4);
  border: 3px solid white;
  z-index: 3 !important;
}

.service-icon-floating i {
  font-size: 1.5rem;
  color: var(--text-dark);
}

/* Service Content */
.service-content {
  padding: 10px 25px 15px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 15px;
  margin-top: 10px;
}

.service-title-enhanced {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0;
}

.service-price {
  background: var(--green-light);
  color: var(--green-primary);
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 700;
}

.service-description-enhanced {
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
  font-size: 0.95rem;
}

/* Features List */
.service-features {
  list-style: none;
  padding: 0;
  margin: 0 0 25px;
  flex: 1;
}

.service-features li {
  padding: 8px 0;
  color: var(--text-dark);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  border-bottom: 1px dashed rgba(43, 110, 60, 0.1);
}

.service-features li:last-child {
  border-bottom: none;
}

.service-features li i {
  color: var(--green-primary);
  margin-right: 10px;
  font-size: 1rem;
}

/* Service Footer */
.service-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  padding-top: 15px;
  border-top: 2px solid rgba(43, 110, 60, 0.08);
}

.service-link {
  color: var(--green-primary);
  font-weight: 600;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  font-size: 0.95rem;
}

.service-link i {
  transition: transform 0.3s ease;
}

.service-link:hover {
  color: var(--yellow-dark);
}

.service-link:hover i {
  transform: translateX(5px);
}

.service-delivery {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  color: var(--text-muted);
  background: var(--gray-light);
  padding: 5px 12px;
  border-radius: 20px;
}

.service-delivery.urgent {
  background: #fff3e0;
  color: #e65100;
}

.service-delivery.organic-delivery {
  background: #e8f5e9;
  color: #1b5e20;
}

.service-delivery i {
  font-size: 0.8rem;
}

/* View All Button */
.btn-view-all {
  display: inline-flex;
  align-items: center;
  padding: 14px 36px;
  background: transparent;
  border: 2px solid var(--green-primary);
  color: var(--green-primary);
  border-radius: 60px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1.1rem;
}

.btn-view-all:hover {
  background: var(--green-primary);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(43, 110, 60, 0.3);
}

.btn-view-all i {
  transition: transform 0.3s ease;
}

.btn-view-all:hover i {
  transform: translateX(8px);
}

/* Animations */
@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .services-section {
    padding: 60px 0;
  }

  .section-title-enhanced {
    font-size: 2.2rem;
  }

  .service-image-container {
    height: 180px;
  }

  .service-content {
    padding: 25px 20px 20px;
  }

  .service-title-enhanced {
    font-size: 1.3rem;
  }

  .section-badge {
    font-size: 0.8rem;
  }
}

/* ===== HOW IT WORKS SECTION WITH DOTTED ARROW CONNECTORS ===== */
.how-it-works-section {
  padding: 80px 0;
  background: var(--yellow-light);
  position: relative;
}

/* Section Header */
.section-header {
  margin-bottom: 50px;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
}

/* Steps Wrapper */
.steps-wrapper {
  position: relative;
}

/* Step Cards */
.step-card-simple {
  background: var(--white-pure);
  border-radius: 20px;
  padding: 30px 20px;
  text-align: center;
  height: 100%;
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(43, 110, 60, 0.08);
  position: relative;
}

.step-card-simple:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(43, 110, 60, 0.1);
  border-color: var(--yellow-primary);
}

/* Step Icon Circle */
.step-icon-circle {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, var(--yellow-primary) 0%, #ffd666 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(244, 197, 66, 0.3);
}

.step-icon-circle i {
  font-size: 2rem;
  color: var(--text-dark);
}

/* Step Number Badge */
/* .step-number-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--green-primary);
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  box-shadow: 0 4px 10px rgba(43, 110, 60, 0.2);
} */

.step-number-badge {
  position: absolute;
  top: 0px;
  right: 20px;

  font-size: 3rem;
  font-weight: 800;

  color: transparent;

  -webkit-text-stroke: 2px var(--green-primary);

  text-shadow:
    0 0 0 var(--green-primary),
    0 4px 10px rgba(43, 110, 60, 0.15),
    0 8px 20px rgba(43, 110, 60, 0.12),
    0 12px 30px rgba(43, 110, 60, 0.08);

  opacity: 0.3;
}

/* Step Content */
.step-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.step-description {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 0;
}

/* ===== DESKTOP CONNECTORS (DOTTED ARROWS) ===== */
.step-connector {
  position: relative;
  width: 100%;
  height: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.connector-dots {
  width: 100%;
  height: 100%;
  background-image: repeating-linear-gradient(
    90deg,
    var(--green-primary) 0px,
    var(--green-primary) 6px,
    transparent 6px,
    transparent 12px
  );
  border-radius: 2px;
}

.connector-arrow {
  position: absolute;
  right: -8px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--green-primary);
  font-size: 1.2rem;
  background: var(--yellow-light);
  padding: 5px;
  border-radius: 50%;
}

/* ===== MOBILE/TABLET VERTICAL CONNECTORS ===== */
.mobile-connectors {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: -10px;
  margin-bottom: -10px;
}

.vertical-connector {
  padding: 10px 0;
  color: var(--green-primary);
  font-size: 1.2rem;
  opacity: 0.6;
}

.vertical-connector i {
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(5px);
  }
}

/* Delivery Promise */
.delivery-promise {
  margin-top: 50px;
  display: flex;
  justify-content: center;
}

.promise-card {
  background: var(--white-pure);
  border-radius: 50px;
  padding: 15px 30px;
  display: inline-flex;
  align-items: center;
  gap: 20px;
  box-shadow: 0 10px 30px rgba(43, 110, 60, 0.1);
  border: 2px solid var(--green-primary);
}

.promise-icon {
  width: 50px;
  height: 50px;
  background: var(--green-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.promise-icon i {
  font-size: 1.5rem;
  color: white;
}

.promise-text {
  display: flex;
  flex-direction: column;
}

.promise-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

.promise-value {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-dark);
}

/* Responsive */
@media (max-width: 991px) {
  .how-it-works-section {
    padding: 60px 0;
  }

  .section-title {
    font-size: 2rem;
  }

  .step-card-simple {
    padding: 25px 15px;
    margin-bottom: 0;
  }

  .step-icon-circle {
    width: 65px;
    height: 65px;
  }

  .step-icon-circle i {
    font-size: 1.6rem;
  }

  .step-title {
    font-size: 1.2rem;
  }

  .step-number-badge {
    width: 35px;
    height: 35px;
    font-size: 0.9rem;
    top: 15px;
    right: 15px;
  }

  .promise-card {
    padding: 12px 20px;
  }

  .promise-value {
    font-size: 1.1rem;
  }
}

@media (min-width: 992px) {
  /* Adjust column widths for 4 steps with 3 connectors */
  .steps-wrapper .row > [class*="col-lg-"]:not([class*="col-lg-1"]) {
    width: 21%;
  }

  .steps-wrapper .row > .col-lg-1 {
    width: 4%;
  }
}

@media (max-width: 576px) {
  .promise-card {
    flex-direction: column;
    text-align: center;
    border-radius: 30px;
    padding: 20px;
  }

  .promise-text {
    align-items: center;
  }

  .vertical-connector {
    padding: 8px 0;
  }
}

/* ===== SIMPLE APP SCREENS SECTION ===== */
.app-screens-section {
  padding: 80px 0;
  background: var(--white-off);
}

/* Section Header */
.section-header {
  margin-bottom: 50px;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
}

/* Swiper Container */
.app-swiper-container {
  position: relative;
  padding: 0px 0px;
  height: auto !important;
}

/* Screen Images */
/* .app-screen-swiper .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: none !important;
} */

.screen-image {
  max-width: 100%;
  height: auto;
  /* max-height: 501px; */
  min-height: 500px;
  border-radius: 20px !important;
  box-shadow: 0 20px 30px -10px rgba(0, 30, 0, 0.15);
  /* border: 3px solid var(--white-pure); */
  transition: transform 0.3s ease;
  display: block;
  margin: 0 auto;
  background: #f9fff6;
}

/* .screen-image:hover {
  transform: scale(1.02);
} */

/* APP SCREEN SECTION */
.app-screens-section {
  padding: 80px 0;
  background: #f9fff6;
}

/* PHONE MOCKUP */
.phone-mockup {
  position: relative;
  /* width: 260px; */
  margin: auto;
  padding: 5px;
  border-radius: 20px;
  background: #111;
  /* box-shadow: 0 25px 60px rgba(0, 0, 0, 0.25); */
  transition: transform 0.4s ease;
}

/* NOTCH */
.phone-mockup::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 70px;
  height: 18px;
  background: #000;
  border-radius: 20px;
  z-index: 2;
}

/* SCREEN IMAGE */
.screen-image {
  width: 100%;
  border-radius: 30px;
  display: block;
}

/* SWIPER CENTER EFFECT */
.app-screen-swiper .swiper-slide {
  opacity: 1;
  transform: scale(1);
  transition: all 0.4s ease;
  height: auto !important;
  /* max-height: 400px; */
}

.app-screen-swiper .swiper-slide-active {
  opacity: 1;
}

/* .app-screen-swiper .swiper-slide-active .phone-mockup {
  transform: translateY(-10px);
} */

/* NAV BUTTONS */
.screen-prev,
.screen-next {
  color: var(--green);
}

/* PAGINATION */
.screen-pagination .swiper-pagination-bullet {
  background: #ccc;
  opacity: 1;
}

.screen-pagination .swiper-pagination-bullet-active {
  background: var(--green);
}

/* Navigation Buttons */
.screen-prev,
.screen-next {
  width: 45px;
  height: 45px;
  background: var(--white-pure);
  border-radius: 50%;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.screen-prev::after,
.screen-next::after {
  font-size: 1.2rem;
  font-weight: bold;
  color: var(--green-primary);
}

.screen-prev:hover,
.screen-next:hover {
  background: var(--yellow-primary);
  box-shadow: 0 8px 20px rgba(244, 197, 66, 0.3);
}

.screen-prev:hover::after,
.screen-next:hover::after {
  color: var(--text-dark);
}

/* Pagination */
.screen-pagination {
  position: relative;
  bottom: 0px !important;
  margin-top: 15px;
}

.screen-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: var(--green-primary);
  opacity: 0.3;
  transition: all 0.3s ease;
  margin: 0 6px;
}

.screen-pagination .swiper-pagination-bullet-active {
  width: 25px;
  border-radius: 10px;
  background: var(--yellow-primary);
  opacity: 1;
}

/* Responsive */
@media (max-width: 768px) {
  .app-screens-section {
    padding: 60px 0;
  }

  .section-title {
    font-size: 2rem;
  }

  .app-swiper-container {
    padding: 20px 40px;
  }

  .screen-prev,
  .screen-next {
    width: 38px;
    height: 38px;
  }

  .screen-prev::after,
  .screen-next::after {
    font-size: 1rem;
  }

  .screen-image {
    max-height: 450px;
    border-radius: 30px;
  }
}

@media (max-width: 576px) {
  .app-swiper-container {
    padding: 20px 30px;
  }

  .screen-prev,
  .screen-next {
    width: 35px;
    height: 35px;
  }

  .screen-image {
    max-height: 400px;
    border-radius: 24px;
  }
}

/* ===== ENHANCED APP DOWNLOAD SECTION ===== */
.download-section {
  position: relative;
  padding: 100px 0;
  background: linear-gradient(135deg, #f4f9f0 0%, #e8f5e9 100%);
  overflow: hidden;
  isolation: isolate;
}

/* Background Pattern */
.download-bg-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    radial-gradient(
      circle at 20% 30%,
      rgba(244, 197, 66, 0.06) 0%,
      transparent 30%
    ),
    radial-gradient(
      circle at 80% 70%,
      rgba(43, 110, 60, 0.05) 0%,
      transparent 40%
    );
  z-index: -2;
}

/* Decorative Shapes */
.download-shape {
  position: absolute;
  border-radius: 50%;
  z-index: -1;
}

.download-shape-1 {
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(244, 197, 66, 0.15) 0%,
    transparent 70%
  );
  top: -100px;
  right: -100px;
}

.download-shape-2 {
  width: 300px;
  height: 300px;
  background: radial-gradient(
    circle,
    rgba(43, 110, 60, 0.1) 0%,
    transparent 70%
  );
  bottom: -50px;
  left: -50px;
}

/* Content Styling */
.download-content {
  position: relative;
  z-index: 2;
}

.download-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--yellow-primary) 0%, #ffd666 100%);
  color: var(--text-dark);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
  box-shadow: 0 5px 15px rgba(244, 197, 66, 0.3);
}

.download-title {
  font-size: 3rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 20px;
  line-height: 1.2;
}

.text-highlight {
  background: linear-gradient(135deg, var(--green-primary) 0%, #3d8b4f 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  display: inline-block;
}

.download-description {
  font-size: 1.2rem;
  color: var(--text-muted);
  margin-bottom: 25px;
  line-height: 1.7;
}

.offer-highlight {
  background: var(--yellow-primary);
  color: var(--text-dark);
  padding: 3px 12px;
  border-radius: 30px;
  font-weight: 700;
  display: inline-block;
}

/* Features List */
.download-features {
  list-style: none;
  padding: 0;
  margin: 0 0 30px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

.download-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--text-dark);
}

.download-features li i {
  color: var(--green-primary);
  font-size: 1.1rem;
}

/* Store Badges */
.download-badges {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.store-badge-link {
  transition: all 0.3s ease;
}

.store-badge-link:hover {
  /* transform: translateY(-3px); */
  filter: drop-shadow(0 8px 15px rgba(0, 0, 0, 0.15));
}

.store-badge-img {
  height: 52px;
  width: auto;
}

/* QR Code & Rating */
.download-meta {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-bottom: 20px;
}

.qr-code-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--white-pure);
  padding: 8px 16px;
  border-radius: 50px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.qr-code {
  width: 40px;
  height: 40px;
  background: var(--text-dark);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.qr-code i {
  font-size: 1.8rem;
  color: var(--white-pure);
}

.qr-text {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-dark);
}

.app-rating {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.rating-stars {
  display: flex;
  gap: 3px;
}

.rating-stars i {
  color: #ffb800;
  font-size: 0.9rem;
}

.rating-text {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* Platform Info */
.platform-info {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.platform-info i {
  font-size: 1.2rem;
  color: var(--green-primary);
}

.platform-info .fa-huawei {
  color: #cf0a2c;
}

/* Mockup Wrapper */
.mockup-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.mockup-container {
  position: relative;
  z-index: 2;
}

.app-mockup {
  max-width: 100%;
  height: auto;
  max-height: 500px;
  /* border-radius: 40px;
  box-shadow: 0 30px 50px -15px rgba(43, 110, 60, 0.25);
  border: 4px solid var(--white-pure); */
  transition: transform 0.3s ease;
}

.app-mockup:hover {
  transform: scale(1.02) rotate(-1deg);
}

/* Floating Cards */
.floating-card {
  position: absolute;
  background: var(--white-pure);
  padding: 12px 20px;
  border-radius: 50px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  color: var(--text-dark);
  z-index: 3;
  border: 2px solid var(--yellow-primary);
  animation: float 3s ease-in-out infinite;
}

.floating-card i {
  color: var(--green-primary);
  font-size: 1.1rem;
}

.floating-card-1 {
  top: 10%;
  left: 10px;
  animation-delay: 0s;
}

.floating-card-2 {
  bottom: 20%;
  right: 50px;
  animation-delay: 1s;
}

.floating-card-3 {
  bottom: 40%;
  left: 20px;
  animation-delay: 2s;
  background: var(--yellow-primary);
  border-color: var(--green-primary);
}

.floating-card-3 i {
  color: var(--text-dark);
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* Responsive */
@media (max-width: 991px) {
  .download-section {
    padding: 70px 0;
  }

  .download-title {
    font-size: 2.5rem;
  }

  .download-features {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .mockup-wrapper {
    margin-top: 30px;
  }

  .floating-card-1 {
    left: 0;
  }

  .floating-card-2 {
    right: 0;
  }

  .floating-card-3 {
    left: 0;
  }
}

@media (max-width: 768px) {
  .download-section {
    padding: 50px 0;
  }

  .download-title {
    font-size: 2rem;
  }

  .download-description {
    font-size: 1rem;
  }

  .store-badge-img {
    height: 45px;
  }

  .download-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }

  .floating-card {
    padding: 8px 15px;
    font-size: 0.85rem;
  }

  .floating-card i {
    font-size: 0.9rem;
  }

  .app-mockup {
    border-radius: 30px;
  }

  .platform-info {
    flex-wrap: wrap;
  }
}

@media (max-width: 576px) {
  .download-badge {
    font-size: 0.75rem;
    padding: 6px 15px;
  }

  .floating-card span {
    display: none;
  }

  .floating-card {
    padding: 10px;
    border-radius: 50%;
  }

  .floating-card i {
    font-size: 1rem;
  }
}

/* ===== ENHANCED CONTACT US SECTION ===== */
.contact-section {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--white-off) 0%, #f4f9f0 100%);
  position: relative;
}

/* Section Header */
.section-header {
  margin-bottom: 20px;
}

.contact-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--green-primary) 0%, #3d8b4f 100%);
  color: white;
  padding: 8px 24px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 20px;
  box-shadow: 0 5px 15px rgba(43, 110, 60, 0.3);
}

.section-title {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 0px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
}

/* Contact Info Cards */
.contact-info-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  height: 100%;
}

.contact-info-card {
  background: var(--white-pure);
  border-radius: 24px;
  padding: 25px;
  display: flex;
  gap: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  border: 1px solid rgba(43, 110, 60, 0.08);
  flex: 1;
}

.contact-info-card:hover {
  transform: translateX(5px);
  box-shadow: 0 15px 40px rgba(43, 110, 60, 0.12);
  border-color: var(--yellow-primary);
}

.contact-icon-wrapper {
  flex-shrink: 0;
}

.contact-icon {
  width: 55px;
  height: 55px;
  background: linear-gradient(135deg, var(--yellow-primary) 0%, #ffd666 100%);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(244, 197, 66, 0.3);
}

.contact-icon i {
  font-size: 1.5rem;
  color: var(--text-dark);
}

.contact-info-content {
  flex: 1;
}

.contact-info-content h4 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.contact-info-content p {
  color: var(--text-muted);
  margin-bottom: 5px;
  font-size: 0.95rem;
  line-height: 1.5;
}

.contact-sub {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.contact-badge-sm {
  display: inline-block;
  background: var(--green-light);
  color: var(--green-primary);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 10px;
}

/* Contact Form Wrapper */
.contact-form-wrapper {
  background: var(--white-pure);
  border-radius: 32px;
  padding: 40px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
  height: 100%;
  border: 1px solid rgba(43, 110, 60, 0.08);
}

.form-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.form-subtitle {
  color: var(--text-muted);
  margin-bottom: 30px;
  font-size: 0.95rem;
}

/* Form Elements */
.form-group {
  margin-bottom: 5px;
}

.form-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.form-label i {
  color: var(--green-primary);
  font-size: 0.9rem;
}

.form-control,
.form-select {
  border: 2px solid #e8f0e5;
  border-radius: 16px;
  padding: 14px 18px;
  font-size: 0.95rem;
  color: var(--text-dark);
  background: var(--white-pure);
  transition: all 0.3s ease;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--green-primary);
  box-shadow: 0 0 0 4px rgba(43, 110, 60, 0.1);
  outline: none;
}

.form-control::placeholder {
  color: #b0c4aa;
}

textarea.form-control {
  resize: none;
}

/* Form Footer */
.form-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 10px;
}

.btn-submit {
  background: linear-gradient(135deg, var(--green-primary) 0%, #3d8b4f 100%);
  color: white;
  border: none;
  padding: 16px 36px;
  border-radius: 60px;
  font-weight: 700;
  font-size: 1.05rem;
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 10px 25px rgba(43, 110, 60, 0.3);
}

.btn-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(43, 110, 60, 0.4);
}

.btn-submit i {
  transition: transform 0.3s ease;
}

.btn-submit:hover i {
  transform: translateX(5px);
}

.social-links {
  display: flex;
  align-items: center;
  gap: 12px;
}

.social-links span {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.social-link {
  width: 40px;
  height: 40px;
  background: #f0f7ee;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-primary);
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: var(--green-primary);
  color: white;
  transform: translateY(-3px);
}

/* Contact Footer */
.contact-footer {
  margin-top: 60px;
  padding-top: 40px;
  border-top: 2px solid rgba(43, 110, 60, 0.1);
}

.footer-info-card {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px;
  background: var(--white-pure);
  border-radius: 20px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
  transition: all 0.3s ease;
}

.footer-info-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(43, 110, 60, 0.1);
}

.footer-info-card > i {
  width: 45px;
  height: 45px;
  background: var(--yellow-light);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--green-primary);
}

.footer-info-card h5 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 5px;
}

.footer-info-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin: 0;
}

.payment-icons {
  display: flex;
  gap: 12px;
}

.payment-icons i {
  font-size: 1.8rem;
  color: var(--text-muted);
  transition: color 0.3s ease;
}

.payment-icons i:hover {
  color: var(--green-primary);
}

/* Responsive */
@media (max-width: 991px) {
  .contact-section {
    padding: 70px 0;
  }

  .section-title {
    font-size: 2.3rem;
  }

  .contact-form-wrapper {
    padding: 30px;
  }

  .form-title {
    font-size: 1.5rem;
  }
}

@media (max-width: 768px) {
  .contact-section {
    padding: 50px 0;
  }

  .section-title {
    font-size: 2rem;
  }

  .contact-badge {
    font-size: 0.8rem;
    padding: 6px 18px;
  }

  .contact-info-card {
    padding: 20px;
  }

  .contact-icon {
    width: 48px;
    height: 48px;
  }

  .contact-icon i {
    font-size: 1.3rem;
  }

  .contact-form-wrapper {
    padding: 25px 20px;
  }

  .form-footer {
    flex-direction: column;
    align-items: stretch;
  }

  .btn-submit {
    justify-content: center;
    padding: 14px 28px;
  }

  .social-links {
    justify-content: center;
  }

  .footer-info-card {
    padding: 15px;
  }
}

@media (max-width: 576px) {
  .contact-info-content h4 {
    font-size: 1.1rem;
  }

  .contact-info-content p {
    font-size: 0.85rem;
  }

  .footer-info-card {
    flex-direction: column;
    text-align: center;
  }

  .payment-icons {
    justify-content: center;
  }
}

/* ===== ENHANCED FOOTER SECTION ===== */
.footer-section {
  background: linear-gradient(135deg, #1a2e1a 0%, #1e3a1e 100%);
  color: #ececdc;
  position: relative;
  padding: 80px 0 0;
}

/* Main Footer */
.footer-main {
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

/* Brand Section */
.footer-brand {
  margin-bottom: 10px;
}

.footer-logo {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 5px;
  background-color: white;
  width: fit-content;
  border-radius: 10px;
}

.footer-logo img {
  height: 100px;
}

.brand-yellow {
  color: var(--yellow-primary);
}

.brand-green {
  background: var(--green-primary);
  color: white;
  padding: 2px 12px;
  border-radius: 30px;
  margin-left: 5px;
}

.footer-description {
  color: #cfdeb0;
  line-height: 1.7;
  font-size: 0.95rem;
  margin-bottom: 0;
}

/* Newsletter */
.footer-newsletter {
  background: rgba(255, 255, 255, 0.05);
  padding: 25px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.newsletter-title {
  color: white;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.newsletter-title i {
  color: var(--yellow-primary);
}

.newsletter-text {
  color: #b8d4a8;
  font-size: 0.85rem;
  margin-bottom: 18px;
}

.newsletter-input-group {
  display: flex;
  gap: 8px;
}

.newsletter-input {
  flex: 1;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 40px;
  padding: 12px 18px;
  color: white;
  font-size: 0.9rem;
  outline: none;
  transition: all 0.3s ease;
}

.newsletter-input::placeholder {
  color: #b0c4aa;
}

.newsletter-input:focus {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--yellow-primary);
}

.newsletter-btn {
  width: 48px;
  height: 48px;
  background: var(--yellow-primary);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-dark);
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.newsletter-btn:hover {
  background: #ffd666;
  transform: scale(1.05);
}

/* Footer Headings */
.footer-heading {
  color: white;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 12px;
}

.footer-heading::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--yellow-primary);
  border-radius: 2px;
}

/* Footer Links */
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links li a {
  color: #cfdeb0;
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-links li a i {
  font-size: 0.7rem;
  color: var(--yellow-primary);
  transition: transform 0.3s ease;
}

.footer-links li a:hover {
  color: white;
  transform: translateX(5px);
}

.footer-links li a:hover i {
  transform: translateX(3px);
}

/* Social Icons */
.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 25px;
}

.social-icon {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #cfdeb0;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.social-icon:hover {
  transform: translateY(-3px);
  color: white;
}

.social-icon.facebook:hover {
  background: #1877f2;
}

.social-icon.twitter:hover {
  background: #000000;
}

.social-icon.instagram:hover {
  background: linear-gradient(45deg, #f58529, #dd2a7b, #8134af, #515bd4);
}

.social-icon.linkedin:hover {
  background: #0077b5;
}

.social-icon.youtube:hover {
  background: #ff0000;
}

.social-icon.tiktok:hover {
  background: #000000;
}

/* Footer App Badges */
.footer-app-badges {
  display: flex;
  /* flex-direction: column; */
  gap: 10px;
}

.footer-badge-link img {
  height: 40px;
  width: auto;
  transition: all 0.3s ease;
}

.footer-badge-link:hover img {
  transform: translateY(-2px);
  filter: brightness(1.1);
}

/* Footer Bottom */
.footer-bottom {
  padding: 10px 0 15px;
}

.copyright {
  color: #b0c4aa;
  font-size: 0.9rem;
  margin: 0;
}

.copyright i {
  margin-right: 5px;
}

.payment-methods {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.payment-methods span {
  color: #b0c4aa;
  font-size: 0.85rem;
}

.payment-icons {
  display: flex;
  gap: 12px;
}

.payment-icons i {
  font-size: 1.8rem;
  color: #b0c4aa;
  transition: color 0.3s ease;
}

.payment-icons i:hover {
  color: white;
}

.footer-certifications {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 15px;
  flex-wrap: wrap;
}

.cert-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.05);
  padding: 6px 14px;
  border-radius: 30px;
  font-size: 0.75rem;
  color: #cfdeb0;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.cert-badge i {
  color: var(--yellow-primary);
  font-size: 0.8rem;
}

/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 48px;
  height: 48px;
  background: var(--yellow-primary);
  color: var(--text-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: 0 8px 20px rgba(244, 197, 66, 0.4);
  transition: all 0.3s ease;
  opacity: 0;
  visibility: hidden;
  z-index: 999;
  text-decoration: none;
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: #ffd666;
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(244, 197, 66, 0.5);
  color: var(--text-dark);
}

/* Responsive */
@media (max-width: 991px) {
  .footer-section {
    padding: 60px 0 0;
  }

  .footer-main {
    padding-bottom: 40px;
  }

  .footer-logo {
    font-size: 1.8rem;
  }

  .footer-certifications {
    justify-content: center;
    margin-top: 15px;
  }
}

@media (max-width: 768px) {
  .footer-section {
    padding: 40px 0 0;
  }

  .footer-heading {
    margin-bottom: 20px;
    font-size: 1rem;
  }

  .footer-newsletter {
    padding: 20px;
  }

  .copyright {
    text-align: center;
    margin-bottom: 15px;
  }

  .payment-methods {
    justify-content: center;
    margin-bottom: 15px;
  }

  .footer-certifications {
    justify-content: center;
  }

  .footer-app-badges {
    flex-direction: row;
  }

  .back-to-top {
    bottom: 20px;
    right: 20px;
    width: 42px;
    height: 42px;
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  .footer-links li {
    margin-bottom: 10px;
  }

  .footer-links li a {
    font-size: 0.85rem;
  }

  .payment-icons i {
    font-size: 1.5rem;
  }

  .footer-app-badges {
    flex-direction: column;
  }

  .cert-badge {
    padding: 4px 10px;
    font-size: 0.7rem;
  }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  section {
    padding: 60px 0;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-description {
    font-size: 1rem;
  }

  .store-badge {
    height: 45px;
  }

  .btn-primary-custom,
  .btn-outline-custom {
    padding: 10px 20px;
    font-size: 0.9rem;
  }

  .about-image {
    margin-bottom: 30px;
  }

  .contact-card {
    padding: 25px;
  }

  .section-title {
    font-size: 2rem;
  }
}

/* ===== UTILITY CLASSES ===== */
.text-green {
  color: var(--green-primary);
}

.text-yellow {
  color: var(--yellow-primary);
}

.fw-semibold {
  font-weight: 600;
}

.navbar-expand-lg .navbar-collapse {
  display: flex !important;
  flex-basis: auto;
  background: rgb(255 255 245 / 95%);
  padding: 20px;
  border-radius: 40px;
  justify-content: center;
  margin: 0 auto;
  flex-grow: 0;
}

.navbar.scrolled {
  backdrop-filter: blur(8px);
  box-shadow: var(--shadow-sm);
}

/* Simple Contact Info Styles */
.footer-contact-simple {
  margin: 20px 0;
}

.contact-item-simple {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  color: #cfdeb0;
  font-size: 0.9rem;
}

.contact-item-simple i {
  width: 20px;
  color: var(--yellow-primary);
  font-size: 1rem;
  text-align: center;
}

.contact-item-simple span {
  line-height: 1.4;
}

.contact-item-simple:hover {
  color: white;
}

.contact-item-simple:hover i {
  transform: scale(1.1);
}

/* Responsive */
@media (max-width: 768px) {
  .footer-contact-simple {
    margin: 15px 0;
  }

  .contact-item-simple {
    font-size: 0.85rem;
  }
}

.app-screen-swiper {
  padding: 0 30px;
  overflow: hidden !important;
}



.container-fluid {
overflow: hidden !important;
}














@media (max-width: 991px) {
  [data-aos="fade-left"],
  [data-aos="fade-right"] {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  /* Optional: Disable any custom animations */
  .animate-left,
  .animate-right {
    animation: none !important;
    transform: none !important;
    opacity: 1 !important;
  }
}
























/* Breadcrumb Section */
.my-breadcu {
  background-color: #1b4a27;
  width: 100%;
  display: flex;
  margin-top: -140px;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* Heights */
@media (min-width: 992px) {
  .my-breadcu {
    height: 300px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .my-breadcu {
    height: 250px;
  }
}
@media (max-width: 767px) {
  .my-breadcu {
    height: 200px;
  }
}

/* Breadcrumb Heading */
.my-breadcu h1 {
  color: white;
  font-family: var(--body-font);
  font-size: 2.6rem;
  padding-top: 120px;
}

/* Common Content Styles */
.common-styles-for h3 {
  font-family: var(--body-font);
  font-size: 1.5rem;
  color: var(--dark-color);
  margin-bottom: 12px;
}

.common-styles-for h4 {
  font-family: var(--body-font);
  font-size: 1.2rem;
  color: var(--secondary-color);
  margin-bottom: 10px;
}

.common-styles-for p {
  font-family: var(--body-font);
  font-size: 1rem;
  line-height: 1.8;
  color: var(--dark-gray);
  margin-bottom: 16px;
}

.common-styles-for ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 20px;
}

.section-padding {
  padding: 80px 0;
}
.common-styles-for ul li {
  font-family: var(--body-font);
  font-size: 0.95rem;
  color: var(--dark-gray);
  margin-bottom: 10px;
  padding-left: 26px;
  position: relative;
}

.common-styles-for ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #1b4a27 !important;
}

/* Responsive Text */
@media (max-width: 767px) {
  .my-breadcu h1 {
    font-size: 1.7rem;
  }

  .common-styles-for h3 {
    font-size: 1.3rem;
  }

  .common-styles-for h4 {
    font-size: 1.1rem;
  }

  .common-styles-for p,
  .common-styles-for ul li {
    font-size: 0.9rem;
  }
}

.common-styles-for {
  background: white;
}

.delate-form {
  max-width: 600px;
  margin: auto;
  padding: 20px;
}

.delate-form__group {
  position: relative;
  margin-bottom: 20px;
}

.delate-form__group i {
  position: absolute;
  top: 18px;
  left: 15px;
  /* transform: translateY(-50%); */
  color: #666;
  font-size: 16px;
}

.delate-form__group input,
.delate-form__group textarea {
  width: 100%;
  padding: 12px 15px 12px 45px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 14px;
  outline: none;
  transition: 0.3s;
}

.delate-form__group textarea {
  resize: none;
}

.delate-form__group input:focus,
.delate-form__group textarea:focus {
  border-color: #2b6e3c;
}

.delate-form__btn {
  width: 100%;
  padding: 12px;
  background: #2b6e3c;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s;
}

.delate-form__btn:hover {
  background: #1f4f2c;
}

/* Responsive */
@media (max-width: 576px) {
  .delate-form {
    padding: 15px;
  }

  .delate-form__group input,
  .delate-form__group textarea {
    font-size: 13px;
    padding: 10px 12px 10px 40px;
  }
}