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

:root {
  /* BRAND COLORS - GREEN & WHITE THEME */
  --bg-darkest: #ffffff;
  --bg-dark: #f6faf7;
  --bg-card: #ffffff;
  --bg-card-hover: #edf7f1;
  --green-primary: #1a5c38;
  --green-accent: #277749;
  --green-medium: #1a5c38;
  --green-bright: #1a5c38;
  --green-light: #e6f4ec;
  --gold: #b8860b;
  --gold-light: #d4a843;
  --text-primary: #0e2417;
  --text-secondary: #2c4a39;
  --text-muted: #577565;
  --white: #ffffff;
  --danger: #e74c3c;
  --warning: #f39c12;
  --success: #2ecc71;
  --transparent-green: rgba(26, 92, 56, 0.08);
  
  /* TYPOGRAPHY */
  --font-body: 'Inter', sans-serif;
  --font-heading: 'Playfair Display', serif;
  
  /* SHADOWS & RADIUS */
  --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 8px 15px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 15px 30px rgba(0, 0, 0, 0.5);
  --shadow-glow: 0 0 15px rgba(82, 183, 136, 0.3);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  
  /* TRANSITIONS */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
}

/* 1. GLOBAL RESET & BASE */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background-color: var(--bg-darkest);
  color: var(--text-primary);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--bg-darkest);
}
::-webkit-scrollbar-thumb {
  background: var(--green-primary);
  border-radius: var(--radius-sm);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--green-accent);
}

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

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

ul {
  list-style: none;
}

/* 2. TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
}

h4 {
  font-size: clamp(1.25rem, 2vw, 1.75rem);
}

h5 {
  font-size: 1.25rem;
}

h6 {
  font-size: 1rem;
}

p {
  margin-bottom: 1rem;
  color: var(--text-secondary);
}

.text-gradient {
  background: linear-gradient(to right, var(--green-bright), var(--green-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-gold {
  color: var(--gold);
}

/* 3. NAVBAR */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
  z-index: 1000;
  background: #1a5c38;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all var(--transition-normal);
}

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

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
}

.logo-img {
  height: 38px;
  width: auto;
  display: block;
}

.footer-logo-img {
  height: 48px;
  width: auto;
  display: block;
  margin-bottom: 1rem;
}

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -4px;
  left: 0;
  background-color: var(--green-bright);
  transition: width var(--transition-normal);
}

.nav-link:hover {
  color: var(--white);
}

.nav-link:hover::after {
  width: 100%;
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  z-index: 1001;
  background: none;
  border: none;
  padding: 4px;
}

.mobile-menu-toggle span {
  width: 30px;
  height: 2px;
  background-color: var(--white);
  transition: var(--transition-normal);
  display: block;
}

@media (max-width: 768px) {
  .navbar {
    height: 65px;
    padding: 0 1rem;
  }

  .logo-img {
    height: 30px;
  }

  .mobile-menu-toggle {
    display: flex;
    margin-left: auto;
    z-index: 1002;
  }
  
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 75%;
    max-width: 300px;
    height: 100vh;
    background-color: #132e22;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 3rem 2rem;
    transition: right var(--transition-normal);
    box-shadow: -5px 0 25px rgba(0,0,0,0.4);
    z-index: 1001;
  }

  .nav-links .nav-link {
    font-size: 1.1rem;
    color: var(--white);
    padding: 0.8rem 0;
    width: 100%;
  }
  
  .navbar.nav-open .nav-links {
    right: 0;
  }
  
  .mobile-menu-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  .mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  .mobile-menu-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
  
  .nav-cta .btn {
    display: none;
  }
}

/* 4. HERO SLIDESHOW */
.hero-section {
  position: relative;
  width: 100%;
  height: calc(100vh - 80px);
  min-height: 550px;
  overflow: hidden;
  margin-top: 80px;
}

@media (max-width: 768px) {
  .hero-section {
    height: calc(100vh - 65px);
    min-height: 500px;
    margin-top: 65px;
  }
}

.slideshow-container {
  position: relative;
  width: 100%;
  height: 100%;
}

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

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

.slide-image-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}

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

.slide-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(10, 22, 18, 0.4), rgba(10, 22, 18, 0.85));
  z-index: 3;
}

.slide-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 4;
  text-align: center;
  width: 90%;
  max-width: 750px;
}

@media (max-width: 768px) {
  .slide-content {
    background: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    padding: 0;
    border-radius: 0;
    border: none;
    box-shadow: none;
    width: 90%;
  }
}

.slide-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 5vw, 3.2rem);
  color: #ffffff;
  margin-bottom: 0.8rem;
  text-shadow: 0 3px 15px rgba(0, 0, 0, 0.85);
}

.slide-subtext {
  font-size: clamp(0.95rem, 2vw, 1.25rem);
  color: #f0f4f1;
  margin-bottom: 1.8rem;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.85);
}

.cta-button {
  font-size: 1rem;
  padding: 0.9rem 2rem;
}

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

.scroll-down-hint {
  position: absolute;
  bottom: 0.6rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 6;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.75rem;
  font-weight: 500;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.8);
  animation: bounce 2s infinite;
}

.scroll-down-hint .arrow-down {
  font-size: 1.1rem;
  line-height: 1;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translate(-50%, 0); }
  40% { transform: translate(-50%, -8px); }
  60% { transform: translate(-50%, -4px); }
}

@media (max-width: 768px) {
  .slideshow-dots {
    bottom: 2.8rem;
  }
}

.slide-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 6;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.85);
  font-size: 3rem;
  width: auto;
  height: auto;
  border-radius: 0;
  cursor: pointer;
  transition: all 0.25s ease;
  padding: 0.5rem;
  line-height: 1;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
}

.slide-arrow:hover {
  color: var(--white);
  transform: translateY(-50%) scale(1.25);
  background: none;
  box-shadow: none;
}

.prev-arrow {
  left: 1rem;
}

.next-arrow {
  right: 1rem;
}

@media (max-width: 768px) {
  .slide-arrow {
    font-size: 2.2rem;
    padding: 0.2rem;
  }
  .prev-arrow { left: 0.3rem; }
  .next-arrow { right: 0.3rem; }
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: var(--transition-fast);
}

.dot.active {
  background-color: var(--green-bright);
  width: 24px;
  border-radius: 10px;
}

/* 5. SECTIONS (Landing page) */
.section {
  padding: 4rem 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .section {
    padding: 2.5rem 1rem;
  }
}

.section-title {
  text-align: center;
  margin-bottom: 0.8rem;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
}

.section-subtitle {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 2.5rem auto;
  font-size: 1rem;
  color: var(--text-muted);
}

/* How It Works (Pill Design) */
.how-it-works-section {
  position: relative;
  background: var(--bg-dark);
  padding: 3rem 1.5rem 1.5rem;
}

.hw-header-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 3.5rem;
  position: relative;
}

.hw-sub {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--text-muted);
  display: block;
  margin-bottom: 0.5rem;
}

.hw-main-title {
  font-family: 'Arial Black', var(--font-heading);
  font-size: clamp(1.8rem, 5vw, 3.8rem);
  font-weight: 900;
  color: var(--text-primary);
  line-height: 1.05;
  margin: 0;
  display: flex;
  flex-wrap: nowrap;
  white-space: nowrap;
  align-items: center;
  gap: 0.5rem;
}

.hw-green-text {
  color: #278a48;
}

.hw-circle-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #278a48;
  color: #ffffff;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 1.8rem;
  margin-left: 0.5rem;
  box-shadow: 0 4px 15px rgba(39, 138, 72, 0.3);
}

.hw-question-mark {
  font-size: clamp(4rem, 10vw, 8rem);
  font-weight: 900;
  color: rgba(39, 138, 72, 0.2);
  line-height: 0.8;
  font-family: var(--font-heading);
  user-select: none;
}

.hw-pills-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.8rem 2.5rem;
}

.hw-pill-card {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  padding: 1.8rem 2.2rem;
  border-radius: 50px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
  position: relative;
}

.pill-tilt-left {
  transform: rotate(-1.5deg);
}

.pill-tilt-right {
  transform: rotate(1.5deg);
}

.hw-pill-card:hover {
  transform: rotate(0deg) translateY(-6px) scale(1.02);
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.12);
}

.pill-green {
  background: linear-gradient(135deg, #278a48, #1a5c38);
  color: #ffffff;
  border: none;
}

.pill-green .pill-title {
  color: #ffffff;
}

.pill-green .pill-desc {
  color: rgba(255, 255, 255, 0.9);
}

.pill-green .pill-dot {
  color: #ffffff;
}

.pill-white {
  background: #ffffff;
  color: #0e2417;
  border: 2px solid #278a48;
}

.pill-white .pill-title {
  color: #1a5c38;
}

.pill-white .pill-desc {
  color: #4a6354;
}

.pill-white .pill-dot {
  color: #278a48;
}

.pill-dot {
  font-size: 1.2rem;
  margin-top: 0.2rem;
  line-height: 1;
}

.pill-content {
  flex: 1;
}

.pill-title {
  font-family: var(--font-body);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
}

.pill-desc {
  font-size: 0.9rem;
  line-height: 1.5;
  margin: 0;
}

@media (max-width: 768px) {
  .hw-header-wrapper {
    flex-direction: row;
    align-items: center;
    margin-bottom: 2rem;
  }

  .hw-main-title {
    font-size: clamp(1.1rem, 4.8vw, 1.5rem);
    white-space: nowrap;
  }

  .hw-circle-arrow {
    width: 38px;
    height: 38px;
    font-size: 1.3rem;
  }

  .hw-question-mark {
    font-size: 4.5rem;
  }

  .hw-pills-grid {
    grid-template-columns: 1fr;
    gap: 0.8rem;
    max-width: 275px;
    margin: 0 auto;
  }

  .hw-pill-card {
    padding: 0.85rem 1.1rem;
    border-radius: 25px;
  }

  .pill-title {
    font-size: 0.95rem;
    margin-bottom: 0.2rem;
  }

  .pill-desc {
    font-size: 0.78rem;
    line-height: 1.35;
  }
}

/* Features Grid (Why Tellex) */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid rgba(26, 92, 56, 0.15);
  border-radius: var(--radius-md);
  padding: 2rem 1.5rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
  transition: all var(--transition-normal);
}

.feature-card:hover {
  transform: translateY(-5px);
  border-color: var(--green-accent);
  box-shadow: 0 10px 25px rgba(26, 92, 56, 0.1);
}

.feature-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.6rem;
  color: var(--green-primary);
}

.feature-desc {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 992px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .features-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .feature-card {
    padding: 1.4rem 1.2rem;
  }
}

/* Testimonials Section (Custom Graphic Stack Design) */
.testimonials-section {
  position: relative;
  background: var(--bg-darkest);
  padding: 2.5rem 1.5rem 2rem;
}

.t-badge-pill {
  display: inline-block;
  background: #c8e8d2;
  color: #1a5c38;
  border: 1px solid #95d4a7;
  padding: 0.4rem 1.2rem;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
}

.t-green-text {
  color: #278a48;
}

.t-main-title {
  font-family: 'Arial Black', var(--font-heading);
  font-size: clamp(1.8rem, 5vw, 3.5rem);
  font-weight: 900;
  color: #0e2417;
  margin-bottom: 1.8rem;
}

.t-cards-stack {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  max-width: 520px;
  margin: 0 auto;
}

.t-card {
  position: relative;
  border-radius: 18px;
  padding: 1.3rem 1.6rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.t-tilt-left {
  transform: rotate(-1.8deg);
  animation: floatGentleLeft 4s ease-in-out infinite alternate;
}

.t-tilt-right {
  transform: rotate(1.8deg);
  animation: floatGentleRight 4s ease-in-out infinite alternate 1s;
}

@keyframes floatGentleLeft {
  0% { transform: rotate(-1.8deg) translateY(0px); }
  100% { transform: rotate(-1.2deg) translateY(-6px); }
}

@keyframes floatGentleRight {
  0% { transform: rotate(1.8deg) translateY(0px); }
  100% { transform: rotate(1.2deg) translateY(-6px); }
}

.t-card:hover {
  transform: rotate(0deg) translateY(-8px) scale(1.02) !important;
  box-shadow: 0 20px 40px rgba(26, 92, 56, 0.15);
  z-index: 10;
}

.t-card-green {
  background: #c2ebcb;
  border: 2px solid #82d894;
  color: #0e2417;
}

.t-card-white {
  background: #ffffff;
  border: 2px solid #278a48;
  color: #0e2417;
}

.t-card-header {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin-bottom: 1rem;
}

.t-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  color: #ffffff;
  font-weight: 900;
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.avatar-orange { background: #e05638; }
.avatar-green { background: #7ab332; }
.avatar-blue { background: #1b8bd8; }

.t-user-meta {
  flex: 1;
}

.t-name {
  font-family: var(--font-body);
  font-size: 1.15rem;
  font-weight: 800;
  margin: 0 0 0.2rem 0;
  color: #0e2417;
}

.t-date {
  font-size: 0.8rem;
  color: #4a6354;
  font-weight: 500;
}

.t-rating-pill {
  background: #111111;
  color: #ffffff;
  padding: 0.4rem 0.9rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 1px;
}

.t-quote {
  font-size: 0.95rem;
  line-height: 1.65;
  color: #1e3327;
  margin: 0;
  font-weight: 500;
}

.sparkle {
  position: absolute;
  color: #d89624;
  font-size: 1.2rem;
  user-select: none;
  pointer-events: none;
  animation: pulseSparkle 2s infinite alternate;
}

.sparkle-tl { top: -8px; left: 20px; }
.sparkle-tr { top: -8px; right: 25px; }
.sparkle-bl { bottom: -8px; left: 30px; }
.sparkle-br { bottom: -8px; right: 20px; }

@keyframes pulseSparkle {
  0% { transform: scale(0.9) rotate(0deg); opacity: 0.7; }
  100% { transform: scale(1.3) rotate(15deg); opacity: 1; }
}

@media (max-width: 768px) {
  .t-cards-stack {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
    max-width: 265px;
    margin: 0 auto;
    padding: 0;
  }

  .t-dots {
    display: none;
  }

  .t-card {
    flex: initial;
    width: 100%;
    max-width: 100%;
    padding: 0.85rem 1rem;
    border-radius: 16px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.07);
  }

  .t-tilt-left {
    transform: rotate(-1.8deg) !important;
    animation: floatGentleLeft 4s ease-in-out infinite alternate !important;
  }

  .t-tilt-right {
    transform: rotate(1.8deg) !important;
    animation: floatGentleRight 4s ease-in-out infinite alternate 1s !important;
  }

  .t-card-header {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 0.5rem;
  }

  .t-avatar {
    width: 32px;
    height: 32px;
    font-size: 0.9rem;
    flex-shrink: 0;
  }

  .t-user-meta {
    flex: 1;
    min-width: 0;
  }

  .t-name {
    font-size: 0.88rem;
    font-weight: 800;
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .t-date {
    font-size: 0.68rem;
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .t-rating-pill {
    font-size: 0.65rem;
    padding: 0.2rem 0.5rem;
    border-radius: 10px;
    flex-shrink: 0;
  }

  .t-quote {
    font-size: 0.78rem;
    line-height: 1.38;
  }
}

.t-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 1.5rem;
}

.t-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #278a48;
  opacity: 0.3;
  cursor: pointer;
  transition: all 0.3s ease;
}

.t-dot.active {
  opacity: 1;
  width: 24px;
  border-radius: 10px;
  background: #278a48;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, #1a5c38, #0e2417);
  border-radius: 28px;
  text-align: center;
  padding: 3.5rem 2rem;
  margin: 3rem auto 4rem auto;
  box-shadow: 0 15px 35px rgba(14, 36, 23, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #ffffff;
}

.cta-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: #ffffff;
  margin-bottom: 0.8rem;
}

.cta-subtitle {
  font-size: 1.05rem;
  color: #e2e8e4;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-note {
  font-size: 0.88rem;
  color: #a3c2b0;
  margin-top: 1.2rem;
  font-weight: 500;
}

@media (max-width: 768px) {
  .cta-section {
    padding: 2.5rem 1.2rem;
    margin: 2rem 1rem 3rem 1rem;
    border-radius: 20px;
  }
}

/* 6. BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all var(--transition-fast);
  border: none;
  outline: none;
  font-family: var(--font-body);
  gap: 0.5rem;
}

.btn-primary {
  background: linear-gradient(135deg, var(--green-accent), var(--green-medium));
  color: var(--white);
  box-shadow: 0 4px 15px rgba(45, 106, 79, 0.4);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
  background: linear-gradient(135deg, var(--green-medium), var(--green-bright));
}

.btn-secondary {
  background: transparent;
  color: var(--green-bright);
  border: 1px solid var(--green-accent);
}

.btn-secondary:hover {
  background: rgba(45, 106, 79, 0.1);
  transform: translateY(-2px);
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--bg-darkest);
  box-shadow: 0 4px 15px rgba(212, 168, 67, 0.3);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 15px rgba(212, 168, 67, 0.5);
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1.1rem;
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
}

.btn:disabled, .btn.disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none !important;
  box-shadow: none !important;
}

/* 7. CARDS */
.card {
  background-color: var(--bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.05);
  overflow: hidden;
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
}

.card:hover {
  background-color: var(--bg-card-hover);
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: rgba(82, 183, 136, 0.2);
}

.card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.card-body {
  padding: 1.5rem;
  flex: 1;
}

.card-footer {
  padding: 1rem 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* 8. MULTI-STEP ORDER FORM */
.order-container {
  max-width: 700px;
  margin: 6rem auto;
  padding: 2rem;
  background: var(--bg-dark);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

@media (max-width: 768px) {
  .order-container {
    margin: 4rem 1rem;
    padding: 1.5rem;
  }
}

.progress-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 3rem;
  position: relative;
}

.progress-bar::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--bg-card);
  z-index: 0;
  transform: translateY(-50%);
}

.progress-bar-fill {
  position: absolute;
  top: 50%;
  left: 0;
  height: 2px;
  background: var(--green-bright);
  z-index: 0;
  transform: translateY(-50%);
  transition: width var(--transition-normal);
}

.step {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--bg-card);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-muted);
  position: relative;
  z-index: 1;
  border: 2px solid var(--bg-card-hover);
  transition: all var(--transition-normal);
}

.step.active {
  background: var(--green-primary);
  border-color: var(--green-bright);
  color: var(--white);
  box-shadow: 0 0 10px rgba(82, 183, 136, 0.4);
}

.step.completed {
  background: var(--green-bright);
  border-color: var(--green-bright);
  color: var(--bg-darkest);
}

.step-label {
  position: absolute;
  top: 40px;
  font-size: 0.75rem;
  color: var(--text-secondary);
  white-space: nowrap;
}

.step-content {
  display: none;
  animation: slideLeft var(--transition-normal) forwards;
}

.step-content.active {
  display: block;
}

.form-navigation {
  display: flex;
  justify-content: space-between;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.option-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.option-card {
  background: var(--bg-card);
  border: 2px solid transparent;
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  text-align: center;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.option-card:hover {
  background: var(--bg-card-hover);
}

.option-card.selected {
  border-color: var(--green-bright);
  background: rgba(82, 183, 136, 0.1);
  box-shadow: var(--shadow-glow);
}

.option-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--green-light);
}

.option-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: var(--white);
}

.bundle-card {
  background: var(--bg-card);
  border: 2px solid transparent;
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  position: relative;
  cursor: pointer;
  transition: all var(--transition-normal);
}

.bundle-card:hover {
  transform: translateY(-5px);
}

.bundle-card.selected {
  border-color: var(--gold);
  background: rgba(212, 168, 67, 0.05);
}

.bundle-popular {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--bg-darkest);
  padding: 0.25rem 1rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  box-shadow: 0 2px 10px rgba(212, 168, 67, 0.4);
}

.bundle-price {
  font-size: 2.5rem;
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--white);
  margin: 1rem 0;
}

.bundle-features {
  text-align: left;
  margin-top: 1.5rem;
}

.bundle-features li {
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.bundle-features li::before {
  content: '✓';
  color: var(--green-bright);
  font-weight: bold;
}

/* 9. FORM ELEMENTS */
.form-group {
  margin-bottom: 1.5rem;
}

label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--text-primary);
}

input[type="text"],
input[type="email"],
input[type="password"],
input[type="number"],
input[type="tel"],
select,
textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  background-color: var(--bg-darkest);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: border-color var(--transition-fast);
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--green-bright);
  box-shadow: 0 0 0 3px rgba(82, 183, 136, 0.2);
}

textarea {
  resize: vertical;
  min-height: 100px;
}

.input-error {
  border-color: var(--danger) !important;
}

.error-message {
  color: var(--danger);
  font-size: 0.875rem;
  margin-top: 0.25rem;
  display: none;
}

.input-error + .error-message {
  display: block;
}

/* Custom Checkbox/Radio */
.custom-control {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  margin-bottom: 0.5rem;
}

.custom-control input {
  display: none;
}

.control-indicator {
  width: 20px;
  height: 20px;
  background: var(--bg-darkest);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.custom-control input[type="radio"] + .control-indicator {
  border-radius: 50%;
}

.custom-control input:checked + .control-indicator {
  background: var(--green-bright);
  border-color: var(--green-bright);
}

.custom-control input:checked + .control-indicator::after {
  content: '✓';
  color: var(--bg-darkest);
  font-size: 12px;
  font-weight: bold;
}

.custom-control input[type="radio"]:checked + .control-indicator::after {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--bg-darkest);
  border-radius: 50%;
}

/* 10. ADMIN PANEL */
.admin-layout {
  display: flex;
  min-height: 100vh;
  background: var(--bg-darkest);
}

.admin-sidebar {
  width: 260px;
  background: var(--bg-dark);
  border-right: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  flex-direction: column;
  position: fixed;
  height: 100vh;
  left: 0;
  top: 0;
  z-index: 100;
  transition: transform var(--transition-normal);
}

.admin-logo {
  padding: 1.5rem;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.admin-nav {
  padding: 1rem 0;
  flex: 1;
}

.admin-nav-item {
  display: flex;
  align-items: center;
  padding: 0.75rem 1.5rem;
  color: var(--text-secondary);
  gap: 1rem;
  transition: all var(--transition-fast);
  border-left: 3px solid transparent;
}

.admin-nav-item:hover, .admin-nav-item.active {
  background: rgba(255, 255, 255, 0.03);
  color: var(--white);
}

.admin-nav-item.active {
  border-left-color: var(--green-bright);
}

.admin-main {
  flex: 1;
  margin-left: 260px;
  display: flex;
  flex-direction: column;
}

.admin-header {
  height: 70px;
  background: var(--bg-dark);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
}

.admin-content {
  padding: 2rem;
  flex: 1;
  overflow-y: auto;
}

.admin-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.stat-card {
  background: var(--bg-card);
  padding: 1.5rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.stat-title {
  color: var(--text-secondary);
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}

.stat-value {
  font-size: 2rem;
  font-weight: 700;
  font-family: var(--font-heading);
}

.admin-table-wrapper {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.05);
  overflow-x: auto;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.admin-table th, .admin-table td {
  padding: 1rem 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.admin-table th {
  background: rgba(255, 255, 255, 0.02);
  color: var(--text-secondary);
  font-weight: 500;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.admin-table tr:hover td {
  background: rgba(255, 255, 255, 0.01);
}

.badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
}

.badge-pending {
  background: rgba(243, 156, 18, 0.1);
  color: var(--warning);
  border: 1px solid rgba(243, 156, 18, 0.3);
}

.badge-fulfilled {
  background: rgba(46, 204, 113, 0.1);
  color: var(--success);
  border: 1px solid rgba(46, 204, 113, 0.3);
}

.badge-cancelled {
  background: rgba(231, 76, 60, 0.1);
  color: var(--danger);
  border: 1px solid rgba(231, 76, 60, 0.3);
}

.admin-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(5px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-normal);
}

.admin-modal.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-content {
  background: var(--bg-dark);
  width: 90%;
  max-width: 600px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transform: translateY(20px);
  transition: transform var(--transition-normal);
  max-height: 90vh;
  overflow-y: auto;
}

.admin-modal.active .modal-content {
  transform: translateY(0);
}

.modal-header {
  padding: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal-body {
  padding: 1.5rem;
}

.close-modal {
  background: transparent;
  border: none;
  color: var(--text-secondary);
  font-size: 1.5rem;
  cursor: pointer;
}

@media (max-width: 1024px) {
  .admin-stats {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .admin-sidebar {
    transform: translateX(-100%);
  }
  .admin-sidebar.open {
    transform: translateX(0);
  }
  .admin-main {
    margin-left: 0;
  }
  .admin-stats {
    grid-template-columns: 1fr;
  }
}

/* 11. FOOTER */
.footer {
  background: #11261b;
  color: #ffffff;
  padding: 3.5rem 1.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto 2.5rem auto;
}

.footer-logo-img {
  height: 38px;
  width: auto;
  margin-bottom: 0.8rem;
}

.footer-heading {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.6rem;
}

.footer-links a {
  color: #c4d6cb;
  font-size: 0.9rem;
  transition: color var(--transition-fast);
}

.footer-links a:hover {
  color: #82d894;
}

.social-links {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  margin-top: 0.8rem;
}

.social-links a.social-icon-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.social-links a.social-icon-btn:hover {
  background: #278a48;
  border-color: #278a48;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(39, 138, 72, 0.35);
}

.footer-bottom {
  text-align: center;
  padding: 1.2rem 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: #8fa899;
  font-size: 0.85rem;
}

@media (max-width: 768px) {
  .footer {
    padding: 2rem 1rem 0;
  }

  .footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem 1rem;
    margin-bottom: 1.5rem;
    text-align: left;
  }

  .brand-col {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.8rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    margin-bottom: 0.2rem;
  }

  .contact-col {
    grid-column: 1 / -1;
    border-top: 1px dashed rgba(255, 255, 255, 0.08);
    padding-top: 0.8rem;
    margin-top: 0.2rem;
  }

  .contact-info {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
  }

  .contact-info li,
  .contact-info a {
    white-space: nowrap !important;
    font-size: 0.82rem !important;
    color: #d1e3d6 !important;
    line-height: 1.4;
  }

  .footer-logo-img {
    height: 30px;
    margin-bottom: 0;
  }

  .social-links {
    margin-top: 0;
    gap: 0.5rem;
  }

  .social-links a {
    padding: 0.3rem 0.7rem;
    font-size: 0.75rem;
  }

  .footer-heading {
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #ffffff;
  }

  .footer-links li {
    margin-bottom: 0.4rem;
  }

  .footer-links a {
    font-size: 0.8rem;
    line-height: 1.4;
  }

  .footer-bottom {
    padding: 1rem;
    font-size: 0.78rem;
  }
}

/* 12. UTILITIES */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.flex { display: flex; }
.flex-col { display: flex; flex-direction: column; }
.flex-center { display: flex; justify-content: center; align-items: center; }
.flex-between { display: flex; justify-content: space-between; align-items: center; }
.flex-wrap { flex-wrap: wrap; }
.gap-1 { gap: 0.5rem; }
.gap-2 { gap: 1rem; }
.gap-3 { gap: 1.5rem; }
.gap-4 { gap: 2rem; }

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 3rem; }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-5 { margin-bottom: 3rem; }

.pt-1 { padding-top: 0.5rem; }
.pb-1 { padding-bottom: 0.5rem; }
.py-2 { padding: 1rem 0; }
.px-2 { padding: 0 1rem; }

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

.w-full { width: 100%; }
.h-full { height: 100%; }

.hidden { display: none !important; }
.visible { display: block !important; }

/* 13. RESPONSIVE BREAKPOINTS (handled largely inline above, but adding general helpers) */
@media (max-width: 768px) {
  .grid-2, .grid-3, .grid-4 {
    grid-template-columns: 1fr;
  }
}

/* 14. ANIMATIONS */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes slideLeft {
  from { opacity: 0; transform: translateX(30px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes slideRight {
  from { opacity: 0; transform: translateX(-30px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes pulse {
  0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(82, 183, 136, 0.4); }
  70% { transform: scale(1.05); box-shadow: 0 0 0 10px rgba(82, 183, 136, 0); }
  100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(82, 183, 136, 0); }
}

@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0px); }
}

@keyframes shimmer {
  0% { background-position: -1000px 0; }
  100% { background-position: 1000px 0; }
}

.fade-in {
  animation: fadeIn 0.8s ease forwards;
}

.slide-up {
  opacity: 0;
  animation: slideUp 0.8s ease forwards;
}

.slide-left {
  opacity: 0;
  animation: slideLeft 0.8s ease forwards;
}

.slide-right {
  opacity: 0;
  animation: slideRight 0.8s ease forwards;
}

.pulse {
  animation: pulse 2s infinite;
}

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

/* Scroll Animation Classes */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ==============================
   PRICING CARDS (Landing Page)
   ============================== */
.pricing-card {
  background: linear-gradient(145deg, #132e22, #0d1f17);
  border: 1px solid rgba(39, 138, 72, 0.3);
  border-radius: 20px;
  padding: 0;
  position: relative;
  overflow: hidden;
  transition: all 0.35s ease;
}

.pricing-card:hover {
  transform: translateY(-6px);
  border-color: rgba(212, 168, 67, 0.5);
  box-shadow: 0 12px 40px rgba(26, 92, 56, 0.25);
}

.pricing-card-inner {
  padding: 2rem 1.5rem 1.8rem;
  text-align: center;
}

.pricing-badge {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #1a5c38, #278a48);
  color: #ffffff;
  font-size: 0.7rem;
  font-weight: 800;
  padding: 0.35rem 1.2rem;
  border-radius: 0 0 12px 12px;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  z-index: 2;
}

.pricing-tier {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #74c69d;
  margin: 0 0 0.6rem 0;
}

.pricing-price {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0.2rem 0;
  line-height: 1;
}

.pricing-books {
  color: #a8b5a0;
  font-size: 0.88rem;
  font-weight: 500;
  margin: 0.4rem 0 1.2rem;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  text-align: left;
}

.pricing-features li {
  color: #c4d4bc;
  font-size: 0.82rem;
  padding: 0.35rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  line-height: 1.4;
}

.pricing-features li:last-child {
  border-bottom: none;
}

.pricing-btn {
  display: inline-block;
  width: 100%;
  padding: 0.75rem 1.5rem;
  background: linear-gradient(135deg, #1a5c38, #278a48);
  color: #ffffff;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9rem;
  border-radius: 14px;
  transition: all 0.3s ease;
  text-align: center;
  box-sizing: border-box;
}

.pricing-btn:hover {
  background: linear-gradient(135deg, #278a48, #2d6a4f);
  box-shadow: 0 4px 18px rgba(39, 138, 72, 0.35);
  transform: translateY(-2px);
}

.pricing-btn-gold {
  background: linear-gradient(135deg, #d4a843, #b8860b);
  color: #0e2417;
}

.pricing-btn-gold:hover {
  background: linear-gradient(135deg, #f0d78c, #d4a843);
  box-shadow: 0 4px 18px rgba(212, 168, 67, 0.35);
}

@media (max-width: 768px) {
  #pricing .container > div {
    grid-template-columns: 1fr !important;
    max-width: 380px !important;
    margin: 0 auto !important;
  }

  .pricing-card-inner {
    padding: 1.6rem 1.2rem 1.4rem;
  }

  .pricing-price {
    font-size: 2rem;
  }
}

/* ==========================================================================
   FLOATING WHATSAPP BUTTON & WIDGET W/ PULSE & TOOLTIP
   ========================================================================== */
.whatsapp-float-btn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  color: #ffffff;
  border-radius: 50%;
  text-align: center;
  box-shadow: 0 4px 18px rgba(37, 211, 102, 0.45), 0 6px 20px rgba(0, 0, 0, 0.25);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.whatsapp-float-btn:hover {
  background-color: #20ba5a;
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6), 0 10px 25px rgba(0, 0, 0, 0.3);
}

/* Ring pulse animation */
.whatsapp-float-btn::before {
  content: '';
  position: absolute;
  top: -4px;
  left: -4px;
  right: -4px;
  bottom: -4px;
  border-radius: 50%;
  border: 2px solid #25d366;
  animation: wa-pulse 2s infinite;
  opacity: 0.8;
  pointer-events: none;
}

@keyframes wa-pulse {
  0% {
    transform: scale(0.95);
    opacity: 0.8;
  }
  50% {
    transform: scale(1.25);
    opacity: 0;
  }
  100% {
    transform: scale(0.95);
    opacity: 0;
  }
}

/* Hover Tooltip / Badge */
.whatsapp-tooltip {
  position: absolute;
  right: 70px;
  top: 50%;
  transform: translateY(-50%);
  background-color: #0d1f17;
  color: #ffffff;
  padding: 8px 14px;
  border-radius: 20px;
  font-size: 0.82rem;
  font-weight: 600;
  white-space: nowrap;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(45, 106, 79, 0.4);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  pointer-events: none;
  display: flex;
  align-items: center;
  gap: 6px;
}

.whatsapp-tooltip::after {
  content: '';
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%);
  border-width: 6px 0 6px 6px;
  border-style: solid;
  border-color: transparent transparent transparent #0d1f17;
}

.whatsapp-float-btn:hover .whatsapp-tooltip {
  opacity: 1;
  visibility: visible;
  right: 74px;
}

@media (max-width: 768px) {
  .whatsapp-float-btn {
    bottom: 20px;
    right: 20px;
    width: 54px;
    height: 54px;
  }
  .whatsapp-tooltip {
    display: none;
  }
}

/* ==========================================================================
   TERMS OF SERVICE PAGE STYLING
   ========================================================================== */
.legal-container {
  max-width: 920px;
  margin: 0 auto;
  padding: 3rem 1.5rem 5rem;
}

.legal-header {
  text-align: center;
  margin-bottom: 2.5rem;
  padding-bottom: 1.8rem;
  border-bottom: 1px solid rgba(45, 106, 79, 0.2);
}

.legal-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 2.8rem);
  color: #1a5c38;
  margin-bottom: 0.6rem;
}

.legal-subtitle {
  color: var(--text-muted);
  font-size: 1rem;
  max-width: 600px;
  margin: 0 auto;
}

.legal-card {
  background: var(--bg-card);
  border: 1px solid rgba(45, 106, 79, 0.2);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
  margin-bottom: 2rem;
}

.legal-section {
  margin-bottom: 2.2rem;
}

.legal-section:last-child {
  margin-bottom: 0;
}

.legal-section h2 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: #1a5c38;
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.legal-section h2 .sec-num {
  background: rgba(26, 92, 56, 0.1);
  color: #1a5c38;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.88rem;
  font-family: var(--font-body);
  font-weight: 700;
  flex-shrink: 0;
}

.legal-section p {
  color: var(--text-secondary);
  line-height: 1.7;
  font-size: 0.98rem;
  margin-bottom: 0.8rem;
}

.legal-section ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 1rem;
}

.legal-section ul li {
  position: relative;
  padding-left: 1.4rem;
  margin-bottom: 0.5rem;
  color: var(--text-secondary);
  line-height: 1.6;
  font-size: 0.96rem;
}

.legal-section ul li::before {
  content: "•";
  color: #1a5c38;
  font-weight: bold;
  font-size: 1.2rem;
  position: absolute;
  left: 0.3rem;
  top: -2px;
}

.contact-box-legal {
  background: linear-gradient(135deg, #0d1f17, #132e22);
  border: 1px solid #2d6a4f;
  border-radius: var(--radius-md);
  padding: 1.5rem;
  color: #ffffff;
  margin-top: 1rem;
}

.contact-box-legal h4 {
  color: #d4a843;
  margin-bottom: 0.8rem;
  font-family: var(--font-heading);
  font-size: 1.1rem;
}

.contact-box-legal p {
  color: #e6f4ec !important;
  margin-bottom: 0.5rem !important;
  font-size: 0.95rem !important;
}

.contact-box-legal a {
  color: #52b788;
  text-decoration: none;
  font-weight: 600;
}

.contact-box-legal a:hover {
  text-decoration: underline;
}

@media (max-width: 600px) {
  .legal-card {
    padding: 1.3rem 0.9rem !important;
  }

  .legal-container {
    padding: 1.5rem 0.8rem 4rem !important;
  }

  .legal-header {
    margin-bottom: 1.5rem !important;
    padding-bottom: 1.2rem !important;
  }

  .legal-title {
    font-size: 1.8rem !important;
  }

  .legal-subtitle {
    font-size: 0.92rem !important;
    line-height: 1.5 !important;
  }

  .legal-section {
    margin-bottom: 1.8rem !important;
  }

  .legal-section h2 {
    font-size: 1.15rem !important;
    gap: 0.4rem !important;
  }

  .legal-section h2 .sec-num {
    width: 26px !important;
    height: 26px !important;
    font-size: 0.8rem !important;
  }

  .legal-section p {
    font-size: 0.92rem !important;
    line-height: 1.6 !important;
  }

  .contact-box-legal {
    padding: 1rem 0.8rem !important;
    border-radius: 10px !important;
    word-break: break-word !important;
    overflow-wrap: break-word !important;
  }

  .contact-box-legal h4 {
    font-size: 1rem !important;
    margin-bottom: 0.6rem !important;
  }

  .contact-box-legal p {
    font-size: 0.88rem !important;
    word-break: break-word !important;
    overflow-wrap: break-word !important;
  }
}

/* ==========================================================================
   HELP & FAQ PAGE ACCORDION STYLING
   ========================================================================== */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid rgba(45, 106, 79, 0.2);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-sm);
}

.faq-item:hover, .faq-item.active {
  border-color: #1a5c38;
  box-shadow: var(--shadow-md);
}

.faq-question {
  padding: 1.25rem 1.5rem;
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: #1a5c38;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  background: transparent;
  transition: background-color 0.2s ease;
}

.faq-question:hover {
  background-color: rgba(26, 92, 56, 0.04);
}

.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(26, 92, 56, 0.1);
  color: #1a5c38;
  display: inline-flex;
  align-items: center;
  justify-content: center;
/* ==========================================================================
   PACKAGE FILTER BAR & DETAILS MODAL STYLING
   ========================================================================== */
.package-filter-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  margin-bottom: 1.4rem;
  padding: 0.4rem;
  background: #f4faf6;
  border: 1px solid rgba(39, 138, 72, 0.2);
  border-radius: 28px;
}

.category-tabs {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  max-width: 100%;
}

.filter-tab {
  background: transparent;
  border: none;
  color: #1a5c38;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 0.45rem 0.9rem;
  border-radius: 20px;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.2s ease;
}

.filter-tab:hover {
  background: rgba(39, 138, 72, 0.1);
}

.filter-tab.active {
  background: #1a5c38;
  color: #ffffff;
  box-shadow: 0 3px 10px rgba(26, 92, 56, 0.25);
}

.price-filter-wrap {
  display: flex;
  align-items: center;
}

.price-filter-select {
  background: #ffffff;
  border: 1.5px solid #278a48;
  color: #1a5c38;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 0.45rem 0.9rem;
  border-radius: 20px;
  cursor: pointer;
  outline: none;
  box-shadow: 0 2px 6px rgba(0,0,0,0.04);
}

.price-filter-select:focus {
  border-color: #1a5c38;
  box-shadow: 0 0 0 3px rgba(39, 138, 72, 0.2);
}

.btn-details-link {
  background: rgba(26, 92, 56, 0.08);
  border: 1px solid rgba(39, 138, 72, 0.25);
  color: #1a5c38;
  font-size: 0.74rem;
  font-weight: 700;
  padding: 0.2rem 0.55rem;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-details-link:hover {
  background: #1a5c38;
  color: #ffffff;
}

/* Modal Popup for Package Details */
.pkg-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(13, 31, 23, 0.7);
  backdrop-filter: blur(4px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  box-sizing: border-box;
  animation: fadeIn 0.25s ease;
}

.pkg-modal-box {
  background: #ffffff;
  width: 100%;
  max-width: 460px;
  border-radius: 24px;
  padding: 1.5rem;
  position: relative;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
  border: 2px solid #278a48;
  max-height: 90vh;
  overflow-y: auto;
}

.pkg-modal-close {
  position: absolute;
  top: 12px;
  right: 14px;
  background: #e8f3ec;
  border: none;
  color: #1a5c38;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-size: 1.3rem;
  font-weight: bold;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.pkg-modal-close:hover {
  background: #1a5c38;
  color: #ffffff;
}

.pkg-modal-header {
  display: flex;
  gap: 1rem;
  align-items: center;
  border-bottom: 1px solid rgba(39, 138, 72, 0.15);
  padding-bottom: 1rem;
  margin-bottom: 0.8rem;
}

.pkg-modal-img {
  width: 90px;
  height: 110px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

@media (max-width: 600px) {
  .package-filter-bar {
    flex-direction: column;
    align-items: stretch;
    border-radius: 18px;
    padding: 0.6rem;
  }
  .category-tabs {
    justify-content: center;
  }
  .price-filter-select {
    width: 100%;
  }
}

/* ==========================================================================
   PACKAGE SELECTION COMPACT 2-COLUMN GRID DESIGN
   ========================================================================== */
#bundles-grid {
  display: grid !important;
  grid-template-columns: repeat(2, 1fr) !important;
  gap: 1rem !important;
  width: 100% !important;
  margin-bottom: 1.5rem !important;
  box-sizing: border-box !important;
}

.package-scroll-row .bundle-builder-card {
  flex: none !important;
  width: 100% !important;
  min-width: 0 !important;
  max-width: 100% !important;
  box-sizing: border-box !important;
  background: #ffffff !important;
  border: 2px solid rgba(39, 138, 72, 0.25) !important;
  border-radius: 14px !important;
  overflow: hidden !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: space-between !important;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05) !important;
  transition: all 0.25s ease !important;
  position: relative !important;
}

.package-scroll-row .bundle-builder-card:hover {
  transform: translateY(-3px) !important;
  border-color: #1a5c38 !important;
  box-shadow: 0 8px 22px rgba(26, 92, 56, 0.14) !important;
}

.package-scroll-row .bundle-builder-card.bundle-active {
  border-color: #1a5c38 !important;
  box-shadow: 0 0 0 2px rgba(39, 138, 72, 0.3), 0 8px 22px rgba(26, 92, 56, 0.16) !important;
  background: #f6faf7 !important;
}

.bundle-card-img-wrap {
  width: 100%;
  height: 125px;
  overflow: hidden;
  position: relative;
  background: linear-gradient(135deg, #0d1f17, #1a472a);
}

@media (min-width: 768px) {
  .bundle-card-img-wrap {
    height: 160px;
  }
}

.bundle-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.bundle-card-img-wrap .badge {
  position: absolute;
  top: 6px;
  right: 6px;
  background: linear-gradient(135deg, #f0d78c, #d4a843);
  color: #0d1f17;
  font-size: 0.55rem;
  font-weight: 800;
  padding: 0.15rem 0.45rem;
  border-radius: 8px;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.25);
  z-index: 2;
}

.bundle-card-content {
  padding: 0.65rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  justify-content: space-between;
}

.bundle-card-content .option-title {
  font-family: 'Playfair Display', serif;
  font-size: 0.88rem;
  font-weight: 700;
  color: #1a5c38;
  margin-bottom: 0.2rem;
  line-height: 1.25;
}

.price-row {
  display: flex;
  align-items: baseline;
  gap: 0.3rem;
  margin: 0.2rem 0;
}

.price-main {
  font-size: 1.15rem;
  font-weight: 800;
  color: #1a5c38;
}

.card-features-list {
  list-style: none;
  padding: 0;
  margin: 0.3rem 0 0.5rem 0;
  font-size: 0.7rem;
  color: #4a6354;
  line-height: 1.4;
  text-align: left;
}

.card-features-list li {
  margin-bottom: 0.15rem;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}


.faq-item.active .faq-icon {
  transform: rotate(180deg);
  background: #1a5c38;
  color: #ffffff;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0, 1, 0, 1), padding 0.3s ease;
  padding: 0 1.5rem;
}

.faq-item.active .faq-answer {
  max-height: 600px;
  padding: 0 1.5rem 1.4rem 1.5rem;
  transition: max-height 0.4s ease-in-out, padding 0.3s ease;
}

.faq-answer p {
  color: var(--text-secondary);
  line-height: 1.7;
  font-size: 0.98rem;
  margin: 0 0 0.8rem 0;
}

.faq-answer p:last-child {
  margin-bottom: 0;
}

.faq-answer ol {
  padding-left: 1.2rem;
  margin-bottom: 0.8rem;
}

.faq-answer ol li {
  color: var(--text-secondary);
  line-height: 1.6;
  font-size: 0.96rem;
  margin-bottom: 0.4rem;
}

@media (max-width: 600px) {
  .faq-question {
    padding: 1rem 1rem !important;
    font-size: 1rem !important;
  }

  .faq-item.active .faq-answer {
    padding: 0 1rem 1.2rem 1rem !important;
  }
}



