/* Reset mobile anchor adjustments */
#about-us-short {
}
.faq-more-queries-wrap {
  padding-top: 0.75rem;
}

.faq-more-queries-btn {
  background-color: var(--light-color);
  color: var(--charcoal-color);
  border: 1px solid var(--accent-color);
  border-radius: 6px;
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.faq-more-queries-btn:hover {
  background-color: var(--accent-color);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.faq-more-queries-btn:active {
  transform: translateY(0);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.faq-more-queries-btn i {
  font-size: 0.8rem;
}
@import url("https://fonts.googleapis.com/css?family=Roboto:400,500,700&display=swap");

:root {
  --primary-color: #629c5c;
  --secondary-color: #38654e;
  --success-color: #629c5c;
  --warning-color: #f59e0b;
  --danger-color: #ef4444;
  --light-color: #e0ede8;
  --dark-color: #2a4b3a;
  --charcoal-color: #36454f;
  --white: #ffffff;
  --accent-color: #8bb8a3;
  --icons-color: rgb(32, 32, 32);
  --icons-color: rgb(32, 32, 32);

  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;

  --font-family-base: system-ui, -apple-system, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;
  --font-size-base: 1rem;
  --line-height-base: 1.6;
}

body {
  font-family: var(--font-family-base);
  padding-top: 76px;
  line-height: var(--line-height-base);
  color: var(--dark-color);
}

/* FontAwesome Icons - Default Icons Color */
.fas,
.far,
.fab,
.fal,
i {
  color: var(--icons-color);
}

.skip-link {
  position: absolute;
  top: 0;
  left: 0;
  padding: 0.5rem 1rem;
  background-color: var(--primary-color);
  color: var(--white);
  z-index: 9999;
  transform: translateY(-100%);
  transition: transform 0.3s;
}

.skip-link:focus {
  transform: translateY(0);
}

section {
  padding: 5rem 0;
}

@media (max-width: 767.98px) {
  section {
    padding: 3rem 0;
  }
}

@media (max-width: 575.98px) {
  section {
    padding: 2rem 0;
  }
}

a:focus {
  outline: none !important;
  box-shadow: none !important;
}

/* Keep accessibility for keyboard users */
a:focus-visible {
  outline: 2px solid var(--primary-color);
  outline-offset: 2px;
}

.navbar {
  transition: all 0.3s ease;
}

.navbar-custom {
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 0.75rem 1rem;
}

.navbar-scrolled {
  background-color: var(--white);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  padding: 0.5rem 1rem;
}

.navbar-custom .navbar-brand {
  font-weight: 700;
  color: var(--charcoal-color);
  font-size: 1.4rem;
}

.navbar-custom .navbar-brand i {
  color: var(--charcoal-color);
}

/* Make navbar logo bigger without changing navbar height */
.navbar-custom .navbar-brand img {
  height: 70px !important;
  width: auto !important;
  margin-right: 10px;
  vertical-align: middle;
}

@media (max-width: 575.98px) {
  .navbar-custom .navbar-brand img {
    height: 42px !important;
  }
}

.navbar-custom .nav-link-custom {
  color: var(--charcoal-color);
  font-weight: 500;
  padding: 0.5rem 1rem;
  margin: 0 0.25rem;
  border-radius: 7px;
  transition: all 0.2s ease;
}

.navbar-custom .nav-link-custom:hover,
.navbar-custom .nav-link-custom.active {
  color: var(--white);
  background-color: var(--charcoal-color);
  border: none !important;
}

@media (max-width: 991.98px) {
  .navbar-custom {
    padding: 0.5rem 1rem;
  }
  .navbar-custom .navbar-brand {
    font-size: 1.2rem;
  }
  .navbar-custom .navbar-collapse {
    padding: 0.5rem 0;
  }
  .navbar-custom .nav-link-custom {
    padding: 0.5rem 1rem;
    margin: 0.1rem 0;
    font-size: 0.9rem;
  }
}

.orderNow {
  background: #36454f !important;
  color: white !important;
  border: none !important;
  font-weight: 600 !important;
  position: relative !important;
  overflow: hidden !important;
  transition: all 0.4s ease !important;
  box-shadow: 0 4px 15px rgba(32, 32, 32, 0.3) !important;
  animation: pulse 2s infinite !important;
}

.orderNow::before {
  content: "" !important;
  position: absolute !important;
  top: 0 !important;
  left: -100% !important;
  width: 100% !important;
  height: 100% !important;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  ) !important;
  transition: left 0.5s !important;
}

.orderNow:hover::before {
  left: 100% !important;
}

.orderNow:hover {
  transform: translateY(-3px) scale(1.05) !important;
  box-shadow: 0 8px 25px rgba(37, 37, 37, 0.4) !important;
  animation: none !important;
}

.orderNow:active {
  transform: translateY(-1px) scale(1.02) !important;
  box-shadow: 0 4px 15px rgba(98, 156, 92, 0.3) !important;
  border: none !important;
}

@keyframes pulse {
  0% {
    box-shadow: 0 4px 15px rgba(98, 156, 92, 0.3);
  }
  50% {
    box-shadow: 0 4px 20px rgba(98, 156, 92, 0.5);
  }
  100% {
    box-shadow: 0 4px 15px rgba(226, 140, 222, 0.3);
    box-shadow: 0 4px 15px rgba(98, 156, 92, 0.3);
  }
}

.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-color: var(--light-color);
}

.hero-content h1 {
  font-size: 2.7rem;
  font-weight: 700;
  color: var(--charcoal-color);
  margin-bottom: 1.2rem;
  line-height: 1.15;
}

@media (min-width: 992px) {
  .hero-content h1 {
    font-size: 3.2rem;
  }
}

.hero-content .lead {
  font-size: 1.25rem;
  color: var(--secondary-color);
  max-width: 90%;
}

.hero-image-container {
  display: flex;
  align-items: center;
  justify-content: center;
  /* margin-top: rem; */
}

.hero-image-container .image-wrapper {
  width: 100%;
  max-width: 540px;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
}

.hero-image-container img {
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.hero-image-container img:hover {
  transform: scale(1.02);
}

@media (min-width: 992px) {
  .hero-image-container .image-wrapper {
    display: flex;
    justify-content: center;
  }
  .hero-image-container .image-wrapper img {
    aspect-ratio: 16 / 9;
    width: 100%;
    max-width: 1000px;
    height: auto;
    object-fit: cover;
    display: block;
  }
}

@media (max-width: 991.98px) {
  .hero-section {
    text-align: center;
    min-height: 90vh;
  }
  .hero-content h1 {
    font-size: 2.5rem;
  }
  .hero-content .lead {
    max-width: 100%;
    font-size: 1.1rem;
  }
}

@media (max-width: 575.98px) {
  .hero-section {
    padding-top: 0 !important;
    min-height: 80vh;
    margin-top: -10%;
  }
  .hero-content {
    padding-top: 3.8rem;
  }
  .hero-content h1 {
    font-size: 1.8rem;
    margin-bottom: 0.75rem;
    line-height: 1.2;
  }
  .hero-content .lead {
    font-size: 0.95rem;
    margin-bottom: 0.75rem;
    line-height: 1.4;
  }
}

/* Hero Benefits Animation */
.hero-benefits {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: flex-start;
  margin: 1.25rem 0;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding-left: 0.1rem;
  padding-right: 0.4rem;
  /* background: linear-gradient(135deg, var(--accent-color), var(--light-color)); */
  border-radius: 20px;
  /* box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1); */
  transition: all 0.3s ease;
  font-size: 0.85rem;
}

.benefit-item:nth-child(1) {
  animation-delay: 0.2s;
}

.benefit-item:nth-child(2) {
  animation-delay: 0.4s;
}

.benefit-item:nth-child(3) {
  animation-delay: 0.6s;
}

.benefit-item:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 8px 20px rgba(98, 156, 92, 0.3);
  background-color: #36454f;
}

.benefit-item:hover span {
  color: var(--white);
}

.benefit-item:hover .benefit-icon {
  color: var(--white);
  transform: scale(1.2);
}

.benefit-icon {
  font-size: 0.9rem;
  color: var(--icons-color);
  transition: all 0.3s ease;
}

.benefit-item span {
  font-weight: 600;
  color: var(--charcoal-color);
  font-size: 0.8rem;
  transition: all 0.3s ease;
}

@keyframes slideInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Enhanced Hero CTA */
.hero-cta {
  position: relative !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 0.5rem !important;
  padding: 1rem 2rem !important;
  font-size: 1.1rem !important;
  border-radius: 50px !important;
  overflow: hidden !important;
  text-decoration: none !important;
  z-index: 10 !important;
  opacity: 1 !important;
  transform: scale(1) !important;
}

.hero-cta .cta-arrow {
  transition: transform 0.3s ease !important;
  font-size: 0.9rem !important;
  color: var(--white) !important;
}

.hero-cta:hover .cta-arrow {
  transform: translateX(5px) !important;
}

.hero-cta .cta-text {
  color: var(--white) !important;
}

/* Delivery Notice */
.delivery-notice {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.75rem;
  margin-left: 0.5rem;
  border-radius: 25px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--charcoal-color);
  border-bottom: 1px solid rgba(80, 80, 80, 0.671);
}

.delivery-notice i {
  font-size: 1rem;
}

@keyframes fadeInScale {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Hero Title Animation */
.hero-title {
  opacity: 1;
  transform: translateY(0);
}

.hero-description {
  opacity: 1;
  transform: translateY(0);
}

@keyframes fadeInDown {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 767.98px) {
  .hero-benefits {
    gap: 0.4rem;
    justify-content: center;
    margin: 0.75rem 0;
  }

  .benefit-item {
    padding: 0.25rem 0.5rem;
    font-size: 0.7rem;
  }

  .benefit-icon {
    font-size: 0.7rem;
  }

  .hero-cta {
    padding: 0.75rem 1.5rem !important;
    font-size: 1rem !important;
    margin-top: 0.75rem !important;
  }

  /* Center delivery notices on phones */
  .delivery-notice {
    display: flex;
    width: 100%;
    justify-content: center;
    margin-left: 0;
    text-align: center;
  }
}

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

/* Challenges Container */
.challenges-grid {
  background-color: var(--white);
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  padding: 2.5rem;
  display: flex;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
  margin-top: 2rem;
}

.challenge-item {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 1rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

@media (min-width: 992px) {
  .challenge-item {
    width: 33.333%;
    border-bottom: none;
  }
}

@media (min-width: 1200px) {
  .challenge-item {
    width: 33.333%;
  }
}

.challenge-icon {
  font-size: 2rem;
  color: var(--icons-color);
  margin-right: 1.5rem;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--accent-color);
  border-radius: 50%;
  flex-shrink: 0;
}

.challenge-content h4 {
  color: var(--charcoal-color);
  font-weight: 600;
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.challenge-content p {
  color: var(--secondary-color);
  margin: 0;
  line-height: 1.6;
}

@media (max-width: 767.98px) {
  .challenges-grid {
    padding: 1.5rem;
  }

  .challenge-icon {
    font-size: 1.5rem;
    width: 50px;
    height: 50px;
    margin-right: 1rem;
  }
}

@media (max-width: 767.98px) {
  .challenges-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .challenge-item {
    padding: 1.5rem;
  }

  .challenge-icon {
    font-size: 1.5rem;
    width: 50px;
    height: 50px;
    margin-right: 1rem;
  }
}

.section-title {
  font-weight: 700;
  color: var(--charcoal-color);
  font-size: 2.5rem;
}

.section-divider {
  height: 4px;
  width: 70px;
  background-color: var(--primary-color);
  margin: 0 auto;
}

.about-content {
  margin-top: 2rem;
}

.about-description {
  max-width: 800px;
  margin: 0 auto;
}

.about-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--secondary-color);
  text-align: center;
  margin-bottom: 1.5rem;
}

@media (max-width: 767.98px) {
  .about-section {
    padding: 4rem 0;
  }
  .section-title {
    font-size: 2rem;
  }
  .about-text {
    font-size: 1rem;
    line-height: 1.6;
  }
}

.credentials-section {
  background-color: var(--light-color);
  padding: 5rem 0;
  position: relative;
}

.credentials-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background-image: linear-gradient(
    45deg,
    var(--light-color) 25%,
    transparent 25%,
    transparent 50%,
    var(--light-color) 50%,
    var(--light-color) 75%,
    transparent 75%,
    transparent
  );
  background-size: 20px 20px;
  opacity: 0.5;
  z-index: -1;
}

.credentials-container {
  background-color: var(--white);
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  padding: 2.5rem;
  display: flex;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
}

.credentials-container::after {
  content: "";
  position: absolute;
  bottom: -50px;
  right: -50px;
  width: 150px;
  height: 150px;
  background-color: var(--primary-color);
  opacity: 0.05;
  border-radius: 50%;
  z-index: 0;
}

.credential-item {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  width: 100%;
  padding: 1rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.credential-icon {
  font-size: 2rem;
  color: var(--icons-color);
  margin-right: 1.5rem;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--accent-color);
  border-radius: 50%;
  flex-shrink: 0;
}

.credential-content h4 {
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--charcoal-color);
}

.credential-content p {
  color: var(--secondary-color);
  margin-bottom: 0;
}

.credential-badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background-color: rgba(40, 167, 69, 0.1);
  color: var(--success-color);
  border-radius: 10px;
  font-weight: 500;
  font-size: 0.875rem;
  margin-top: 0.5rem;
  transition: all 0.3s ease;
}

.credential-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.certificate-seal {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 2rem;
  margin-right: 1.5rem;
  flex-shrink: 0;
}

.certificate-seal img {
  transition: transform 0.3s ease;
}

@media (max-width: 767.98px) {
  .credentials-section {
    padding: 4rem 0;
  }
  .credentials-container {
    padding: 1.5rem;
  }
  .credential-icon {
    font-size: 1.5rem;
    width: 50px;
    height: 50px;
    margin-right: 1rem;
  }
  .certificate-seal {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
    margin-right: 1rem;
  }
}

@media (max-width: 468.98px) {
  .credentials-container {
    flex-direction: column;
  }
}

@media (min-width: 992px) {
  .credential-item {
    width: 50%;
    border-bottom: none;
  }
}

.footer-custom {
  background-color: var(--charcoal-color);
  color: var(--white);
  padding: 0.6rem 0;
  text-align: center;
  font-size: 0.8rem;
}

/* CTA SECTION (unchanged, well-structured — skip for brevity) */

.credential-item {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  padding: 1rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  width: 100%; /* default for mobile */
}

@media (min-width: 992px) {
  .credential-item {
    width: 50%; /* 2 items per row on laptops and above */
    border-bottom: none; /* optional: remove bottom border on large screens */
  }
} /* Cal
l-to-Action Section */
.cta-section {
  background-color: var(--white);
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: "";
  position: absolute;
  top: -50px;
  left: -50px;
  width: 200px;
  height: 200px;
  background-color: var(--primary-color);
  opacity: 0.05;
  border-radius: 50%;
  z-index: 0;
}

.cta-section::after {
  content: "";
  position: absolute;
  bottom: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background-color: var(--primary-color);
  opacity: 0.05;
  border-radius: 50%;
  z-index: 0;
}

.cta-buttons-container {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.btn-cta {
  display: block;
  padding: 1.5rem;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.4s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
}

.btn-cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.6s;
}

.btn-cta:hover::before {
  left: 100%;
}

.btn-cta:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.btn-cta:active {
  transform: translateY(-2px) scale(1.01);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Button click animation for JavaScript interaction */
.button-clicked {
  animation: buttonPulse 0.3s ease;
}

@keyframes buttonPulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(0.98);
  }
  100% {
    transform: scale(1);
  }
}

.btn-cta-primary {
  background-color: var(--primary-color);
  color: var(--white);
  border: 2px solid var(--primary-color);
}

.btn-cta-primary:hover {
  background-color: var(--secondary-color);
  border-color: var(--secondary-color);
  color: var(--white);
}

.btn-cta-secondary {
  background-color: var(--white);
  color: var(--dark-color);
  border: 2px solid var(--secondary-color);
}

.btn-cta-secondary:hover {
  background-color: var(--light-color);
  color: var(--dark-color);
}

.cta-button-content {
  display: flex;
  align-items: center;
}

.cta-icon {
  font-size: 1.75rem;
  margin-right: 1.5rem;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  flex-shrink: 0;
}

.btn-cta-secondary .cta-icon {
  background-color: rgba(0, 0, 0, 0.05);
}

.cta-text {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.cta-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.cta-subtitle {
  font-size: 1rem;
  opacity: 0.9;
}

.cta-info {
  margin-top: 2rem;
  color: var(--secondary-color);
}

.operating-hours {
  font-size: 0.95rem;
  display: inline-block;
  padding: 0.5rem 1rem;
  background-color: var(--light-color);
  border-radius: 50px;
}

/* Media queries for responsive CTA section */
@media (min-width: 768px) {
  .cta-buttons-container {
    flex-direction: row;
    justify-content: center;
  }

  .btn-cta {
    flex: 1;
    max-width: 300px;
  }
}

@media (max-width: 767.98px) {
  .cta-section {
    padding: 4rem 0;
  }

  .btn-cta {
    padding: 1.25rem;
  }

  .cta-icon {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
    margin-right: 1rem;
  }

  .cta-title {
    font-size: 1.1rem;
  }

  .cta-subtitle {
    font-size: 0.9rem;
  }
}

@media (max-width: 575.98px) {
  .btn-cta {
    padding: 1rem;
  }

  .cta-icon {
    width: 40px;
    height: 40px;
    font-size: 1.25rem;
    margin-right: 0.75rem;
  }
}

.button-clicked {
  animation: buttonPulse 0.3s ease;
}

@keyframes buttonPulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(0.96);
  }
  100% {
    transform: scale(1);
  }
}

/* for MOBILE DEVICES WORKING  */
@media (max-width: 575.98px) {
  .navbar-toggler {
    height: 2rem;
    width: 2rem;
    border: none;
    padding: 0; /* Remove extra spacing */
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.4s ease-in-out;
    transform-origin: center center; /* crucial */
  }

  .navbar-toggler:focus {
    outline: none;
    box-shadow: none;
  }

  /* .navbar-toggler[aria-expanded="true"] {
    transform: rotate(130deg);
  } */
}

/* Contact Section - Clean & Professional */
.contact-section {
  background-color: var(--light-color);
  padding: 1rem 0;
}

.contact-subtitle {
  color: var(--secondary-color);
  font-size: 1.1rem;
  margin-bottom: 0;
}

.gallon-price-info {
  margin: 1.5rem 0;
  text-align: center;
}

.price-container {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  background: linear-gradient(
    135deg,
    rgba(98, 156, 92, 0.1),
    rgba(139, 184, 163, 0.1)
  );
  border: 2px solid rgba(98, 156, 92, 0.2);
  border-radius: 50px;
  padding: 1rem 1.5rem;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.price-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transition: left 0.5s ease;
}

.price-container:hover::before {
  left: 100%;
}

.price-container:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(98, 156, 92, 0.15);
  border-color: var(--primary-color);
}

.price-amount {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--charcoal-color);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.price-text {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--charcoal-color);
}

.delivery-badge {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--charcoal-color);
  color: var(--white);
  padding: 0.4rem 0.8rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  animation: pulse-glow 2s ease-in-out infinite;
}

.delivery-badge i {
  color: var(--white);
  font-size: 0.8rem;
}

@keyframes pulse-glow {
  0%,
  100% {
    box-shadow: 0 0 5px rgba(54, 69, 79, 0.3);
  }
  50% {
    box-shadow: 0 0 15px rgba(54, 69, 79, 0.6);
  }
}

.contact-content {
  max-width: 800px;
  margin: 0 auto;
}

/* Order Steps */
.order-steps {
  display: flex;
  justify-content: space-between;
  margin: 3rem 0;
  gap: 2rem;
}

.step-item {
  flex: 1;
  text-align: center;
}

.step-number {
  width: 50px;
  height: 50px;
  background-color: var(--charcoal-color);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
  margin: 0 auto 1rem;
}

.step-content h4 {
  color: var(--charcoal-color);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.step-content p {
  color: var(--secondary-color);
  font-size: 0.95rem;
  margin: 0;
}

/* Contact Buttons */
.contact-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin: 3rem 0;
}

.contact-btn {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.contact-btn.primary {
  background-color: var(--charcoal-color);
  color: var(--white);
}

.contact-btn.primary i {
  color: var(--white);
}

.contact-btn.primary:hover {
  background-color: var(--secondary-color);
  color: var(--white);
  transform: translateY(-2px);
}

.contact-btn.primary:hover i {
  color: var(--white);
}

.contact-btn.secondary {
  background-color: var(--white);
  color: var(--charcoal-color);
  border: 2px solid var(--charcoal-color);
}

.contact-btn.secondary i {
  color: var(--charcoal-color);
}

.contact-btn.secondary:hover {
  background-color: var(--charcoal-color);
  color: var(--white);
  transform: translateY(-2px);
}

.contact-btn.secondary:hover i {
  color: var(--white);
}

.contact-btn.whatsapp {
  background-color: #128c7e;
  color: var(--white);
}

.contact-btn.whatsapp i {
  color: var(--white);
}

.contact-btn.whatsapp:hover {
  background-color: var(--charcoal-color);
  color: var(--white);
  transform: translateY(-2px);
}

.contact-btn.whatsapp:hover i {
  color: var(--white);
}

/* Service Areas */
.service-areas {
  text-align: center;
  margin-top: 2rem;
}

.service-title {
  color: var(--charcoal-color);
  font-weight: 600;
  margin-bottom: 1rem;
}

.areas-list {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.area-item {
  background-color: var(--white);
  color: var(--charcoal-color);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 500;
}

/* Mobile Responsive */
@media (max-width: 767.98px) {
  .order-steps {
    flex-direction: column;
    gap: 2rem;
  }

  .contact-buttons {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
  }

  .contact-btn {
    flex: 1;
    min-width: 140px;
    max-width: 200px;
    justify-content: center;
  }

  .areas-list {
    justify-content: center;
    gap: 0.75rem;
  }

  .area-item {
    padding: 0.4rem 0.8rem;
    font-size: 0.85rem;
  }
}

/* Extra small mobile adjustments for contact buttons */
@media (max-width: 575.98px) {
  .contact-buttons {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .contact-btn {
    width: 100%;
    max-width: 280px;
    min-width: auto;
  }

  .price-container {
    flex-direction: row;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    width: 90%;
    min-width: 320px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .price-amount {
    font-size: 1.6rem;
  }

  .price-text {
    font-size: 1rem;
  }

  .delivery-badge {
    font-size: 0.8rem;
    padding: 0.3rem 0.6rem;
  }
}
/* Partner Section Enhancements */
.partner-highlight {
  /* background: linear-gradient(135deg, var(--light-color), var(--accent-color)); */
}

.partner-badge {
  background-color: var(--primary-color);
  color: var(--white);
}

/* FSSAI with QR Code */
.fssai-container {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-right: 1.5rem;
  flex-shrink: 0;
}

.qr-code {
  padding: 0.5rem;
  background-color: var(--white);
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.qr-code:hover {
  transform: scale(1.05);
}

.qr-code img {
  display: block;
  border-radius: 4px;
}

.qr-instruction {
  font-size: 0.85rem;
  color: var(--secondary-color);
  margin-top: 0.5rem;
  font-style: italic;
  border: none;
}

.qr-instruction i {
  color: var(--primary-color);
  margin-right: 0.25rem;
  border: none;
}

/* Mobile adjustments for FSSAI section */
@media (max-width: 767.98px) {
  .fssai-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-right: 1rem;
  }

  .qr-code {
    margin-top: 0.5rem;
  }
}

.verify-certification {
  color: var(--charcoal-color);
  font-style: normal;
  border: none;
}
/* Gallery Section */
.gallery-section {
  background-color: var(--white);
}

/* Portrait orientation for gallery media */
.carousel-inner {
  aspect-ratio: 4 / 5;
  width: 100%;
  max-width: 100%;
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}
.gallery-img {
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

/* Ensure portrait on small devices too */
@media (max-width: 767.98px) {
  .carousel-inner {
    aspect-ratio: 4 / 5 !important;
    height: auto !important;
    min-height: 0 !important;
  }
  .gallery-img {
    aspect-ratio: 4 / 5 !important;
    width: 100% !important;
    height: 100% !important;
    min-height: 0 !important;
    object-fit: cover !important;
  }
}

.carousel-caption {
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.377));
  border-radius: 0 0 12px 12px;
  padding: 1.5rem;
}

.carousel-caption h5 {
  color: var(--white);
  font-weight: 600;
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.carousel-caption p {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 0;
}

.carousel-indicators {
  margin-bottom: -50px;
  z-index: 2;
  color: orange;
}

.carousel-indicators button {
  display: none;
}

.carousel-indicators button.active {
  background-color: var(--charcoal-color);
  border-color: var(--charcoal-color);
  opacity: 1;
}

.carousel-control-prev,
.carousel-control-next {
  width: 45px !important;
  height: 45px !important;
  min-width: 45px !important;
  min-height: 45px !important;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  will-change: transform;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-color: rgba(124, 124, 124, 0.596);
  border-radius: 50%;
  width: 45px !important;
  height: 45px !important;
  min-width: 45px !important;
  min-height: 45px !important;
  transition: all 0.3s ease;
}

.carousel-control-prev:hover .carousel-control-prev-icon,
.carousel-control-next:hover .carousel-control-next-icon {
  background-color: rgba(124, 124, 124, 0.774);
  transform: scale(1.05);
}

.carousel-control-prev {
  margin-left: 8px !important;
}
.carousel-control-next {
  margin-right: 16px !important;
}

/* Mobile adjustments */
@media (max-width: 767.98px) {
  .carousel-caption {
    padding: 1rem;
  }

  .carousel-caption h5 {
    font-size: 1.2rem;
  }

  .carousel-caption p {
    font-size: 0.9rem;
  }

  .carousel-control-prev-icon,
  .carousel-control-next-icon {
    width: 40px !important;
    height: 40px !important;
  }
}

/* Portrait grid for larger screens */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(220px, 1fr));
  gap: 1rem;
  align-items: start;
  justify-items: center;
}

.gallery-card {
  width: 100%;
  max-width: 320px; /* keep images from looking too large on laptops */
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

.gallery-card .gallery-img {
  width: 100%;
  aspect-ratio: 4 / 5;
  height: auto;
  object-fit: cover;
}

@media (min-width: 1200px) {
  .gallery-card {
    max-width: 240px; /* ~30% smaller than earlier sizing on very large screens */
  }
}

/* Make carousel smaller on laptops and larger screens */
@media (min-width: 992px) {
  #galleryCarousel {
    width: 50%;
    margin-left: auto;
    margin-right: auto;
  }
}

/* 2 columns on tablets, smaller cards on laptops */
@media (min-width: 768px) and (max-width: 991.98px) {
  .gallery-grid {
    grid-template-columns: repeat(2, minmax(220px, 1fr));
  }
  .gallery-card {
    max-width: 300px;
  }
}

@media (min-width: 992px) and (max-width: 1199.98px) {
  .gallery-grid {
    grid-template-columns: repeat(3, minmax(220px, 1fr));
  }
  .gallery-card {
    max-width: 224px; /* ~30% smaller on laptops */
  }
}

/* Hover interactions for gallery cards on laptop and larger screens */
@media (min-width: 992px) {
  .gallery-card {
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .gallery-card .gallery-img {
    transition: transform 0.3s ease;
  }

  .gallery-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
  }

  .gallery-card:hover .gallery-img {
    transform: scale(1.02);
  }
}

.about-cards-wrapper {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.about-card {
  font-family: "Roboto", Arial, sans-serif;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(44, 62, 80, 0.08),
    0 1.5px 6px rgba(44, 62, 80, 0.04);
  border: 1.5px solid #e0ede8;
  padding: 2.4rem 2.2rem 1.7rem 2.2rem;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
  transition: box-shadow 0.22s, border-color 0.22s;
  position: relative;
  overflow: hidden;
}
.about-card::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 7px;
  background: linear-gradient(
    90deg,
    var(--primary-color) 0%,
    var(--accent-color) 100%
  );
  border-radius: 18px 18px 0 0;
}
.about-card:hover {
  box-shadow: 0 10px 36px rgba(44, 62, 80, 0.16),
    0 3px 12px rgba(44, 62, 80, 0.09);
  border-color: var(--primary-color);
}
.about-card .section-title {
  font-family: "Roboto", Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.01em;
  margin-top: 1.2rem;
  margin-bottom: 1.1rem;
}
.about-list {
  font-family: "Roboto", Arial, sans-serif;
  font-size: 1.08rem;
  color: var(--charcoal-color);
  line-height: 1.7;
  margin-bottom: 0;
}
@media (max-width: 767.98px) {
  .about-card {
    padding: 1.2rem 0.7rem 1rem 0.7rem;
    max-width: 98vw;
    border-radius: 12px;
  }
  .about-card::before {
    height: 5px;
    border-radius: 12px 12px 0 0;
  }
}

/* FAQ Section Styles */
.faq-section {
  background: var(--light-color);
}

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

.faq-item {
  background: var(--white);
  border-radius: 12px;
  margin-bottom: 1rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
  transform: translateY(-2px);
}

.faq-question {
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--white);
  border: none;
  width: 100%;
  text-align: left;
  transition: all 0.3s ease;
}

.faq-question:hover {
  background: rgba(98, 156, 92, 0.05);
}

.faq-question h4 {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--charcoal-color);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.faq-icon {
  color: var(--icons-color);
  font-size: 1.2rem;
  flex-shrink: 0;
}

.faq-arrow {
  color: var(--primary-color);
  font-size: 1rem;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-question[aria-expanded="true"] .faq-arrow {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 1.5rem 1.5rem;
  background: var(--white);
}

.faq-answer p {
  margin: 0;
  color: var(--charcoal-color);
  line-height: 1.6;
  font-size: 1rem;
}

/* FAQ Animation for collapse */
.faq-item .collapse {
  transition: all 0.3s ease;
}

.faq-item .collapsing {
  transition: all 0.3s ease;
}

/* Responsive FAQ Styles */
@media (max-width: 767.98px) {
  .faq-question {
    padding: 1.25rem;
  }

  .faq-question h4 {
    font-size: 1rem;
    gap: 0.5rem;
  }

  .faq-icon {
    font-size: 1.1rem;
  }

  .faq-answer {
    padding: 0 1.25rem 1.25rem;
  }

  .faq-answer p {
    font-size: 0.95rem;
  }
}

@media (max-width: 575.98px) {
  .faq-question {
    padding: 1rem;
  }

  .faq-question h4 {
    font-size: 0.95rem;
  }

  .faq-answer {
    padding: 0 1rem 1rem;
  }
}

/* About Us Read More Button */
.about-us-read-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: var(--charcoal-color);
  color: var(--white);
  padding: 0.54rem 1.08rem;
  border-radius: 22px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.81rem;
  transition: all 0.3s ease;
  margin-top: 0.45rem;
  border: 2px solid var(--charcoal-color);
}

.about-us-read-more-btn:hover {
  background: var(--white);
  color: var(--charcoal-color);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(54, 69, 79, 0.2);
}

.about-us-read-more-btn i {
  color: inherit;
  font-size: 0.72rem;
  transition: transform 0.3s ease;
}

.about-us-read-more-btn:hover i {
  transform: translateX(3px);
}

.customer-first {
  font-weight: 700;
  color: var(--charcoal-color);
  background: rgba(98, 156, 92, 0.1);
  padding: 0.1rem 0.3rem;
  border-radius: 4px;
  text-shadow: 0 1px 2px rgba(98, 156, 92, 0.1);
}

.about-us-card {
  background: #f0f8f5;
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(44, 62, 80, 0.08),
    0 1.5px 6px rgba(44, 62, 80, 0.04);
  padding: 2.2rem 1.5rem 1.7rem 1.5rem;
  margin-bottom: 2.5rem;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

@media (max-width: 767.98px) {
  .about-us-card {
    padding: 1.2rem 0.7rem 1rem 0.7rem;
    border-radius: 12px;
  }
}

:root {
  --navbar-height: 76px; /* Default navbar height */
}

body {
  font-family: var(--font-family-base);
  padding-top: var(--navbar-height); /* Dynamic padding */
  line-height: var(--line-height-base);
  color: var(--dark-color);
}

@media (max-width: 991.98px) {
  :root {
    --navbar-height: 60px; /* Adjust for mobile navbar height */
  }
}

@media (max-width: 575.98px) {
  :root {
    --navbar-height: 56px; /* Further adjust for smaller screens */
  }
  .about-section {
    padding: 3rem 0 2rem 0; /* Ensure enough top padding to avoid navbar overlap */
  }
}
