/* ============================================
   THE GREENMATE - Premium Eco Tableware
   Complete Design System & Styles
   ============================================ */

/* ── Google Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400;1,500&family=Inter:wght@300;400;500;600;700&display=swap');

/* ── CSS Variables / Design Tokens ── */
:root {
  --primary: #2d6a4f;
  --primary-dark: #1b4332;
  --primary-light: #52b788;
  --secondary: #d4a373;
  --accent: #e9c46a;
  --bg-cream: #fefae0;
  --bg-light: #f8f9fa;
  --text-dark: #1a1a2e;
  --text-muted: #6c757d;
  --white: #ffffff;

  --font-heading: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;

  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.12);
  --shadow-xl: 0 16px 60px rgba(0, 0, 0, 0.15);
  --shadow-glow: 0 0 30px rgba(45, 106, 79, 0.15);

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 50%;

  --transition-fast: 0.2s ease;
  --transition-base: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-spring: 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);

  --header-height: 64px;
}

/* ── Reset & Base ── */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ── Selection & Scrollbar ── */
::selection {
  background: rgba(45, 106, 79, 0.2);
  color: var(--primary-dark);
}

::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-cream);
}
::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--primary-dark);
}

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--bg-cream);
  line-height: 1.7;
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-fast);
}

ul {
  list-style: none;
}

button {
  border: none;
  outline: none;
  cursor: pointer;
  font-family: var(--font-body);
  background: transparent;
}

/* ── Typography ── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.25;
  color: var(--primary-dark);
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.75rem); }
h3 { font-size: clamp(1.25rem, 3vw, 1.75rem); }
h4 { font-size: clamp(1rem, 2vw, 1.35rem); }

p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-muted);
}

/* ── Utility Classes ── */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 70px 0;
  position: relative;
}

section[id] {
  scroll-margin-top: calc(var(--header-height) + 20px);
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, rgba(45, 106, 79, 0.1), rgba(82, 183, 136, 0.1));
  color: var(--primary);
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 16px;
  border: 1px solid rgba(45, 106, 79, 0.15);
}

.section-label svg {
  width: 14px;
  height: 14px;
}

.section-title {
  margin-bottom: 20px;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}

.section-title.light {
  background: linear-gradient(135deg, var(--accent) 0%, var(--secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 650px;
  margin: 0 auto 50px;
  line-height: 1.8;
}

.text-center { text-align: center; }

/* ── Scroll Animations ── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-60px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(60px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.85);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.reveal-scale.visible {
  opacity: 1;
  transform: scale(1);
}

/* ── Glassmorphism Card ── */
.glass-card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.glass-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}


/* ════════════════════════════════════════
   HEADER
   ════════════════════════════════════════ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 1000;
  transition: background var(--transition-base), box-shadow var(--transition-base), backdrop-filter var(--transition-base);
}

.header.scrolled {
  background: rgba(254, 250, 224, 0.82);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.03);
  border-bottom: 1px solid rgba(45, 106, 79, 0.06);
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 1001;
}

.logo-img {
  height: 48px;
  width: auto;
  object-fit: contain;
  transition: transform var(--transition-base);
}

.logo:hover .logo-img {
  transform: scale(1.05);
}

.logo-icon {
  width: 40px;
  height: 40px;
  color: var(--primary);
  transition: transform var(--transition-base);
}

.logo:hover .logo-icon {
  transform: rotate(15deg) scale(1.1);
}

.logo-text {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--primary-dark);
  letter-spacing: -0.3px;
}

.logo-text span {
  color: var(--primary-light);
}

/* Navigation */
.nav {
  display: none;
  align-items: center;
  gap: 36px;
}

.nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-dark);
  position: relative;
  padding: 4px 0;
  transition: color var(--transition-base);
}

.header:not(.scrolled) .nav-links a {
  color: var(--white);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.35);
}

.header:not(.scrolled) .nav-links a:hover,
.header:not(.scrolled) .nav-links a.active {
  color: var(--accent);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--secondary));
  border-radius: 2px;
  transition: width var(--transition-base), left var(--transition-base);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
  left: 0;
}

.nav-links a:hover {
  color: var(--primary);
}

.header.scrolled .nav-links a.active {
  color: var(--primary-dark);
}

.nav-cta {
  padding: 10px 26px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white) !important;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 15px rgba(45, 106, 79, 0.3);
  transition: all var(--transition-base);
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(45, 106, 79, 0.4);
}

.nav-cta::after {
  display: none !important;
}

/* Hamburger */
.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
  padding: 8px;
}

.hamburger span {
  width: 26px;
  height: 2.5px;
  background: var(--primary-dark);
  border-radius: 4px;
  transition: var(--transition-base);
  transform-origin: center;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Nav */
.mobile-nav {
  display: flex;
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  background: rgba(254, 250, 224, 0.97);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  z-index: 999;
  transition: right var(--transition-smooth);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
}

.mobile-nav.open {
  right: 0;
}

.mobile-nav a {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--primary-dark);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease, transform 0.4s ease, color 0.2s ease;
}

.mobile-nav.open a {
  opacity: 1;
  transform: translateY(0);
}

.mobile-nav.open a:nth-child(1) { transition-delay: 0.1s; }
.mobile-nav.open a:nth-child(2) { transition-delay: 0.15s; }
.mobile-nav.open a:nth-child(3) { transition-delay: 0.2s; }
.mobile-nav.open a:nth-child(4) { transition-delay: 0.25s; }
.mobile-nav.open a:nth-child(5) { transition-delay: 0.3s; }
.mobile-nav.open a:nth-child(6) { transition-delay: 0.35s; }

.mobile-nav a:hover {
  color: var(--primary-light);
}

.mobile-nav-shortcuts {
  display: flex;
  gap: 16px;
  width: 85%;
  max-width: 340px;
  margin-top: 36px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease 0.4s, transform 0.4s ease 0.4s;
}

.mobile-nav.open .mobile-nav-shortcuts {
  opacity: 1;
  transform: translateY(0);
}

.mobile-nav .mobile-shortcut-btn {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 16px;
  border-radius: 50px;
  font-family: var(--font-body) !important;
  font-size: 0.85rem !important;
  font-weight: 600 !important;
  color: var(--white) !important;
  opacity: 1 !important;
  transform: none !important;
  transition: all var(--transition-fast) !important;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  text-decoration: none;
}

.mobile-nav .mobile-shortcut-btn.whatsapp {
  background: #25D366 !important;
}

.mobile-nav .mobile-shortcut-btn.phone {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark)) !important;
}

.mobile-nav .mobile-shortcut-btn:hover,
.mobile-nav .mobile-shortcut-btn:focus {
  color: var(--white) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.mobile-nav .mobile-shortcut-btn:active {
  transform: translateY(0) scale(0.95) !important;
}


/* ════════════════════════════════════════
   HERO CAROUSEL
   ════════════════════════════════════════ */
.hero {
  position: relative;
  width: 100%;
  height: 70vh;
  min-height: 450px;
  overflow: hidden;
}

.hero-slider {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  z-index: 1;
}

.hero-slide.active {
  opacity: 1;
  z-index: 2;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 10s cubic-bezier(0.1, 0.8, 0.3, 1), opacity 1s ease-in-out;
}

.hero-slide.active img {
  transform: scale(1.08);
}

.hero-slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(27, 67, 50, 0.75) 0%,
    rgba(27, 67, 50, 0.45) 40%,
    rgba(0, 0, 0, 0.25) 100%
  );
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0 8%;
}

.hero-content {
  max-width: 90%;
  color: var(--white);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
}

.hero-title {
  font-size: clamp(2rem, 5.5vw, 3.5rem);
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.15;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}

.hero-subtitle {
  font-size: clamp(0.95rem, 2vw, 1.15rem);
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 36px;
  line-height: 1.7;
  max-width: 500px;
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: linear-gradient(135deg, var(--accent), var(--secondary));
  color: var(--primary-dark);
  font-weight: 700;
  font-size: 0.82rem;
  border-radius: 50px;
  letter-spacing: 0.5px;
  box-shadow: 0 6px 25px rgba(233, 196, 106, 0.4);
  transition: all var(--transition-base);
}

.hero-btn:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 10px 35px rgba(233, 196, 106, 0.5);
}

.hero-btn svg {
  width: 18px;
  height: 18px;
  transition: transform var(--transition-base);
}

.hero-btn:hover svg {
  transform: translateX(4px);
}

/* Hero Dots */
.hero-dots {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 10;
}

.hero-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  border: 2px solid rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all var(--transition-base);
}

.hero-dot.active {
  background: var(--accent);
  border-color: var(--accent);
  width: 36px;
  border-radius: 20px;
}

.hero-dot:hover {
  background: rgba(255, 255, 255, 0.6);
}

/* Expanded tap target for accessibility */
.hero-dot,
.gallery-dot {
  position: relative;
}

.hero-dot::after,
.gallery-dot::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 48px;
  height: 48px;
  transform: translate(-50%, -50%);
}

/* Beautiful absolute-positioned hero arrow navigation buttons */
.hero-prev,
.hero-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(27, 67, 50, 0.45);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  color: var(--white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: all var(--transition-base);
  opacity: 0;
}

.hero:hover .hero-prev,
.hero:hover .hero-next {
  opacity: 1;
}

.hero-prev {
  left: 24px;
}

.hero-next {
  right: 24px;
}

.hero-prev:hover,
.hero-next:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--primary-dark);
  transform: translateY(-50%) scale(1.1);
}

/* Hero scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 100px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: none;
  flex-direction: column;
  align-items: center;
  color: rgba(255, 255, 255, 0.7);
  transition: color var(--transition-base), transform var(--transition-base);
  cursor: pointer;
}

.hero-scroll:hover {
  color: var(--white);
  transform: translateX(-50%) scale(1.1);
}

.scroll-arrow {
  animation: arrowBounce 2s infinite ease-in-out;
}

@keyframes arrowBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}


/* ════════════════════════════════════════
   FLOATING SOCIAL SIDEBAR
   ════════════════════════════════════════ */
.social-sidebar {
  position: fixed;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 900;
  display: none;
  flex-direction: column;
  gap: 0;
}

.social-sidebar a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  color: var(--white);
  transition: all var(--transition-base);
  position: relative;
}

.social-sidebar a:nth-child(1) { background: linear-gradient(135deg, #E1306C, #C13584, #833AB4); }
.social-sidebar a:nth-child(2) { background: #25D366; }
.social-sidebar a:nth-child(3) { background: var(--primary); }
.social-sidebar a:nth-child(4) { background: var(--secondary); }

.social-sidebar a svg {
  width: 20px;
  height: 20px;
  transition: transform var(--transition-base);
}

.social-sidebar a:hover {
  width: 56px;
  box-shadow: 4px 0 20px rgba(0, 0, 0, 0.15);
}

.social-sidebar a:hover svg {
  transform: scale(1.15);
}

.social-sidebar a .social-tooltip {
  position: absolute;
  left: 100%;
  background: var(--primary-dark);
  color: var(--white);
  padding: 6px 14px;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 500;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transform: translateX(-10px);
  transition: all var(--transition-fast);
  margin-left: 8px;
}

.social-sidebar a:hover .social-tooltip {
  opacity: 1;
  transform: translateX(0);
}


/* ════════════════════════════════════════
   ABOUT / SUSTAINABLE SECTION
   ════════════════════════════════════════ */
.about-section {
  background: var(--white);
  position: relative;
  overflow: hidden;
}

.about-section::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(82, 183, 136, 0.08) 0%, transparent 70%);
  border-radius: 50%;
}

.about-section::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(233, 196, 106, 0.08) 0%, transparent 70%);
  border-radius: 50%;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

.about-image-wrapper {
  position: relative;
}

.about-image {
  width: 100%;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.about-image img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  transition: transform 0.8s ease;
}

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

.about-floating-badge {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  padding: 12px 20px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  text-align: center;
}

.about-floating-badge .badge-number {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 800;
  line-height: 1;
  display: block;
}

.about-floating-badge .badge-text {
  font-size: 0.75rem;
  font-weight: 500;
  opacity: 0.85;
  letter-spacing: 0.5px;
}

.about-content {
  position: relative;
  z-index: 1;
}

.about-content .section-label {
  margin-bottom: 16px;
}

.about-content h2 {
  margin-bottom: 24px;
}

.about-text {
  font-size: 0.98rem;
  color: var(--text-dark);
  line-height: 1.9;
  margin-bottom: 16px;
}

.about-text:last-of-type {
  margin-bottom: 32px;
}

.about-highlights {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 36px;
}

.about-highlight {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 20px;
  background: linear-gradient(135deg, rgba(45, 106, 79, 0.06), rgba(82, 183, 136, 0.06));
  border-radius: var(--radius-md);
  border: 1px solid rgba(45, 106, 79, 0.1);
}

.about-highlight-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  flex-shrink: 0;
}

.about-highlight-icon svg {
  width: 20px;
  height: 20px;
}

.about-highlight-text {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary-dark);
  line-height: 1.3;
}


/* ════════════════════════════════════════
   PROCESS SECTION
   ════════════════════════════════════════ */
.process-section {
  background: linear-gradient(180deg, var(--bg-cream) 0%, var(--white) 100%);
  overflow: hidden;
}

.process-slider-wrapper {
  position: relative;
  margin-top: 20px;
}

.process-slider {
  display: flex;
  gap: 28px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 20px 24px 40px;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.process-slider::-webkit-scrollbar {
  display: none;
}

.process-card {
  min-width: 280px;
  max-width: 280px;
  scroll-snap-align: start;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(45, 106, 79, 0.08);
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.process-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-smooth);
}

.process-card:hover::before {
  transform: scaleX(1);
}

.process-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.process-step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  border-radius: var(--radius-full);
  margin-bottom: 20px;
  box-shadow: 0 4px 15px rgba(45, 106, 79, 0.25);
}

.process-icon {
  width: 56px;
  height: 56px;
  margin-bottom: 20px;
  color: var(--primary);
}

.process-card h4 {
  margin-bottom: 12px;
  color: var(--primary-dark);
  font-size: 1.15rem;
}

.process-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.process-img {
  width: 100%;
  height: 180px;
  overflow: hidden;
  border-radius: var(--radius-md);
  margin-bottom: 20px;
  border: 1px solid rgba(45, 106, 79, 0.08);
}

.process-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-base);
}

.process-img-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(45, 106, 79, 0.05), rgba(82, 183, 136, 0.05));
}

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

/* Process nav arrows */
.process-nav {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 20px;
}

.process-nav-btn {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-full);
  background: var(--white);
  border: 2px solid rgba(45, 106, 79, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  transition: all var(--transition-base);
  box-shadow: var(--shadow-sm);
}

.process-nav-btn:hover {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
  transform: scale(1.1);
}

.process-nav-btn svg {
  width: 20px;
  height: 20px;
}


/* ════════════════════════════════════════
   PRODUCTS SECTION
   ════════════════════════════════════════ */
.products-section {
  background: var(--white);
  position: relative;
}

.products-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 10% 20%, rgba(82, 183, 136, 0.04) 0%, transparent 50%),
    radial-gradient(circle at 90% 80%, rgba(233, 196, 106, 0.04) 0%, transparent 50%);
  pointer-events: none;
}

/* Product Filter Tabs */
.products-filter {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 40px;
}

.filter-btn {
  background: transparent;
  border: 1px solid rgba(45, 106, 79, 0.2);
  color: var(--text-dark);
  font-family: var(--font-primary);
  font-weight: 500;
  font-size: 0.9rem;
  padding: 8px 20px;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: all var(--transition-base);
}

.filter-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.filter-btn.active {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
  box-shadow: 0 4px 10px rgba(45, 106, 79, 0.2);
}

.product-card.hidden {
  display: none !important;
}

.products-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  position: relative;
  z-index: 1;
}

.product-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: all var(--transition-base);
  position: relative;
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
}

.product-image-wrapper {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, #f0f7f4, #e8f5e9);
}

.product-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.product-card:hover .product-image-wrapper img {
  transform: scale(1.08);
}

.product-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(27, 67, 50, 0.6) 0%, transparent 50%);
  opacity: 0;
  transition: opacity var(--transition-base);
}

.product-card:hover .product-overlay {
  opacity: 1;
}

.product-info {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-info h4 {
  font-size: 1.15rem;
  margin-bottom: 8px;
  color: var(--primary-dark);
}

.product-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 14px;
}

.product-sizes {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: auto;
}

.product-size-tag {
  display: inline-flex;
  padding: 4px 12px;
  background: linear-gradient(135deg, rgba(45, 106, 79, 0.08), rgba(82, 183, 136, 0.08));
  color: var(--primary);
  font-size: 0.78rem;
  font-weight: 600;
  border-radius: 50px;
  border: 1px solid rgba(45, 106, 79, 0.12);
}

.product-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: linear-gradient(135deg, var(--accent), var(--secondary));
  color: var(--primary-dark);
  padding: 4px 14px;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  box-shadow: 0 2px 8px rgba(233, 196, 106, 0.3);
  z-index: 2;
}

.product-inquire-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 10px 16px;
  margin-top: 16px;
  background: var(--primary);
  color: var(--white);
  border: 1px solid var(--primary);
  border-radius: var(--radius-md);
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  transition: all var(--transition-fast);
  cursor: pointer;
}

.product-inquire-btn:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(27, 67, 50, 0.25);
  color: var(--white);
}

.product-inquire-btn svg {
  width: 16px;
  height: 16px;
}


/* ════════════════════════════════════════
   BUSINESS OVERVIEW
   ════════════════════════════════════════ */
.business-section {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, #1d5a3f 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.business-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 60%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(82, 183, 136, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.business-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 40%;
  height: 150%;
  background: radial-gradient(ellipse, rgba(233, 196, 106, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.business-section h2 {
  color: var(--white);
}

.business-section .section-subtitle {
  color: rgba(255, 255, 255, 0.7);
}

.business-section .section-label {
  background: rgba(255, 255, 255, 0.1);
  color: var(--accent);
  border-color: rgba(255, 255, 255, 0.15);
}

.business-stats {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  position: relative;
  z-index: 1;
}

.stat-card {
  width: 100%;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  padding: 22px 18px;
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  transition: all var(--transition-base);
}

.stat-card:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.stat-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: linear-gradient(135deg, rgba(233, 196, 106, 0.2), rgba(212, 163, 115, 0.2));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
}

.stat-icon svg {
  width: 22px;
  height: 22px;
}

.stat-number {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1.1;
  margin-bottom: 6px;
  font-family: var(--font-heading);
}

.stat-content h4 {
  color: var(--white);
  font-size: 1.15rem;
  margin-bottom: 6px;
}

.stat-content p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.88rem;
  line-height: 1.6;
}


/* ════════════════════════════════════════
   REASONS / WHY CHOOSE US
   ════════════════════════════════════════ */
.reasons-section {
  background: var(--bg-cream);
  position: relative;
}

.reasons-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.reason-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 24px 16px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.reason-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--primary-light), var(--accent));
  transform: scaleX(0);
  transition: transform var(--transition-smooth);
}

.reason-card:hover::after {
  transform: scaleX(1);
}

.reason-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.reason-emoji {
  font-size: 2.2rem;
  margin-bottom: 16px;
  display: block;
  transition: transform var(--transition-spring);
}

.reason-card:hover .reason-emoji {
  transform: scale(1.2) rotate(-5deg);
}

.reason-card h4 {
  font-size: 1rem;
  color: var(--primary-dark);
  line-height: 1.4;
}


/* ════════════════════════════════════════
   NATURE GALLERY
   ════════════════════════════════════════ */
.gallery-section {
  background: var(--white);
  overflow: hidden;
}

.gallery-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}

.gallery-slider {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.gallery-slide {
  min-width: 100%;
  position: relative;
}

.gallery-slide img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.gallery-slide-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 40px 32px 28px;
  background: linear-gradient(to top, rgba(0,0,0,0.65) 0%, transparent 100%);
  color: var(--white);
}

.gallery-slide-caption h4 {
  color: var(--white);
  font-size: 1.2rem;
  margin-bottom: 4px;
}

.gallery-slide-caption p {
  color: rgba(255,255,255,0.75);
  font-size: 0.88rem;
}

.gallery-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 24px;
}

.gallery-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(45, 106, 79, 0.2);
  border: 2px solid var(--primary-light);
  cursor: pointer;
  transition: all var(--transition-base);
}

.gallery-dot.active {
  background: var(--primary);
  border-color: var(--primary);
  width: 30px;
  border-radius: 20px;
}

.gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 36px;
  height: 36px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-dark);
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
  border: none;
  cursor: pointer;
}

.gallery-nav:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-50%) scale(1.1);
}

.gallery-nav.prev { left: 10px; }
.gallery-nav.next { right: 10px; }

.gallery-nav svg {
  width: 20px;
  height: 20px;
}


/* ════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════ */
.footer {
  background: var(--primary-dark);
  color: rgba(255, 255, 255, 0.8);
  padding: 80px 0 0;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary-light), var(--accent), var(--primary-light), transparent);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand .logo {
  margin-bottom: 20px;
}

.footer-brand .logo-text {
  color: var(--white);
}

.footer-brand .logo-text span {
  color: var(--primary-light);
}

.footer-brand .logo-icon {
  color: var(--primary-light);
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.9rem;
  line-height: 1.8;
  margin-bottom: 24px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.6);
  transition: all var(--transition-base);
}

.footer-social a:hover {
  background: var(--primary-light);
  border-color: var(--primary-light);
  color: var(--white);
  transform: translateY(-3px);
}

.footer-social a svg {
  width: 18px;
  height: 18px;
}

.footer-col h4 {
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 24px;
  position: relative;
  padding-bottom: 12px;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-light), var(--accent));
  border-radius: 2px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col ul li a {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.85);
  transition: all var(--transition-fast);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer-col ul li a:hover {
  color: var(--primary-light);
  transform: translateX(4px);
}

.footer-contact-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 16px;
}

.footer-contact-icon {
  width: 36px;
  height: 36px;
  min-width: 36px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-light);
}

.footer-contact-icon svg {
  width: 16px;
  height: 16px;
}

.footer-contact-text {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
}

.footer-bottom {
  padding: 24px 0;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.7);
}

.footer-bottom a {
  color: var(--primary-light);
}


/* ════════════════════════════════════════
   RESPONSIVE (MOBILE-FIRST)
   ════════════════════════════════════════ */

/* Small tablet / Large mobile and above */
@media (min-width: 480px) {
  .hero {
    height: 80vh;
    min-height: 500px;
  }

  .hero-badge {
    padding: 8px 20px;
    font-size: 0.75rem;
  }

  .hero-btn {
    padding: 16px 36px;
    font-size: 0.9rem;
  }

  .stat-card {
    flex-direction: row;
    align-items: flex-start;
    padding: 28px;
    gap: 20px;
  }

  .stat-icon {
    width: 56px;
    height: 56px;
    min-width: 56px;
  }

  .stat-icon svg {
    width: 24px;
    height: 24px;
  }

  .stat-number {
    font-size: 2.2rem;
  }

  .gallery-nav {
    width: 48px;
    height: 48px;
  }

  .gallery-nav.prev { left: 20px; }
  .gallery-nav.next { right: 20px; }
}

/* Tablet viewports and above */
@media (min-width: 768px) {
  :root {
    --header-height: 72px;
  }

  .section {
    padding: 100px 0;
  }

  .hamburger {
    display: none;
  }

  .mobile-nav {
    display: none;
  }

  .nav {
    display: flex;
  }

  .hero {
    min-height: 600px;
    height: 100vh;
  }

  .hero-content {
    max-width: 620px;
  }

  .hero-scroll {
    display: flex;
  }

  .social-sidebar {
    display: flex;
  }

  .about-grid {
    gap: 50px;
  }

  .about-highlights {
    flex-direction: row;
    gap: 24px;
  }

  .about-floating-badge {
    right: -20px;
    bottom: -20px;
    padding: 20px 28px;
  }

  .about-floating-badge .badge-number {
    font-size: 2.2rem;
  }

  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .offers-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .reasons-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .reason-card {
    padding: 36px 24px;
  }

  .reason-emoji {
    font-size: 2.5rem;
  }

  .gallery-slide img {
    height: 500px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .process-card {
    min-width: 320px;
    max-width: 320px;
  }

  .business-stats {
    flex-direction: row;
    justify-content: center;
    gap: 24px;
  }

  .stat-card {
    max-width: 380px;
    width: auto;
    flex: 1 1 320px;
  }
}

/* Laptops / Desktops and above */
@media (min-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr 1fr;
    gap: 80px;
  }

  .about-image img {
    height: 480px;
  }

  .products-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .reasons-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 50px;
  }
}

/* ── Decorative leaf pattern for section dividers ── */
.section-divider {
  width: 100px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--primary), var(--accent), var(--primary), transparent);
  margin: 0 auto 24px;
  position: relative;
}

.section-divider::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  width: 6px;
  height: 6px;
  background: var(--accent);
  border: 1px solid var(--primary);
}

.section-divider.light {
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), var(--accent), rgba(255,255,255,0.2), transparent);
}

.section-divider.light::before {
  background: var(--accent);
  border: 1px solid rgba(255,255,255,0.3);
}

/* ── Preloader ── */
.preloader {
  position: fixed;
  inset: 0;
  background: var(--bg-cream);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 24px;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.preloader.loaded {
  opacity: 0;
  visibility: hidden;
}

.preloader-leaf {
  width: 50px;
  height: 50px;
  color: var(--primary);
  animation: preloaderSpin 1.5s ease-in-out infinite;
}

@keyframes preloaderSpin {
  0% { transform: rotate(0deg) scale(1); }
  50% { transform: rotate(180deg) scale(1.1); }
  100% { transform: rotate(360deg) scale(1); }
}

.preloader-text {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--primary-dark);
  letter-spacing: 3px;
}

/* ── Counter animation ── */
.counter-value {
  font-family: var(--font-heading);
  font-weight: 800;
}

/* ════════════════════════════════════════
   OFFERS SECTION
   ════════════════════════════════════════ */
.offers-section {
  background: var(--bg-light);
  position: relative;
}

.offers-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 40px;
}

.offer-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(0, 0, 0, 0.04);
  position: relative;
  overflow: hidden;
  transition: all var(--transition-base);
  display: flex;
  flex-direction: column;
}

.offer-card.bulk-offer.has-bg {
  background-image: url('../assets/images/bulk-offer-bg.webp');
}

.offer-card.monsoon-offer.has-bg {
  background-image: url('../assets/images/monsoon-offer-bg.webp');
}

.offer-card.has-bg {
  background-size: cover;
  background-position: center;
  border: none;
  color: var(--white);
}

.offer-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(45, 106, 79, 0.15);
}

.offer-card::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: rgba(45, 106, 79, 0.03);
  pointer-events: none;
}

/* Hide normal card circle decoration on background cards */
.offer-card.has-bg::before {
  display: none;
}

/* Dark gradient overlay for text readability */
.offer-card.has-bg::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(10, 25, 18, 0.45) 0%, rgba(10, 25, 18, 0.85) 100%);
  z-index: 1;
  transition: background var(--transition-base);
}

.offer-card.has-bg:hover::after {
  background: linear-gradient(180deg, rgba(10, 25, 18, 0.3) 0%, rgba(10, 25, 18, 0.8) 100%);
}

/* Position contents above the overlay */
.offer-card.has-bg .offer-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.offer-card.has-bg .offer-badge {
  z-index: 2;
  background: var(--primary);
  color: var(--white);
  font-weight: 700;
}

.offer-card.has-bg h3 {
  color: var(--white);
}

.offer-card.has-bg .offer-desc {
  color: var(--white);
}

.offer-card.has-bg .offer-features li {
  color: var(--white);
}

.offer-card.has-bg .offer-features li::before {
  color: #52b788;
}

.offer-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(45, 106, 79, 0.08);
  color: var(--primary);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.offer-badge.hot-deal {
  background: rgba(212, 163, 115, 0.15);
  color: #c97d3e;
}

.offer-icon {
  font-size: 2.8rem;
  margin-bottom: 20px;
}

.offer-card h3 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: var(--primary-dark);
  margin-bottom: 12px;
}

.offer-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 24px;
}

.offer-features {
  list-style: none;
  margin-bottom: 30px;
  flex-grow: 1;
}

.offer-features li {
  font-size: 0.9rem;
  color: var(--text-dark);
  margin-bottom: 12px;
  padding-left: 24px;
  position: relative;
}

.offer-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: -1px;
  color: var(--primary-light);
  font-weight: bold;
  font-size: 1.1rem;
}

.offer-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 14px 24px;
  background: var(--primary);
  color: var(--white);
  border: 1px solid var(--primary);
  border-radius: var(--radius-md);
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  transition: all var(--transition-fast);
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(45, 106, 79, 0.15);
}

.offer-btn:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(27, 67, 50, 0.25);
  color: var(--white);
}

.offer-btn svg {
  width: 18px;
  height: 18px;
}


