/* =========================================================
   CV MARKIDO ANUGERAH SEJAHTERA — MAIN STYLESHEET
   Palette sampled from client's brand: deep forest green,
   ember gold, lime green, warm off-white, elegant ink black.
   ========================================================= */

:root{
  /* --- brand colors --- */
  --forest:        #013b2d;
  --forest-2:       #024f3b;   /* lighter panel green for depth */
  --forest-3:       #012219;   /* darkest, footer/shade */
  --gold:           #fdc100;
  --gold-2:         #e0a800;
  --lime:           #78b719;
  --lime-2:         #5f9614;

  --ink:            #16201b;
  --ink-soft:       #4b564f;
  --stone:          #6f7a73;
  --paper:          #faf9f4;
  --paper-2:        #f2f0e6;
  --white:          #ffffff;
  --line:           #e5e2d6;

  /* --- semantic --- */
  --bg:             var(--white);
  --bg-alt:         var(--paper);
  --text:           var(--ink);
  --text-muted:     var(--stone);

  /* --- type --- */
  --font-display:   "Sora", "Plus Jakarta Sans", system-ui, sans-serif;
  --font-body:      "Plus Jakarta Sans", "Segoe UI", system-ui, sans-serif;

  /* --- motion --- */
  --ease:           cubic-bezier(.22,.9,.32,1);
  --ease-soft:      cubic-bezier(.4,0,.2,1);
  --dur-fast:       .22s;
  --dur-med:        .45s;
  --dur-slow:       .7s;

  /* --- layout --- */
  --container:      1200px;
  --radius-sm:      6px;
  --radius-md:      10px;
  --topbar-h:       40px;
  --nav-h:          76px;
  --shadow-soft:    0 10px 30px -12px rgba(1,59,45,.18);
  --shadow-lift:    0 18px 40px -14px rgba(1,59,45,.28);
}

/* =========================================================
   RESET
   ========================================================= */
*, *::before, *::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin:0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img{ max-width:100%; display:block; }
a{ color: inherit; text-decoration: none; }
ul{ list-style:none; margin:0; padding:0; }
button{ font-family: inherit; cursor:pointer; background:none; border:none; color:inherit; }
input, textarea, select{ font-family: inherit; font-size: 1rem; }
h1,h2,h3,h4{ font-family: var(--font-display); color: var(--forest); line-height: 1.15; margin: 0 0 .5em; font-weight: 700; letter-spacing: -0.01em; }
p{ margin: 0 0 1em; color: var(--ink-soft); }
svg{ flex-shrink:0; }

::selection{ background: var(--gold); color: var(--forest-3); }

/* language toggling */
html[data-lang-active="id"] [data-lang="en"]{ display:none !important; }
html[data-lang-active="en"] [data-lang="id"]{ display:none !important; }

.container{
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.section{ padding: 96px 0; }
.section-head{ max-width: 640px; margin: 0 0 48px; }
.section-head p{ margin-bottom: 0; }

.eyebrow{
  display:inline-flex; align-items:center; gap:8px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: .8rem;
  letter-spacing: .04em;
  color: var(--lime-2);
  margin: 0 0 .9em;
}
.eyebrow::before{
  display:none;
}
.eyebrow-light{ color: var(--gold); }

h2{ font-size: clamp(1.7rem, 2.6vw, 2.5rem); }
.section-head h2, .partner-band h2, .page-hero h1{
  text-transform: uppercase;
  letter-spacing: -0.015em;
}
h1{ font-size: clamp(2.4rem, 5.4vw, 4rem); }

/* =========================================================
   BUTTONS
   ========================================================= */
.btn{
  --btn-scale: 1;
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  padding: 14px 26px;
  font-weight: 700;
  font-size: .95rem;
  border-radius: var(--radius-sm);
  border: 1.5px solid transparent;
  transition: transform var(--dur-fast) var(--ease),
              box-shadow var(--dur-fast) var(--ease),
              background-color var(--dur-fast) var(--ease),
              color var(--dur-fast) var(--ease),
              border-color var(--dur-fast) var(--ease);
  transform: scale(var(--btn-scale));
  white-space: nowrap;
}
.btn:hover{ --btn-scale: 1.035; }
.btn:active{ --btn-scale: .97; }
.btn svg{ transition: transform var(--dur-fast) var(--ease); }
.btn:hover svg{ transform: translateX(3px); }

.btn-gold{
  position: relative;
  overflow: hidden;
  background: var(--gold);
  color: var(--forest-3);
  box-shadow: 0 8px 20px -8px rgba(253,193,0,.55);
}
.btn-gold:hover{ background: var(--gold-2); box-shadow: 0 12px 26px -8px rgba(253,193,0,.65); }
.btn-gold::before{
  content:"";
  position:absolute; top:0; left:-70%;
  width:45%; height:100%;
  background: linear-gradient(115deg, transparent, rgba(255,255,255,.6), transparent);
  transform: skewX(-20deg);
  transition: left .65s var(--ease);
  pointer-events:none;
}
.btn-gold:hover::before{ left: 130%; }

.btn-dark{
  background: var(--forest);
  color: var(--white);
}
.btn-dark:hover{ background: var(--forest-2); }

.btn-outline-light{
  border-color: rgba(255,255,255,.5);
  color: var(--white);
  background: rgba(255,255,255,.06);
  backdrop-filter: blur(4px);
}
.btn-outline-light:hover{ background: rgba(255,255,255,.16); border-color: var(--white); }

.btn-outline-dark{
  border-color: var(--forest);
  color: var(--forest);
}
.btn-outline-dark:hover{ background: var(--forest); color: var(--white); }

.btn-sm{ padding: 9px 16px; font-size: .82rem; }
.btn-block{ width: 100%; }

/* =========================================================
   SCROLL REVEAL
   ========================================================= */
.reveal{
  opacity: 0;
  transform: translateY(22px);
  transition: opacity var(--dur-slow) var(--ease), transform var(--dur-slow) var(--ease);
  transition-delay: calc(var(--d, 0) * 90ms);
}
.reveal.in-view{ opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior:auto; }
  .reveal{ opacity:1; transform:none; transition:none; }
  *{ animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
}

/* =========================================================
   HEADER
   ========================================================= */
.site-header{
  position: relative;
  width: 100%;
  z-index: 100;
}
.topbar{
  background: var(--forest-3);
  color: rgba(255,255,255,.85);
  font-size: .82rem;
  height: var(--topbar-h);
  overflow: hidden;
}
.topbar-inner{
  height: 100%;
  display:flex; align-items:center; justify-content:space-between; gap: 20px;
}
.topbar-left{ display:flex; align-items:center; gap: 22px; min-width:0; }
.topbar-social{ display:flex; align-items:center; gap: 12px; flex-shrink:0; }
.topbar-social a{ color: rgba(255,255,255,.7); transition: color var(--dur-fast) var(--ease); }
.topbar-social a svg{ width:27px; height:27px; }
.topbar-social a:hover{ color: var(--gold); }


.topbar-right{ display:flex; align-items:center; gap:18px; flex-shrink:0; }
.topbar-email{ display:flex; align-items:center; gap:8px; color: rgba(255,255,255,.85); }
.topbar-email svg{ color: var(--gold); }
.topbar-email:hover{ color: var(--gold); }

.main-nav{
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--forest);
  box-shadow: 0 2px 18px -6px rgba(0,0,0,.25);
  transition: box-shadow var(--dur-med) var(--ease);
}
.nav-inner{
  height: var(--nav-h);
  max-width: 1320px;
  display:flex; align-items:center; gap: 22px;
  position: relative;
}
.nav-logo{ display:flex; align-items:center; flex-shrink:0; position:relative; }
.nav-logo img{ height: 78px; width: auto; max-width: none; object-fit: contain; transform:none; filter: drop-shadow(0 0 2px rgba(255,255,255,.95)) drop-shadow(0 0 7px rgba(255,242,0,.42)); }

.nav-list{
  display:flex; align-items:center; justify-content:center; gap: 2px;
  flex: 1 1 auto;
  min-width: 0;
  flex-wrap: nowrap;
}
.nav-link{
  position: relative;
  display:inline-flex; align-items:center;
  padding: 10px 13px;
  font-size: .9rem;
  font-weight: 600;
  color: rgba(255,255,255,.78);
  border-radius: var(--radius-sm);
  transition: color var(--dur-fast) var(--ease), background var(--dur-fast) var(--ease);
  white-space: nowrap;
}
.nav-link::after{
  content:"";
  position:absolute;
  left: 13px; right: 13px; bottom: 5px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--dur-med) var(--ease);
}
.nav-link:hover{ color: var(--white); background: rgba(255,255,255,.06); }
.nav-link.active{ color: var(--white); }
.nav-link.active::after{ transform: scaleX(1); }

.nav-lang{
  flex-shrink: 0;
  display:flex; background: rgba(255,255,255,.1); border-radius: 20px; padding: 3px;
}
.lang-btn{
  padding: 5px 12px;
  font-size: .78rem;
  font-weight: 700;
  color: rgba(255,255,255,.65);
  border-radius: 16px;
  transition: background var(--dur-fast) var(--ease), color var(--dur-fast) var(--ease);
}
.lang-btn.active{ background: var(--gold); color: var(--forest-3); }
.lang-btn:not(.active):hover{ color: var(--white); }

.nav-toggle{
  display:none;
  flex-shrink:0;
  align-items:center; justify-content:center;
  color: var(--white);
  padding: 6px;
}

.nav-backdrop{
  display:none;
  position: fixed; inset: 0;
  background: rgba(1,34,25,.55);
  z-index: 90;
  opacity: 0;
  transition: opacity var(--dur-med) var(--ease);
}

/* header shrink state (added via JS on scroll) */
.site-header.is-scrolled .main-nav{ box-shadow: 0 6px 22px -6px rgba(0,0,0,.4); }

/* =========================================================
   SPA VIEWS
   ========================================================= */
#mainContent{ position: relative; }
.view{
  display:none;
  animation: viewIn var(--dur-med) var(--ease);
}
.view.active{ display:block; }
@keyframes viewIn{
  from{ opacity:0; transform: translateY(14px); }
  to{ opacity:1; transform: translateY(0); }
}

.page-hero{
  background: linear-gradient(160deg, var(--forest) 0%, var(--forest-3) 100%);
  padding: 72px 0 56px;
  color: var(--white);
  text-align: center;
}
.page-hero h1{ color: var(--white); margin-bottom: .3em; }
.page-hero .eyebrow{ color: var(--gold); justify-content:center; }
.page-hero-sub{ color: rgba(255,255,255,.75); max-width: 560px; margin: 0 auto; }

/* =========================================================
   HERO SLIDESHOW
   ========================================================= */
.hero{
  position: relative;
  min-height: 90vh;
  background: var(--forest-3);
  overflow: hidden;
  isolation: isolate;
}
.hero-slides{ position:absolute; inset:0; z-index:0; }

.hero-slide{
  position:absolute; inset:0;
  opacity:0;
  transition: opacity 1.2s var(--ease);
}
.hero-slide.is-active{ opacity:1; z-index:1; }

.hero-slide .hero-bg{ position:absolute; inset:0; overflow:hidden; }
.hero-slide .hero-bg-img{
  width:100%; height:100%; object-fit:cover; opacity:.9;
  transform: scale(1);
  transition: transform 7s linear;
}
.hero-slide.is-active .hero-bg-img{ transform: scale(1.08); }
.hero-slide .hero-bg::after{
  content:"";
  position:absolute; inset:0;
  background: linear-gradient(180deg, rgba(1,34,25,.5) 0%, rgba(1,34,25,.83) 76%, rgba(1,34,25,.97) 100%);
}

.hero-slide-content{ position:relative; z-index:2; padding: 150px 24px 40px; max-width: 760px; }
.hero-slide-content > *{
  opacity:0; transform: translateY(20px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.hero-slide.is-active .hero-slide-content > *{ opacity:1; transform:none; }
.hero-slide.is-active .hero-slide-content > *:nth-child(1){ transition-delay:.15s; }
.hero-slide.is-active .hero-slide-content > *:nth-child(2){ transition-delay:.28s; }
.hero-slide.is-active .hero-slide-content > *:nth-child(3){ transition-delay:.42s; }

.hero-title{
  color: var(--white); margin-bottom: .4em;
  font-size: clamp(2.15rem, 5vw, 4.2rem);
  text-transform: uppercase;
}
.hero-subtitle{ color: rgba(255,255,255,.82); font-size: 1.1rem; max-width: 540px; }

.hero-static{
  position:absolute; left:0; right:0; bottom: 68px; z-index: 3;
  animation: heroStaticIn 1s var(--ease) .5s both;
}
@keyframes heroStaticIn{ from{ opacity:0; transform:translateY(16px); } to{ opacity:1; transform:none; } }
.hero-actions{ display:flex; gap: 16px; flex-wrap: wrap; margin-bottom: 2.2em; }
.hero-badges{ display:flex; gap: 28px; flex-wrap: wrap; }
.hero-badges li{
  display:flex; align-items:center; gap:9px;
  color: rgba(255,255,255,.82);
  font-size: .88rem; font-weight: 600;
}
.hero-badges li svg{ color: var(--gold); }

.ember{
  position:absolute;
  bottom: -20px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 10px 2px rgba(253,193,0,.7);
  opacity: 0;
  z-index: 2;
  animation: emberRise 9s ease-in infinite;
}
.ember-1{ left: 8%; animation-delay: 0s; }
.ember-2{ left: 22%; animation-delay: 1.8s; width:4px; height:4px; }
.ember-3{ left: 55%; animation-delay: 3.4s; }
.ember-4{ left: 74%; animation-delay: 5.2s; width:5px; height:5px; }
.ember-5{ left: 90%; animation-delay: 6.8s; width:4px; height:4px; }
@keyframes emberRise{
  0%{ transform: translateY(0) translateX(0); opacity:0; }
  10%{ opacity:.9; }
  100%{ transform: translateY(-90vh) translateX(20px); opacity:0; }
}

/* =========================================================
   TAGLINE STRIP
   ========================================================= */
.tagline-strip{
  background: var(--forest-3);
  color: rgba(255,255,255,.85);
  display:flex; align-items:center; justify-content:center; gap:10px;
  padding: 13px 20px;
  font-size: .78rem; font-weight: 700; letter-spacing: .05em; text-transform: uppercase;
}
.tagline-strip svg{ color: var(--gold); }
.tagline-dot{ color: var(--gold); }

.center-head{ text-align:center; margin-left:auto; margin-right:auto; }
.center-head .eyebrow{ justify-content:center; }

/* =========================================================
   EXPLORE CARDS (home hub)
   ========================================================= */
.explore-section{ background: var(--bg-alt); }
.explore-card{
  display:block;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  box-shadow: var(--shadow-soft);
  border-top: 3px solid var(--gold);
  transition: transform var(--dur-med) var(--ease), box-shadow var(--dur-med) var(--ease);
}
.explore-card:hover{ transform: translateY(-8px); box-shadow: var(--shadow-lift); }
.explore-icon{
  display:inline-flex; align-items:center; justify-content:center;
  width: 50px; height:50px; border-radius: 12px;
  background: var(--forest); color: var(--gold);
  margin-bottom: 18px;
}
.explore-card h3{ font-size: 1.1rem; margin-bottom:.4em; }
.explore-card p{ font-size:.92rem; margin-bottom: 1.2em; }
.explore-link{
  display:inline-flex; align-items:center; gap:8px;
  font-weight:700; font-size:.86rem; color: var(--forest);
  transition: gap var(--dur-fast) var(--ease), color var(--dur-fast) var(--ease);
}
.explore-card:hover .explore-link{ gap:12px; color: var(--lime-2); }

/* =========================================================
   CLOSING CTA (home)
   ========================================================= */
.closing-cta{ padding: 0 0 96px; }
.closing-cta-inner{
  background: linear-gradient(120deg, var(--forest) 0%, var(--forest-2) 100%);
  border-radius: var(--radius-md);
  padding: 48px 44px;
  display:flex; align-items:center; justify-content:space-between; gap: 28px;
  flex-wrap: wrap;
}
.closing-cta-inner h2{ color: var(--white); margin-bottom:.3em; font-size: clamp(1.4rem,2.4vw,2rem); }
.closing-cta-inner p{ color: rgba(255,255,255,.75); margin:0; }

/* =========================================================
   ABOUT
   ========================================================= */
.about-grid{
  display:grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 64px;
  align-items: center;
}
.about-media img{
  width: 100%;
  border-radius: var(--radius-md);
  clip-path: polygon(0 0, 100% 0, 100% 92%, 92% 100%, 0 100%);
  box-shadow: var(--shadow-lift);
  border-top: 4px solid var(--gold);
}
.vm-grid{ display:grid; gap: 20px; margin-top: 32px; }
.vm-card{
  padding: 28px 30px;
  border-radius: var(--radius-md);
  position: relative;
}
.vm-card svg{ margin-bottom: 14px; }
.vm-card h3{ margin-bottom: .5em; font-size: 1.25rem; }
.vm-vision{ background: var(--forest); color: rgba(255,255,255,.9); }
.vm-vision svg{ color: var(--gold); }
.vm-vision h3{ color: var(--white); }
.vm-vision p{ color: rgba(255,255,255,.78); margin:0; }
.vm-mission{ background: var(--lime); color: var(--forest-3); }
.vm-mission svg{ color: var(--forest-3); }
.vm-mission h3{ color: var(--forest-3); }
.vm-mission ul{ display:grid; gap:10px; }
.vm-mission li{ font-size: .92rem; line-height:1.5; color: rgba(1,34,25,.9); }
.vm-mission strong{ color: var(--forest-3); }

/* =========================================================
   PRODUCTS
   ========================================================= */
.products{ background: var(--bg-alt); }
.grid-3{ display:grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.product-card{
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform var(--dur-med) var(--ease), box-shadow var(--dur-med) var(--ease);
}
.product-card:hover{ transform: translateY(-8px); box-shadow: var(--shadow-lift); }
.product-media{ aspect-ratio: 4/3; overflow:hidden; background: var(--forest); position:relative; }
.product-media::after{ content:""; position:absolute; inset:0; background: linear-gradient(0deg, rgba(1,34,25,.35), transparent 60%); }
.product-media img{ width:100%; height:100%; object-fit: cover; transition: transform var(--dur-slow) var(--ease); }
.product-card:hover .product-media img{ transform: scale(1.08); }
.product-body{ padding: 26px 26px 30px; border-top: 3px solid var(--gold); }
.product-body h3{ font-size: 1.2rem; margin-bottom: .5em; }
.product-body p{ font-size: .92rem; margin:0; }

/* =========================================================
   WHY CHOOSE US
   ========================================================= */
.why-grid{
  display:grid; grid-template-columns: 1.1fr .9fr; gap: 60px; align-items:center;
}
.why-item{ display:flex; gap: 18px; margin-bottom: 28px; }
.why-item:last-child{ margin-bottom:0; }
.why-icon{
  flex-shrink:0;
  width: 48px; height:48px;
  border-radius: 12px;
  background: var(--forest);
  color: var(--gold);
  display:flex; align-items:center; justify-content:center;
}
.why-item h3{ font-size: 1.08rem; margin-bottom:.35em; }
.why-item p{ margin:0; font-size: .93rem; }
.why-media img{
  width:100%;
  border-radius: var(--radius-md);
  clip-path: polygon(8% 0, 100% 0, 100% 100%, 0 100%, 0 8%);
  box-shadow: var(--shadow-lift);
  border-top: 4px solid var(--lime);
}

/* =========================================================
   PARTNER BAND (dark, bilingual w/ Indonesian emphasis)
   ========================================================= */
.partner-band{
  position: relative;
  background: var(--forest-3);
  color: var(--white);
  text-align: center;
  overflow: hidden;
  isolation: isolate;
}
.partner-band-bg{ position:absolute; inset:0; z-index:0; }
.partner-band-bg img{ width:100%; height:100%; object-fit:cover; opacity: .55; }
.partner-band-bg::after{
  content:"";
  position:absolute; inset:0;
  background: radial-gradient(120% 140% at 15% 0%, rgba(2,79,59,.85) 0%, rgba(1,59,45,.9) 45%, rgba(1,34,25,.95) 100%);
}
.partner-band > .container{ position:relative; z-index:1; }
.partner-band h2{ color: var(--white); margin-bottom: 48px; }
.partner-card{
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  padding: 34px 26px;
  border-radius: var(--radius-md);
  transition: transform var(--dur-med) var(--ease), background var(--dur-med) var(--ease);
}
.partner-card:hover{ transform: translateY(-6px); background: rgba(255,255,255,.09); }
.partner-icon{
  display:inline-flex; align-items:center; justify-content:center;
  width: 56px; height:56px; border-radius: 50%;
  background: var(--gold); color: var(--forest-3);
  margin-bottom: 20px;
}
.partner-card h3{ color: var(--white); font-size: 1.08rem; margin-bottom:.5em; }
.partner-card p{ color: rgba(255,255,255,.72); font-size: .9rem; margin:0; }

/* =========================================================
   NEXT STEPS CTA
   ========================================================= */
.next-steps{ background: var(--bg-alt); }
.next-steps .section-head{ max-width: 680px; text-align:center; margin: 0 auto 52px; }
.next-steps .section-head p{ margin-top: 10px; }
.next-card{
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 30px 28px;
  box-shadow: var(--shadow-soft);
  border-bottom: 4px solid var(--lime);
  transition: transform var(--dur-med) var(--ease), box-shadow var(--dur-med) var(--ease);
}
.next-card:hover{ transform: translateY(-6px); box-shadow: var(--shadow-lift); }
.next-card-head{ display:flex; align-items:center; gap:12px; margin-bottom: 14px; }
.next-card-head svg{ color: var(--forest); background: var(--paper-2); padding:8px; border-radius:10px; width:36px; height:36px; }
.next-card-head h3{ font-size: 1.05rem; margin:0; }
.next-card p{ font-size: .92rem; margin-bottom: 1.4em; }
.next-card-link{
  display:inline-flex; align-items:center; gap: 8px;
  font-weight: 700; font-size: .88rem; color: var(--forest);
  transition: gap var(--dur-fast) var(--ease), color var(--dur-fast) var(--ease);
}
.next-card-link:hover{ gap: 12px; color: var(--lime-2); }

/* =========================================================
   FAQ / ACCORDION
   ========================================================= */
.faq-container{ max-width: 780px; }
.accordion-item{
  border-bottom: 1px solid var(--line);
}
.accordion-trigger{
  width:100%;
  display:flex; align-items:center; justify-content:space-between; gap: 16px;
  padding: 22px 4px;
  text-align:left;
  font-weight: 700;
  font-size: 1.02rem;
  color: var(--forest);
}
.accordion-icon{ flex-shrink:0; color: var(--gold); transition: transform var(--dur-med) var(--ease); }
.accordion-trigger[aria-expanded="true"] .accordion-icon{ transform: rotate(180deg); }
.accordion-panel{
  max-height: 0;
  overflow:hidden;
  transition: max-height var(--dur-med) var(--ease-soft);
}
.accordion-panel-inner{ padding: 0 4px 22px; }
.accordion-panel-inner p{ margin:0; font-size: .95rem; }

.faq-cta{
  margin-top: 56px;
  text-align:center;
  padding: 40px;
  background: var(--bg-alt);
  border-radius: var(--radius-md);
}
.faq-cta p{ font-weight:700; color: var(--forest); font-size:1.1rem; margin-bottom: 1em; }

/* =========================================================
   CONTACT
   ========================================================= */
.contact-grid{ display:grid; grid-template-columns: .8fr 1.2fr; gap: 56px; align-items:start; }
.info-card{ display:flex; align-items:flex-start; gap:16px; margin-bottom: 26px; }
.info-card > svg{ color: var(--gold); background: var(--forest); padding:10px; border-radius:10px; width:38px; height:38px; flex-shrink:0; }
.info-card h3{ font-size: 1rem; margin-bottom:.25em; }
.info-card p, .info-card a{ margin:0; font-size:.93rem; }
.info-card a:hover{ color: var(--lime-2); }
.info-card > div{ flex:1; min-width:0; }
.copy-btn{
  flex-shrink:0;
  width: 30px; height:30px; border-radius:8px;
  color: var(--stone);
  display:flex; align-items:center; justify-content:center;
  transition: background var(--dur-fast) var(--ease), color var(--dur-fast) var(--ease);
}
.copy-btn:hover{ background: var(--bg-alt); color: var(--forest); }
.copy-btn.is-copied{ color: var(--lime-2); }
.info-social{ display:flex; gap:12px; margin: 8px 0 26px; }
.info-social a{
  width:42px; height:42px; border-radius:50%;
  background: var(--forest); color: var(--white);
  display:flex; align-items:center; justify-content:center;
  transition: background var(--dur-fast) var(--ease);
}
.info-social a svg{ width:28px; height:28px; }
.info-social a:hover{ background: var(--lime-2); }
.map-embed{ border-radius: var(--radius-md); overflow:hidden; box-shadow: var(--shadow-soft); }
.map-embed iframe{ width:100%; height: 220px; border:0; display:block; }

.contact-form{
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 36px;
  box-shadow: var(--shadow-soft);
}
.form-row{ display:grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-field{ margin-bottom: 20px; }
.form-field label{ display:block; font-size:.85rem; font-weight:700; color: var(--forest); margin-bottom:7px; }
.form-field input, .form-field textarea, .form-field select{
  width:100%;
  padding: 12px 14px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--paper);
  transition: border-color var(--dur-fast) var(--ease), box-shadow var(--dur-fast) var(--ease);
}
.form-field input:focus, .form-field textarea:focus, .form-field select:focus{
  outline:none;
  border-color: var(--lime);
  box-shadow: 0 0 0 3px rgba(120,183,25,.18);
}
.form-actions{ display:flex; gap:14px; flex-wrap:wrap; margin-top: 6px; }
.form-actions .btn{ flex:1; min-width: 200px; }
.form-note{ font-size:.78rem; color: var(--text-muted); margin: 14px 0 0; }

/* =========================================================
   GALLERY
   ========================================================= */
.gallery-section{ background: var(--bg-alt); }
.gallery-item{
  position: relative;
  display:block;
  width:100%;
  aspect-ratio: 4/3;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  padding:0; border:0;
  transition: transform var(--dur-med) var(--ease), box-shadow var(--dur-med) var(--ease);
}
.gallery-item:hover{ transform: translateY(-6px); box-shadow: var(--shadow-lift); }
.gallery-item img{
  width:100%; height:100%; object-fit: cover;
  transition: transform var(--dur-slow) var(--ease);
}
.gallery-item:hover img{ transform: scale(1.08); }
.gallery-caption{
  position:absolute; inset: auto 0 0 0;
  display:flex; flex-direction:column; gap:2px;
  padding: 18px 20px 16px;
  text-align:left;
  background: linear-gradient(0deg, rgba(1,34,25,.92) 10%, transparent 100%);
  color: rgba(255,255,255,.85);
  font-size: .82rem;
  opacity: 0; transform: translateY(8px);
  transition: opacity var(--dur-fast) var(--ease), transform var(--dur-fast) var(--ease);
}
.gallery-caption strong{ color: var(--white); font-size: .95rem; font-family: var(--font-display); font-weight:600; }
.gallery-item:hover .gallery-caption, .gallery-item:focus-visible .gallery-caption{ opacity:1; transform: translateY(0); }

.lightbox{
  position: fixed; inset:0; z-index: 200;
  display:flex; flex-direction:column; align-items:center; justify-content:center; gap: 18px;
  padding: 40px 20px;
  background: rgba(1,34,25,.94);
  opacity:0; visibility:hidden;
  transition: opacity var(--dur-med) var(--ease), visibility var(--dur-med);
}
.lightbox.open{ opacity:1; visibility:visible; }
.lightbox img{
  max-width: min(880px, 92vw);
  max-height: 68vh;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lift);
  border-top: 4px solid var(--gold);
}
.lightbox-caption{
  color: rgba(255,255,255,.85);
  text-align:center;
  max-width: 600px;
  font-size:.92rem;
}
.lightbox-caption strong{ display:block; color: var(--white); font-family: var(--font-display); font-size:1.1rem; margin-bottom:.3em; }
.lightbox-close{
  position:absolute; top: 22px; right: 24px;
  width: 42px; height:42px; border-radius:50%;
  background: rgba(255,255,255,.1); color: var(--white);
  display:flex; align-items:center; justify-content:center;
  transition: background var(--dur-fast) var(--ease), transform var(--dur-fast) var(--ease);
}
.lightbox-close:hover{ background: var(--gold); color: var(--forest-3); transform: rotate(90deg); }

/* =========================================================
   LEGAL PAGES
   ========================================================= */
.legal-container{ max-width: 760px; }
.legal-container h2{ font-size: 1.3rem; margin-top: 2em; }
.legal-container h2:first-child{ margin-top:0; }
.legal-container p{ font-size: .97rem; }
.legal-note{
  display:flex; gap:12px; align-items:flex-start;
  margin-top: 3em; padding: 20px 22px;
  background: var(--bg-alt); border-left: 3px solid var(--gold);
  border-radius: var(--radius-sm);
}
.legal-note svg{ color: var(--forest); flex-shrink:0; margin-top:2px; }
.legal-note p{ margin:0; font-size:.86rem; }

/* =========================================================
   FOOTER
   ========================================================= */
/* =========================================================
   NEWSLETTER BAND
   ========================================================= */
.newsletter-band{ background: linear-gradient(120deg, var(--forest) 0%, var(--forest-2) 100%); }
.newsletter-inner{
  display:flex; align-items:center; justify-content:space-between; gap: 28px;
  padding: 40px 24px;
  flex-wrap: wrap;
}
.newsletter-text h3{ color: var(--white); font-size: 1.3rem; margin-bottom: .3em; }
.newsletter-text p{ color: rgba(255,255,255,.7); margin: 0; font-size: .92rem; }
.newsletter-form{ display:flex; gap: 10px; flex-wrap: wrap; }
.newsletter-form input{
  min-width: 240px;
  padding: 13px 16px;
  border-radius: var(--radius-sm);
  border: 1.5px solid rgba(255,255,255,.2);
  background: rgba(255,255,255,.08);
  color: var(--white);
}
.newsletter-form input::placeholder{ color: rgba(255,255,255,.5); }
.newsletter-form input:focus{ outline:none; border-color: var(--gold); background: rgba(255,255,255,.14); }

.site-footer{ background: var(--forest-3); color: rgba(255,255,255,.75); }
.footer-grid{
  display:grid; grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding: 72px 24px 48px;
}
.footer-brand{ display:flex; flex-direction:column; align-items:center; text-align:center; }
.footer-brand img{ height:82px; width:auto; max-width:none; object-fit:contain; margin: -6px 0 14px; filter: drop-shadow(0 0 2px rgba(255,255,255,.95)) drop-shadow(0 0 8px rgba(255,242,0,.38)); transform:none; }
.footer-brand p{ max-width:360px; }
.footer-social{ justify-content:center; }
.footer-brand p{ font-size:.88rem; color: rgba(255,255,255,.6); margin-bottom: 20px; }
.footer-social{ display:flex; gap:10px; }
.footer-social a{
  width:38px; height:38px; border-radius:50%;
  background: rgba(255,255,255,.08);
  display:flex; align-items:center; justify-content:center;
  transition: background var(--dur-fast) var(--ease), color var(--dur-fast) var(--ease);
}
.footer-social a svg{ width:28px; height:28px; }
.footer-social a:hover{ background: var(--gold); color: var(--forest-3); }
.footer-col h3{ color: var(--white); font-size: .95rem; font-family: var(--font-body); margin-bottom: 18px; }
.footer-col ul{ display:grid; gap:11px; }
.footer-col a{ font-size:.87rem; color: rgba(255,255,255,.62); transition: color var(--dur-fast) var(--ease); }
.footer-col a:hover{ color: var(--gold); }
.footer-contact li{ display:flex; align-items:flex-start; gap:9px; font-size:.87rem; color: rgba(255,255,255,.62); }
.footer-contact svg{ margin-top:3px; color: var(--gold); }

.footer-bottom{ border-top: 1px solid rgba(255,255,255,.1); }
.footer-bottom-inner{ padding: 20px 24px; text-align:center; font-size:.8rem; color: rgba(255,255,255,.5); }

/* =========================================================
   SKIP LINK (accessibility)
   ========================================================= */
.skip-link{
  position: fixed;
  top: -60px; left: 12px;
  z-index: 400;
  background: var(--gold);
  color: var(--forest-3);
  padding: 12px 20px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: .9rem;
  transition: top var(--dur-fast) var(--ease);
}
.skip-link:focus{ top: 12px; }

/* =========================================================
   SCROLL PROGRESS BAR
   ========================================================= */
.scroll-progress{
  position: fixed; top: 0; left: 0;
  height: 3px; width: 0%;
  background: linear-gradient(90deg, var(--lime), var(--gold));
  z-index: 300;
  transition: width .12s linear;
}

/* =========================================================
   FLOATING ACTIONS
   ========================================================= */
.whatsapp-fab{
  position: fixed; right: 24px; bottom: 24px; z-index: 80;
  width: 58px; height:58px; border-radius:50%;
  background: #25D366; color: var(--white);
  display:flex; align-items:center; justify-content:center;
  box-shadow: 0 10px 26px -8px rgba(37,211,102,.6);
  transition: transform var(--dur-fast) var(--ease);
}
.whatsapp-fab:hover{ transform: scale(1.08); }
.whatsapp-fab-tip{
  position:absolute; right: 68px;
  background: var(--forest-3); color:var(--white);
  padding: 7px 14px; border-radius: 8px;
  font-size:.8rem; font-weight:600; white-space:nowrap;
  opacity:0; transform: translateX(6px);
  transition: opacity var(--dur-fast) var(--ease), transform var(--dur-fast) var(--ease);
  pointer-events:none;
}
.whatsapp-fab:hover .whatsapp-fab-tip{ opacity:1; transform:translateX(0); }

.scroll-assist{
  position: fixed; right: 24px; bottom: 92px; z-index: 80;
  width: 42px; height:42px; border-radius:50%;
  background: var(--forest); color: var(--gold);
  display:flex; align-items:center; justify-content:center;
  box-shadow: var(--shadow-soft);
  transition: transform var(--dur-fast) var(--ease), background var(--dur-fast) var(--ease);
}
.scroll-assist:hover{ background: var(--forest-2); transform: scale(1.08); }
.scroll-assist.is-up svg{ transform: none; }


/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1080px){
  .about-grid{ grid-template-columns: 1fr; }
  .about-media{ max-width: 480px; margin: 0 auto; }
  .why-grid{ grid-template-columns: 1fr; }
  .why-media{ order:-1; max-width: 480px; margin: 0 auto; }
  .contact-grid{ grid-template-columns: 1fr; }
  .footer-grid{ grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px){
  .grid-3{ grid-template-columns: 1fr; }
  .partner-grid{ grid-template-columns: 1fr; }
  .nav-inner{ justify-content: space-between; }
  .nav-toggle{ display:flex; }
  .nav-logo{ position:absolute; left:50%; top:50%; transform:translate(-50%,-50%); z-index:94; }
  .nav-logo img{ height: 60px; width:auto; max-width:none; transform:none; filter: drop-shadow(0 0 2px rgba(255,255,255,.95)) drop-shadow(0 0 7px rgba(255,242,0,.42)); }

  .nav-list{
    position: fixed;
    top: 0; right: 0;
    height: 100vh;
    width: min(320px, 82vw);
    background: var(--forest-3);
    flex-direction: column;
    align-items: stretch;
    justify-content:flex-start;
    padding: 100px 28px 40px;
    gap: 4px;
    transform: translateX(100%);
    transition: transform var(--dur-med) var(--ease);
    z-index: 95;
  }
  .nav-list.open{ transform: translateX(0); }
  .nav-link{ padding: 14px 10px; font-size: 1rem; }
  .nav-link::after{ display:none; }
  .nav-backdrop.open{ display:block; opacity:1; }

  .topbar-right{ gap: 10px; }
  .topbar-email span{ display:none; }
}

@media (max-width: 640px){
  .section{ padding: 64px 0; }
  .hero{ min-height: 100vh; }
  .hero-slide-content{ padding: 110px 20px 20px; }
  .hero-static{ bottom: 90px; }
  .hero-actions{ flex-direction:column; align-items:stretch; margin-bottom: 1.2em; }
  .hero-badges{ gap: 10px; flex-direction:column; align-items:flex-start; }
  .form-row{ grid-template-columns: 1fr; }
  .footer-grid{ grid-template-columns: 1fr; padding: 56px 24px 32px; }
  .footer-brand img{ height: 64px; width:auto; max-width:none; margin: -4px 0 12px; transform:none; filter: drop-shadow(0 0 2px rgba(255,255,255,.95)) drop-shadow(0 0 8px rgba(255,242,0,.38)); }
  .footer-brand p{ max-width: 330px; }
  .container{ padding: 0 18px; }
  .contact-form{ padding: 24px; }
  .closing-cta-inner{ padding: 32px 24px; text-align:center; justify-content:center; }
  .whatsapp-fab, .scroll-assist{ right: 16px; }
  .whatsapp-fab{ width:52px; height:52px; bottom:16px; }
  .scroll-assist{ width:38px; height:38px; bottom: 80px; }
}


/* Live Markido source alignment */
.topbar-contact-person{
  color: rgba(255,255,255,.82);
  font-size:.78rem;
  font-weight:700;
  white-space:nowrap;
}
.price-list-wrap{ margin-top:72px; }
.price-grid{ display:grid; grid-template-columns:repeat(4,minmax(0,1fr)); gap:18px; }
.price-card{ background:var(--paper); border:1px solid var(--line); border-radius:var(--radius-md); padding:24px; box-shadow:var(--shadow-soft); }
.price-card h3{ font-size:1.08rem; min-height:2.5em; }
.price-value{ color:var(--forest); font-family:var(--font-display); font-size:1.35rem; font-weight:800; margin:.65em 0 .35em; }
.price-card p{ font-size:.88rem; }
.price-card ul{ margin:.9em 0 0; padding-left:1.15rem; list-style:disc; color:var(--ink-soft); font-size:.84rem; }
.price-card li{ margin:.35em 0; }
.faq-spec-list{ margin:0; padding-left:1.15rem; list-style:disc; color:var(--ink-soft); }
.faq-spec-list li{ margin:.35em 0; }
.legal-list{ padding-left:1.2rem; color:var(--ink-soft); }
.legal-list li{ margin:.55em 0; }
@media (max-width: 980px){ .price-grid{ grid-template-columns:repeat(2,minmax(0,1fr)); } }
@media (max-width: 600px){ .price-grid{ grid-template-columns:1fr; } .topbar-contact-person{ display:none; } }
