:root {
  --bg: #0a3110;
  --bg-dark: #071f0b;
  --surface: #0e4f30;
  --surface-dark: #156d4d;
  --ink: #fbfdfb;
  --muted: #97a89a;
  --accent: #02c287;
  --accent-strong: #0bb988;
  --sage: #506453;
  --border: rgba(251, 253, 251, 0.12);
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
  --radius: 18px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Plus Jakarta Sans", "Segoe UI", sans-serif;
  color: var(--ink);
  background: radial-gradient(520px 520px at -8% 35%, rgba(2, 194, 135, 0.32) 0%, transparent 60%),
    radial-gradient(520px 520px at 108% 28%, rgba(17, 166, 116, 0.28) 0%, transparent 60%),
    radial-gradient(680px 680px at 50% -10%, rgba(21, 109, 77, 0.28) 0%, transparent 65%),
    var(--bg);
  line-height: 1.6;
}

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

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

button {
  font-family: inherit;
}

.page {
  position: relative;
  overflow: hidden;
}

.container {
  width: min(1160px, 92%);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(12px);
  background: rgba(10, 49, 16, 0.92);
  border-bottom: 1px solid rgba(251, 253, 251, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 0;
}

.logo {
  display: inline-block;
  width: 120px;
  height: 100px;
  overflow: hidden;
}
.logo img{
  width: 100%;
  height: 100%;
}
.main-nav {
  display: flex;
  gap: 20px;
  font-weight: 500;
}

.main-nav a {
  position: relative;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.3s ease;
}

.main-nav a:hover::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.lang-switch {
  display: flex;
  gap: 6px;
  background: var(--surface);
  padding: 4px;
  border-radius: 999px;
  border: 1px solid var(--border);
}

.lang {
  border: none;
  background: transparent;
  padding: 6px 10px;
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
  border-radius: 999px;
  cursor: pointer;
}

.lang.active {
  background: var(--accent-strong);
  color: var(--bg);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.btn-primary {
  background: var(--accent);
  color: var(--ink);
  box-shadow: 0 12px 30px rgba(2, 194, 135, 0.35);
}

.btn-ghost {
  border-color: rgba(2, 194, 135, 0.4);
  background: rgba(14, 79, 48, 0.8);
  color: var(--ink);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
}

.btn-ghost:hover {
  background: rgba(21, 109, 77, 0.9);
}

.hero {
  position: relative;
  padding: 90px 0 70px;
  background-image: url("public/image/back.jpeg");
  background-size: cover;
  background-position: center;
  color: var(--ink);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(7, 31, 11, 0.95) 0%, rgba(10, 49, 16, 0.82) 45%, rgba(10, 49, 16, 0.55) 75%, rgba(10, 49, 16, 0.35) 100%),
    radial-gradient(circle at 18% 20%, rgba(2, 194, 135, 0.22) 0%, transparent 55%);
  z-index: 0;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 40px;
  align-items: center;
}

.hero-content h1 {
  font-family: "Fraunces", serif;
  font-size: clamp(2.6rem, 4vw, 4rem);
  line-height: 1.1;
  margin-bottom: 18px;
}

.eyebrow {
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.2em;
  color: var(--muted);
  margin-bottom: 14px;
}

.lead {
  font-size: 1.05rem;
  color: var(--muted);
  margin-bottom: 24px;
}

.hero .eyebrow {
  color: rgba(251, 253, 251, 0.7);
}

.hero .lead {
  color: rgba(251, 253, 251, 0.82);
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 30px;
}

.hero-stats h3 {
  font-family: "Fraunces", serif;
  font-size: 1.6rem;
}

.hero-stats div {
  background: rgba(251, 253, 251, 0.08);
  border: 1px solid rgba(251, 253, 251, 0.16);
  padding: 12px 14px;
  border-radius: 14px;
}

.hero-stats p {
  color: rgba(251, 253, 251, 0.7);
  font-size: 14px;
}

.hero-visual {
  display: grid;
  gap: 18px;
}

.hero-card {
  background: rgba(10, 49, 16, 0.92);
  color: var(--ink);
  padding: 28px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid rgba(251, 253, 251, 0.08);
}

.hero-image {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(251, 253, 251, 0.08);
}

.hero-image img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.hero-card h4 {
  font-family: "Fraunces", serif;
  font-size: 1.6rem;
  margin: 10px 0 8px;
}

.hero-card .label {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(251, 253, 251, 0.7);
}

.hero-card-footer {
  display: flex;
  justify-content: space-between;
  margin-top: 18px;
  font-size: 14px;
  color: rgba(251, 253, 251, 0.7);
}

.hero-pill {
  background: rgba(251, 253, 251, 0.92);
  padding: 14px 18px;
  border-radius: 999px;
  border: 1px solid rgba(251, 253, 251, 0.35);
  font-weight: 600;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.2);
  color: var(--bg-dark);
}

.hero .btn-ghost {
  background: rgba(251, 253, 251, 0.08);
  color: var(--ink);
  border-color: rgba(251, 253, 251, 0.4);
  box-shadow: none;
}

.hero .btn-ghost:hover {
  background: rgba(251, 253, 251, 0.16);
}

.section {
  padding: 80px 0;
  position: relative;
}

.section.alt {
  background: var(--surface-dark);
  border-top: 1px solid rgba(251, 253, 251, 0.08);
  border-bottom: 1px solid rgba(251, 253, 251, 0.08);
}

.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 40px;
}

.section-header h2 {
  font-family: "Fraunces", serif;
  font-size: clamp(2rem, 3vw, 2.6rem);
}

.section-lead {
  max-width: 320px;
  color: var(--muted);
}

.trust-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: center;
}

.trust-cards {
  display: grid;
  gap: 16px;
}

.trust-card {
  background: var(--surface);
  padding: 20px;
  border-radius: 16px;
  border: 1px solid var(--border);
}

.filters {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 24px;
}

.filters label {
  display: grid;
  gap: 8px;
  font-size: 14px;
  color: var(--muted);
}

.filters input,
.filters select {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--ink);
}

.filters input::placeholder {
  color: var(--sage);
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.project-card {
  background: var(--surface);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  display: grid;
  min-height: 360px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.project-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.project-media {
  height: 160px;
  overflow: hidden;
}

.project-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.project-body {
  padding: 20px;
  display: grid;
  gap: 12px;
}

.project-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.project-tags span {
  background: rgba(251, 253, 251, 0.12);
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 12px;
}

.project-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 600;
}

.section-note {
  margin-top: 16px;
  color: var(--muted);
  font-size: 14px;
}

.split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px;
  align-items: center;
}

.about-content {
  display: grid;
  gap: 16px;
}

.about-more {
  display: grid;
  gap: 16px;
}

.about-more[hidden] {
  display: none;
}

.about-toggle {
  justify-self: flex-start;
}

.badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 16px;
}

.badges span {
  background: rgba(251, 253, 251, 0.12);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 13px;
}

.about-card {
  background: var(--bg-dark);
  color: var(--ink);
  padding: 28px;
  border-radius: var(--radius);
  display: grid;
  gap: 16px;
}

.about-card ul {
  list-style: none;
  display: grid;
  gap: 10px;
}

.about-card li::before {
  content: "*";
  margin-right: 8px;
  color: var(--accent);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.services-grid article {
  background: var(--surface);
  padding: 22px;
  border-radius: 16px;
  border: 1px solid var(--border);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.gallery-tile {
  position: relative;
  padding: 24px;
  border-radius: 16px;
  min-height: 160px;
  display: flex;
  align-items: flex-end;
  font-weight: 600;
  color: var(--ink);
  overflow: hidden;
}

.gallery-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 49, 16, 0.05), rgba(10, 49, 16, 0.7));
}

.gallery-tile img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-tile span {
  position: relative;
  z-index: 1;
  background: rgba(10, 49, 16, 0.6);
  padding: 6px 12px;
  border-radius: 999px;
}

.gallery-tile.tall {
  grid-row: span 2;
}

.gallery-tile.wide {
  grid-column: span 2;
}

.payment-cards {
  display: grid;
  gap: 14px;
}

.payment-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 20px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.testimonials-grid article {
  background: var(--surface);
  border-radius: 16px;
  padding: 20px;
  border: 1px solid var(--border);
  display: grid;
  gap: 10px;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.news-grid article {
  background: var(--surface);
  border-radius: 16px;
  border: 1px solid var(--border);
  overflow: hidden;
  display: grid;
}

.news-media {
  height: 150px;
  overflow: hidden;
}

.news-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.news-body {
  padding: 18px;
  display: grid;
  gap: 10px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 30px;
  align-items: start;
}

.contact-details {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.contact-details span {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
}

.contact-form {
  background: var(--surface);
  padding: 24px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  display: grid;
  gap: 16px;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  font-size: 14px;
  color: var(--muted);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--border);
  font-family: inherit;
}

.honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-note {
  font-size: 12px;
  color: var(--muted);
}

.form-success {
  font-weight: 600;
  color: var(--accent-strong);
}

.site-footer {
  padding: 60px 0 20px;
  background: var(--bg-dark);
  color: var(--ink);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  padding-bottom: 30px;
}

.site-footer a {
  color: var(--ink);
  opacity: 0.86;
}

.site-footer p {
  opacity: 0.8;
}

.footer-grid h4 {
  margin-bottom: 10px;
  font-family: "Fraunces", serif;
}

.footer-bottom {
  border-top: 1px solid rgba(251, 253, 251, 0.12);
  padding-top: 16px;
  text-align: center;
  font-size: 13px;
  opacity: 0.7;
}

.mobile-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  display: none;
  background: var(--bg-dark);
  color: var(--ink);
  padding: 12px 16px;
  z-index: 30;
  justify-content: space-around;
}

.mobile-cta a {
  font-weight: 600;
}

.reveal {
  opacity: 0;
  transform: translateY(24px) scale(0.98);
  filter: blur(6px);
  transition: opacity 0.85s ease, transform 0.85s ease, filter 0.85s ease;
  transition-delay: var(--reveal-delay, 0ms);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

.section.reveal::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 16px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(2, 194, 135, 0.6), transparent);
  opacity: 0;
  transform: scaleX(0.6);
  transition: opacity 0.85s ease, transform 0.85s ease;
  transition-delay: var(--reveal-delay, 0ms);
  pointer-events: none;
}

.section.reveal.is-visible::after {
  opacity: 1;
  transform: scaleX(1);
}

@media (max-width: 1100px) {
  .header-actions {
    display: none;
  }

  .main-nav {
    gap: 14px;
  }
}

@media (max-width: 900px) {
  .hero-grid,
  .split,
  .contact-grid,
  .trust-grid {
    grid-template-columns: 1fr;
  }

  .section-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .projects-grid,
  .services-grid,
  .news-grid,
  .testimonials-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

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

@media (max-width: 700px) {
  .main-nav {
    display: none;
  }

  .projects-grid,
  .services-grid,
  .news-grid,
  .testimonials-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

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

  .mobile-cta {
    display: flex;
  }

  body {
    padding-bottom: 70px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    transition: none;
    transform: none;
    filter: none;
  }

  .btn {
    transition: none;
  }
}
