*{margin:0;padding:0;box-sizing:border-box}
html,body{scroll-behavior:smooth}
body{background:#0B0F13;color:#fff;font-family:ui-sans-serif,system-ui,-apple-system,"Segoe UI",Roboto,Helvetica,Arial}
.container{width:90%;max-width:1200px;margin:auto}
:root{--green:#0D490B;--gold:#3C7A38;--green-3:#5FBF4A;--soft:#f4f4f4;}





/* Hero Slider */
.hero-slider{position:relative;height:95vh;overflow:hidden;padding-top:90px}
.hero-slider .slide{position:absolute;inset:0;background-size:cover;background-position:center;opacity:0;transition:opacity .15s ease-in-out}
.hero-slider .slide::before{content:"";position:absolute;inset:0;background:rgba(0,0,0,.35)}
.hero-slider .slide.active{opacity:3}
.slide-content{position:absolute;top:65%;left:50%;transform:translate(-50%,-50%);text-align:center;color:#fff;max-width:760px}
.slide-content h1{font-size:56px;margin-bottom:10px;text-shadow:0 10px 25px rgba(0,0,0,.35)}
.slide-content p{font-size:20px;margin-bottom:18px}
.slide-arrow{position:absolute;top:65%;transform:translateY(-50%);font-size:40px;color:#fff;cursor:pointer;padding:10px;z-index:10;transition:.3s}
.slide-arrow:hover{opacity:.7}.prev-slide{left:20px}.next-slide{right:20px}

/* Generic */
.btn{background:var(--green);padding:10px 16px;color:#fff;border-radius:6px;text-decoration:none;font-weight:700;display:inline-block;border:0}
.btn:hover{background:var(--gold)}
.section{padding:80px 0}
.section-title{text-align:center;font-size:38px;font-weight:800;margin-bottom:10px}
.section-subtitle{text-align:center;color:#f1e642;margin-bottom:36px}
/* Light yellow for dark mode */
body.dark .section-subtitle {
  color: #fff;
}

/* Dark gray for light mode */
body.light .section-subtitle {
  color: #222; /* you can also use #111827 to match your theme */
}


/* About */
.home-about .container{display:grid;grid-template-columns:1.1fr .9fr;gap:40px;align-items:center}
.home-about-img img{width:100%;border-radius:12px;box-shadow:0 10px 30px rgba(0,0,0,.2)}

/* Allowed Forms (icons) */
.allowed-forms{padding:90px 0;background:#0B0F13}
.forms-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:28px}
.form-box{background:#111827;padding:24px;text-align:center;border-radius:12px;box-shadow:0 8px 24px rgba(0,0,0,.25);transition:.3s}
.form-box img{width:72px;height:72px;margin-bottom:14px;filter:brightness(1) saturate(1.1);transition:.3s}
.form-box:hover{transform:translateY(-4px);box-shadow:0 14px 34px rgba(0,0,0,.35)}
.form-box:hover img{transform:translateY(-4px);filter:brightness(1.15)}

/* Parallax centered section */
.parallax-centered{background:url('../images/slider.png') center/cover fixed no-repeat;padding:150px 0;display:flex;align-items:center;justify-content:center}
.parallax-box{background:#ffffff;color:#000;max-width:800px;text-align:center;padding:60px 50px;border-radius:6px;box-shadow:0 10px 50px rgba(0,0,0,.30)}
.parallax-box h2{font-size:42px;margin-bottom:10px}.parallax-box p{font-size:18px;margin-bottom:25px;color:#444}
.btn-outline{display:inline-block;padding:12px 26px;border:2px solid #000;color:#000;text-decoration:none;transition:.3s;font-weight:600}
.btn-outline:hover{background:#000;color:#fff}
body.dark .parallax-box{background:#0F1620;color:#fff} body.dark .parallax-box p{color:#ddd}
body.dark .btn-outline{border:2px solid #5FBF4A;color:#5FBF4A} body.dark .btn-outline:hover{background:#5FBF4A;color:#000}

/* Testimonials with background */
.testimonials-dark{padding:120px 0;background:url('../images/imgi_22_Slider-Home.jpg') center/cover no-repeat;position:relative}
body.dark .testimonials-dark{background:url('../images/imgi_22_Slider-Home.jpg') center/cover no-repeat}
.testimonial-slider{position:relative;max-width:780px;margin:auto;overflow:hidden}
.t-slide{display:none;justify-content:center;align-items:center}
.t-slide.active{display:flex;animation:slideIn .6s ease}
@keyframes slideIn{from{transform:translateX(60px);opacity:0}to{transform:translateX(0);opacity:1}}
.t-box{background:#ffffff;color:#0B0F13;padding:40px;border-radius:10px;max-width:600px;text-align:center;box-shadow:0 10px 35px rgba(0,0,0,.35)}
.t-box hr{margin:15px auto;width:160px;border:1px solid #0D490B}
.quote-icon{font-size:45px;color:#0D490B;margin-bottom:10px}
.t-arrow{position:absolute;top:50%;transform:translateY(-50%);font-size:22px;color:#fff;background:rgba(223, 221, 221, 0.15);width:44px;height:44px;border-radius:50%;display:flex;align-items:center;justify-content:center;cursor:pointer;transition:.3s}
.t-arrow:hover{background:rgba(255,255,255,.35)} .prev{left:-40px}.next{right:-40px}

/* Photo showcase */
.photo-showcase {
  padding: 80px 0;
}

.photo-showcase .container {
  text-align: center;
}

.showcase-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.showcase-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.3);
}

.showcase-grid img:hover {
  transform: scale(1.03);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}


/* Banner, stats, FAQ, contact */
.banner-full{height:360px;background:url('../images/slider.png') center/cover no-repeat fixed;position:relative;display:flex;align-items:center;justify-content:center;color:#fff;text-align:center}
.banner-full::before{content:"";position:absolute;inset:0;background:rgba(13,73,11,.5)}.banner-full .inner{position:relative;z-index:2}
.banner-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:20px;margin-top:20px}
.banner-grid .tile{height:220px;border-radius:12px;overflow:hidden}
.banner-grid .tile img{width:100%;height:100%;object-fit:cover;transform:scale(1.02);transition:.35s}
.banner-grid .tile:hover img{transform:scale(1.08)}

.stats{padding:30px 0}
.stats-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:24px;text-align:center}
.stat{background:#111827;border-radius:12px;padding:24px;box-shadow:0 8px 24px rgba(0,0,0,.25);transition:.3s}
.stat .counter{font-size:36px;font-weight:800;color:#5FBF4A}.stat span{color:#151515}
.stat:hover{transform:translateY(-4px);box-shadow:0 14px 34px rgba(0,0,0,.35)}

/* Default (light mode style) */
.stat .counter {
  font-size: 36px;
  font-weight: 800;
  color: #5FBF4A; /* green */
}

.stat span {
  color: #151515;
}

/* === Dark mode adjustments === */
body.dark .stat .counter {
  color: #a2f08c; /* lighter green for dark background */
}

body.dark .stat span {
  color: #f1f1f1; /* light text for dark mode */
}

/* === Light mode adjustments (optional for clarity) === */
body.light .stat .counter {
  color: #5FBF4A; /* normal green */
}

body.light .stat span {
  color: #151515; /* dark text */
}


.faq{padding:80px 0}
.faq-item{border-bottom:1px solid #1f2937;padding:14px 0}
.faq-q{display:flex;justify-content:space-between;align-items:center;cursor:pointer;font-weight:700}
.faq-a{max-height:0;overflow:hidden;transition:max-height .35s ease;color:#cbd5e1}
.faq-item.active .faq-a{max-height:200px;margin-top:8px}

.contact-map-section{padding:90px 0}
.contact-wrapper{display:grid;grid-template-columns:1fr 1fr;gap:40px}
.contact-box{background:#111827;padding:30px;border-radius:10px;box-shadow:0 10px 30px rgba(0,0,0,.35)}
.contact-box input,.contact-box textarea{width:100%;margin-bottom:15px;padding:12px;border-radius:6px;border:1px solid #333;background:#1f2937;color:#fff}
.contact-box input:focus,.contact-box textarea:focus{outline:none;border-color:#5FBF4A}
.map-box{width:100%;height:400px;border-radius:10px;overflow:hidden;box-shadow:0 10px 30px rgba(0,0,0,.35)}

/* Footer */
.footer{background:#0f172a;color:#e5e7eb;padding:28px 0}
.footer .container{display:grid;grid-template-columns:2fr 1fr 1fr;gap:24px;align-items:start}
.footer .brand{font-weight:800;font-size:22px;margin-bottom:8px}
.footer .sub{color:#5db664;margin-bottom:12px}
.footer ul{list-style:none;line-height:1.9}
.footer a{color:#e5e7eb;text-decoration:none}
.footer a:hover{color:#5FBF4A}
.footer .copy{grid-column:1/-1;margin-top:12px;color:#9ca3af}

/* Lightbox */
.lightbox{display:none;position:fixed;inset:0;background:rgba(0,0,0,.8);justify-content:center;align-items:center;z-index:99999}
.lightbox img{max-width:90%;max-height:90%;border-radius:10px}

/* WhatsApp */
.whatsapp-float{position:fixed;bottom:22px;right:22px;width:64px;height:64px;border-radius:50%;box-shadow:0 10px 25px rgba(0,0,0,.25);overflow:hidden;z-index:9999}
.whatsapp-float img{width:100%;height:100%}

/* USA Map section */
.usa-map-section{padding:100px 0;text-align:center}
.map-legend{display:flex;justify-content:center;gap:25px;background:#fff;padding:10px 25px;border-radius:8px;box-shadow:0 3px 18px rgba(0,0,0,0.1);margin-bottom:25px;color:#111}
.map-legend .dot{width:12px;height:12px;display:inline-block;border-radius:50%;margin-right:6px}
.dot.adult{background:#0B3A0B}.dot.medical{background:#0F6A0F}.dot.illegal{background:#9ACC65}
.map-container{margin:30px auto;max-width:1000px}
#usaMap{width:100%;height:auto}
.state-info-box{margin-top:25px;background:#fff;color:#111;display:inline-block;padding:20px 30px;border-radius:10px;box-shadow:0 5px 25px rgba(0,0,0,0.15);transition:.3s}
body.dark .map-legend, body.dark .state-info-box{background:#1d1d1d;color:#fff;box-shadow:none}

/* Light Mode overrides */
body.light{background:var(--soft);color:#0f172a}
body.light .header{background:rgba(255,255,255,.85);border-bottom:1px solid #e5e7eb}
body.light .navbar a{color:#111827}
body.light .navbar a:hover, body.light .navbar a.active{background:#013f0e;color:#f1e642}
body.light .form-box,body.light .stat{background:#f3eded;color:#080808;box-shadow:0 10px 24px rgba(255,255,255,0.8)}
body.light .contact-box{background:#ffffff;color:#013f0e}
body.light .contact-box input, body.light .contact-box textarea{background:#f3f4f6;color:#0f0f0f;border-color:#e5e7eb}
body.light .allowed-forms, body.light .photo-showcase, body.light .faq, body.light .contact-map-section, body.light .stats{background:var(--soft)}
body.light .t-box{background:#979797;color:#0e0d0d}


.usa-map-section { padding: 60px 0; text-align: center; }
.usa-map-img { width: 100%; max-width: 900px; margin: 0 auto; display: block; }
.map-legend { margin-bottom: 20px; display: flex; justify-content: center; gap: 20px; }
.map-legend span { font-size: 15px; display: flex; align-items: center; gap: 6px; }

.legend-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  display: inline-block;
}
.legend-dot.adult   { background: #151515; }
.legend-dot.medical { background: #1f4a0d; }
.legend-dot.illegal { background: #a2ce42; }
/* Background switching for sections */
.bg-switch {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: background-image 0.6s ease-in-out;
  color: var(--text-color);
  position: relative;
  z-index: 1;
}

/* Optional soft overlay for readability */
.bg-switch::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 0;
}
.bg-switch .container {
  position: relative;
  z-index: 2;
}

/* Light mode */
body.light #about-section {
  background-image: url('../images/imgi_30_allowed_forms_bg.jpg');
}
body.dark #about-section {
  background-image: url('../images/imgi_23_home_bg_pages.png');
}

body.light #deliver-section {
  background-image: url('../images/imgi_30_allowed_forms_bg.jpg');
}
body.dark #deliver-section {
  background-image: url('../images/imgi_23_home_bg_pages.png');
}

/* My Artwork Section */
.my-artwork {
  padding: 90px 0;
  background: var(--bg-color, #111);
  text-align: center;
}

.my-artwork .section-title {
  font-size: 2.2rem;
  margin-bottom: 10px;
}

.my-artwork .section-subtitle {
  color: #1d1d1d;
  margin-bottom: 40px;
}

.art-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
}

.art-item {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 14px;
  overflow: hidden;
  padding: 15px;
  transition: all 0.3s ease;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.3);
}

.art-item img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 15px;
  transition: transform 0.3s ease;
}

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

.art-item h3 {
  font-size: 1.2rem;
  color: #5FBF4A;
  margin-bottom: 8px;
}

.art-item p {
  font-size: 0.95rem;
  color: #ccc;
}
/* Default (light mode style) */
.art-item p {
  font-size: 0.95rem;
  color: #333; /* dark gray for light mode */
}

/* Dark mode version */
body.dark .art-item p {
  color: #ccc; /* light gray for dark background */
}

/* (Optional, explicit light mode) */
body.light .art-item p {
  color: #333;
}


/* My Artwork Section */
.my-artwork {
  padding: 90px 0;
  background: #212221; /* default for dark mode */
  text-align: center;
  color: #fff;
  transition: background 0.3s ease, color 0.3s ease;
}

/* Light mode fix */
body.light .my-artwork {
  background: #ffffff;
  color: #111827;
}

body.light .my-artwork .art-item {
  background: #cccdce;
  color: #111827;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
}

.my-artwork .section-title {
  font-size: 2.2rem;
  margin-bottom: 10px;
}

.my-artwork .section-subtitle {
  color: #ccc;
  margin-bottom: 40px;
}

body.light .my-artwork .section-subtitle {
  color: #555;
}

/* === THEME TOGGLE BUTTON === */
.theme-toggle {
  position: fixed;
  bottom: 25px;
  left: 25px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  font-size: 24px;
  border: none;
  background: #5FBF4A;
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 99999;
  box-shadow: 0 5px 20px rgba(0,0,0,.25);
  transition: background 0.3s, color 0.3s, transform 0.2s;
}
.theme-toggle:hover {
  background: #3C7A38;
  color: #fff;
  transform: scale(1.1);
}


/* Preloader overlay */
#preloader {
  position: fixed;
  inset: 0;
  background: #fff; /* or #000 for dark sites */
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.6s ease;
}

/* Loader - dnaLoader */

.dnaLoader {
  height: 10rem;
  width: 30rem;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  -webkit-animation: rotateDna 15s ease-in-out infinite;
          animation: rotateDna 15s ease-in-out infinite;
}
.dnaLoader .spike {
  height: 80%;
  width: 0;
  position: relative;
  border: 1px transparent white;
}
.dnaLoader .spike::before, .dnaLoader .spike::after {
  content: "";
  position: absolute;
  height: 1rem;
  width: 1rem;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  left: 0;
  right: 0;
  border-radius: 500px;
  margin: auto;
}
.dnaLoader .spike::before {
  top: 0;
  -webkit-animation: beforeAnimate 1.5s linear infinite;
          animation: beforeAnimate 1.5s linear infinite;
  background-color: #a2ce42;
}
.dnaLoader .spike::after {
  bottom: 0;
  -webkit-animation: afterAnimate 1.5s linear infinite;
          animation: afterAnimate 1.5s linear infinite;
  background-color: #1f4a0d;
}

.spike:nth-child(1)::before, .spike:nth-child(1)::after {
  -webkit-animation-delay: 0.1s;
          animation-delay: 0.1s;
}

.spike:nth-child(2)::before, .spike:nth-child(2)::after {
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
}

.spike:nth-child(3)::before, .spike:nth-child(3)::after {
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s;
}

.spike:nth-child(4)::before, .spike:nth-child(4)::after {
  -webkit-animation-delay: 0.4s;
          animation-delay: 0.4s;
}

.spike:nth-child(5)::before, .spike:nth-child(5)::after {
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
}

.spike:nth-child(6)::before, .spike:nth-child(6)::after {
  -webkit-animation-delay: 0.6s;
          animation-delay: 0.6s;
}

.spike:nth-child(7)::before, .spike:nth-child(7)::after {
  -webkit-animation-delay: 0.7s;
          animation-delay: 0.7s;
}

.spike:nth-child(8)::before, .spike:nth-child(8)::after {
  -webkit-animation-delay: 0.8s;
          animation-delay: 0.8s;
}

.spike:nth-child(9)::before, .spike:nth-child(9)::after {
  -webkit-animation-delay: 0.9s;
          animation-delay: 0.9s;
}

.spike:nth-child(10)::before, .spike:nth-child(10)::after {
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
}

.spike:nth-child(11)::before, .spike:nth-child(11)::after {
  -webkit-animation-delay: 1.1s;
          animation-delay: 1.1s;
}

.spike:nth-child(12)::before, .spike:nth-child(12)::after {
  -webkit-animation-delay: 1.2s;
          animation-delay: 1.2s;
}

.spike:nth-child(13)::before, .spike:nth-child(13)::after {
  -webkit-animation-delay: 1.3s;
          animation-delay: 1.3s;
}

.spike:nth-child(14)::before, .spike:nth-child(14)::after {
  -webkit-animation-delay: 1.4s;
          animation-delay: 1.4s;
}

.spike:nth-child(15)::before, .spike:nth-child(15)::after {
  -webkit-animation-delay: 1.5s;
          animation-delay: 1.5s;
}

@-webkit-keyframes beforeAnimate {
  0% {
    top: 0;
    -webkit-transform: translateX(-50%) translateY(0) scale(0.5);
            transform: translateX(-50%) translateY(0) scale(0.5);
    opacity: 0.25;
  }
  25% {
    -webkit-transform: translateX(-50%) translateY(-100%) scale(0.5);
            transform: translateX(-50%) translateY(-100%) scale(0.5);
    z-index: -1;
    opacity: 0.5;
  }
  50% {
    top: 100%;
    -webkit-transform: translateX(-50%) translateY(-100%) scale(0.5);
            transform: translateX(-50%) translateY(-100%) scale(0.5);
    opacity: 0.75;
  }
  75% {
    -webkit-transform: translateX(-50%) translateY(-100%) scale(1.5);
            transform: translateX(-50%) translateY(-100%) scale(1.5);
    z-index: 1;
    opacity: 1;
  }
  100% {
    top: 0;
    -webkit-transform: translateX(-50%) translateY(0) scale(0.5);
            transform: translateX(-50%) translateY(0) scale(0.5);
    opacity: 0.75;
  }
}

@keyframes beforeAnimate {
  0% {
    top: 0;
    -webkit-transform: translateX(-50%) translateY(0) scale(0.5);
            transform: translateX(-50%) translateY(0) scale(0.5);
    opacity: 0.25;
  }
  25% {
    -webkit-transform: translateX(-50%) translateY(-100%) scale(0.5);
            transform: translateX(-50%) translateY(-100%) scale(0.5);
    z-index: -1;
    opacity: 0.5;
  }
  50% {
    top: 100%;
    -webkit-transform: translateX(-50%) translateY(-100%) scale(0.5);
            transform: translateX(-50%) translateY(-100%) scale(0.5);
    opacity: 0.75;
  }
  75% {
    -webkit-transform: translateX(-50%) translateY(-100%) scale(1.5);
            transform: translateX(-50%) translateY(-100%) scale(1.5);
    z-index: 1;
    opacity: 1;
  }
  100% {
    top: 0;
    -webkit-transform: translateX(-50%) translateY(0) scale(0.5);
            transform: translateX(-50%) translateY(0) scale(0.5);
    opacity: 0.75;
  }
}
@-webkit-keyframes afterAnimate {
  0% {
    bottom: 0;
    -webkit-transform: translateX(-50%) translateY(0) scale(0.5);
            transform: translateX(-50%) translateY(0) scale(0.5);
    opacity: 0.25;
  }
  25% {
    -webkit-transform: translateX(-50%) translateY(-100%) scale(1.5);
            transform: translateX(-50%) translateY(-100%) scale(1.5);
    z-index: 1;
    opacity: 1;
  }
  50% {
    bottom: 100%;
    -webkit-transform: translateX(-50%) translateY(100%) scale(0.5);
            transform: translateX(-50%) translateY(100%) scale(0.5);
    opacity: 0.75;
  }
  75% {
    -webkit-transform: translateX(-50%) translateY(-100%) scale(0.5);
            transform: translateX(-50%) translateY(-100%) scale(0.5);
    z-index: -1;
    opacity: 0.5;
  }
  100% {
    bottom: 0;
    -webkit-transform: translateX(-50%) translateY(0) scale(0.5);
            transform: translateX(-50%) translateY(0) scale(0.5);
    opacity: 0.25;
  }
}
@keyframes afterAnimate {
  0% {
    bottom: 0;
    -webkit-transform: translateX(-50%) translateY(0) scale(0.5);
            transform: translateX(-50%) translateY(0) scale(0.5);
    opacity: 0.25;
  }
  25% {
    -webkit-transform: translateX(-50%) translateY(-100%) scale(1.5);
            transform: translateX(-50%) translateY(-100%) scale(1.5);
    z-index: 1;
    opacity: 1;
  }
  50% {
    bottom: 100%;
    -webkit-transform: translateX(-50%) translateY(100%) scale(0.5);
            transform: translateX(-50%) translateY(100%) scale(0.5);
    opacity: 0.75;
  }
  75% {
    -webkit-transform: translateX(-50%) translateY(-100%) scale(0.5);
            transform: translateX(-50%) translateY(-100%) scale(0.5);
    z-index: -1;
    opacity: 0.5;
  }
  100% {
    bottom: 0;
    -webkit-transform: translateX(-50%) translateY(0) scale(0.5);
            transform: translateX(-50%) translateY(0) scale(0.5);
    opacity: 0.25;
  }
}
@-webkit-keyframes rotateDna {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@keyframes rotateDna {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
/* Loader - spinner */
.spinner {
  display: block;
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 1;
  transition: opacity 2s;
  background: #fff;
}
.spinner__item {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.pill {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.pill__item {
  position: relative;
  box-sizing: border-box;
  width: 3.5rem;
  height: 1.5rem;
  border: 2px solid #8ab035;
  border-radius: 6rem;
  overflow: hidden;
  background: #fff;
  animation: pill 3s infinite;
}
.pill__half {
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  background: #284779;
  border-right: 2px solid #8ab035;
}
.pill__half:after {
  content: "";
  position: absolute;
  top: 80%;
  left: 40%;
  width: 0.5rem;
  height: 2px;
  background: #8ab035;
  border-radius: 1rem;
}
.pill__shadow {
  width: 3rem;
  height: 0.5rem;
  background: rgba(204,204,204,0.5);
  border-radius: 50%;
  animation: pill-shadow 3s infinite;
}
@-moz-keyframes pill {
  0% {
    transform: translateY(0);
  }
  25% {
    transform: translateY(-0.5rem);
  }
  50% {
    transform: translateY(0);
  }
  75% {
    transform: translateY(-0.5rem);
  }
  100% {
    transform: translateY(0);
  }
}
@-webkit-keyframes pill {
  0% {
    transform: translateY(0);
  }
  25% {
    transform: translateY(-0.5rem);
  }
  50% {
    transform: translateY(0);
  }
  75% {
    transform: translateY(-0.5rem);
  }
  100% {
    transform: translateY(0);
  }
}
@-o-keyframes pill {
  0% {
    transform: translateY(0);
  }
  25% {
    transform: translateY(-0.5rem);
  }
  50% {
    transform: translateY(0);
  }
  75% {
    transform: translateY(-0.5rem);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes pill {
  0% {
    transform: translateY(0);
  }
  25% {
    transform: translateY(-0.5rem);
  }
  50% {
    transform: translateY(0);
  }
  75% {
    transform: translateY(-0.5rem);
  }
  100% {
    transform: translateY(0);
  }
}
@-moz-keyframes pill-shadow {
  0% {
    transform: scale(1);
  }
  25% {
    transform: scale(0.8);
  }
  50% {
    transform: scale(1);
  }
  75% {
    transform: scale(0.8);
  }
  100% {
    transform: scale(1);
  }
}
@-webkit-keyframes pill-shadow {
  0% {
    transform: scale(1);
  }
  25% {
    transform: scale(0.8);
  }
  50% {
    transform: scale(1);
  }
  75% {
    transform: scale(0.8);
  }
  100% {
    transform: scale(1);
  }
}
@-o-keyframes pill-shadow {
  0% {
    transform: scale(1);
  }
  25% {
    transform: scale(0.8);
  }
  50% {
    transform: scale(1);
  }
  75% {
    transform: scale(0.8);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes pill-shadow {
  0% {
    transform: scale(1);
  }
  25% {
    transform: scale(0.8);
  }
  50% {
    transform: scale(1);
  }
  75% {
    transform: scale(0.8);
  }
  100% {
    transform: scale(1);
  }
}

/* Fix for Contact button in header */

/* Default style (for all modes) */
.navbar a.active {
  background: #0D490B; /* your green color */
  color: #fff !important; /* make text white for contrast */
}

/* Light mode fix */
body.light .navbar a.active {
  background: #0D490B; /* keep same green background */
  color: #fff !important; /* force white text */
}

/* Dark mode fix */
body.dark .navbar a.active {
  background: #5FBF4A; /* lighter green for dark background */
  color: #000 !important; /* black text for contrast */
}


/* =====================
   Final Anti-Shake Inner Hero (Clean & Stable)
===================== */
.inner-hero {
  position: relative;
  padding: 300px 0 220px; /* premium height */
  text-align: center;
  color: #fff;
  overflow: hidden;
  z-index: 1;
  background: #000; /* fallback */
}

/* Background – NO transform, NO fixed attachment */
.inner-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url('../images/imgi_22_Slider-Home.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: brightness(0.8);
  z-index: 0;
  animation: bgFadeSmooth 16s ease-in-out infinite alternate; /* only fade */
}

/* Smooth fade, no zoom */
@keyframes bgFadeSmooth {
  from { opacity: 0.92; }
  to { opacity: 1; }
}

/* Dark overlay to eliminate gray bottom line */
.inner-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  z-index: 1;
}

/* Content placement */
.inner-hero .container {
  position: relative;
  z-index: 2;
  animation: fadeInUp 1.1s ease-out;
}

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

/* Title */
.inner-hero .page-title {
  font-size: 60px;
  font-weight: 800;
  margin-bottom: 15px;
}

/* Subtitle */
.inner-hero .page-subtitle {
  max-width: 850px;
  margin: 0 auto 30px;
  font-size: 22px;
  line-height: 1.6;
  color: #e5e7eb;
}

/* Breadcrumb */
.breadcrumb {
  margin-top: 18px;
  font-size: 18px;
  color: #020202;
}

.breadcrumb a {
  color: #070707;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

/* 💡 Light Mode */
body.light .inner-hero::before {
  background-image: url('../images/imgi_29_find_bg.jpg');
  filter: brightness(0.95);
}

body.light .inner-hero::after {
  background: rgba(255, 255, 255, 0.6);
}

body.light .page-title {
  color: #052e16;
}

body.light .page-subtitle {
  color: #374151;
}

/* 📱 Mobile */
@media (max-width: 768px) {
  .inner-hero {
    padding: 180px 0 130px;
  }

  .inner-hero .page-title {
    font-size: 38px;
  }

  .inner-hero .page-subtitle {
    font-size: 16px;
  }

  .inner-hero::before {
    animation: none;
  }
}
.floating-leaves {
  position: absolute;
  inset: 0; /* Full area */
  pointer-events: none; /* Prevents interference */
  z-index: 0; /* Behind content */
  overflow: hidden;
}

.inner-hero .container {
  position: relative;
  z-index: 2; /* Keeps text above leaves */
}

/* =====================
   Products Listing
===================== */
.products-section{
  padding:60px 0 80px;
}
.products-intro{
  max-width:760px;
  margin:0 auto 34px;
  text-align:center;
  color:#cbd5e1;
}
.products-intro p{
  margin-top:8px;
  line-height:1.7;
}
.products-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:26px;
}
.product-card{
  background:#020617;
  border-radius:14px;
  padding:20px 20px 22px;
  box-shadow:0 14px 35px rgba(0,0,0,0.45);
  border:1px solid rgba(148,163,184,0.18);
  display:flex;
  flex-direction:column;
  gap:10px;
  transition:transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.product-card:hover{
  transform:translateY(-4px);
  box-shadow:0 20px 40px rgba(0,0,0,0.55);
  border-color:#22c55e55;
}
.product-card img{
  width:100%;
  border-radius:10px;
  margin-bottom:6px;
  object-fit:cover;
  max-height:190px;
}
.product-card h3{
  font-size:1.15rem;
  font-weight:700;
}
.product-tag{
  display:inline-block;
  font-size:12px;
  padding:3px 9px;
  border-radius:999px;
  background:rgba(34,197,94,0.15);
  color:#bbf7d0;
  margin-bottom:4px;
}
.product-meta{
  list-style:none;
  padding:0;
  margin:4px 0 4px;
  font-size:13px;
  color:#9ca3af;
}
.product-meta li{
  margin-bottom:2px;
}
.product-desc{
  font-size:0.9rem;
  color:#cbd5e1;
  line-height:1.6;
}
.product-actions{
  margin-top:10px;
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  align-items:center;
}
.product-actions .coa-link{
  padding:8px 14px;
  border-radius:999px;
  border:1px solid #5FBF4A;
  background:transparent;
  color:#bbf7d0;
  font-size:0.85rem;
  text-decoration:none;
  display:inline-flex;
  align-items:center;
  gap:6px;
}
.product-actions .coa-link span{
  font-size:1.05rem;
}
.product-actions .coa-link:hover{
  background:#5FBF4A;
  color:#022c22;
}
.product-actions .badge-note{
  font-size:0.78rem;
  color:#9ca3af;
}

/* light mode products */
body.light .products-intro{
  color:#111827;
}
body.light .product-card{
  background:#ffffff;
  color:#111827;
  box-shadow:0 10px 28px rgba(15,23,42,0.10);
  border-color:#e5e7eb;
}
body.light .product-desc{
  color:#374151;
}
body.light .product-meta{
  color:#6b7280;
}
body.light .product-actions .coa-link{
  color:#166534;
  border-color:#22c55e;
}
body.light .product-actions .coa-link:hover{
  background:#22c55e;
  color:#052e16;
}

/* Contact CTA for inner pages */
.contact-cta{
  padding:70px 0 90px;
  background:#020617;
}
.contact-cta .container{
  display:grid;
  grid-template-columns:minmax(0,1.1fr) minmax(0,0.9fr);
  gap:40px;
  align-items:flex-start;
}
.contact-cta h2{
  font-size:30px;
  margin-bottom:8px;
}
.contact-cta p{
  color:#cbd5e1;
  margin-bottom:14px;
}
.contact-cta ul{
  list-style:none;
  padding:0;
  margin:0;
  color:#9ca3af;
}
.contact-cta li{
  margin-bottom:6px;
}
.contact-cta-form input,
.contact-cta-form textarea{
  width:100%;
  margin-bottom:10px;
  padding:11px 12px;
  border-radius:7px;
  border:1px solid #1f2937;
  background:#020617;
  color:#e5e7eb;
  font-size:0.9rem;
}
.contact-cta-form textarea{
  min-height:110px;
  resize:vertical;
}
.contact-cta-form input:focus,
.contact-cta-form textarea:focus{
  outline:none;
  border-color:#5FBF4A;
  box-shadow:0 0 0 1px rgba(34,197,94,0.35);
}
.contact-cta small{
  display:block;
  margin-top:4px;
  color:#6b7280;
  font-size:0.78rem;
}

/* light mode contact CTA */
body.light .contact-cta{
  background:#f3f4f6;
}
body.light .contact-cta p,
body.light .contact-cta li{
  color:#4b5563;
}
body.light .contact-cta-form input,
body.light .contact-cta-form textarea{
  background:#ffffff;
  border-color:#e5e7eb;
  color:#111827;
}

/* Responsive tweaks */
@media(max-width:900px){
  .contact-cta .container{
    grid-template-columns:1fr;
  }
}



/* =========================
   HEADER – 200px LOGO OPTIMIZED
========================= */

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 0 !important; /* Remove extra padding */
  text-align: center;
  line-height: 0; /* Prevent extra vertical spacing */
}

/* Container alignment */
.header .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* Logo */
.header .logo img {
  max-height: 200px !important;
  width: auto;
  margin: -15px 0 -25px; /* Pull up & reduce space below */
  display: block;
  transition: max-height 0.3s ease, margin 0.3s ease;
}

/* Menu (under logo) */
.navbar {
  display: flex;
  gap: 16px;
  margin-top: -7px; /* Pull menu closer to logo */
  line-height: normal;
}

.navbar a {
  padding: 5px 12px;
  text-decoration: none;
  color: #0D490B;
  font-weight: 400;
  border-radius: 999px;
  transition: all 0.3s ease;
}

.navbar a:hover,
.navbar a.active {
  background: #0D490B;
  color: #fff !important;
}

/* Dark mode adjustment */
body.dark .navbar a:hover,
body.dark .navbar a.active {
  background: #5FBF4A;
  color: #000 !important;
}

/* Remove menu button if exists */
.menu-btn, .socials-btn {
  display: none !important;
}

/* Mobile responsiveness */
@media(max-width: 768px) {
  .header .logo img {
    max-height: 150px !important;
    margin: -8px 0 -10px;
  }

  .navbar {
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin-top: -4px;
  }
}

@media(max-width: 450px) {
  .header .logo img {
    max-height: 130px !important;
    margin: -6px 0 -8px;
  }
}


/* =========================
   Premium Floating Socials
========================= */
.social-scroll {
  position: fixed;
  top: 50%;
  left: 10px;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 14px;
  z-index: 9999;
  animation: fadeInSocials 0.8s ease forwards;
  opacity: 0;
}

@keyframes fadeInSocials {
  from { opacity: 0; transform: translateY(-60%); }
  to { opacity: 1; transform: translateY(-50%); }
}

.social-scroll a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 4px 15px rgba(0,0,0,0.25);
  transition: all 0.35s ease;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-scroll img {
  width: 24px;
  height: 24px;
  filter: brightness(0.9);
  transition: transform 0.35s ease, filter 0.35s ease;
}

.social-scroll a:hover {
  transform: scale(1.15);
  box-shadow: 0 8px 22px rgba(95,191,74,0.5);
  background: rgba(95, 191, 74, 0.35);
  border-color: rgba(95,191,74,0.65);
}

.social-scroll a:hover img {
  filter: brightness(1.2) drop-shadow(0 0 3px rgba(95,191,74,0.8));
  transform: scale(1.2);
}

/* Dark mode */
body.dark .social-scroll a {
  background: rgba(13, 73, 11, 0.3);
  border-color: rgba(95,191,74,0.2);
}

body.dark .social-scroll img {
  filter: brightness(1.4);
}

body.dark .social-scroll a:hover {
  background: rgba(95,191,74,0.5);
}

/* Mobile layout */
@media(max-width: 768px) {
  .social-scroll {
    flex-direction: row;
    bottom: 20px;
    left: 20px;
    top: auto;
    transform: none;
  }
  .social-scroll a {
    width: 42px;
    height: 42px;
  }
  .social-scroll img {
    width: 22px;
    height: 22px;
  }
}


/* ====== OUR STORY SECTION ====== */
.story-section {
  background: url('images/texture-bg.jpg') repeat;
  padding: 120px 0;
}

.story-section .container {
  display: flex;
  align-items: center;
  gap: 80px;
  max-width: 1300px;
  margin: auto;
}

/* Larger & impactful image */
.story-image {
  position: relative;
}

.story-image .main-img {
  width: 100%;
  max-width: 520px;
  border-radius: 12px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.4);
  transform: rotate(-3deg);
  transition: transform 0.3s ease;
}

.story-image:hover .main-img {
  transform: rotate(0deg);
}

/* Farm logo overlapping like sticker */
.logo-stamp {
  position: absolute;
  width: 160px;  /* Increase or decrease based on your PNG */
  bottom: -20px;
  left: -40px;
  opacity: 0.88;
  transform: rotate(-5deg);
  filter: drop-shadow(0 10px 15px rgba(0,0,0,0.4));
}

/* Typography */
.story-content h2 {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 15px;
}

.story-content p {
  font-size: 19px;
  line-height: 1.7;
  margin-bottom: 18px;
  max-width: 540px;
}

.story-btn {
  display: inline-block;
  padding: 14px 34px;
  border: 2px solid #5FBF4A;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  color: #5FBF4A;
  transition: 0.3s;
}

.story-btn:hover {
  background: #5FBF4A;
  color: #fff;
}

/* DARK MODE */
body.dark .story-section {
  background: url('images/dark-texture.jpg') repeat;
}
body.dark .story-content h2,
body.dark .story-content p {
  color: #eee;
}
body.dark .story-btn {
  color: #a2f08c;
  border-color: #a2f08c;
}
body.dark .story-btn:hover {
  background: #a2f08c;
  color: #08190b;
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .story-section .container {
    flex-direction: column;
    text-align: center;
  }
  .main-img {
    max-width: 400px;
  }
  .logo-stamp {
    position: relative;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%) rotate(-5deg);
  }
}

/* Contact CTA Section with Background Image */
.contact-cta {
  padding: 70px 0 90px;
  background: url('../images/contact-bg.jpg') center/cover fixed no-repeat;
  position: relative;
  color: #fff;
}

/* Dark overlay for readability */
.contact-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 0;
}

/* Content stays above the overlay */
.contact-cta .container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0,1.1fr) minmax(0,0.9fr);
  gap: 40px;
  align-items: flex-start;
}

.contact-cta h2 {
  font-size: 32px;
  color: #fff;
  margin-bottom: 10px;
}

.contact-cta p,
.contact-cta li {
  color: #e5e7eb;
}

.contact-cta ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-cta-form input,
.contact-cta-form textarea {
  background: rgba(0, 0, 0, 0.65);
  border: 1px solid #5FBF4A;
  color: #fff;
}

.contact-cta-form input::placeholder,
.contact-cta-form textarea::placeholder {
  color: #d1d5db;
}

.contact-cta-form textarea {
  min-height: 110px;
  resize: vertical;
}

.contact-cta-form input:focus,
.contact-cta-form textarea:focus {
  outline: none;
  border-color: #bbf7d0;
  box-shadow: 0 0 0 1px rgba(34, 197, 94, 0.4);
}

/* Light mode tweaks */
body.light .contact-cta {
  background: url('../images/imgi_30_allowed_forms_bg.jpg') center/cover fixed no-repeat;
  color: #111;
}

body.light .contact-cta::before {
  background: rgba(255, 255, 255, 0.5);
}

body.light .contact-cta-form input,
body.light .contact-cta-form textarea {
  background: rgba(255, 255, 255, 0.8);
  color: #111;
  border-color: #22c55e;
}

body.light .contact-cta li,
body.light .contact-cta p {
  color: #222;
}

/* Responsive */
@media(max-width: 900px) {
  .contact-cta .container {
    grid-template-columns: 1fr;
  }
}


/* Floating Leaves Animation */
.leaf-animation {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}

.leaf {
  position: absolute;
  width: 50px;
  animation: leafFloat 10s linear infinite;
  opacity: 0.6;
}

.leaf:nth-child(2) { animation-duration: 12s; width: 65px; left: 20%; }
.leaf:nth-child(3) { animation-duration: 14s; width: 55px; left: 70%; }
.leaf:nth-child(4) { animation-duration: 16s; width: 55px; left: 90%; }
.leaf:nth-child(5) { animation-duration: 10s; width: 55px; left: 40%; }

@keyframes leafFloat {
  0% { transform: translateY(-100px) rotate(0deg); }
  100% { transform: translateY(800px) rotate(360deg); }
}



/* =====================
   Age Gate Section
===================== */
#age-gate {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.94);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999999;
  transition: opacity 0.3s ease-in-out;
}

.age-gate-modal {
  text-align: center;
  background: #79b97e;
  padding: 26px 24px 20px;
  border-radius: 16px;
  max-width: 400px;
  width: 90%;
  border: 1px solid rgba(148,163,184,0.35);
  box-shadow: 0 20px 60px rgba(0,0,0,0.85);
}

.age-gate-actions {
  margin-top: 18px;
  display: flex;
  justify-content: center;
  gap: 12px;
}

.age-gate-btn {
  padding: 10px 22px;
  border-radius: 50px;
  border: none;
  font-weight: 600;
  cursor: pointer;
}

.age-yes {
  background: #22c55e;
  color: #052e16;
}

.age-yes:hover {
  background: #16a34a;
}

.age-no {
  background: transparent;
  border: 1px solid #4b5563;
  color: #e5e7eb;
}

.age-no:hover {
  border-color: #e11d48;
  color: #fecaca;
}

.age-gate-modal small {
  display: block;
  margin-top: 8px;
  font-size: 0.78rem;
  color: #9ca3af;
}


.conditions-section {
  padding: 80px 0;
  background: var(--soft);
}

body.dark .conditions-section {
  background: #0B0F13;
}

.conditions-section .container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
  align-items: center;
}

.cond-text h2 {
  font-size: 2.6rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--green);
}

body.dark .cond-text h2 {
  color: #5FBF4A;
}

.cond-text p {
  font-size: 1.05rem;
  line-height: 1.6;
  margin-bottom: 25px;
  color: #bebcbc;
}

body.dark .cond-text p {
  color: #ccc;
}

/* Button */
.btnyoutube {
  display: inline-block;
  padding: 12px 22px;
  background: var(--green);
  color: #fff;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s ease-in-out;
}

.btnyoutube:hover {
  background: var(--gold);
}

/* Image area */
.cond-img img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.cond-img img:hover {
  transform: scale(1.03);
  box-shadow: 0 15px 35px rgba(0,0,0,0.4);
}

/* Responsive */
@media(max-width: 900px) {
  .conditions-section .container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .cond-img img {
    max-height: 450px;
  }

  .cond-text h2 {
    font-size: 2rem;
  }
}





/* ======================
   PREMIUM PARALLAX HERO
====================== */
.parallax-hero {
  position: relative;
  height: 82vh; /* Adjust as needed */
  background: url('../images/about-us-video-500x300.jpg') center/cover no-repeat fixed;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
  overflow: hidden;
}

/* Subtle dark overlay */
.parallax-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45); /* Adjust shade */
  z-index: 0;
}

/* CONTENT */
.parallax-content {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.4;
  max-width: 900px;
  padding: 20px;
  position: relative;
  z-index: 2;
  animation: fadeInSlide 1.2s ease-out forwards;
  opacity: 0;
}

/* Text animation */
@keyframes fadeInSlide {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Background zoom effect (slow) */
.parallax-hero {
  animation: bgZoom 15s ease-in-out infinite alternate;
}

@keyframes bgZoom {
  from { background-size: 100%; }
  to { background-size: 105%; }
}

/* Mobile optimisation */
@media (max-width: 768px) {
  .parallax-hero {
    height: 60vh;
    background-attachment: scroll; /* disable parallax on mobile */
    animation: none; /* disable zoom jitter */
  }
  .parallax-content {
    font-size: 20px;
  }
}


/* ======================================
   PREMIUM PARALLAX SLIDER SECTION
====================================== */
.premium-parallax {
  position: relative;
  height: 85vh;
  background: url('../images/imgi_22_Slider-Home.jpg') center / cover no-repeat fixed;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  text-align: center;
  color: #fff;
  overflow: hidden;
  animation: bgZoom 15s ease-in-out infinite alternate;
}

/* Background Zoom Animation */
@keyframes bgZoom {
  from { background-size: 100%; }
  to { background-size: 108%; }
}

/* Overlay */
.premium-parallax::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 0;
}

/* Content Styling */
.premium-content {
  position: relative;
  z-index: 2;
  max-width: 950px;
  animation: fadeUp 1s ease-out forwards;
  opacity: 0;
}

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

.premium-content h2 {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 1px;
  margin-bottom: 25px;
}

/* CTA Button */
.btn-cta {
  display: inline-block;
  background: #5FBF4A;
  color: #05330f;
  padding: 14px 34px;
  font-size: 16px;
  font-weight: 700;
  border-radius: 50px;
  text-decoration: none;
  border: 2px solid #5FBF4A;
  transition: all 0.3s ease;
}

.btn-cta:hover {
  background: transparent;
  color: #5FBF4A;
  border-color: #5FBF4A;
  transform: scale(1.05);
}

/* Light Mode Adjustment */
body.light .premium-parallax {
  background: url('../images/imgi_29_find_bg.jpg') center / cover no-repeat fixed;
}

body.light .premium-parallax::before {
  background: rgba(255, 255, 255, 0.4);
}

body.light .premium-content h2 {
  color: #084115;
}

body.light .btn-cta {
  background: #15803d;
  color: #fff;
  border-color: #15803d;
}

body.light .btn-cta:hover {
  background: transparent;
  color: #15803d;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .premium-parallax {
    height: 65vh;
    background-attachment: scroll; /* Disable parallax for mobile */
    animation: none; /* Disable zoom jitter */
  }

  .premium-content h2 {
    font-size: 22px;
  }

  .btn-cta {
    padding: 10px 24px;
    font-size: 14px;
  }
}


.premium-proud-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 500px;
  background: #1a1f1a;
  color: #fff;
  overflow: hidden;
  align-items: center;
}

/* LEFT IMAGE – PARALLAX */
.premium-proud-section .image-side {
  background: url('assets/images/imgi_67_Blueberry-Cupcake-6x-2048x2048.png') center/cover no-repeat fixed;
  height: 100%;
  min-height: 450px;
  transition: background-size 5s ease-in-out;
  animation: slowZoom 10s ease-in-out infinite alternate;
}

@keyframes slowZoom {
  from { background-size: 100%; }
  to { background-size: 105%; }
}

/* CONTENT SIDE */
.premium-proud-section .content-side {
  padding: 70px 60px;
  animation: fadeSlide 1s ease forwards;
  opacity: 0;
}

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

/* Small Heading */
.premium-proud-section .small-title {
  font-size: 14px;
  color: #5FBF4A;
  letter-spacing: 1px;
  margin-bottom: 6px;
}

/* Main Heading */
.premium-proud-section h2 {
  font-size: 40px;
  font-weight: 800;
  margin-bottom: 18px;
  line-height: 1.2;
}

/* Paragraph */
.premium-proud-section .desc {
  font-size: 16px;
  line-height: 1.65;
  margin-bottom: 25px;
  color: #e5e5e5;
}

/* CTA BUTTON */
.premium-proud-section .cta-btn {
  display: inline-block;
  background: #0D490B;
  padding: 12px 28px;
  color: #fff;
  font-weight: 700;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.3s, transform 0.3s;
}

.premium-proud-section .cta-btn:hover {
  background: #5FBF4A;
  transform: translateY(-3px);
  color: #052e16;
}

/* MOBILE RESPONSIVE */
@media(max-width: 768px) {
  .premium-proud-section {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .premium-proud-section .content-side {
    padding: 50px 20px;
  }
}


/* =====================
   Newsletter Section
===================== */
.newsletter-section {
  background: #ffff;
  position: relative;
  padding: 90px 0;
}

.newsletter-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url('../images/leaf-pattern.png') center / contain no-repeat;
  opacity: 0.1;
  pointer-events: none;
}

.newsletter-section .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.newsletter-text h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 15px;
}

.newsletter-text p {
  font-size: 17px;
  margin-bottom: 15px;
}

.newsletter-text ul {
  margin: 0;
  padding-left: 20px;
}

.newsletter-text ul li {
  margin-bottom: 8px;
  font-size: 16px;
}

.newsletter-form input {
  width: 100%;
  padding: 15px;
  border: 2px solid #5FBF4A;
  border-radius: 6px;
  font-size: 16px;
  margin-bottom: 15px;
  background: transparent;
}

.newsletter-form input:focus {
  border-color: #1d4ed8;
  outline: none;
  box-shadow: 0 0 8px rgba(31, 65, 194, 0.2);
}

.newsletter-form .btn {
  background: #0f3d15;
  color: #fff;
  padding: 12px 30px;
  border-radius: 6px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: 0.3s;
  width: 100%;
}

.newsletter-form .btn:hover {
  background: #5FBF4A;
  color: #fff;
}

.newsletter-form small {
  display: block;
  font-size: 12px;
  margin-top: 10px;
  opacity: 0.7;
}

/* Responsive */
@media (max-width: 768px) {
  .newsletter-section .container {
    grid-template-columns: 1fr;
    text-align: center;
  }
}



/* =============================
   PREMIUM HOME SECTION
   (with parallax & smooth zoom)
============================= */
.premium-proud-home {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 550px;
  background: #0b0f13;
  color: #fff;
  overflow: hidden;
  align-items: center;
}

/* LEFT SIDE IMAGE (Parallax + Zoom) */
.premium-proud-home .image-side {
  background: url('../images/medical-Cannibalism-icon.png') center / cover no-repeat fixed;
  min-height: 550px;
  height: 100%;
  width: 100%;
  animation: slowZoom 12s ease-in-out infinite alternate;
  will-change: transform;
}

@keyframes slowZoom {
  from { background-size: 100%; }
  to { background-size: 107%; }
}

/* Smooth fade slide for content */
.premium-proud-home .content-side {
  padding: 70px 60px;
  animation: fadeSlide 1s ease-in-out both;
  opacity: 0;
}

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

/* Text styling */
.premium-proud-home .small-title {
  font-size: 14px;
  color: #5FBF4A;
  letter-spacing: 1px;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.premium-proud-home h2 {
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 18px;
  line-height: 1.2;
}

.premium-proud-home .desc {
  font-size: 16px;
  line-height: 1.65;
  margin-bottom: 25px;
  color: #d1d5db;
}

/* CTA Button */
.premium-proud-home .cta-btn {
  display: inline-block;
  background: #0D490B;
  padding: 12px 28px;
  color: #fff;
  font-weight: 700;
  border-radius: 8px;
  text-decoration: none;
  transition: 0.3s;
}

.premium-proud-home .cta-btn:hover {
  background: #5FBF4A;
  color: #052e16;
  transform: translateY(-3px);
}

/* ============================
   MOBILE RESPONSIVE
============================ */
@media (max-width: 768px) {
  .premium-proud-home {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .premium-proud-home .content-side {
    padding: 50px 20px;
  }

  /* Disable parallax on mobile */
  .premium-proud-home .image-side {
    background-attachment: scroll;
    animation: none;
  }

  .premium-proud-home h2 {
    font-size: 32px;
  }
}


/* =========================
   PREMIUM SECTION - WITH IMAGE
========================= */
.premium-proud-section3 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 500px;
  background: #1a1f1a;
  color: #fff;
  overflow: hidden;
  align-items: center;
}

/* LEFT IMAGE – PARALLAX & HOVER */
.premium-proud-section3 .image-side {
  background: url('../images/medical-Cannibalism-icon.png') center/cover no-repeat fixed;
  height: 100%;
  min-height: 450px;
  transition: transform 0.5s ease-in-out;
}

/* Slow zoom animation */
@keyframes slowZoom {
  from { transform: scale(1); }
  to { transform: scale(1.03); }
}

/* Hover effect */
.premium-proud-section3 .image-side:hover {
  transform: scale(1.07); /* slight zoom on hover */
}

/* CONTENT SIDE */
.premium-proud-section3 .content-side {
  padding: 70px 60px;
  animation: fadeSlide 1s ease forwards;
  opacity: 0;
}

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

/* Small Heading */
.premium-proud-section3 .small-title {
  font-size: 14px;
  color: #5FBF4A;
  letter-spacing: 1px;
  margin-bottom: 6px;
}

/* Main Heading */
.premium-proud-section3 h2 {
  font-size: 40px;
  font-weight: 800;
  margin-bottom: 18px;
  line-height: 1.2;
}

/* Paragraph */
.premium-proud-section3 .desc {
  font-size: 16px;
  line-height: 1.65;
  margin-bottom: 25px;
  color: #e5e5e5;
}

/* CTA BUTTON */
.premium-proud-section3 .cta-btn {
  display: inline-block;
  background: #0D490B;
  padding: 12px 28px;
  color: #fff;
  font-weight: 700;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.3s, transform 0.3s;
}

.premium-proud-section3 .cta-btn:hover {
  background: #5FBF4A;
  transform: translateY(-3px);
  color: #052e16;
}

/* MOBILE RESPONSIVE */
@media(max-width: 768px) {
  .premium-proud-section3 {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .premium-proud-section3 .content-side {
    padding: 50px 20px;
  }
}



/* Ensure SVG is responsive */
.map-container svg {
  width: 100%;
  height: auto;
  display: block;
}

/* Base outline */
.state {
  stroke: #222;
  stroke-width: 0.7;
  fill: transparent; /* Allow color overrides */
}

/* Colored states based on cannabis legality */
.state.legal {
  fill: #1c7c36 !important;   /* dark green */
}
.state.medical {
  fill: #9bd66b !important;   /* light green */
}
.state.illegal {
  fill: #444444 !important;   /* dark grey */
}

/* Hover effect */
.state:hover {
  stroke: #ffffff;
  stroke-width: 1.5;
  cursor: pointer;
  filter: brightness(1.1);
}

/* Tooltip display */
.tooltip {
  position: fixed;
  background: rgba(0,0,0,0.85);
  color: #fff;
  padding: 5px 10px;
  border-radius: 4px;
  font-size: 13px;
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.15s;
  pointer-events: none;
  z-index: 9999;
}

.tooltip.show {
  opacity: 1;
}
.state-labels text {
  pointer-events: none; /* so it doesn't block hover on states */
  font-size: 12px;
  fill: #ffffff;
  text-shadow: 0px 0px 3px rgba(0,0,0,0.6);
}
.map-legend {
  margin-top: 15px;
  font-size: 14px;
  display: flex;
  justify-content: center;
  gap: 20px;
  align-items: center;
}

.map-legend .legend-item {
  width: 16px;
  height: 16px;
  display: inline-block;
  border: 1px solid #222;
}
.map-legend .legal { background: #1c7c36; }
.map-legend .medical { background: #9bd66b; }
.map-legend .illegal { background: #444; }
.map-section {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.map-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: max-content; /* fits the map width */
  margin: 0 auto;     /* ensures horizontal centering */
}

#us-map {
  display: block;
}




@keyframes glowFloat2 {
  from { transform: translateY(0px); }
  to   { transform: translateY(-25px); }
}

/* Responsive */
@media(max-width: 700px) {
  .wholesale-form {
    padding: 30px 20px;
  }

  .wholesale-application h2 {
    font-size: 32px;
  }
}

/* ========== Step Indicator ========== */
.step-indicator {
  display: flex;
  justify-content: center;
  margin-bottom: 25px;
  gap: 10px;
}
.step-dot {
  width: 14px;
  height: 14px;
  background: #333;
  border-radius: 50%;
  transition: 0.3s;
}
.step-dot.active {
  background: #5FBF4A;
  transform: scale(1.2);
}

/* ========== Multi-step Form ========== */
.form-step {
  display: none;
  opacity: 0;
  transform: translateY(20px);
  transition: 0.5s ease;
}
.form-step.active {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

/* Navigation buttons */
.next-btn,
.prev-btn {
  width: 100%;
  margin-top: 10px;
}

/* ========== Success Popup ========== */
.wholesale-success {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 999999;
}

.wholesale-success .success-box {
  background: #111827;
  padding: 40px;
  border-radius: 16px;
  text-align: center;
  width: 90%;
  max-width: 420px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.5);
}

.success-box h3 {
  color: #5FBF4A;
  font-size: 26px;
  margin-bottom: 10px;
}

.success-box p {
  color: #ccc;
  margin-bottom: 20px;
}


/* ---------------------------------
   WHOLESALE APPLICATION MAIN WRAPPER
------------------------------------*/
.wholesale-application {
  padding: 90px 0;
  background: #0B0F13;
  color: #fff;
}

body.light .wholesale-application {
  background: #f6f6f6;
  color: #111;
}

.wh-title {
  font-size: 42px;
  font-weight: 800;
  text-align: center;
}

.wh-subtitle {
  text-align: center;
  max-width: 600px;
  margin: 10px auto 40px;
  font-size: 17px;
  opacity: 0.8;
}

/* Step Dots */
.wh-step-indicators {
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
  gap: 10px;
}
.step-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #555;
  transition: 0.3s;
}
.step-dot.active {
  background: #5FBF4A;
  transform: scale(1.2);
}

/* Form */
.wholesale-form {
  max-width: 600px;
  margin: auto;
  padding: 35px;
  background: #111827;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.25);
}

body.light .wholesale-form {
  background: #fff;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

/* Steps */
.form-step {
  display: none;
  animation: fadeIn 0.4s ease;
}
.form-step.active {
  display: block;
}

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

/* Fields */
.form-group {
  margin-bottom: 18px;
}
.form-group label {
  font-weight: 600;
  display: block;
  margin-bottom: 4px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 11px;
  border-radius: 6px;
  border: 1px solid #333;
  background: #1f2937;
  color: #fff;
}
body.light .form-group input,
body.light .form-group select,
body.light .form-group textarea {
  background: #f3f4f6;
  border-color: #ccc;
  color: #000;
}

/* Buttons */
.btn {
  background: #0D490B;
  padding: 12px 24px;
  color: #fff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 700;
  transition: 0.3s;
}
.btn:hover {
  background: #5FBF4A;
  color: #052e16;
}

.btn.ghost {
  background: transparent;
  border: 2px solid #5FBF4A;
  color: #5FBF4A;
}
.btn.ghost:hover {
  background: #5FBF4A;
  color: #111;
}

/* Navigation */
.form-nav {
  display: flex;
  justify-content: space-between;
}

/* Success Popup */
.wh-success-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.75);
  justify-content: center;
  align-items: center;
  z-index: 99999;
}

.wh-success-box {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  width: 90%;
  max-width: 400px;
}
.wh-success-box h3 {
  color: #0D490B;
  font-size: 26px;
  margin-bottom: 12px;
}
