/* =================================================================
   IKR COCONUTS — Premium Export Website
   Table of Contents:
   1. Variables & Reset
   2. Utilities & Typography
   3. Buttons
   4. Loader
   5. Progress Bar / Back to Top / WhatsApp Float
   6. Navbar
   7. Hero
   8. Stats
   9. About
   10. Why Choose Us
   11. Products + Spec Table
   12. Export Process
   13. Global Export
   14. Quality Assurance
   15. Gallery + Lightbox
   16. Testimonials
   17. FAQ Accordion
   18. Contact
   19. CTA
   20. Footer
   21. Responsive
   ================================================================= */

/* ============ 1. VARIABLES & RESET ============ */
:root {
  --green-primary: #0D4B2A;
  --green-dark: #06341E;
  --gold: #C89B3C;
  --cream: #F8F7F2;
  --white: #FFFFFF;
  --text-dark: #222222;
  --gray-light: #F3F4F6;

  --font-heading: 'Cormorant Garamond', serif;
  --font-sub: 'Playfair Display', serif;
  --font-body: 'Jost', sans-serif;

  --shadow-soft: 0 20px 50px rgba(6, 52, 30, 0.10);
  --shadow-strong: 0 25px 60px rgba(6, 52, 30, 0.18);
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 10px;

  --container: 1220px;
  --transition: 0.4s cubic-bezier(.25, .8, .25, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

input,
textarea,
select {
  font-family: inherit;
}

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

/* ============ 2. UTILITIES & TYPOGRAPHY ============ */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}

h1,
h2,
h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--green-dark);
}

h4 {
  font-family: var(--font-sub);
  font-weight: 600;
  color: var(--green-dark);
}

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 14px;
  display: block;
}

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

.section-title {
  font-size: clamp(2rem, 3.4vw, 2.9rem);
  line-height: 1.15;
  margin-bottom: 20px;
}

.section-title.center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.section-lead {
  font-size: 1.05rem;
  color: #4a4a4a;
  max-width: 640px;
}

.section-lead.center {
  margin: 0 auto 56px;
  text-align: center;
}

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

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

.text-white-70 {
  color: rgba(255, 255, 255, 0.78);
}

section {
  padding: 120px 0;
  position: relative;
}

/* scroll reveal */
.reveal,
.reveal-left,
.reveal-right {
  opacity: 0;
  transition: opacity 0.9s ease, transform 0.9s ease;
}

.reveal {
  transform: translateY(30px);
}

.reveal-left {
  transform: translateX(-40px);
}

.reveal-right {
  transform: translateX(40px);
}

.reveal.is-visible,
.reveal-left.is-visible,
.reveal-right.is-visible {
  opacity: 1;
  transform: translate(0, 0);
}

/* ============ 3. BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.03em;
  padding: 16px 34px;
  border-radius: 50px;
  position: relative;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-3px);
}

.btn--gold {
  background: linear-gradient(135deg, var(--gold), #dcb45e);
  color: var(--green-dark);
  box-shadow: 0 12px 30px rgba(200, 155, 60, 0.35);
}

.btn--gold:hover {
  box-shadow: 0 16px 36px rgba(200, 155, 60, 0.45);
}

.btn--outline {
  border: 1.5px solid rgba(255, 255, 255, 0.6);
  color: var(--white);
  backdrop-filter: blur(6px);
  background: rgba(255, 255, 255, 0.06);
}

.btn--outline:hover {
  background: rgba(255, 255, 255, 0.16);
}

.btn--whatsapp {
  background: #1f9e57;
  color: #fff;
}

.ripple {
  position: relative;
}

.ripple .ripple-circle {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  transform: scale(0);
  animation: ripple-anim .6s ease-out;
  pointer-events: none;
}

@keyframes ripple-anim {
  to {
    transform: scale(3);
    opacity: 0;
  }
}
.hero__content .eyebrow{
    margin-top: 120px;
}


/* ============ 4. LOADER ============ */

.loader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: var(--green-dark);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity .7s ease, visibility .7s ease;
}

.loader.is-hidden {
    opacity: 0;
    visibility: hidden;
}

.loader__inner {
    text-align: center;
}

/* Logo */

.loader__logo {
    width: 120px;
    height: 120px;
    object-fit: contain;
    display: block;
    margin: 0 auto 20px;
    animation: logoPulse 1.8s ease-in-out infinite;
    border-radius: 50%;
background: white;
padding: 8px;
border: 3px solid var(--gold);
box-shadow: 0 10px 30px rgba(0,0,0,.25);
}

/* Brand Name */

.loader__word {
    font-family: var(--font-heading);
    color: var(--cream);
    letter-spacing: .35em;
    font-size: .95rem;
    text-transform: uppercase;
}

/* Animation */

@keyframes logoPulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.08);
        opacity: .85;
    }
}

/* ============ 5. PROGRESS / BACK TO TOP / WHATSAPP ============ */
.progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--green-primary));
  width: 0%;
  z-index: 1001;
  transition: width .1s linear;
}

.back-to-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--green-dark);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-soft);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all var(--transition);
  z-index: 900;
}

.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--gold);
  color: var(--green-dark);
}

.whatsapp-float {
  position: fixed;
  bottom: 28px;
  left: 28px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #1f9e57;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 12px 30px rgba(31, 158, 87, 0.45);
  z-index: 900;
  animation: wa-bounce 2.6s ease-in-out infinite;
}

@keyframes wa-bounce {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-6px);
  }
}

/* ============ 6. NAVBAR ============ */
/* ============ 6. NAVBAR (Consolidated & Fixed Alignment) ============ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 22px 0;
  transition: all var(--transition);
}

.navbar__container {
  max-width: 1200px;
  margin: auto;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.navbar__nav {
  flex: 1;
  display: flex;
  justify-content: center;
}

.navbar__links {
  display: flex;
  gap: 35px;
  align-items: center;
}

.navbar__logo {
  display: flex;
  align-items: center; /* Centers image with text vertically */
  gap: 12px;           /* Gives comfortable spacing between logo and text */
  flex-shrink: 0;      /* Keeps the brand logo block from squeezing on small displays */
}

.navbar__cta {
  flex-shrink: 0;
}

.navbar__logo-img {
  width: 45px;
  height: 45px;
  object-fit: contain;
}

.navbar.is-scrolled {
  padding: 12px 0;
  background: rgba(248, 247, 242, 0.85);
  backdrop-filter: blur(14px);
  box-shadow: 0 4px 30px rgba(6, 52, 30, 0.08);
}

.navbar__logo-mark {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.6rem;
  color: var(--gold);
}

.navbar__logo-text {
  font-family: var(--font-body);
  font-weight: 600;
  letter-spacing: 0.18em;
  font-size: 0.82rem;
  color: var(--white); /* Fits beautifully over the dark hero background */
  transition: color var(--transition);
}

/* Switches logo text to dark green when page rolls past the threshold */
.navbar.is-scrolled .navbar__logo-text {
  color: var(--green-dark);
}

.navbar__links {
  display: flex;
  gap: 36px;
}

.navlink {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--white);
  position: relative;
  padding-bottom: 4px;
  transition: color var(--transition);
}

.navbar.is-scrolled .navlink {
  color: var(--text-dark);
}

.navlink::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0;
  background: var(--gold);
  transition: width var(--transition);
}

.navlink:hover::after,
.navlink.active::after {
  width: 100%;
}

.navbar__cta {
  padding: 12px 26px;
  font-size: 0.85rem;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 30px;
  z-index: 1200;
}

.hamburger span {
  height: 2px;
  width: 100%;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}

.navbar.is-scrolled .hamburger span {
  background: var(--green-dark);
}

.hamburger.is-active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

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

.hamburger.is-active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--green-dark);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  z-index: 1100;
  transform: translateY(-100%);
  transition: transform 0.55s cubic-bezier(.65, 0, .35, 1);
}

.mobile-menu.is-open {
  transform: translateY(0);
}

.mobile-menu__links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 26px;
}

.mobile-link {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--cream);
  font-weight: 600;
}

/* ============ 7. HERO ============ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 0;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  animation: hero-zoom 18s ease-in-out infinite alternate;
}

@keyframes hero-zoom {
  from {
    transform: scale(1);
  }

  to {
    transform: scale(1.12);
  }
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 52, 30, 0.75), rgba(6, 52, 30, 0.55) 50%, rgba(6, 52, 30, 0.9));
}

.hero__leaves {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.leaf {
  position: absolute;
  color: rgba(200, 155, 60, 0.35);
  font-size: 2rem;
  animation: float 8s ease-in-out infinite;
}

.leaf--1 {
  top: 20%;
  left: 8%;
  animation-delay: 0s;
}

.leaf--2 {
  top: 60%;
  left: 85%;
  animation-delay: 2s;
  font-size: 2.6rem;
}

.leaf--3 {
  top: 80%;
  left: 20%;
  animation-delay: 4s;
  font-size: 1.6rem;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-24px) rotate(15deg);
  }
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 820px;
  margin: 0 auto;
  padding: 0 32px;
  text-align: center;
  color: var(--white);
}

.hero__title {
  font-size: clamp(2.4rem, 5.6vw, 4.4rem);
  line-height: 1.12;
  color: var(--white);
  margin-bottom: 26px;
}

.hero__subtitle {
  font-size: 1.08rem;
  color: rgba(255, 255, 255, 0.85);
  max-width: 620px;
  margin: 0 auto 40px;
}

.hero__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.scroll-indicator {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.scroll-indicator__mouse {
  width: 26px;
  height: 42px;
  border: 2px solid rgba(255, 255, 255, 0.6);
  border-radius: 20px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}

.scroll-indicator__mouse span {
  width: 4px;
  height: 8px;
  background: var(--gold);
  border-radius: 2px;
  animation: scroll-dot 1.6s ease-in-out infinite;
}

@keyframes scroll-dot {
  0% {
    transform: translateY(0);
    opacity: 1;
  }

  100% {
    transform: translateY(14px);
    opacity: 0;
  }
}

/* ============ 8. STATS ============ */
.stats {
  background: var(--green-dark);
  padding: 80px 0;
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  text-align: center;
}

.stat-card {
  color: var(--cream);
}

.stat-card__number {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  color: var(--gold);
  display: inline-block;
}

.stat-card__plus {
  font-size: 2rem;
  color: var(--gold);
  font-family: var(--font-heading);
}

.stat-card p {
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  color: rgba(248, 247, 242, 0.75);
  margin-top: 6px;
}

/* ============ 9. ABOUT ============ */
.about {
  background: var(--cream);
}

.about__grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 70px;
  align-items: center;
}

.about__media {
  position: relative;
}

.about__media img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-strong);
}

.about__badge {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 20px 26px;
  box-shadow: var(--shadow-soft);
  border: 2px solid var(--gold);
  text-align: center;
}

.about__badge span {
  display: block;
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--green-primary);
  font-weight: 700;
}

.about__badge small {
  font-size: 0.75rem;
  color: #666;
}

.about__values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 36px;
}

.value-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 26px;
  box-shadow: var(--shadow-soft);
  transition: transform var(--transition), box-shadow var(--transition);
  border-top: 3px solid var(--gold);
}

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

.value-card i {
  color: var(--green-primary);
  font-size: 1.4rem;
  margin-bottom: 10px;
}

.value-card h4 {
  margin-bottom: 8px;
  font-size: 1.15rem;
}

.value-card p {
  font-size: 0.9rem;
  color: #555;
}

/* ============ 10. WHY CHOOSE US ============ */
.why {
  background: var(--white);
}

.why__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 20px;
}

.why-card {
  position: relative;
  padding: 38px 28px;
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-soft);
  transition: transform var(--transition), box-shadow var(--transition);
  overflow: hidden;
}

.why-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  padding: 1.5px;
  background: linear-gradient(135deg, var(--gold), transparent 60%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity var(--transition);
}

.why-card:hover::before {
  opacity: 1;
}

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

.why-card__icon {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--green-primary), var(--green-dark));
  color: var(--gold);
  font-size: 1.4rem;
  margin-bottom: 20px;
}

.why-card h4 {
  font-size: 1.25rem;
  margin-bottom: 8px;
}

.why-card p {
  font-size: 0.92rem;
  color: #555;
}

/* ============ 11. PRODUCTS ============ */
.products {
  background: var(--gray-light);
}

.products__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 70px;
}

.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 1px solid transparent;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-strong);
  border-color: var(--gold);
}

.product-card__media {
  overflow: hidden;
  height: 230px;
}

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

.product-card:hover .product-card__media img {
  transform: scale(1.1);
}

.product-card__body {
  padding: 26px;
}

.product-card__body h4 {
  font-size: 1.3rem;
  margin-bottom: 8px;
}

.product-card__body p {
  font-size: 0.9rem;
  color: #555;
  margin-bottom: 14px;
}

.product-card__specs {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.84rem;
  color: #444;
  margin-bottom: 18px;
}

.product-card__specs i {
  color: var(--green-primary);
  margin-right: 6px;
  width: 14px;
}

.product-card__link {
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--green-primary);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap var(--transition), color var(--transition);
}

.product-card__link:hover {
  gap: 12px;
  color: var(--gold);
}

.spec-table-wrap {
  overflow-x: auto;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.spec-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 700px;
}

.spec-table th,
.spec-table td {
  padding: 18px 22px;
  text-align: left;
  font-size: 0.9rem;
}

.spec-table thead {
  background: var(--green-dark);
  color: var(--cream);
}

.spec-table thead th {
  font-weight: 600;
  letter-spacing: 0.03em;
}

.spec-table tbody tr:nth-child(even) {
  background: var(--gray-light);
}

.spec-table tbody tr:hover {
  background: rgba(200, 155, 60, 0.08);
}

.spec-table i.fa-circle-check {
  color: var(--green-primary);
}

.spec-table i.fa-circle-minus {
  color: #b5b5b5;
}
.spec-table-wrap{
    margin-bottom: 3rem;
}

.table-title{
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--green-dark);
    padding: 0 2rem 1rem;
    margin: 0;
}

/* ============ 12. EXPORT PROCESS ============ */
.process {
  background: var(--white);
}

.process__timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 16px;
  margin-top: 30px;
}

.process__line {
  position: absolute;
  top: 34px;
  left: 7%;
  right: 7%;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--gold) 0 8px, transparent 8px 16px);
  z-index: 0;
}

.process-step {
  position: relative;
  z-index: 1;
  text-align: center;
}

.process-step__icon {
  width: 68px;
  height: 68px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: var(--cream);
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-primary);
  font-size: 1.3rem;
  transition: transform var(--transition), background var(--transition), color var(--transition);
}

.process-step:hover .process-step__icon {
  background: var(--green-primary);
  color: var(--gold);
  transform: scale(1.08);
}

.process-step h4 {
  font-size: 1.02rem;
  margin-bottom: 6px;
}

.process-step p {
  font-size: 0.82rem;
  color: #666;
}

/* ============ 13. GLOBAL EXPORT ============ */
.global {
  position: relative;
  background: var(--green-dark);
  color: var(--white);
  overflow: hidden;
  padding: 130px 0;
}

.global__map {
  position: absolute;
  inset: 0;
  opacity: 0.12;
  background-image: url('https://images.unsplash.com/photo-1524661135-423995f22d0b?auto=format&fit=crop&w=1600&q=60');
  background-size: cover;
  background-position: center;
  mix-blend-mode: luminosity;
}

.global__content {
  position: relative;
  max-width: 680px;
}

.global__highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.global-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(200, 155, 60, 0.4);
  padding: 12px 20px;
  border-radius: 50px;
  font-size: 0.88rem;
  backdrop-filter: blur(6px);
}

.global-pill i {
  color: var(--gold);
}

/* ============ 14. QUALITY ASSURANCE ============ */
.quality {
  background: var(--cream);
}

.quality__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 70px;
  align-items: center;
}

.quality__media img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-strong);
}

.quality__cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 26px;
}

.quality-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--white);
  padding: 20px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  transition: transform var(--transition);
}

.quality-card:hover {
  transform: translateY(-4px);
}

.quality-card i {
  color: var(--gold);
  font-size: 1.3rem;
}

.quality-card span {
  font-weight: 500;
  font-size: 0.92rem;
}

/* ============ 15. GALLERY + LIGHTBOX ============ */
.gallery {
  background: var(--white);
}

.gallery__grid {
  columns: 4 240px;
  column-gap: 18px;
}

.gallery__img {
  width: 100%;
  margin-bottom: 18px;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: transform var(--transition), filter var(--transition);
}

.gallery__img:hover {
  transform: scale(1.03);
  filter: brightness(1.05);
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(6, 52, 30, 0.94);
  z-index: 1300;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition), visibility var(--transition);
  padding: 40px;
}

.lightbox.is-open {
  opacity: 1;
  visibility: visible;
}

.lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-strong);
}

.lightbox__close {
  position: absolute;
  top: 28px;
  right: 38px;
  font-size: 2.4rem;
  color: var(--cream);
  line-height: 1;
}

/* ============ 16. TESTIMONIALS ============ */
.testimonials {
  background: var(--gray-light);
}

.testimonial-slider {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
  min-height: 260px;
}

.testimonial-card {
  position: absolute;
  inset: 0;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 46px 50px;
  box-shadow: var(--shadow-soft);
  text-align: center;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  pointer-events: none;
}

.testimonial-card.is-active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.stars {
  color: var(--gold);
  margin-bottom: 18px;
  font-size: 0.95rem;
}

.testimonial-card p {
  font-family: var(--font-sub);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--green-dark);
  margin-bottom: 22px;
}

.testimonial-card__author strong {
  display: block;
  font-size: 0.95rem;
}

.testimonial-card__author span {
  font-size: 0.8rem;
  color: #777;
}

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

.testimonial-dots span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #d6d2c4;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
}

.testimonial-dots span.is-active {
  background: var(--gold);
  transform: scale(1.3);
}

/* ============ 17. FAQ ACCORDION ============ */
.faq {
  background: var(--white);
}

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

.accordion-item {
  border-bottom: 1px solid #e5e3da;
}

.accordion-header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 4px;
  font-family: var(--font-sub);
  font-size: 1.08rem;
  font-weight: 600;
  color: var(--green-dark);
  text-align: left;
}

.accordion-header i {
  color: var(--gold);
  transition: transform var(--transition);
}

.accordion-item.is-open .accordion-header i {
  transform: rotate(135deg);
}

.accordion-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s ease, padding var(--transition);
  font-size: 0.94rem;
  color: #555;
  padding: 0 4px;
}

.accordion-item.is-open .accordion-panel {
  padding-bottom: 22px;
}

/* ============ 18. CONTACT ============ */
.contact {
  background: var(--cream);
}

.contact__grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
}

.contact__list {
  margin: 30px 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact__list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 0.94rem;
}

.contact__list i {
  color: var(--gold);
  margin-top: 3px;
  width: 18px;
}

.contact__map {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  height: 230px;
}

.contact__map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(0.1);
}

.contact__form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 44px;
  box-shadow: var(--shadow-strong);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  position: relative;
  margin-bottom: 26px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 16px 4px 10px;
  border: none;
  border-bottom: 1.5px solid #d8d5c9;
  font-size: 0.95rem;
  background: transparent;
  transition: border-color var(--transition);
  resize: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  outline: none;
}

.form-group label {
  position: absolute;
  left: 4px;
  top: 16px;
  font-size: 0.95rem;
  color: #999;
  transition: all var(--transition);
  pointer-events: none;
}

.form-group input:focus+label,
.form-group input:not(:placeholder-shown)+label,
.form-group textarea:focus+label,
.form-group textarea:not(:placeholder-shown)+label,
.form-group select:focus+label,
.form-group select:valid+label {
  top: -4px;
  font-size: 0.74rem;
  color: var(--gold);
  font-weight: 600;
}

.contact__submit {
  width: 100%;
  justify-content: center;
}

.form-success {
  margin-top: 16px;
  text-align: center;
  color: var(--green-primary);
  font-weight: 500;
  font-size: 0.9rem;
  display: none;
}

.form-success.is-visible {
  display: block;
}

/* ============ 19. CTA ============ */
.cta {
  position: relative;
  padding: 150px 0;
  text-align: center;
  overflow: hidden;
}

.cta__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.cta__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 52, 30, 0.88), rgba(13, 75, 42, 0.82));
}

.cta__content {
  position: relative;
  color: var(--white);
}

.cta__content h2 {
  color: var(--white);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom: 14px;
}

.cta__content p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 34px;
  font-family: var(--font-sub);
  font-style: italic;
}

/* ============ 20. FOOTER ============ */
.footer {
  background: var(--green-dark);
  color: var(--cream);
  padding: 90px 0 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr 1.1fr;
  gap: 50px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(248, 247, 242, 0.12);
}

.footer__brand p {
  margin: 18px 0 22px;
  font-size: 0.9rem;
  color: rgba(248, 247, 242, 0.7);
  max-width: 320px;
}

.footer__socials {
  display: flex;
  gap: 12px;
}

.footer__socials a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(248, 247, 242, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}

.footer__socials a:hover {
  background: var(--gold);
  color: var(--green-dark);
  border-color: var(--gold);
}

.footer__links h4 {
  color: var(--cream);
  font-size: 1rem;
  margin-bottom: 20px;
  letter-spacing: 0.03em;
}

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

.footer__links a {
  font-size: 0.9rem;
  color: rgba(248, 247, 242, 0.7);
  transition: color var(--transition);
}

.footer__links a:hover {
  color: var(--gold);
}

.footer__newsletter h4 {
  color: var(--cream);
  margin-bottom: 14px;
}

.footer__newsletter p {
  font-size: 0.88rem;
  color: rgba(248, 247, 242, 0.7);
  margin-bottom: 18px;
}

.footer__form {
  display: flex;
  border-bottom: 1.5px solid rgba(248, 247, 242, 0.3);
}

.footer__form input {
  flex: 1;
  background: transparent;
  border: none;
  color: var(--cream);
  padding: 10px 4px;
  font-size: 0.9rem;
}

.footer__form input::placeholder {
  color: rgba(248, 247, 242, 0.5);
}

.footer__form button {
  color: var(--gold);
  font-size: 1.1rem;
  padding: 10px;
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  padding: 26px 32px;
  max-width: var(--container);
  margin: 0 auto;
  font-size: 0.82rem;
  color: rgba(248, 247, 242, 0.55);
}
.footer__logo{
    display:inline-block;
    margin-bottom:20px;
}

.footer__logo-img{
    width: 70px;
    height: 70px;
    object-fit: contain;
}
.footer-credit{
    color: var(--gold);
    text-decoration: none;
    font-weight: 600;
    transition: color .3s ease;
}

.footer-credit:hover{
    color: #fff;
}
.footer__logo{
    display:flex;
    align-items:center;
    gap:14px;
    margin-bottom:18px;
}

.footer__logo-img{
    width:70px;
    height:70px;
    object-fit:contain;
}

.footer__logo-content h3{
    color:#fff;
    margin:0;
    font-family:var(--font-heading);
    font-size:1.6rem;
}

.footer__logo-content span{
    display:block;
    color:rgba(255,255,255,.7);
    font-size:.85rem;
    letter-spacing:1px;
}
.footer__bottom{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:20px;
    padding:25px 0;
}

.footer-credit-line{
    display:flex;
    align-items:center;
    gap:10px;
    margin:0;
}

.footer-credit{
    color:var(--gold);
    text-decoration:none;
    font-weight:600;
}

.footer-whatsapp{
    color:#25D366;
    text-decoration:none;
    font-weight:600;
}
/* ============ 21. RESPONSIVE ============ */
@media (max-width:1080px) {
  .stats__grid {
    grid-template-columns: repeat(3, 1fr);
    row-gap: 40px;
  }

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

  .footer__grid {
    grid-template-columns: 1fr 1fr;
  }

  .process__timeline {
    grid-template-columns: repeat(4, 1fr);
    row-gap: 50px;
  }

  .process__line {
    display: none;
  }
}

@media (max-width:900px) {

  .navbar__links,
  .navbar__cta {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .about__grid,
  .quality__grid,
  .contact__grid {
    grid-template-columns: 1fr;
  }

  .about__values {
    grid-template-columns: 1fr 1fr;
  }

  .why__grid {
    grid-template-columns: 1fr 1fr;
  }

  .gallery__grid {
    columns: 2 220px;
  }
}

@media (max-width:640px) {
  section {
    padding: 80px 0;
  }

  .container {
    padding: 0 20px;
  }

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

  .products__grid {
    grid-template-columns: 1fr;
  }

  .why__grid {
    grid-template-columns: 1fr;
  }

  .about__values {
    grid-template-columns: 1fr;
  }

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

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

  .footer__grid {
    grid-template-columns: 1fr;
  }

  .footer__bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .hero__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .whatsapp-float {
    width: 48px;
    height: 48px;
    font-size: 1.3rem;
    bottom: 20px;
    left: 20px;
  }

  .back-to-top {
    bottom: 20px;
    right: 20px;
  }
  .navbar{
    padding:16px 0;
}

.navbar__container{
    padding:0 20px;
}

.navbar__logo-img{
    width:48px;
    height:48px;
}

.hamburger{
    width:32px;
}
}