﻿:root {
  --green-950: #0b2f23;
  --green-900: #0f3d2e;
  --green-700: #1b5f48;
  --green-500: #2f8a66;
  --green-100: #edf7f2;
  --gold-500: #c9a86a;
  --gold-300: #e6d2aa;
  --sand-100: #f7f3ea;
  --text-900: #1f2c25;
  --text-600: #5b6a62;
  --white: #ffffff;
  --shadow-sm: 0 8px 20px rgba(14, 49, 37, 0.08);
  --shadow-lg: 0 18px 46px rgba(12, 43, 32, 0.16);
  --radius: 14px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Segoe UI", "Inter", Arial, sans-serif;
  color: var(--text-900);
  line-height: 1.65;
  background: radial-gradient(circle at 0% 0%, #f2fbf5 0%, #ffffff 55%);
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; border-radius: 12px; }
.section-feature-image { width: 100%; min-height: 430px; object-fit: cover; object-position: center; box-shadow: var(--shadow-lg); }
.container { width: min(1160px, 92%); margin: 0 auto; }
.section { padding: 5rem 0; }
.section-alt { background: linear-gradient(180deg, #f4fbf7, #f9fcfa); }
.section-title { font-size: clamp(1.9rem, 4vw, 2.7rem); line-height: 1.2; margin: 0 0 .75rem; color: var(--green-900); }
.section-subtitle { margin-top: 0; color: var(--text-600); }

.header {
  position: sticky;
  top: 0;
  z-index: 1200;
  background: rgba(255,255,255,.94);
  border-bottom: 1px solid #e2ece6;
  backdrop-filter: blur(8px);
  transition: box-shadow .25s ease;
}
.header.scrolled { box-shadow: var(--shadow-sm); }
.navbar { min-height: 78px; display:flex; align-items:center; justify-content:space-between; gap: 1rem; }
.logo { font-weight: 800; color: var(--green-900); display:flex; align-items:center; gap: .55rem; }
.logo-mark { width: 40px; height:40px; border-radius:50%; display:grid; place-items:center; color:#fff; background: linear-gradient(145deg,var(--green-900),var(--green-500)); }
.brand-logo {
  height: 92px;
  width: auto;
  object-fit: contain;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  border-radius: 0;
  display: block;
}
.nav-links { list-style:none; display:flex; gap:1rem; margin:0; padding:0; align-items:center; }
.nav-links a { font-weight:600; color:#2f453a; }
.nav-links a:hover,.nav-links a.active { color: var(--green-700); }
.nav-links a.active {
  background: #edf7f2;
  border: 1px solid #cfe3d8;
  border-radius: 999px;
  padding: .48rem .82rem;
}
.hamburger { display:none; border:0; background:transparent; }
.hamburger span { width:24px; height:3px; display:block; margin:5px 0; background:var(--green-900); border-radius:3px; }

.btn { display:inline-flex; align-items:center; justify-content:center; border-radius:10px; font-weight:700; padding:.85rem 1.2rem; transition:.25s ease; border:2px solid transparent; cursor:pointer; }
.btn-primary { background: var(--green-700); color:#fff; }
.btn-primary:hover { background: var(--green-950); transform: translateY(-2px); }
.btn-outline { border-color: var(--green-700); color: var(--green-700); }
.btn-outline:hover { background: var(--green-700); color:#fff; }
.btn-gold { background: var(--gold-500); color:#2f2616; }
.btn-gold:hover { background: var(--gold-300); }
.nav-links .btn-gold {
  white-space: nowrap;
}

.hero { min-height: 80vh; display:grid; align-items:center; position:relative; }
.hero::before { content:""; position:absolute; inset:0; background: linear-gradient(120deg, rgba(15,61,46,.06), transparent 45%); pointer-events:none; }
.hero-grid,.two-col { display:grid; grid-template-columns: 1.1fr 1fr; gap: 2rem; align-items:center; }
.hero-grid-slider { grid-template-columns: .95fr 1.05fr; }
.hero h1 { font-size: clamp(2.1rem, 6vw, 4rem); line-height:1.08; margin:.1rem 0 .9rem; }
.hero-actions { display:flex; gap:.8rem; flex-wrap:wrap; }
.hero-kpis { display:grid; grid-template-columns:repeat(3,1fr); gap:.7rem; margin-top:1.2rem; }
.hero-kpis .kpi { background:#fff; border:1px solid #dceae2; border-radius:12px; padding:.65rem; box-shadow: var(--shadow-sm); }
.hero-kpis .kpi strong { color: var(--green-900); display:block; }
.hero-media { width: 100%; }
.hero-slider { position: relative; overflow: hidden; border-radius: 16px; box-shadow: var(--shadow-lg); min-height: 480px; }
.hero-track { display: flex; transition: transform .7s ease; height: 100%; }
.hero-slide { min-width: 100%; margin: 0; }
.hero-slide img { width: 100%; height: 580px; object-fit: cover; border-radius: 0; }
.hero-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 0;
  background: rgba(11,47,35,.7);
  color: #fff;
  font-size: 1.1rem;
  cursor: pointer;
  z-index: 2;
}
.hero-nav.prev { left: 12px; }
.hero-nav.next { right: 12px; }
.hero-dots {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 2;
}
.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.75);
  background: rgba(255,255,255,.4);
  cursor: pointer;
}
.hero-dot.active { background: #fff; transform: scale(1.1); }
.hero-banner {
  position: relative;
  min-height: 72vh;
  overflow: hidden;
}
.hero-banner .hero-track {
  height: 72vh;
}
.hero-banner .hero-slide {
  min-width: 100%;
  height: 72vh;
  position: relative;
}
.hero-banner .hero-slide img {
  width: 100%;
  height: 72vh;
  object-fit: cover;
  border-radius: 0;
}
.hero-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7,35,26,.22), rgba(7,35,26,.45));
  display: grid;
  place-items: center;
  text-align: center;
}
.hero-banner-overlay h1 {
  color: #fff;
  margin: 0;
  font-size: clamp(1.7rem, 4vw, 3.4rem);
  line-height: 1.15;
  text-transform: uppercase;
  letter-spacing: .03em;
  text-shadow: 0 8px 30px rgba(0,0,0,.35);
}
.hero-banner-overlay p {
  margin: .3rem 0 1rem;
  color: #f4f5d8;
  font-size: clamp(2rem, 5.5vw, 4.8rem);
  font-family: "Segoe Script", "Brush Script MT", cursive;
  text-shadow: 0 8px 30px rgba(0,0,0,.35);
}
.hero-banner .hero-actions {
  justify-content: center;
}

.card-grid { display:grid; gap:1rem; }
.grid-4 { grid-template-columns:repeat(4,1fr); }
.grid-3 { grid-template-columns:repeat(3,1fr); }
.grid-2 { grid-template-columns:repeat(2,1fr); }
.card { background:#fff; border:1px solid #e1ece6; border-radius:var(--radius); padding:1.2rem; box-shadow: var(--shadow-sm); }
.card.premium { box-shadow: var(--shadow-lg); border-color: #d4e5db; }
.project-plan-card img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; }
.project-plan-card .metric-strip { margin: .85rem 0 1rem; }
.icon-badge { width:42px; height:42px; border-radius:50%; display:grid; place-items:center; color:var(--green-900); background: linear-gradient(140deg, #e8f7ef, #d8efdf); margin-bottom:.6rem; font-weight:800; }
.facilities-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.1rem;
}
.facility-card {
  position: relative;
  background: #6a3718;
  border-radius: 14px;
  padding: 1.1rem 1rem 1rem;
  border: 1px solid rgba(0,0,0,.08);
  box-shadow: 0 12px 22px rgba(35, 15, 5, .22);
  min-height: 210px;
}
.facility-icon {
  background: transparent;
  border-radius: 12px;
  padding: .45rem;
  margin-bottom: .7rem;
  width: 84px;
  height: 84px;
  display: grid;
  place-items: center;
}
.facility-icon svg {
  width: 62px;
  height: 62px;
  fill: none;
  stroke: #fff;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.facility-no {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #fff;
  color: #709f0f;
  font-weight: 800;
  display: grid;
  place-items: center;
}
.facility-card h3 {
  color: #fff;
  margin: .6rem 0 0;
  font-size: 1.06rem;
  line-height: 1.35;
}
.facilities-grid-small {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.facilities-grid-small .facility-card {
  min-height: 150px;
  padding: .95rem;
}
.facilities-grid-small .facility-icon {
  width: 58px;
  height: 58px;
  margin-bottom: .35rem;
}
.facilities-grid-small .facility-icon svg {
  width: 42px;
  height: 42px;
}
.facilities-grid-small .facility-no {
  width: 36px;
  height: 36px;
  font-size: .8rem;
}
.facilities-grid-small .facility-card h3 {
  font-size: .98rem;
}

.trust-item { display:flex; gap:.7rem; align-items:flex-start; }
.tick { width:28px; height:28px; border-radius:50%; background:#dff2e8; color:var(--green-700); display:grid; place-items:center; font-weight:800; }
.list-clean { list-style:none; margin:0; padding:0; }
.list-clean li { padding-left:1.35rem; position:relative; margin-bottom:.5rem; }
.list-clean li::before { content:"•"; position:absolute; left:0; color:var(--gold-500); font-weight:900; }

.metric-strip { background: var(--green-950); color:#d6e8de; padding:1.2rem; border-radius:14px; }
.metric-strip strong { color:#fff; font-size:1.2rem; }

.timeline { display:grid; gap:.8rem; }
.timeline article { border-left:4px solid var(--green-500); padding:.75rem .95rem; background:#f3faf6; border-radius:0 10px 10px 0; }

.gallery-filters { display:flex; gap:.7rem; flex-wrap:wrap; margin-bottom:1rem; }
.filter-btn { padding:.55rem .95rem; border:1px solid #c4d8ce; background:#fff; border-radius:999px; font-weight:700; cursor:pointer; }
.filter-btn.active,.filter-btn:hover { background: var(--green-700); color:#fff; border-color: var(--green-700); }
.gallery-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:.8rem; }
.gallery-item { position:relative; overflow:hidden; border-radius:12px; }
.gallery-item::after { content:"View"; position:absolute; inset:auto 10px 10px auto; background:rgba(11,47,35,.75); color:#fff; padding:.2rem .55rem; border-radius:8px; font-size:.8rem; }
.gallery-item img { width:100%; height:230px; object-fit:cover; cursor:pointer; transition: transform .35s ease; }
.gallery-item:hover img { transform: scale(1.06); }

.slider { overflow:hidden; }
.slider-track { display:flex; transition: transform .45s ease; }
.slide { min-width:100%; }
.slider-controls { margin-top:.8rem; display:flex; gap:.6rem; }
.slider-btn { width:38px; height:38px; border-radius:50%; border:0; background:var(--green-700); color:#fff; cursor:pointer; }

.faq-item { border:1px solid #dce8e1; border-radius:12px; background:#fff; margin-bottom:.7rem; overflow:hidden; }
.faq-question { width:100%; border:0; text-align:left; background:transparent; padding:.9rem 1rem; font-weight:700; cursor:pointer; }
.faq-answer { display:none; padding:0 1rem 1rem; color:var(--text-600); }
.faq-item.open .faq-answer { display:block; }

.cta-banner { background: linear-gradient(145deg,var(--green-900),var(--green-500)); color:#fff; text-align:center; padding:2.2rem; border-radius:16px; box-shadow: var(--shadow-lg); }
.contact-form { background:#fff; border:1px solid #dfeae4; border-radius:var(--radius); padding:1.2rem; box-shadow: var(--shadow-sm); }
.contact-form label { display:block; font-weight:600; margin-top:.8rem; }
.contact-form input,.contact-form textarea,.contact-form select { width:100%; margin-top:.3rem; padding:.74rem; border:1px solid #c4d7cc; border-radius:8px; font:inherit; }
.contact-form input:focus,.contact-form textarea:focus,.contact-form select:focus { outline:2px solid #b8dcc7; border-color: var(--green-500); }
.error { display:block; min-height:1rem; color:#b00020; }
.form-status { margin-top:.8rem; font-weight:700; }
.map-placeholder { min-height:260px; border:2px dashed #aac5b4; border-radius:12px; display:grid; place-items:center; background:#f3f9f5; color:var(--text-600); }
.map-embed {
  overflow: hidden;
  border-radius: 12px;
  border: 1px solid #c8ddd0;
  box-shadow: var(--shadow-sm);
  background: #f3f9f5;
}
.map-embed iframe {
  width: 100%;
  height: 360px;
  border: 0;
  display: block;
}
.layout-map {
  width: 100%;
  border-radius: 12px;
  border: 1px solid #d7e6dd;
  box-shadow: var(--shadow-sm);
}

.footer { background: var(--green-950); color:#d0e3d8; padding:2.7rem 0 1rem; margin-top:3rem; }
.footer-grid { display:grid; grid-template-columns:1.4fr 1fr 1fr 1fr; gap:1rem; }
.footer-grid-premium { grid-template-columns:1.35fr 1fr 1fr 1fr 1.15fr; align-items:start; }
.footer h3,.footer h4 { color:#fff; margin-top:0; }
.footer ul { list-style:none; margin:0; padding:0; }
.footer li { margin-bottom:.4rem; }
.footer > p {
  text-align: center;
  margin-top: 1.3rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,.15);
  color: #c8dbd1;
}
.footer-logo {
  height: 92px;
  width: auto;
  object-fit: contain;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  border-radius: 0;
  margin-bottom: .65rem;
}
.social-row { display:flex; gap:.55rem; flex-wrap:wrap; }
.social-icon {
  width:38px;
  height:38px;
  border-radius:50%;
  display:grid;
  place-items:center;
  background:linear-gradient(145deg,#2a7358,#173f31);
  border:1px solid rgba(230,210,170,.35);
  color:#fff;
  transition:transform .2s ease, background .2s ease, box-shadow .2s ease;
}
.social-icon:hover {
  transform: translateY(-2px);
  background:linear-gradient(145deg,#c9a86a,#2f8a66);
  box-shadow: 0 10px 20px rgba(0,0,0,.22);
}
.social-icon svg {
  width:18px;
  height:18px;
  fill:none;
  stroke:currentColor;
  stroke-width:1.9;
  stroke-linecap:round;
  stroke-linejoin:round;
}
.social-icon svg path,
.social-icon svg rect,
.social-icon svg circle {
  vector-effect: non-scaling-stroke;
}
.social-icon[aria-label="WhatsApp"] svg path,
.social-icon[aria-label="Facebook"] svg path,
.social-icon[aria-label="YouTube"] svg path:first-child {
  fill:currentColor;
  stroke:none;
}
.social-icon[aria-label="YouTube"] svg path:last-child {
  fill:var(--green-950);
  stroke:none;
}
.footer-contact-list li { display:flex; gap:.65rem; align-items:flex-start; line-height:1.5; }
.contact-icon {
  width:30px;
  height:30px;
  flex:0 0 30px;
  border-radius:50%;
  display:grid;
  place-items:center;
  color:#e6d2aa;
  background:rgba(201,168,106,.12);
  border:1px solid rgba(201,168,106,.28);
  margin-top:.05rem;
}
.contact-icon svg {
  width:16px;
  height:16px;
  fill:none;
  stroke:currentColor;
  stroke-width:1.8;
  stroke-linecap:round;
  stroke-linejoin:round;
}

.whatsapp-float { position:fixed; right:1rem; bottom:1rem; width:58px; height:58px; border-radius:50%; display:grid; place-items:center; background:linear-gradient(145deg,#29d96d,#1ea956); color:#fff; box-shadow: 0 10px 24px rgba(37,211,102,.35); z-index:1100; border:2px solid rgba(255,255,255,.75); }

.modal { position:fixed; inset:0; display:none; align-items:center; justify-content:center; background: rgba(7,21,15,.68); z-index:1500; padding:1rem; }
.modal.open { display:flex; }
.modal-box { width:min(560px,96%); background:#fff; border-radius:14px; padding:1.2rem; position:relative; }
.modal-close { border:0; background:transparent; position:absolute; right:.7rem; top:.55rem; font-size:1.5rem; cursor:pointer; }

.reveal { opacity:0; transform: translateY(20px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity:1; transform: translateY(0); }
.page-hero { background: linear-gradient(160deg, #eaf7f0, #f9fcfa); padding:4.6rem 0 3rem; }
.table-wrap { overflow:auto; }
.pricing-table { width:100%; border-collapse: collapse; background:#fff; border-radius:12px; overflow:hidden; }
.pricing-table th,.pricing-table td { padding:.75rem; border:1px solid #deebe4; text-align:left; }
.pricing-table th { background:#edf7f2; color:var(--green-900); }

@media (max-width:980px){
  .hero-grid,.two-col,.grid-4,.grid-3,.grid-2,.gallery-grid,.footer-grid,.footer-grid-premium,.hero-kpis{ grid-template-columns:1fr; }
  .facilities-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .facilities-grid-small { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .hamburger{ display:block; }
  .nav-links{ position:absolute; top:78px; left:0; right:0; background:#fff; border-bottom:1px solid #deebe3; flex-direction:column; align-items:flex-start; padding:1rem 4%; transform:translateY(-220%); transition:transform .28s ease; }
  .nav-links.open{ transform:translateY(0); }
  .nav-links a.active { padding: .44rem .72rem; }
  .brand-logo { height: 74px; }
  .footer-logo { height: 74px; }
  .hero-slide img { height: 360px; }
  .hero-banner { min-height: 58vh; }
  .hero-banner .hero-track,
  .hero-banner .hero-slide,
  .hero-banner .hero-slide img { height: 58vh; }
  .section-feature-image { min-height: 300px; }
}

@media (max-width:640px){
  .facilities-grid { grid-template-columns: 1fr; }
  .facilities-grid-small { grid-template-columns: 1fr; }
  .facility-card { min-height: 170px; }
  .hero-slide img { height: 300px; }
}

.whatsapp-float svg { width:28px; height:28px; fill:#fff; }


