/* ============================================ */
/* Hero Slider Styles */
/* ============================================ */
.hero-slider-container {
  position: relative;
  width: 100%;
  height: 95vh;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

section:has(.hero-slider-container) {
  margin: 0;
  padding: 0;
}

.hero-slider-wrapper {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
  touch-action: pan-y pinch-zoom;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

.hero-slide {
  flex: 0 0 100%;
  width: 100%;
  height: 95vh;
  position: relative;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  touch-action: pan-y;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.hero-slider-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: white;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  opacity: 0.8;
}

.hero-slider-nav-btn:hover {
  background: rgba(255, 255, 255, 0.3);
  opacity: 1;
  transform: translateY(-50%) scale(1.1);
}

.hero-slider-nav-btn.prev {
  left: 2rem;
}

.hero-slider-nav-btn.next {
  right: 2rem;
}

.hero-slider-dots {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.75rem;
  z-index: 10;
}

.hero-slider-dot {
  width: 48px;
  height: 4px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
}

.hero-slider-dot.active {
  background: white;
  width: 64px;
}

@media (max-width: 768px) {
  .hero-slider-nav-btn {
    display: none !important;
  }
  
  .hero-slider-dots {
    bottom: 1.5rem;
  }
}

/* ============================================ */
/* CTA Buttons - Clean, Modern Design */
/* ============================================ */

/* Primary CTA - Hero, Contact */
.btn-slide-hover {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 0.875rem 1.75rem;
  border-radius: 0.5rem;
  background: #01732b;
  font-family: "Lato", sans-serif;
  font-size: 0.9375rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #fff;
  text-decoration: none;
  border: 2px solid #01732b;
  box-shadow: 0 4px 14px rgba(1, 115, 43, 0.25);
  cursor: pointer;
  transition: all 0.25s ease;
}

.btn-slide-hover:hover {
  background: #014d1f;
  border-color: #014d1f;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(1, 115, 43, 0.35);
}

.btn-slide-hover:active {
  transform: translateY(0);
}

.btn-slide-hover span {
  padding: 0;
}

/* Secondary / Outline CTA */
.btn-slide-hover-outline {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 0.875rem 1.75rem;
  border-radius: 0.5rem;
  background: transparent;
  font-family: "Lato", sans-serif;
  font-size: 0.9375rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #fff;
  text-decoration: none;
  border: 2px solid rgba(255, 255, 255, 0.9);
  cursor: pointer;
  transition: all 0.25s ease;
}

.btn-slide-hover-outline:hover {
  background: rgba(255, 255, 255, 0.95);
  color: #01732b;
  border-color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.btn-slide-hover-outline:active {
  transform: translateY(0);
}

.btn-slide-hover-outline span {
  padding: 0;
}

/* Subtle variant for light sections */
.btn-slide-hover-secondary {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 0.875rem 1.75rem;
  border-radius: 0.5rem;
  background: #fff;
  font-family: "Lato", sans-serif;
  font-size: 0.9375rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #01732b;
  text-decoration: none;
  border: 2px solid #01732b;
  cursor: pointer;
  transition: all 0.25s ease;
}

.btn-slide-hover-secondary:hover {
  background: #01732b;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(1, 115, 43, 0.3);
}

.btn-slide-hover-secondary span {
  padding: 0;
}

/* About section CTA */
.btn-about-cta {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 0.875rem 1.75rem;
  border-radius: 0.5rem;
  background: #01732b;
  font-family: "Lato", sans-serif;
  font-size: 0.9375rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #fff;
  text-decoration: none;
  border: 2px solid #01732b;
  box-shadow: 0 4px 14px rgba(1, 115, 43, 0.25);
  cursor: pointer;
  transition: all 0.25s ease;
}

.btn-about-cta:hover {
  background: #014d1f;
  border-color: #014d1f;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(1, 115, 43, 0.35);
}

.btn-about-cta:active {
  transform: translateY(0);
}

/* Header Get Quote button */
.btn-header-cta {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 0.5rem 1.25rem;
  border-radius: 0.5rem;
  background: #01732b;
  font-family: "Lato", sans-serif;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fff;
  text-decoration: none;
  border: 2px solid #01732b;
  box-shadow: 0 2px 8px rgba(1, 115, 43, 0.2);
  transition: all 0.25s ease;
}

.btn-header-cta:hover {
  background: #014d1f;
  border-color: #014d1f;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(1, 115, 43, 0.3);
}

.btn-header-cta:active {
  transform: translateY(0);
}

/* Quote modal submit button */
.quote-submit-btn {
  font-family: "Lato", sans-serif;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  border: 2px solid #01732b;
  box-shadow: 0 4px 14px rgba(1, 115, 43, 0.2);
}

.quote-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(1, 115, 43, 0.3);
}

.quote-submit-btn:active {
  transform: translateY(0);
}

/* ============================================ */
/* Services Section - Image Card Style */
/* ============================================ */
:root {
  --card-d: 700ms;
  --card-e: cubic-bezier(0.19, 1, 0.22, 1);
}

.section-services {
  font-family: "Lato", sans-serif;
  background-color: #f5f1e8; /* beige */
  color: #000000; /* black */
}

.section-services .header-section {
  margin-bottom: 0;
}

.section-services .header-title {
  position: relative;
  padding-bottom: 1rem;
  margin-bottom: 0;
  font-family: "Merriweather", serif;
  font-weight: 700;
  font-size: 2.25rem;
  letter-spacing: -0.02em;
  color: #000000; /* black */
  line-height: 1.2;
}

.dark .section-services .header-title {
  color: #fff;
}

.section-services .header-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #01732b 0%, #014d1f 100%); /* primary */
  border-radius: 2px;
}

.section-services .header-desc {
  margin-top: 1rem;
  font-size: 1.0625rem;
  font-weight: 400;
  letter-spacing: 0.01em;
  color: #000000; /* black */
  line-height: 1.5;
}

/* Page content grid */
.section-services .page-content {
  display: grid;
  grid-gap: 1rem;
  margin: 0 auto;
}

@media (min-width: 600px) {
  .section-services .page-content {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 800px) {
  .section-services .page-content {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Card */
.section-services .card {
  position: relative;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding: 1rem 1rem 1.5rem 1rem;
  width: 100%;
  text-align: center;
  color: #f5f5f5;
  background-color: #f5f5f5;
  box-shadow: 0 1px 1px rgba(0,0,0,0.1),
    0 2px 2px rgba(0,0,0,0.1),
    0 4px 4px rgba(0,0,0,0.1),
    0 8px 8px rgba(0,0,0,0.1),
    0 16px 16px rgba(0,0,0,0.1);
}

@media (min-width: 600px) {
  .section-services .card {
    height: 350px;
  }
}

.section-services .card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 110%;
  background-image: var(--card-bg);
  background-size: cover;
  background-position: center;
  transition: transform calc(var(--card-d) * 1.5) var(--card-e);
  pointer-events: none;
}

.section-services .card::after {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 200%;
  pointer-events: none;
  background-image: linear-gradient(
    to bottom,
    hsla(0, 0%, 0%, 0) 0%,
    hsla(0, 0%, 0%, 0.009) 11.7%,
    hsla(0, 0%, 0%, 0.034) 22.1%,
    hsla(0, 0%, 0%, 0.072) 31.2%,
    hsla(0, 0%, 0%, 0.123) 39.4%,
    hsla(0, 0%, 0%, 0.182) 46.6%,
    hsla(0, 0%, 0%, 0.249) 53.1%,
    hsla(0, 0%, 0%, 0.320) 58.9%,
    hsla(0, 0%, 0%, 0.394) 64.3%,
    hsla(0, 0%, 0%, 0.468) 69.3%,
    hsla(0, 0%, 0%, 0.540) 74.1%,
    hsla(0, 0%, 0%, 0.607) 78.8%,
    hsla(0, 0%, 0%, 0.668) 83.6%,
    hsla(0, 0%, 0%, 0.721) 88.7%,
    hsla(0, 0%, 0%, 0.762) 94.1%,
    hsla(0, 0%, 0%, 0.790) 100%
  );
  transform: translateY(-50%);
  transition: transform calc(var(--card-d) * 2) var(--card-e);
}

.section-services .card .content {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding: 1rem 1rem 1.5rem 1rem;
  transition: transform var(--card-d) var(--card-e);
  z-index: 1;
}

.section-services .card .content > * + * {
  margin-top: 1rem;
}

.section-services .card .title {
  font-size: 1.3rem;
  font-weight: bold;
  line-height: 1.2;
  color: #fff;
}

.section-services .card .copy {
  font-family: "Merriweather", serif;
  font-size: 1.125rem;
  font-style: italic;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.95);
}

.section-services .card .btn {
  display: inline-block;
  cursor: pointer;
  margin-top: 1.5rem;
  padding: 0.75rem 1.5rem;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  color: #fff;
  background: #01732b;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 0.5rem;
  transition: all 0.25s ease;
}

.section-services .card .btn:hover {
  background: #fff;
  color: #01732b;
  border-color: #fff;
  transform: translateY(-2px);
}

.section-services .card .btn:focus {
  outline: 2px solid #fff5b5;
  outline-offset: 2px;
}

/* Hover animation - desktop only */
@media (hover: hover) and (min-width: 600px) {
  .section-services .card::after {
    transform: translateY(0);
  }

  .section-services .card .content {
    transform: translateY(calc(100% - 4.5rem));
  }

  .section-services .card .content > *:not(.title) {
    opacity: 0;
    transform: translateY(1rem);
    transition: transform var(--card-d) var(--card-e), opacity var(--card-d) var(--card-e);
  }

  .section-services .card:hover,
  .section-services .card:focus-within {
    align-items: center;
  }

  .section-services .card:hover::before,
  .section-services .card:focus-within::before {
    transform: translateY(-4%);
  }

  .section-services .card:hover::after,
  .section-services .card:focus-within::after {
    transform: translateY(-50%);
  }

  .section-services .card:hover .content,
  .section-services .card:focus-within .content {
    transform: translateY(0);
  }

  .section-services .card:hover .content > *:not(.title),
  .section-services .card:focus-within .content > *:not(.title) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: calc(var(--card-d) / 8);
  }

  .section-services .card:focus-within::before,
  .section-services .card:focus-within::after,
  .section-services .card:focus-within .content,
  .section-services .card:focus-within .content > *:not(.title) {
    transition-duration: 0s;
  }
}

/* Dark mode support */
.dark .section-services {
  background-color: rgba(24, 33, 17, 0.5);
}

.dark .section-services .header-desc {
  color: #9ca3af;
}

/* ============================================ */
/* Why Us Section - Two Column with Map BG */
/* ============================================ */
.why-us-section {
  background-color: #f5f1e8; /* beige */
  position: relative;
}

.why-us-map-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.4;
  pointer-events: none;
}

.why-us-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: start;
}

@media (min-width: 1024px) {
  .why-us-grid {
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: center;
  }
}

/* Left content */
.why-us-content {
  padding-right: 0;
}

@media (min-width: 1024px) {
  .why-us-content {
    padding-right: 2rem;
  }
}

.why-us-title {
  font-family: "Merriweather", serif;
  font-size: 2rem;
  font-weight: 700;
  color: #000000; /* black */
  line-height: 1.2;
  margin-bottom: 1.25rem;
}

@media (min-width: 768px) {
  .why-us-title {
    font-size: 2.5rem;
  }
}

.dark .why-us-title {
  color: #fff;
}

.why-us-desc {
  font-size: 1rem;
  line-height: 1.7;
  color: #000000; /* black */
  margin-bottom: 2rem;
}

.dark .why-us-desc {
  color: #9ca3af;
}

.why-us-btn {
  display: inline-block;
  padding: 0.875rem 1.75rem;
  font-size: 0.9375rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #fff;
  background: #01732b;
  border: 2px solid #01732b;
  border-radius: 0.5rem;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(1, 115, 43, 0.25);
  transition: all 0.25s ease;
}

.why-us-btn:hover {
  background: #014d1f;
  border-color: #014d1f;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(1, 115, 43, 0.35);
}

.why-us-btn:active {
  transform: translateY(0);
}

/* Right cards - 2x2 grid, single-service style */
.why-us-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

@media (max-width: 639px) {
  .why-us-cards {
    grid-template-columns: 1fr;
  }
}

.why-us-single-service {
  position: relative;
  background-color: #fff;
  border-radius: 10px;
  padding: 1.25rem 1rem;
  overflow: hidden;
}

.why-us-single-service .content {
  position: relative;
  z-index: 20;
}

.why-us-single-service .circle-before {
  position: absolute;
  top: 0;
  right: 0;
  transform: translate(40%, -40%);
  width: 100px;
  height: 100px;
  background-color: #01732b; /* primary */
  border: 6px solid #014d1f; /* primary darker */
  border-radius: 50%;
  opacity: 0.5;
  z-index: 10;
  transition: all 0.6s ease;
}

.why-us-single-service:hover .circle-before {
  width: 100%;
  height: 100%;
  transform: none;
  border: 0;
  border-radius: 0;
  opacity: 1;
}

.why-us-single-service .icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.75rem;
  width: 48px;
  height: 48px;
  background-color: #01732b; /* primary */
  border-radius: 8px;
  color: #fff;
  font-size: 0;
  transition: all 0.3s ease;
}

.why-us-single-service .icon .material-symbols-outlined {
  font-size: 24px;
}

.why-us-single-service:hover .icon {
  background-color: #fff;
  color: #01732b; /* primary */
}

.why-us-single-service .title {
  margin-bottom: 0.5rem;
  font-weight: 700;
  font-size: 1rem;
  color: #000;
  transition: color 0.3s ease;
}

.why-us-single-service:hover .title {
  color: #fff;
}

.why-us-single-service .description {
  margin-bottom: 0;
  font-size: 0.75rem;
  color: #000;
  line-height: 1.5;
  transition: color 0.3s ease;
}

.why-us-single-service:hover .description {
  color: #fff;
}

/* Card animation on scroll */
.why-us-single-service {
  opacity: 0;
  transform: translateY(24px);
  animation: whyUsCardIn 0.6s cubic-bezier(0.19, 1, 0.22, 1) forwards;
}

.why-us-single-service:nth-child(1) { animation-delay: 0.1s; }
.why-us-single-service:nth-child(2) { animation-delay: 0.2s; }
.why-us-single-service:nth-child(3) { animation-delay: 0.3s; }
.why-us-single-service:nth-child(4) { animation-delay: 0.4s; }

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

/* Dark mode */
.dark .why-us-section {
  background-color: rgba(24, 33, 17, 0.6);
}

.dark .why-us-single-service {
  background-color: #1a2a12;
}

.dark .why-us-single-service .title,
.dark .why-us-single-service .description {
  color: #e5e7eb;
}

.dark .why-us-single-service:hover .title,
.dark .why-us-single-service:hover .description {
  color: #fff;
}

/* ============================================ */
/* Text Marquee Banner - Auto Scrolling Loop */
/* ============================================ */
.text-marquee-banner {
  background: linear-gradient(135deg, #01732b 0%, #014d1f 100%); /* primary */
  width: 100%;
}

.text-marquee-track {
  display: flex;
  width: max-content;
  animation: text-marquee-scroll 25s linear infinite;
  will-change: transform;
}

.text-marquee-content {
  display: flex;
  align-items: center;
  white-space: nowrap;
  flex-shrink: 0;
  padding: 0 2rem;
}

.text-marquee-item {
  font-size: 1.375rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: 0.05em;
  padding: 0 2rem;
  text-transform: uppercase;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

@media (min-width: 768px) {
  .text-marquee-item {
    font-size: 1.75rem;
  }
}

@media (min-width: 1024px) {
  .text-marquee-item {
    font-size: 2rem;
  }
}

.text-marquee-sep {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.7);
}

@media (min-width: 768px) {
  .text-marquee-sep {
    font-size: 1.375rem;
  }
}

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

/* ============================================ */
/* Image Marquee - Seamless Infinite Loop */
/* ============================================ */
.image-marquee-container {
  overflow: hidden;
  position: relative;
  width: 100%;
  margin: 0;
  padding: 0;
}

.image-marquee-track {
  display: flex;
  white-space: nowrap;
  animation: marquee-scroll-images 30s linear infinite;
  will-change: transform;
  backface-visibility: hidden;
  perspective: 1000px;
}

.image-marquee-track:hover {
  animation-play-state: paused;
}

.image-marquee-group {
  display: flex;
  white-space: nowrap;
  flex-shrink: 0;
  margin: 0;
  padding: 0;
}

.image-marquee-item {
  flex-shrink: 0;
  border-radius: 12px;
  overflow: hidden;
  background: #f5f5f5;
}

.image-marquee-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@keyframes marquee-scroll-images {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-100%, 0, 0);
  }
}

@media (max-width: 768px) {
  .image-marquee-track {
    animation-duration: 25s;
  }
}

/* ============================================ */
/* Text Selection Colors */
/* ============================================ */
::selection {
  background-color: rgb(1 115 43); /* primary */
  color: rgb(255 255 255); /* white */
}

::-moz-selection {
  background-color: rgb(1 115 43); /* primary */
  color: rgb(255 255 255); /* white */
}

/* ============================================ */
/* Custom Scrollbar Colors */
/* ============================================ */
/* Webkit browsers (Chrome, Safari, Edge) */
::-webkit-scrollbar {
  width: 12px;
  height: 12px;
}

::-webkit-scrollbar-track {
  background: rgb(245 241 232); /* beige */
  border-radius: 6px;
}

::-webkit-scrollbar-thumb {
  background: rgb(1 115 43); /* primary */
  border-radius: 6px;
  border: 2px solid rgb(245 241 232); /* beige */
}

::-webkit-scrollbar-thumb:hover {
  background: rgb(62 39 35); /* deep-brown */
}

/* Firefox */
* {
  scrollbar-width: thin;
  scrollbar-color: rgb(1 115 43) rgb(245 241 232); /* primary beige */
}

/* ============================================ */
/* Signature Flavors Carousel - Separate Code */
/* ============================================ */
.signature-carousel-wrapper {
  position: relative;
  width: 100%;
  overflow: visible;
  padding: 20px 0;
}

.signature-carousel {
  width: 100%;
  overflow: visible;
}

.signature-carousel .owl-stage-outer {
  overflow: visible;
  padding: 20px 0;
}

.signature-carousel .owl-stage {
  display: flex;
  overflow: visible;
  align-items: stretch;
}

.signature-carousel .item {
  display: flex;
  flex-direction: column;
  overflow: visible;
  height: 100%;
}

.signature-carousel .owl-item {
  display: flex;
  height: 100%;
}

.signature-product-card {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  position: relative;
  z-index: 1;
  background: rgb(255 255 255);
  border-radius: 16px;
  border: 1px solid rgb(245 241 232);
  box-shadow: 0 2px 12px rgba(62, 39, 35, 0.06);
  padding: 0;
}

.signature-product-card:hover {
  transform: translateY(-8px);
  z-index: 10;
  box-shadow: 0 12px 32px rgba(62, 39, 35, 0.12);
  border-color: rgb(1 115 43 / 0.3);
}

.signature-card-image-wrapper {
  width: 100%;
  aspect-ratio: 1;
  position: relative;
  border-radius: 16px 16px 0 0;
  overflow: hidden;
  background: rgb(62 39 35); /* deep-brown - colored background like image */
  margin-bottom: 0;
  box-shadow: none;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.signature-product-card:hover .signature-card-image-wrapper {
  box-shadow: 0 6px 20px rgba(62, 39, 35, 0.15);
  transform: scale(1.02);
}

.signature-card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.signature-product-card:hover .signature-card-image {
  transform: scale(1.1);
}

/* Favorite Button */
.signature-fav-btn {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  width: 2.25rem;
  height: 2.25rem;
  background: rgb(255 255 255);
  border: none;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 3;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.signature-fav-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.signature-fav-btn .material-symbols-outlined {
  font-size: 1.125rem;
  color: rgb(156 163 175); /* gray-400 */
  transition: all 0.3s ease;
}

.signature-fav-btn:hover .material-symbols-outlined,
.signature-fav-btn.active .material-symbols-outlined {
  color: rgb(239 68 68); /* red-500 */
  font-variation-settings: 'FILL' 1;
}

.signature-fav-btn.active {
  background: rgb(255 255 255);
}

.signature-card-content {
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  transition: all 0.4s ease;
  padding: 1rem 1.25rem 1.25rem 1.25rem;
  width: 100%;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  flex: 1;
  min-height: 140px;
}

/* Category Label */
.signature-category-label {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: rgb(1 115 43); /* primary - green */
  margin-bottom: 0.125rem;
}

.signature-product-card h3 {
  transition: color 0.3s ease;
  color: #000000; /* black */
  font-size: 1.125rem;
  font-weight: 700;
  margin: 0;
  line-height: 1.4;
  min-height: 2.8rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.signature-product-card:hover h3 {
  color: rgb(1 115 43); /* primary */
}

.signature-product-card .flex.items-center.gap-1 {
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.signature-product-card .flex.items-center.gap-1 .material-symbols-outlined {
  font-size: 1.25rem;
  width: 1.25rem;
  height: 1.25rem;
  color: rgb(234 179 8); /* amber-500 */
}

.signature-product-card .flex.items-center.gap-1 span.text-earthy-gray {
  font-size: 0.875rem;
  margin-left: 0.375rem;
  color: #000000; /* black */
}

/* Price */
.signature-price {
  font-size: 1.75rem;
  font-weight: 900;
  color: #000000; /* black */
  line-height: 1.2;
  margin-top: 0;
}

/* Badge styling */
.signature-card-image-wrapper .absolute {
  z-index: 2;
}

.signature-card-image-wrapper .absolute span {
  backdrop-filter: blur(4px);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .signature-product-card {
    padding: 0.625rem;
  }
  
  .signature-card-image-wrapper {
    margin-bottom: 0.625rem;
  }
  
  .signature-product-card h3 {
    font-size: 0.95rem;
  }
  
  .signature-product-card p {
    font-size: 0.7rem;
  }
  
  .signature-product-card .font-black {
    font-size: 1.125rem;
  }
}

@media (max-width: 768px) {
  .signature-product-card {
    padding: 0.5rem;
  }
  
  .signature-card-image-wrapper {
    margin-bottom: 0.5rem;
  }
  
  .signature-product-card h3 {
    font-size: 0.875rem;
  }
  
  .signature-product-card p {
    font-size: 0.65rem;
    min-height: 2rem;
  }
  
  .signature-product-card .font-black {
    font-size: 1rem;
  }
  
  .signature-product-card button {
    width: 2.25rem;
    height: 2.25rem;
    padding: 0.5rem;
  }
  
  .signature-product-card button .material-symbols-outlined {
    font-size: 1rem;
  }
}

/* Owl Carousel Navigation - Hidden */
.signature-carousel-wrapper .owl-nav {
  display: none !important;
}

.signature-carousel-wrapper .owl-dots {
  display: none;
}

/* Ensure section doesn't clip hover effects */
section:has(.signature-carousel-wrapper) {
  overflow: visible;
}


@media (max-width: 767px) {
  /* Hide heading and text on mobile, show only arrow */
  .signature-section-header {
    margin-bottom: 1rem;
  }
  
  .signature-heading {
    display: none;
  }
  
  .signature-view-all-text {
    display: none;
  }
  
  .signature-view-all-link {
    gap: 0;
    padding: 0.5rem;
    border-radius: 50%;
    background: rgb(245 241 232);
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .signature-view-all-link .material-symbols-outlined {
    margin: 0;
  }
  
  .signature-product-card {
    padding: 0;
  }
  
  .signature-card-image-wrapper {
    border-radius: 12px 12px 0 0;
  }
  
  .signature-card-content {
    padding: 0.75rem 0.875rem 0.875rem 0.875rem;
    gap: 0.5rem;
  }
  
  .signature-category-label {
    font-size: 0.65rem;
    margin-bottom: 0.125rem;
  }
  
  .signature-product-card h3 {
    font-size: 0.95rem;
    line-height: 1.3;
  }
  
  .signature-product-card .flex.items-center.gap-1 {
    margin-bottom: 0.5rem;
    gap: 0.2rem;
  }
  
  .signature-product-card .flex.items-center.gap-1 .material-symbols-outlined {
    font-size: 1rem;
    width: 1rem;
    height: 1rem;
  }
  
  .signature-product-card .flex.items-center.gap-1 span.text-earthy-gray {
    font-size: 0.75rem;
    margin-left: 0.25rem;
  }
  
  .signature-price {
    font-size: 1.5rem;
  }
  
  .signature-fav-btn {
    width: 2rem;
    height: 2rem;
    top: 0.5rem;
    right: 0.5rem;
  }
  
  .signature-fav-btn .material-symbols-outlined {
    font-size: 1rem;
  }
  
  .signature-carousel-wrapper {
    padding: 10px 0;
  }
  
  .signature-carousel .owl-stage-outer {
    padding: 10px 0;
  }
  
  .signature-carousel .item {
    padding: 0 4px;
  }
}

@media (max-width: 480px) {
  .signature-card-content {
    padding: 0.625rem 0.75rem 0.75rem 0.75rem;
    gap: 0.375rem;
  }
  
  .signature-category-label {
    font-size: 0.6rem;
  }
  
  .signature-product-card h3 {
    font-size: 0.875rem;
  }
  
  .signature-product-card .flex.items-center.gap-1 .material-symbols-outlined {
    font-size: 0.9rem;
    width: 0.9rem;
    height: 0.9rem;
  }
  
  .signature-product-card .flex.items-center.gap-1 span.text-earthy-gray {
    font-size: 0.7rem;
  }
  
  .signature-price {
    font-size: 1.375rem;
  }
  
  .signature-fav-btn {
    width: 1.875rem;
    height: 1.875rem;
  }
  
  .signature-fav-btn .material-symbols-outlined {
    font-size: 0.9rem;
  }
}

/* ============================================ */
/* Mobile Section Heading Sizes */
/* ============================================ */
@media (max-width: 767px) {
  /* Reduce all section headings on mobile */
  section h2.text-4xl {
    font-size: 1.75rem !important; /* text-3xl equivalent */
    line-height: 1.2;
  }
  
  section h2.text-4xl.md\:text-5xl {
    font-size: 1.75rem !important;
  }
  
  /* Hero slider headings are already responsive with md:text-7xl */
  /* But we can make them smaller on very small screens */
  .hero-slide h2.text-6xl {
    font-size: 2rem !important; /* Smaller on mobile */
    line-height: 1.2;
  }
  
  /* Section subheadings */
  section h3.text-xl {
    font-size: 1rem !important; /* text-lg equivalent */
  }
  
  /* Reduce spacing for section headers */
  section > div > div.flex.items-end.justify-between {
    margin-bottom: 1.5rem;
  }
  
  section > div > div.text-center {
    margin-bottom: 2rem;
  }
}

@media (max-width: 480px) {
  /* Even smaller for very small screens */
  section h2.text-4xl {
    font-size: 1.5rem !important; /* text-2xl equivalent */
  }
  
  section h2.text-4xl.md\:text-5xl {
    font-size: 1.5rem !important;
  }
  
  .hero-slide h2.text-6xl {
    font-size: 1.75rem !important;
  }
  
  section h3.text-xl {
    font-size: 0.95rem !important;
  }
}

/* ============================================ */
/* The Kreative Difference Section - Mobile */
/* ============================================ */
.kreative-difference-section {
  position: relative;
  background: rgb(1 115 43 / 0.05); /* primary/5 */
}

.kreative-bg-pattern {
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%2301732b' fill-opacity='0.1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  background-size: 60px 60px;
  background-repeat: repeat;
  pointer-events: none;
}

.kreative-features-grid {
  gap: 1.5rem;
}

.kreative-feature-item {
  padding: 1rem;
  transition: transform 0.3s ease;
}

.kreative-feature-item:hover {
  transform: translateY(-4px);
}

.kreative-icon-wrapper {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  background: rgb(255 255 255);
  border-color: rgb(1 115 43 / 0.1);
}

.kreative-feature-item:hover .kreative-icon-wrapper {
  transform: scale(1.1);
  box-shadow: 0 8px 16px rgba(1, 115, 43, 0.2);
  background: rgb(1 115 43 / 0.05); /* Light primary background */
  border-color: rgb(1 115 43 / 0.3); /* Stronger border */
}

.kreative-icon {
  transition: all 0.3s ease;
  color: rgb(1 115 43); /* primary */
  font-size: 2.5rem !important; /* Override Material Symbols default 24px */
  line-height: 1;
}

@media (min-width: 1024px) {
  .kreative-icon {
    font-size: 3rem !important; /* text-5xl - 48px */
  }
}

.kreative-feature-item:hover .kreative-icon {
  transform: scale(1.1);
  color: rgb(1 115 43); /* Keep primary color on hover */
}

.kreative-feature-title {
  transition: color 0.3s ease;
}

.kreative-feature-item:hover .kreative-feature-title {
  color: rgb(1 115 43); /* primary */
}

@media (max-width: 767px) {
  .kreative-features-grid {
    gap: 1.5rem;
  }
  
  .kreative-icon-wrapper {
    width: 4.5rem;
    height: 4.5rem;
    margin-bottom: 1rem;
  }
  
  .kreative-icon {
    font-size: 2.25rem !important;
  }
  
  .kreative-feature-title {
    font-size: 1rem;
    margin-bottom: 0.5rem;
  }
  
  .kreative-feature-desc {
    font-size: 0.875rem;
    line-height: 1.5;
  }
  
  .kreative-feature-item {
    padding: 0.75rem;
  }
  
  section.bg-primary\/5 {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
  
  section.bg-primary\/5 > div > div.text-center {
    margin-bottom: 2rem;
  }
  
  section.bg-primary\/5 > div > div.text-center h2 {
    margin-bottom: 0.75rem;
  }
  
  section.bg-primary\/5 > div > div.text-center p {
    font-size: 0.875rem;
  }
}

@media (max-width: 480px) {
  .kreative-features-grid {
    gap: 1.25rem;
  }
  
  .kreative-icon-wrapper {
    width: 4rem;
    height: 4rem;
    margin-bottom: 0.75rem;
  }
  
  .kreative-icon {
    font-size: 2rem !important;
  }
  
  .kreative-feature-title {
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
  }
  
  .kreative-feature-desc {
    font-size: 0.8rem;
    line-height: 1.4;
  }
  
  .kreative-feature-item {
    padding: 0.5rem;
  }
  
  section.bg-primary\/5 {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }
}

/* ============================================ */
/* Testimonials Carousel - What Our Tribe Says */
/* ============================================ */
/* Our Clients - Horizontal Auto Scroll */
/* ============================================ */
.clients-section {
  background-color: #fff;
}

.dark .clients-section {
  background-color: rgba(24, 33, 17, 0.3);
}

.clients-scroll-track {
  display: flex;
  width: max-content;
  animation: clients-scroll 30s linear infinite;
  will-change: transform;
}

.clients-scroll-content {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-shrink: 0;
  padding: 0 2rem;
}

.clients-item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  color: #01732b;
  background: #f5f1e8;
  border-radius: 0.5rem;
  white-space: nowrap;
  border: 1px solid rgba(1, 115, 43, 0.15);
  transition: all 0.3s ease;
}

.clients-item:hover {
  background: #01732b;
  color: #fff;
  transform: scale(1.05);
}

.clients-item-img {
  padding: 1rem 2rem;
  min-width: 140px;
  min-height: 80px;
  background: transparent;
}

.clients-item-img:hover {
  background: transparent;
  transform: none;
}

.clients-item-img .clients-logo {
  max-width: 120px;
  max-height: 60px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.dark .clients-item {
  background: rgba(1, 115, 43, 0.15);
  color: #fff5b5;
  border-color: rgba(1, 115, 43, 0.3);
}

.dark .clients-item:hover {
  background: #01732b;
  color: #fff;
}


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

/* ============================================ */
/* Testimonials Section */
/* ============================================ */
.testimonials-section {
  background: linear-gradient(135deg, #f5f1e8 0%, #e8f5e9 50%, #f5f1e8 100%);
  position: relative;
}

.testimonials-section h2 {
  color: #000;
}

.dark .testimonials-section {
  background: linear-gradient(135deg, rgba(24, 33, 17, 0.8) 0%, rgba(1, 115, 43, 0.2) 50%, rgba(24, 33, 17, 0.8) 100%);
}

.dark .testimonials-section h2 {
  color: #fff;
}

/* ============================================ */
.testimonials-carousel-wrapper {
  position: relative;
  width: 100%;
  padding: 0;
  overflow: hidden;
}

section:has(.testimonials-carousel-wrapper) {
  padding-left: 0;
  padding-right: 0;
}

.testimonials-carousel {
  width: 100%;
}

.testimonials-carousel .owl-stage-outer {
  overflow: visible;
  padding: 30px 0;
}

.testimonials-carousel .owl-stage {
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonials-carousel .item {
  height: 100%;
  padding: 0 12px;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonials-carousel .owl-item {
  height: 100%;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Center card - larger */
.testimonials-carousel .owl-item.center .item > div {
  transform: scale(1.08);
  z-index: 2;
}

.testimonials-carousel .owl-item.center {
  z-index: 2;
}

/* Side cards - slightly smaller */
.testimonials-carousel .owl-item:not(.center) .item > div {
  transform: scale(0.95);
  opacity: 0.85;
}

.testimonials-carousel .item > div {
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonials-carousel .item:hover > div {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 8px 24px rgba(62, 39, 35, 0.1);
}

/* Override hover for center card */
.testimonials-carousel .owl-item.center .item:hover > div {
  transform: translateY(-4px) scale(1.12);
}

/* Custom Navigation Buttons - Hidden */
.testimonials-carousel-wrapper .owl-nav {
  display: none !important;
}

/* Dots - Hidden */
.testimonials-carousel-wrapper .owl-dots {
  display: none !important;
}

/* ============================================ */
/* Star Rating Component - Interactive */
/* ============================================ */
.rating {
  display: inline-block;
  direction: rtl; /* Right to left for proper star ordering */
  unicode-bidi: bidi-override;
}

.rating input {
  display: none;
}

.rating label {
  float: right;
  cursor: pointer;
  color: rgb(245 241 232); /* beige - unselected stars */
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-size: 28px;
  line-height: 1;
  margin: 0 2px;
  padding: 0;
  transform: scale(1);
}

.rating label:before {
  content: '\2605'; /* Star character */
  display: inline-block;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Hover effect - scale and color change */
.rating label:hover {
  color: rgb(245 158 11); /* amber-500 */
  transform: scale(1.2);
}

.rating label:hover:before {
  transform: scale(1.1);
}

/* Show all stars up to hovered star */
.rating label:hover ~ label {
  color: rgb(245 158 11); /* amber-500 */
  transform: scale(1.1);
}

/* Selected stars - show checked stars */
.rating input:checked ~ label {
  color: rgb(245 158 11); /* amber-500 */
  transform: scale(1.15);
}

.rating input:checked ~ label:before {
  transform: scale(1.05);
}

/* Active state when clicking */
.rating label:active {
  transform: scale(0.95);
  transition: transform 0.1s ease;
}

/* Rating value styling */
.rating-value {
  min-width: 40px;
  display: inline-block;
  transition: all 0.3s ease;
}

.rating-value.has-rating {
  color: rgb(245 158 11); /* amber-500 */
  font-weight: 700;
}

@media (max-width: 767px) {
  .testimonials-carousel .item {
    padding: 0 8px;
  }
  
  .testimonials-carousel .owl-item.center .item > div,
  .testimonials-carousel .owl-item:not(.center) .item > div {
    transform: scale(1);
    opacity: 1;
  }
  
  .testimonials-carousel .item > div {
    padding: 1.5rem;
  }
  
  .testimonials-carousel .item > div p {
    font-size: 1rem;
  }
  
  .rating label {
    font-size: 20px;
  }
}

/* ============================================ */
/* CTA Section (Contact) */
/* ============================================ */
.cta-section {
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25), 0 8px 24px rgba(0, 0, 0, 0.15);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.cta-section:hover {
  box-shadow: 0 24px 72px rgba(0, 0, 0, 0.3), 0 12px 32px rgba(1, 115, 43, 0.15);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .cta-section {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
  }

  .cta-section:hover {
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.25);
    transform: translateY(-1px);
  }
}

/* ============================================ */
/* About Page Styles */
/* ============================================ */
/* Values Cards Hover Effect */
.about-values-card {
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 1rem;
}

.about-values-card:hover {
  transform: translateY(-8px);
}

.about-values-card .material-symbols-outlined {
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  font-size: inherit !important;
}

.about-values-card:hover .material-symbols-outlined {
  transform: scale(1.1);
}

/* Desktop Large Icons */
@media (min-width: 1024px) {
  .about-values-card > div {
    width: 6rem;
    height: 6rem;
  }
  
  .about-values-card .material-symbols-outlined {
    font-size: 4rem !important;
  }
}

/* Process Cards Animation */
.about-process-card {
  transform: translateY(0);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-process-card:hover {
  transform: translateY(-12px) scale(1.02);
  z-index: 20;
}

.about-process-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 1rem;
  background: linear-gradient(135deg, rgba(1, 115, 43, 0.05) 0%, rgba(1, 115, 43, 0.1) 100%);
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

.about-process-card:hover::before {
  opacity: 1;
}

@media (max-width: 767px) {
  .about-process-card {
    margin-bottom: 1rem;
  }
  
  .about-process-card:hover {
    transform: translateY(-4px) scale(1.01);
  }
}

/* Mobile Responsive Adjustments for About Page */
@media (max-width: 767px) {
  section h1.text-6xl {
    font-size: 2.5rem;
    line-height: 1.2;
  }
  
  section h2.text-4xl {
    font-size: 2rem;
  }
  
  section h2.text-5xl {
    font-size: 2.25rem;
  }
  
  section:has(.h-\[600px\]) {
    height: 400px;
  }
  
  /* Values Section Mobile */
  .about-values-card {
    padding: 0.5rem;
  }
  
  .about-values-card h3 {
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
  }
  
  .about-values-card p {
    font-size: 0.875rem;
    padding: 0 1rem;
  }
}

@media (max-width: 480px) {
  .about-values-card {
    padding: 0.25rem;
  }
  
  .about-values-card .material-symbols-outlined {
    font-size: 4rem !important;
  }
  
  .about-values-card > div {
    width: 120px !important;
    height: 120px !important;
    margin-bottom: 1rem;
  }
}

/* ============================================ */
/* About Section - Circular Image */
/* ============================================ */
.about-image-container {
  position: relative;
  aspect-ratio: 1/1;
  max-width: 500px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-image-container svg {
  max-width: 100%;
  max-height: 100%;
  aspect-ratio: 1/1;
}

.about-image-container svg #circleClip {
  transform-origin: center;
  transition: ease-out transform 0.4s;
}

.about-image-container:hover svg #circleClip {
  transform: scale(0.97);
}

.about-image-container svg .text-content {
  font: 700 8px/1.3 system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  letter-spacing: 1px;
  text-transform: uppercase;
  fill: black;
  mix-blend-mode: normal;
  transition: ease fill 0.5s;
}

.about-image-container:hover svg .text-content {
  fill: white;
  mix-blend-mode: overlay;
}

@media (max-width: 1024px) {
  .about-image-container {
    max-width: 400px;
    margin: 0 auto;
  }
  
  .about-image-container svg .text-content {
    font-size: 7px;
  }
}

@media (max-width: 768px) {
  .about-image-container {
    max-width: 300px;
  }
  
  .about-image-container svg .text-content {
    font-size: 6px;
  }
}

/* ============================================ */
/* Quote Modal */
/* ============================================ */
.quote-modal-container {
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
}

.quote-modal-dialog {
  max-height: calc(100vh - 2rem);
  overflow-y: auto;
}

@media (max-width: 640px) {
  .quote-modal-dialog {
    max-height: calc(100vh - 1rem);
  }
}

.quote-form-section-title {
  letter-spacing: 0.08em;
}

.quote-form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.quote-form-grid-2 {
  grid-template-columns: 1fr;
}

@media (min-width: 480px) {
  .quote-form-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1rem 1.25rem;
  }
  
  .quote-form-grid-2 {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 768px) {
  .quote-form-grid {
    gap: 1.25rem 1.5rem;
  }
}

.quote-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  color: #000;
  margin-bottom: 0.375rem;
}

.dark .quote-label {
  color: #e5e7eb;
}

.quote-input {
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: 0.9375rem;
  font-family: inherit;
  border: 1.5px solid #e5e7eb;
  border-radius: 0.5rem;
  background: #fff;
  color: #000;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.quote-input::placeholder {
  color: #9ca3af;
}

.quote-input:hover {
  border-color: #d1d5db;
}

.quote-input:focus {
  outline: none;
  border-color: #01732b;
  box-shadow: 0 0 0 3px rgba(1, 115, 43, 0.15);
}

.dark .quote-input {
  background: #1e2c18;
  border-color: #374151;
  color: #f3f4f6;
}

.dark .quote-input::placeholder {
  color: #6b7280;
}

.dark .quote-input:focus {
  border-color: #01732b;
  box-shadow: 0 0 0 3px rgba(1, 115, 43, 0.25);
}

.quote-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%236b7280'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 1.25rem;
  padding-right: 2.5rem;
}

.quote-textarea {
  min-height: 100px;
  resize: vertical;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

/* ============================================ */
/* Blog Section */
/* ============================================ */
.blog-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .blog-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .blog-row {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
}

.blog-card {
  background: #fff;
  border-radius: 0.75rem;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.08);
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.dark .blog-card {
  background: #1e2c18;
  border-color: rgba(255, 255, 255, 0.08);
}

.blog-card:hover {
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
  transform: translateY(-4px);
}

.blog-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.blog-card-image {
  aspect-ratio: 16/10;
  overflow: hidden;
}

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

.blog-card:hover .blog-card-image img {
  transform: scale(1.05);
}

.blog-card-content {
  padding: 1.25rem 1.5rem;
}

.blog-card-title {
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 0.5rem;
  color: #000;
}

.dark .blog-card-title {
  color: #fff;
}

.blog-card:hover .blog-card-title {
  color: #01732b;
}

.blog-card-excerpt {
  font-size: 0.9375rem;
  line-height: 1.5;
  color: #4b5563;
  margin-bottom: 0.75rem;
}

.dark .blog-card-excerpt {
  color: #9ca3af;
}

.blog-card-meta {
  font-size: 0.8125rem;
  color: #01732b;
  font-weight: 600;
}

@media (max-width: 480px) {
  .quote-input {
    padding: 0.625rem 0.875rem;
    font-size: 0.875rem;
  }
  
  .quote-select {
    padding-right: 2.25rem;
    background-size: 1rem;
  }
}

/* ============================================ */
/* Stats Counter Section */
/* ============================================ */
.stats-counter-section {
  background: linear-gradient(135deg, #01732b 0%, #014d1f 100%);
}

.stats-counter-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

@media (min-width: 768px) {
  .stats-counter-row {
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
  }
}

.stats-counter-item {
  text-align: center;
  padding: 1.5rem 1rem;
}

.stats-counter-number {
  font-size: 2.5rem;
  font-weight: 900;
  line-height: 1;
  color: #fff;
}

.stats-counter-suffix {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff5b5;
}

.stats-counter-label {
  font-size: 0.9375rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  margin-top: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

@media (min-width: 768px) {
  .stats-counter-number {
    font-size: 3rem;
  }
  
  .stats-counter-suffix {
    font-size: 1.75rem;
  }
}

/* ============================================ */
/* Gallery Section */
/* ============================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

@media (min-width: 640px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
}

@media (min-width: 1024px) {
  .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
  }
}

.gallery-item {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: 0.5rem;
  padding: 0;
  margin: 0;
  border: none;
  background: #e5e7eb;
  cursor: pointer;
  transition: transform 0.25s ease;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

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

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  pointer-events: none;
  -webkit-touch-callout: none;
}

/* ============================================ */
/* Gallery Modal */
/* ============================================ */
.gallery-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.gallery-modal.gallery-modal-open {
  opacity: 1;
  visibility: visible;
}

.gallery-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  cursor: pointer;
}

.gallery-modal-content {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem 4rem 3rem 4rem;
  pointer-events: none;
}

.gallery-modal-content > * {
  pointer-events: auto;
}

.gallery-modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 20;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.15);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 0.5rem;
  color: #fff;
  cursor: pointer;
  transition: all 0.2s ease;
}

.gallery-modal-close:hover {
  background: rgba(255, 255, 255, 0.25);
}

.gallery-modal-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  width: 2.75rem;
  height: 2.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.15);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 0.5rem;
  color: #fff;
  cursor: pointer;
  transition: all 0.2s ease;
}

.gallery-modal-nav:hover {
  background: rgba(255, 255, 255, 0.25);
}

.gallery-modal-prev {
  left: 1rem;
}

.gallery-modal-next {
  right: 1rem;
}

.gallery-modal-image-wrap {
  max-width: 90%;
  max-height: 90%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-modal-image {
  max-width: 100%;
  max-height: 85vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 0.5rem;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  pointer-events: none;
}

.gallery-modal,
.gallery-modal * {
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -webkit-touch-callout: none;
}

@media (max-width: 768px) {
  .gallery-modal-content {
    padding: 4rem 3rem 3rem 3rem;
  }
  
  .gallery-modal-close {
    top: 0.75rem;
    right: 0.75rem;
    width: 2.25rem;
    height: 2.25rem;
  }
  
  .gallery-modal-nav {
    width: 2.25rem;
    height: 2.25rem;
  }
  
  .gallery-modal-prev {
    left: 0.5rem;
  }
  
  .gallery-modal-next {
    right: 0.5rem;
  }
  
  .gallery-modal-image {
    max-height: 80vh;
  }
}

@media (max-width: 480px) {
  .gallery-modal-content {
    padding: 3.5rem 2.5rem 2.5rem 2.5rem;
  }
  
  .gallery-modal-close {
    top: 0.5rem;
    right: 0.5rem;
    width: 2rem;
    height: 2rem;
  }
  
  .gallery-modal-nav {
    width: 2rem;
    height: 2rem;
  }
  
  .gallery-modal-prev {
    left: 0.5rem;
  }
  
  .gallery-modal-next {
    right: 0.5rem;
  }
  
  .gallery-modal-image-wrap {
    max-width: 95%;
  }
  
  .gallery-modal-image {
    max-height: 75vh;
  }
}

/* ============================================ */
/* About Me Style Section - Image & Skill Tags */
/* ============================================ */
.about-circle-section {
  min-height: 20rem;
}

.about-skill-tag {
  animation: about-skill-float 4s ease-in-out infinite;
}

.about-skill-tag:nth-child(2) { animation-delay: 0.2s; }
.about-skill-tag:nth-child(3) { animation-delay: 0.4s; }
.about-skill-tag:nth-child(4) { animation-delay: 0.6s; }
.about-skill-tag:nth-child(5) { animation-delay: 0.8s; }
.about-skill-tag:nth-child(6) { animation-delay: 1s; }
.about-skill-tag:nth-child(7) { animation-delay: 1.2s; }
.about-skill-tag:nth-child(8) { animation-delay: 0.1s; }
.about-skill-tag:nth-child(9) { animation-delay: 0.5s; }

@keyframes about-skill-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

.about-skill-tag-mid {
  transform: translateY(-50%);
  animation: about-skill-float-mid 4s ease-in-out infinite;
}

@keyframes about-skill-float-mid {
  0%, 100% { transform: translateY(-50%); }
  50% { transform: translateY(calc(-50% - 6px)); }
}

/* ============================================ */
/* What We Stand For - Values Section */
/* Uses about section palette: #2d4a38, #f3cb52, #3f6e52 */
/* ============================================ */
.section-values .section-values-title {
  position: relative;
}

.section-values .section-values-title::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background-color: #f3cb52;
  border-radius: 3px;
}

.section-values .section-values-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(30px);
  width: 10px;
  height: 3px;
  background-color: #3f6e52;
  border-radius: 3px;
}

.values-single-service {
  position: relative;
  background-color: #fff;
  border-radius: 10px;
  padding: 2rem 1.5rem;
  overflow: hidden;
  transition: box-shadow 0.3s ease;
  border: 2px solid rgba(243, 203, 82, 0.3);
}

.values-single-service:hover {
  box-shadow: 0 10px 40px rgba(45, 74, 56, 0.25);
  border-color: rgba(243, 203, 82, 0.6);
}

.values-single-service .values-circle-before {
  position: absolute;
  top: 0;
  right: 0;
  transform: translate(40%, -40%);
  width: 150px;
  height: 150px;
  background-color: #3f6e52;
  border: 6px solid #2d4a38;
  border-radius: 50%;
  opacity: 0.5;
  z-index: 10;
  transition: all 0.6s ease;
}

.values-single-service:hover .values-circle-before {
  width: 100%;
  height: 100%;
  transform: none;
  border: 0;
  border-radius: 0;
  opacity: 1;
}

.values-single-service .values-icon {
  transition: all 0.3s ease;
}

.values-single-service:hover .values-icon {
  background-color: #fff !important;
  color: #2d4a38 !important;
}

.values-single-service .values-card-title {
  transition: color 0.3s ease;
}

.values-single-service:hover .values-card-title {
  color: #fff !important;
}

.values-single-service .values-card-desc {
  transition: color 0.3s ease;
}

.values-single-service:hover .values-card-desc {
  color: rgba(255, 255, 255, 0.95) !important;
}

/* ============================================ */
/* Services Overview Section */
/* ============================================ */
.services-overview-section {
  background-color: #fff;
}

.services-overview-card {
  background-color: #fff;
  border: 2px solid rgba(243, 203, 82, 0.5);
  border-radius: 12px;
  padding: 2rem 1.5rem;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.services-overview-card:hover {
  border-color: #f3cb52;
  box-shadow: 0 8px 32px rgba(243, 203, 82, 0.2);
  transform: translateY(-4px);
}

.services-overview-card .services-overview-icon {
  transition: transform 0.3s ease;
}

.services-overview-card .services-overview-icon .material-symbols-outlined {
  display: inline-block;
  transition: transform 0.3s ease;
}

.services-overview-card:hover .services-overview-icon .material-symbols-outlined {
  transform: scale(1.1);
}

.services-overview-card .services-overview-desc {
  transition: color 0.3s ease;
}

.services-overview-card:hover .services-overview-desc {
  color: #374151 !important;
}

/* ============================================ */
/* Award-Winning Section - 2 Column Layout */
/* ============================================ */
.award-winning-section {
  background-color: #fff;
}

.award-left-sticky {
  align-self: flex-start;
  position: sticky;
  top: 7rem;
  transition: left 0.1s ease, width 0.1s ease;
}

.award-left-sticky.award-left-is-stuck {
  position: fixed !important;
  z-index: 30;
}

@media (max-width: 1023px) {
  .award-left-sticky {
    position: relative !important;
    top: 0;
  }
  .award-left-sticky.award-left-is-stuck {
    position: relative !important;
  }
}

.award-item {
  padding: 1.5rem 0;
  border-bottom: 1px solid #e5e7eb;
}

.award-item:last-child {
  border-bottom: none;
}

.award-item-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 1rem;
}

.award-num {
  font-size: 2rem;
  font-weight: 700;
  color: #01732b;
  line-height: 1;
  flex-shrink: 0;
}

.award-logo-wrap {
  position: relative;
  width: 100px;
  min-width: 100px;
  height: 72px;
  flex-shrink: 0;
  border-radius: 8px;
  overflow: hidden;
  background-color: #f3f4f6;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  box-sizing: border-box;
}

.award-logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.award-logo-fallback {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f9fafb;
}

.award-logo-fallback .material-symbols-outlined {
  font-size: 2rem;
  color: #f3cb52;
}

.award-text {
  flex: 1;
  min-width: 200px;
}

.award-company {
  font-size: 1rem;
  font-weight: 700;
  color: #1a2a12;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 0.5rem;
}

.award-desc {
  font-size: 0.875rem;
  color: #4b5563;
  line-height: 1.5;
  margin-bottom: 0.5rem;
}

.award-cert-btn {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 700;
  color: #01732b;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s ease;
}

.award-cert-btn:hover {
  color: #014d1f;
}

/* ============================================ */
/* Contact Page */
/* ============================================ */
.contact-input:focus {
  outline: none;
  border-color: #01732b;
  box-shadow: 0 0 0 3px rgba(1, 115, 43, 0.15);
}

.dark .contact-input:focus {
  border-color: #01732b;
  box-shadow: 0 0 0 3px rgba(1, 115, 43, 0.25);
}

/* ============================================ */
/* Blog Content (rich text output) */
/* ============================================ */
.blog-content {
  line-height: 1.75;
  font-size: 1.0625rem;
}

.blog-content p {
  margin-bottom: 1rem;
}

.blog-content h1, .blog-content h2, .blog-content h3, .blog-content h4 {
  font-weight: 700;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
  color: inherit;
}

.blog-content h1 { font-size: 1.75rem; }
.blog-content h2 { font-size: 1.5rem; }
.blog-content h3 { font-size: 1.25rem; }

.blog-content ul, .blog-content ol {
  margin: 1rem 0;
  padding-left: 1.5rem;
}

.blog-content li {
  margin-bottom: 0.5rem;
}

.blog-content img {
  max-width: 100%;
  height: auto;
  border-radius: 0.5rem;
  margin: 1rem 0;
}

.blog-content a {
  color: #01732b;
  text-decoration: underline;
}

.blog-content a:hover {
  color: #015a22;
}

.dark .blog-content a {
  color: #22c55e;
}

.dark .blog-content a:hover {
  color: #4ade80;
}

