/* =====================================================
   AGRI TARGET FARM — Main Stylesheet
   ===================================================== */

/* ── Variables ── */
:root {
  --c-deep:   #0d3d1e;
  --c-dark:   #1a5c2e;
  --c-mid:    #2d8c4e;
  --c-light:  #4db870;
  --c-pale:   #e8f5ed;
  --c-amber:  #f0a500;
  --c-amber2: #ffd166;
  --c-bg:     #f7faf8;
  --c-text:   #0e1c14;
  --c-gray:   #6b7c74;
  --c-white:  #ffffff;

  --ff-head: 'Playfair Display', Georgia, serif;
  --ff-body: 'DM Sans', system-ui, sans-serif;

  --sh:       0 4px 24px rgba(13,61,30,.10);
  --sh-hover: 0 8px 40px rgba(13,61,30,.18);
  --r:        8px;
  --r-lg:     16px;
  --ease:     .3s ease;
  --max-w:    1200px;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--ff-body);
  font-size: 1rem;
  color: var(--c-text);
  background: var(--c-bg);
  line-height: 1.65;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }
input, select, textarea { font-family: var(--ff-body); }

/* ── Utilities ── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 1.5rem; }
.section    { padding: 5rem 0; }
.section-sm { padding: 3rem 0; }
.text-center { text-align: center; }

.section-tag {
  font-weight: 700; font-size: .75rem; letter-spacing: .12em;
  text-transform: uppercase; color: var(--c-amber);
  display: inline-block; margin-bottom: .6rem;
}
.section-title {
  font-family: var(--ff-head); font-weight: 700;
  font-size: clamp(1.8rem,3vw,2.8rem);
  color: var(--c-deep); line-height: 1.2; margin-bottom: 1rem;
}
.section-sub {
  color: var(--c-gray); font-size: 1rem;
  max-width: 640px; margin: 0 auto 2.5rem;
}
.section-title.light { color: var(--c-white); }
.section-sub.light   { color: rgba(255,255,255,.75); }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .75rem 1.75rem; border-radius: 50px;
  font-weight: 700; font-size: .95rem; transition: var(--ease);
  white-space: nowrap; font-family: var(--ff-body);
}
.btn-primary  { background: var(--c-amber); color: var(--c-deep); }
.btn-primary:hover  { background: var(--c-amber2); transform: translateY(-2px); box-shadow: var(--sh); }
.btn-outline  { border: 2px solid var(--c-white); color: var(--c-white); }
.btn-outline:hover  { background: var(--c-white); color: var(--c-deep); }
.btn-green    { background: var(--c-mid); color: var(--c-white); }
.btn-green:hover    { background: var(--c-dark); transform: translateY(-2px); box-shadow: var(--sh); }
.btn-ghost    { border: 2px solid var(--c-mid); color: var(--c-mid); }
.btn-ghost:hover    { background: var(--c-mid); color: var(--c-white); }
.btn-sm       { padding: .55rem 1.25rem; font-size: .875rem; }

/* ── Top Bar ── */
.top-bar {
  background: var(--c-deep); color: rgba(255,255,255,.8);
  font-size: .8rem; padding: .45rem 0;
}
.top-bar .container { display: flex; justify-content: space-between; align-items: center; gap: 1rem; flex-wrap: wrap; }
.top-bar a { color: inherit; transition: color var(--ease); }
.top-bar a:hover { color: var(--c-amber); }
.top-bar-left, .top-bar-right { display: flex; align-items: center; gap: 1.25rem; flex-wrap: wrap; }
.top-bar-right .socials { display: flex; gap: .75rem; }
.top-bar-right .socials a { font-size: .9rem; width: 22px; height: 22px; display: flex; align-items: center; justify-content: center; }

/* ── Navbar ── */
.navbar {
  background: var(--c-white); position: sticky; top: 0; z-index: 1000;
  box-shadow: 0 2px 12px rgba(0,0,0,.06); transition: box-shadow var(--ease);
}
.navbar.scrolled { box-shadow: 0 4px 24px rgba(13,61,30,.14); }
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px; gap: 1rem;
}
.nav-logo { display: flex; align-items: center; gap: .65rem; flex-shrink: 0; }
.nav-logo img { height: 56px; width: auto; }
.nav-logo-svg { height: 56px; width: auto; }
.nav-brand { line-height: 1.2; }
.nav-brand-main {
  font-family: var(--ff-head); font-weight: 900; font-size: 1.1rem;
  color: var(--c-deep); display: block;
}
.nav-brand-sub {
  font-size: .65rem; font-weight: 600; letter-spacing: .1em;
  color: var(--c-amber); text-transform: uppercase; display: block;
}
.nav-menu { display: flex; align-items: center; gap: .15rem; }
.nav-menu > li { position: relative; }
.nav-menu > li > a {
  font-weight: 500; font-size: .88rem; color: var(--c-text);
  padding: .55rem .75rem; border-radius: var(--r); display: block;
  transition: color var(--ease), background var(--ease); white-space: nowrap;
}
.nav-menu > li > a:hover,
.nav-menu > li.active > a { color: var(--c-dark); background: var(--c-pale); }
.has-dropdown > a::after { content: ' ▾'; font-size: .6rem; opacity: .6; }

.dropdown {
  position: absolute; top: calc(100% + .5rem); left: 0;
  background: var(--c-white); border-radius: var(--r); box-shadow: var(--sh);
  min-width: 220px; padding: .5rem 0;
  opacity: 0; visibility: hidden; transform: translateY(-8px);
  transition: all var(--ease); z-index: 100;
}
.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown li a {
  display: block; padding: .6rem 1.25rem; font-size: .875rem;
  color: var(--c-text); transition: background var(--ease), color var(--ease);
}
.dropdown li a:hover { background: var(--c-pale); color: var(--c-dark); }

.btn-quote {
  background: var(--c-mid) !important; color: var(--c-white) !important;
  padding: .6rem 1.35rem !important; border-radius: 50px !important;
  font-weight: 700 !important; font-size: .88rem !important;
  transition: background var(--ease), transform var(--ease) !important;
}
.btn-quote:hover { background: var(--c-dark) !important; transform: translateY(-1px) !important; }

.hamburger { display: none; flex-direction: column; gap: 5px; padding: 6px; cursor: pointer; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--c-text); border-radius: 2px; transition: var(--ease); }
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nav-overlay { position: fixed; inset: 0; background: rgba(0,0,0,.45); z-index: 999; opacity: 0; visibility: hidden; transition: var(--ease); }
.nav-overlay.active { opacity: 1; visibility: visible; }

/* ── Hero Slider ── */
.hero-slider { position: relative; overflow: hidden; height: clamp(480px,70vh,700px); }
.slide { position: absolute; inset: 0; display: flex; align-items: center; opacity: 0; transition: opacity .9s ease; }
.slide.active { opacity: 1; z-index: 2; }
.slide-bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.slide-overlay { position: absolute; inset: 0; background: linear-gradient(to right, rgba(13,61,30,.82) 0%, rgba(13,61,30,.35) 60%, transparent 100%); }
.slide-1 .slide-bg { background-image: url(../images/hero-banner.jpg); background-size: cover; background-position: center; }
.slide-2 .slide-bg { background-image: url(../images/gallery/hydro-1.jpg); background-size: cover; background-position: center; }
.slide-3 .slide-bg { background-image: url(../images/gallery/poly-9.jpg); background-size: cover; background-position: center; }
/* decorative circles on slides */
.slide::after {
  content: ''; position: absolute; right: 8%; top: 50%; transform: translateY(-50%);
  width: clamp(280px,35vw,480px); height: clamp(280px,35vw,480px);
  border-radius: 50%; border: 60px solid rgba(255,255,255,.04);
  pointer-events: none; z-index: 1;
}
.slide-content { position: relative; z-index: 3; max-width: 640px; padding: 0 2rem; }
.slide-tag {
  font-weight: 700; font-size: .72rem; letter-spacing: .15em;
  text-transform: uppercase; color: var(--c-amber);
  display: inline-block; background: rgba(240,165,0,.15);
  padding: .35rem 1rem; border-radius: 50px; margin-bottom: 1rem;
}
.slide-title {
  font-family: var(--ff-head); font-weight: 900;
  font-size: clamp(2rem,5vw,3.6rem); color: var(--c-white);
  line-height: 1.1; margin-bottom: 1rem;
}
.slide-title em { color: var(--c-amber); font-style: normal; }
.slide-text { color: rgba(255,255,255,.85); font-size: 1.05rem; margin-bottom: 2rem; max-width: 520px; }
.slide-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.slider-controls {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  display: flex; align-items: center; gap: 1rem; z-index: 10;
}
.slider-dots { display: flex; gap: .5rem; align-items: center; }
.slider-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: rgba(255,255,255,.35); border: 2px solid rgba(255,255,255,.6);
  cursor: pointer; transition: var(--ease);
}
.slider-dot.active { background: var(--c-amber); border-color: var(--c-amber); width: 28px; border-radius: 5px; }
.slider-arrow {
  width: 42px; height: 42px; border-radius: 50%;
  background: rgba(255,255,255,.12); border: 2px solid rgba(255,255,255,.35);
  color: white; font-size: 1rem; display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: var(--ease);
}
.slider-arrow:hover { background: var(--c-amber); border-color: var(--c-amber); }

/* ── Stats Bar ── */
.stats-bar { background: var(--c-deep); padding: 2rem 0; }
.stats-grid {
  display: grid; grid-template-columns: repeat(5, 1fr);
  text-align: center;
}
.stat-item { padding: 1.5rem 1rem; border-right: 1px solid rgba(255,255,255,.1); }
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: var(--ff-head); font-weight: 900;
  font-size: clamp(2rem,3.5vw,2.8rem); color: var(--c-amber);
  line-height: 1; display: block;
}
.stat-label {
  font-size: .78rem; color: rgba(255,255,255,.7);
  text-transform: uppercase; letter-spacing: .08em;
  margin-top: .35rem; font-weight: 500;
}

/* ── Why Choose Us ── */
.why-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(230px,1fr)); gap: 1.5rem; margin-top: 2.5rem; }
.why-card {
  background: var(--c-white); border-radius: var(--r-lg); padding: 2rem 1.5rem;
  box-shadow: var(--sh); text-align: center;
  transition: transform var(--ease), box-shadow var(--ease), border-color var(--ease);
  border-bottom: 3px solid transparent;
}
.why-card:hover { transform: translateY(-6px); box-shadow: var(--sh-hover); border-bottom-color: var(--c-amber); }
.why-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.why-title { font-family: var(--ff-head); font-weight: 700; font-size: 1.1rem; color: var(--c-deep); margin-bottom: .6rem; }
.why-text  { font-size: .9rem; color: var(--c-gray); }

/* ── Project / Service Cards ── */
.cards-grid   { display: grid; grid-template-columns: repeat(auto-fill,minmax(290px,1fr)); gap: 1.75rem; margin-top: 2.5rem; }
.cards-grid-3 { display: grid; grid-template-columns: repeat(auto-fill,minmax(240px,1fr)); gap: 1.5rem;  margin-top: 2.5rem; }

.card { background: var(--c-white); border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--sh); transition: transform var(--ease), box-shadow var(--ease); }
.card:hover { transform: translateY(-6px); box-shadow: var(--sh-hover); }
.card-img {
  height: 190px; background: var(--c-pale);
  display: flex; align-items: center; justify-content: center;
  font-size: 3.5rem; position: relative; overflow: hidden;
}
.card-img-bg { position: absolute; inset: 0; background: linear-gradient(135deg, var(--c-pale) 0%, rgba(45,140,78,.12) 100%); }
.card-img > span { position: relative; z-index: 1; }
.card-body { padding: 1.5rem; }
.card-tag {
  font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em;
  color: var(--c-mid); background: var(--c-pale);
  padding: .2rem .7rem; border-radius: 50px; display: inline-block; margin-bottom: .75rem;
}
.card-title { font-family: var(--ff-head); font-weight: 700; font-size: 1.15rem; color: var(--c-deep); margin-bottom: .55rem; }
.card-text  { font-size: .9rem; color: var(--c-gray); margin-bottom: 1.25rem; }
.card-link  {
  font-size: .875rem; font-weight: 700; color: var(--c-mid);
  display: inline-flex; align-items: center; gap: .4rem;
  transition: gap var(--ease), color var(--ease);
}
.card-link:hover { color: var(--c-dark); gap: .65rem; }

.benefit-list { margin: .75rem 0 1.25rem; }
.benefit-list li { font-size: .875rem; color: var(--c-gray); padding: .3rem 0 .3rem 1.4rem; position: relative; }
.benefit-list li::before { content: '✓'; position: absolute; left: 0; color: var(--c-mid); font-weight: 700; }

/* ── Testimonials ── */
.testimonials-bg { background: var(--c-pale); }
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(290px,1fr)); gap: 1.75rem; margin-top: 2.5rem; }
.testimonial-card { background: var(--c-white); border-radius: var(--r-lg); padding: 2rem; box-shadow: var(--sh); position: relative; }
.testimonial-card::before {
  content: '\201C'; font-family: var(--ff-head); font-size: 5rem; color: var(--c-pale);
  position: absolute; top: .5rem; left: 1.5rem; line-height: 1;
}
.stars { color: var(--c-amber); font-size: 1rem; margin-bottom: .75rem; }
.testimonial-text { font-size: .95rem; color: var(--c-gray); margin-bottom: 1.5rem; position: relative; z-index: 1; }
.testimonial-author { display: flex; align-items: center; gap: .75rem; }
.author-avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--c-pale); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; flex-shrink: 0; }
.author-name { font-weight: 600; font-size: .9rem; color: var(--c-text); }
.author-loc  { font-size: .8rem; color: var(--c-gray); }

/* ── FAQ Accordion ── */
.faq-list { max-width: 800px; margin: 2.5rem auto 0; }
.faq-cat-title { font-family: var(--ff-head); font-weight: 700; font-size: 1.1rem; color: var(--c-dark); margin: 2rem 0 .75rem; border-left: 4px solid var(--c-amber); padding-left: .75rem; }
.faq-item { border: 1px solid rgba(45,140,78,.15); border-radius: var(--r); margin-bottom: .65rem; overflow: hidden; transition: box-shadow var(--ease); }
.faq-item.open { box-shadow: var(--sh); }
.faq-question {
  width: 100%; display: flex; justify-content: space-between; align-items: center;
  padding: 1.2rem 1.5rem; text-align: left;
  font-weight: 600; font-size: .975rem; color: var(--c-text);
  background: var(--c-white); gap: 1rem; transition: color var(--ease), background var(--ease);
}
.faq-question:hover,
.faq-item.open .faq-question { background: var(--c-pale); color: var(--c-dark); }
.faq-icon {
  width: 26px; height: 26px; border-radius: 50%; background: var(--c-pale);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.15rem; flex-shrink: 0; transition: transform var(--ease), background var(--ease);
  color: var(--c-mid); font-weight: 700; line-height: 1;
}
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--c-mid); color: white; }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .45s ease; }
.faq-answer-inner { padding: 0 1.5rem 1.25rem; font-size: .925rem; color: var(--c-gray); line-height: 1.7; }

/* ── Quote / Contact Forms ── */
.quote-section { background: var(--c-deep); }
.quote-form-wrap {
  max-width: 820px; margin: 2.5rem auto 0;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-lg); padding: 2.5rem;
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.form-full  { grid-column: 1 / -1; }
.form-group { display: flex; flex-direction: column; gap: .45rem; }
.form-label { font-size: .85rem; font-weight: 600; color: rgba(255,255,255,.8); }
.form-control {
  width: 100%; padding: .75rem 1rem;
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--r); color: var(--c-white);
  font-size: .9rem; transition: border-color var(--ease), background var(--ease);
}
.form-control::placeholder { color: rgba(255,255,255,.4); }
.form-control:focus { outline: none; border-color: var(--c-amber); background: rgba(255,255,255,.14); }
.form-control option { color: var(--c-text); background: var(--c-white); }
textarea.form-control { resize: vertical; min-height: 110px; }

/* Light form variant */
.form-light .form-label { color: var(--c-gray); }
.form-light .form-control { background: var(--c-white); border: 1px solid rgba(45,140,78,.2); color: var(--c-text); }
.form-light .form-control:focus { border-color: var(--c-mid); }
.form-light .form-control::placeholder { color: rgba(107,124,116,.55); }

/* ── Footer ── */
.footer { background: var(--c-deep); color: rgba(255,255,255,.75); padding: 4.5rem 0 2rem; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.4fr; gap: 3rem; margin-bottom: 3rem; }
.footer-brand .nav-brand-main { color: var(--c-white); }
.footer-brand .nav-brand-sub  { color: var(--c-amber2); }
.footer-brand .nav-logo { margin-bottom: 1.1rem; }
.footer-about { font-size: .875rem; line-height: 1.75; color: rgba(255,255,255,.6); margin-bottom: 1.5rem; }
.footer-socials { display: flex; gap: .65rem; flex-wrap: wrap; }
.footer-social {
  width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center; font-size: .85rem;
  transition: background var(--ease), transform var(--ease); color: rgba(255,255,255,.8);
}
.footer-social:hover { background: var(--c-amber); transform: translateY(-3px); color: var(--c-deep); }
.footer-title { font-family: var(--ff-head); font-weight: 700; font-size: 1rem; color: var(--c-white); margin-bottom: 1.25rem; }
.footer-links li { margin-bottom: .6rem; }
.footer-links a { font-size: .875rem; color: rgba(255,255,255,.65); transition: color var(--ease), padding-left var(--ease); }
.footer-links a:hover { color: var(--c-amber); padding-left: 4px; }
.footer-contact-item { display: flex; gap: .75rem; margin-bottom: .85rem; font-size: .875rem; align-items: flex-start; }
.footer-contact-item .icon { color: var(--c-amber); flex-shrink: 0; margin-top: .15rem; }
.footer-contact-item a { color: rgba(255,255,255,.7); transition: color var(--ease); }
.footer-contact-item a:hover { color: var(--c-amber); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1); padding-top: 1.5rem;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: .75rem; font-size: .82rem; color: rgba(255,255,255,.45);
}
.footer-bottom a { color: var(--c-amber2); }

/* ── WhatsApp Float ── */
.whatsapp-float { position: fixed; bottom: 2rem; right: 2rem; z-index: 999; display: flex; flex-direction: column; align-items: flex-end; gap: .5rem; }
.whatsapp-btn {
  width: 58px; height: 58px; border-radius: 50%; background: #25D366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.4);
  transition: transform var(--ease), box-shadow var(--ease);
  font-size: 1.6rem; color: white;
}
.whatsapp-btn:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,.55); }
.whatsapp-tooltip {
  background: var(--c-white); color: var(--c-text);
  font-size: .8rem; font-weight: 600; padding: .4rem .9rem;
  border-radius: 50px; box-shadow: var(--sh); white-space: nowrap;
  opacity: 0; transform: translateX(10px); transition: var(--ease); pointer-events: none;
}
.whatsapp-float:hover .whatsapp-tooltip { opacity: 1; transform: translateX(0); }

/* ── Welcome Popup ── */
.popup-overlay {
  position: fixed; inset: 0; background: rgba(13,61,30,.55);
  backdrop-filter: blur(4px); z-index: 9999;
  display: flex; align-items: center; justify-content: center; padding: 1rem;
  opacity: 0; visibility: hidden; transition: var(--ease);
}
.popup-overlay.visible { opacity: 1; visibility: visible; }
.popup-box {
  background: var(--c-white); border-radius: var(--r-lg); max-width: 480px; width: 100%;
  overflow: hidden; box-shadow: 0 20px 60px rgba(0,0,0,.3);
  transform: scale(.9); transition: transform var(--ease);
}
.popup-overlay.visible .popup-box { transform: scale(1); }
.popup-header { background: var(--c-dark); padding: 2rem; text-align: center; position: relative; }
.popup-close {
  position: absolute; top: 1rem; right: 1rem;
  width: 30px; height: 30px; border-radius: 50%;
  background: rgba(255,255,255,.15); color: white; font-size: 1rem;
  display: flex; align-items: center; justify-content: center; cursor: pointer;
  transition: background var(--ease);
}
.popup-close:hover { background: rgba(255,255,255,.3); }
.popup-icon { font-size: 2.5rem; margin-bottom: .75rem; }
.popup-headline { font-family: var(--ff-head); font-size: 1.6rem; color: white; font-weight: 700; }
.popup-subline { font-size: .9rem; color: rgba(255,255,255,.75); margin-top: .35rem; }
.popup-body { padding: 2rem; text-align: center; }
.popup-offer { background: var(--c-pale); border-radius: var(--r); padding: 1rem; margin-bottom: 1.5rem; font-size: .95rem; color: var(--c-dark); }
.popup-offer strong { color: var(--c-dark); font-weight: 700; }
.popup-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.popup-skip { font-size: .8rem; color: var(--c-gray); margin-top: 1rem; cursor: pointer; text-decoration: underline; }

/* ── Cookie Banner ── */
.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0;
  background: var(--c-deep); color: rgba(255,255,255,.85);
  padding: 1rem 1.5rem; z-index: 9998;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.5rem; flex-wrap: wrap;
  transform: translateY(100%); transition: transform .5s ease;
}
.cookie-banner.visible { transform: translateY(0); }
.cookie-text { font-size: .875rem; flex: 1; }
.cookie-text a { color: var(--c-amber); text-decoration: underline; }
.cookie-actions { display: flex; gap: .75rem; flex-shrink: 0; align-items: center; }
.btn-accept  { background: var(--c-amber); color: var(--c-deep); padding: .5rem 1.35rem; border-radius: 50px; font-weight: 700; font-size: .85rem; cursor: pointer; }
.btn-decline { color: rgba(255,255,255,.55); font-size: .85rem; text-decoration: underline; cursor: pointer; }

/* ── Page Banner ── */
.page-banner {
  background: linear-gradient(135deg, var(--c-deep) 0%, var(--c-dark) 100%);
  padding: 4.5rem 0 3.5rem; text-align: center; position: relative; overflow: hidden;
}
.page-banner::before {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(circle at 80% 50%, rgba(77,184,112,.08) 0%, transparent 60%);
}
.page-banner-title {
  font-family: var(--ff-head); font-weight: 900;
  font-size: clamp(2rem,5vw,3rem); color: var(--c-white);
  position: relative; margin-bottom: .75rem;
}
.breadcrumb {
  display: flex; align-items: center; justify-content: center;
  gap: .5rem; font-size: .875rem; color: rgba(255,255,255,.6); position: relative;
}
.breadcrumb a { color: var(--c-amber); transition: color var(--ease); }
.breadcrumb a:hover { color: var(--c-amber2); }

/* ── Gallery ── */
.gallery-tabs { display: flex; gap: .5rem; justify-content: center; flex-wrap: wrap; margin-bottom: 2.5rem; }
.gallery-tab {
  padding: .5rem 1.25rem; border-radius: 50px; font-size: .875rem; font-weight: 600;
  border: 2px solid rgba(45,140,78,.2); color: var(--c-gray); cursor: pointer; transition: var(--ease);
}
.gallery-tab:hover, .gallery-tab.active { background: var(--c-mid); border-color: var(--c-mid); color: white; }
.gallery-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1rem; }
.gallery-item {
  aspect-ratio: 4/3; border-radius: var(--r); overflow: hidden;
  cursor: pointer; position: relative; background: var(--c-pale);
}
.gallery-item-inner {
  width: 100%; height: 100%; display: flex; align-items: center; justify-content: center;
  font-size: 2.75rem; background: linear-gradient(135deg, var(--c-pale), rgba(45,140,78,.1));
  transition: transform var(--ease);
}
.gallery-item-inner img { width: 100%; height: 100%; object-fit: cover; display: block; }
.gallery-item:hover .gallery-item-inner { transform: scale(1.06); }
.gallery-item-overlay {
  position: absolute; inset: 0; background: rgba(13,61,30,.5);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity var(--ease); font-size: 1.5rem; color: white;
}
.gallery-item:hover .gallery-item-overlay { opacity: 1; }
.gallery-label {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(13,61,30,.8));
  color: white; font-size: .8rem; font-weight: 600; padding: .5rem .75rem;
  opacity: 0; transition: opacity var(--ease);
}
.gallery-item:hover .gallery-label { opacity: 1; }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; background: rgba(0,0,0,.93); z-index: 10000;
  display: flex; align-items: center; justify-content: center; padding: 1rem;
  opacity: 0; visibility: hidden; transition: var(--ease);
}
.lightbox.active { opacity: 1; visibility: visible; }
.lightbox-img-wrap { max-width: min(90vw,700px); max-height: 80vh; }
.lightbox-img-wrap .lb-content {
  border-radius: var(--r-lg); background: linear-gradient(135deg, var(--c-pale), rgba(45,140,78,.1));
  display: flex; align-items: center; justify-content: center;
  width: min(90vw,700px); height: min(70vh,500px);
}
.lb-emoji { font-size: 9rem; }
.lb-caption { color: rgba(255,255,255,.8); text-align: center; margin-top: .75rem; font-size: .9rem; }
.lightbox-close, .lightbox-prev, .lightbox-next {
  position: fixed; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2);
  color: white; border-radius: 50%; width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: background var(--ease); font-size: 1rem;
}
.lightbox-close { top: 1.5rem; right: 1.5rem; font-size: 1.2rem; }
.lightbox-prev  { left: 1.5rem; top: 50%; transform: translateY(-50%); }
.lightbox-next  { right: 1.5rem; top: 50%; transform: translateY(-50%); }
.lightbox-close:hover, .lightbox-prev:hover, .lightbox-next:hover { background: var(--c-amber); border-color: var(--c-amber); color: var(--c-deep); }

/* ── Team ── */
.team-grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(250px,1fr)); gap: 2rem; margin-top: 2.5rem; }
.team-card { background: var(--c-white); border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--sh); text-align: center; transition: transform var(--ease), box-shadow var(--ease); }
.team-card:hover { transform: translateY(-6px); box-shadow: var(--sh-hover); }
.team-photo { height: 270px; background: var(--c-pale); display: flex; align-items: center; justify-content: center; overflow: hidden; }
.team-photo img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }
.team-info { padding: 1.5rem; }
.team-name { font-family: var(--ff-head); font-weight: 700; font-size: 1.1rem; color: var(--c-deep); }
.team-role { font-size: .85rem; color: var(--c-mid); font-weight: 600; margin: .3rem 0 .75rem; }
.team-bio  { font-size: .875rem; color: var(--c-gray); }

/* ── Process ── */
.process-wrap { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: .5rem; margin-top: 3rem; }
.process-step { display: flex; flex-direction: column; align-items: center; gap: .5rem; text-align: center; min-width: 80px; }
.step-circle {
  width: 54px; height: 54px; border-radius: 50%; background: var(--c-dark);
  color: white; font-weight: 700; font-size: 1.1rem; display: flex; align-items: center; justify-content: center;
  border: 3px solid var(--c-pale);
}
.step-label { font-size: .78rem; font-weight: 600; color: var(--c-dark); max-width: 75px; line-height: 1.3; }
.process-arrow { color: var(--c-amber2); font-size: 1.5rem; align-self: flex-start; margin-top: 14px; }

/* ── Careers ── */
.job-grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(310px,1fr)); gap: 1.5rem; margin-top: 2.5rem; }
.job-card {
  background: var(--c-white); border-radius: var(--r-lg); padding: 1.75rem;
  box-shadow: var(--sh); border-left: 4px solid var(--c-mid);
  transition: transform var(--ease), box-shadow var(--ease);
}
.job-card:hover { transform: translateY(-4px); box-shadow: var(--sh-hover); }
.job-title { font-family: var(--ff-head); font-weight: 700; font-size: 1.1rem; color: var(--c-deep); margin-bottom: .5rem; }
.job-meta  { display: flex; gap: .65rem; flex-wrap: wrap; margin-bottom: 1rem; }
.job-badge { font-size: .72rem; font-weight: 600; padding: .2rem .65rem; border-radius: 50px; background: var(--c-pale); color: var(--c-mid); }

/* ── Contact ── */
.contact-wrap { display: grid; grid-template-columns: 1fr 1.6fr; gap: 3rem; align-items: start; margin-top: 2.5rem; }
.contact-info-card { background: var(--c-deep); border-radius: var(--r-lg); padding: 2.5rem; }
.contact-info-title { font-family: var(--ff-head); font-weight: 700; font-size: 1.4rem; color: white; margin-bottom: 2rem; }
.c-info-item { display: flex; gap: 1rem; margin-bottom: 1.5rem; align-items: flex-start; }
.c-info-icon { color: var(--c-amber); font-size: 1.1rem; flex-shrink: 0; margin-top: .1rem; }
.c-info-label { font-size: .75rem; text-transform: uppercase; letter-spacing: .08em; color: rgba(255,255,255,.5); font-weight: 600; margin-bottom: .2rem; }
.c-info-value { font-size: .9rem; color: rgba(255,255,255,.85); }
.c-info-value a { color: rgba(255,255,255,.85); transition: color var(--ease); }
.c-info-value a:hover { color: var(--c-amber); }
.map-wrap { border-radius: var(--r-lg); overflow: hidden; margin-top: 2rem; }
.map-wrap iframe { width: 100%; height: 280px; border: none; display: block; }
.contact-socials { display: flex; gap: .65rem; margin-top: 1.5rem; }
.contact-form-card { background: var(--c-white); border-radius: var(--r-lg); padding: 2.5rem; box-shadow: var(--sh); }
.contact-form-title { font-family: var(--ff-head); font-weight: 700; font-size: 1.4rem; color: var(--c-deep); margin-bottom: 2rem; }

/* ── CTA Banner ── */
.cta-section { background: linear-gradient(135deg, var(--c-deep) 0%, var(--c-dark) 100%); padding: 5rem 0; text-align: center; position: relative; overflow: hidden; }
.cta-section::before { content: ''; position: absolute; inset: 0; background-image: radial-gradient(circle at 30% 50%, rgba(77,184,112,.08) 0%, transparent 60%); }
.cta-section .container { position: relative; z-index: 1; }
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-top: 2rem; }

/* ── Scroll Reveal ── */
.reveal       { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.reveal-left  { opacity: 0; transform: translateX(-28px); transition: opacity .7s ease, transform .7s ease; }
.reveal-right { opacity: 0; transform: translateX(28px);  transition: opacity .7s ease, transform .7s ease; }
.reveal.visible, .reveal-left.visible, .reveal-right.visible { opacity: 1; transform: none; }

/* ── 404 ── */
.not-found { min-height: 65vh; display: flex; align-items: center; justify-content: center; text-align: center; padding: 3rem 1.5rem; }
.err-code { font-family: var(--ff-head); font-size: clamp(6rem,18vw,11rem); font-weight: 900; color: var(--c-pale); line-height: 1; }
.err-title { font-family: var(--ff-head); font-size: 2rem; color: var(--c-deep); margin-bottom: .75rem; }
.err-text  { color: var(--c-gray); margin-bottom: 2rem; }

/* ── Highlight Box ── */
.highlight-box { background: var(--c-pale); border-left: 4px solid var(--c-amber); border-radius: 0 var(--r) var(--r) 0; padding: 1.25rem 1.5rem; margin: 1.5rem 0; }

/* ── Video Section ── */
.video-grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(300px,1fr)); gap: 1.5rem; margin-top: 2rem; }
.video-item { border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--sh); aspect-ratio: 16/9; }
.video-item iframe { width: 100%; height: 100%; border: none; }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid  { grid-template-columns: repeat(3,1fr); }
  .stats-grid .stat-item:nth-child(3) { border-right: none; }
}

@media (max-width: 768px) {
  .top-bar-left { display: none; }
  .nav-menu {
    position: fixed; top: 0; right: -100%; width: 85%; max-width: 340px; height: 100vh;
    background: var(--c-white); flex-direction: column; align-items: flex-start;
    padding: 5rem 2rem 2rem; box-shadow: -8px 0 40px rgba(0,0,0,.15);
    transition: right .4s ease; overflow-y: auto; gap: 0; z-index: 1001;
  }
  .nav-menu.open { right: 0; }
  .nav-menu > li { width: 100%; }
  .nav-menu > li > a { padding: .85rem 0; border-radius: 0; border-bottom: 1px solid var(--c-pale); font-size: 1rem; }
  .nav-menu > li:last-child > a { border-bottom: none; }
  .dropdown { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; background: var(--c-pale); border-radius: var(--r); padding: .25rem 0; max-height: 0; overflow: hidden; transition: max-height .35s ease; }
  .has-dropdown.open .dropdown { max-height: 600px; }
  .hamburger { display: flex; }
  .btn-quote { display: inline-flex; margin-top: 1rem; }

  .hero-slider { height: clamp(420px,65vh,580px); }
  .slide-title { font-size: clamp(1.8rem,6vw,2.4rem); }

  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .stats-grid .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,.1); }
  .stats-grid .stat-item:last-child,
  .stats-grid .stat-item:nth-last-child(2) { border-bottom: none; }

  .cards-grid { grid-template-columns: 1fr; }
  .form-grid   { grid-template-columns: 1fr; }
  .contact-wrap { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2,1fr); }
  .footer-grid  { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .quote-form-wrap { padding: 1.5rem 1.25rem; }
  .process-arrow { display: none; }
}

@media (max-width: 480px) {
  .gallery-grid  { grid-template-columns: 1fr; }
  .hero-slider   { height: 540px; }
  .slide-actions { flex-direction: column; }
  .slide-text    { font-size: .95rem; }
  .stats-grid    { grid-template-columns: 1fr 1fr; }
  .section       { padding: 3.5rem 0; }
}
