:root {
  --brand-900: #073b25;
  --brand-700: #0b6c43;
  --brand-500: #14a35d;
  --brand-100: #e8f7ef;
  --accent-500: #f4a100;
  --text-900: #102118;
  --text-700: #2f4639;
  --text-500: #64766d;
  --surface-100: #f7faf8;
  --surface-200: #eef4f0;
  --white: #ffffff;
  --shadow-soft: 0 12px 32px rgba(7, 59, 37, 0.12);
  --shadow-lift: 0 18px 40px rgba(7, 59, 37, 0.18);
  --radius-lg: 20px;
  --radius-md: 14px;
}

body {
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: var(--text-700);
  background: radial-gradient(circle at 10% 10%, #f5fbf7 0%, #edf6f1 40%, #f9fcfa 100%);
}

h1,
h2,
h3,
h4,
h5,
h6,
#header .logo,
.section-title h3 {
  font-family: "Sora", "Segoe UI", sans-serif;
  color: var(--text-900);
}

a {
  color: var(--brand-700);
}

a:hover {
  color: var(--brand-500);
}

#topbar {
  background: linear-gradient(90deg, var(--brand-900), #0e5f3d);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

#topbar .social-links a {
  color: rgba(255, 255, 255, 0.9);
}

#header {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  box-shadow: 0 8px 24px rgba(16, 33, 24, 0.08);
}

#header .logo a {
  color: var(--text-900);
}

#header .logo a span {
  color: var(--brand-700);
}

.nav-menu > ul > li > a:before {
  height: 3px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--brand-700), var(--brand-500));
}

.nav-menu a:hover,
.nav-menu .active > a,
.nav-menu li:hover > a {
  color: var(--brand-700);
}

#hero {
  position: relative;
}

#hero::before {
  display: none;
}

#hero .carousel-item img {
  height: clamp(360px, 72vh, 680px);
  object-fit: cover;
}

#hero .carousel-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, rgba(7, 59, 37, 0.78) 0%, rgba(7, 59, 37, 0.3) 50%, rgba(255, 255, 255, 0.06) 100%);
}

#hero .carousel-caption {
  z-index: 2;
  max-width: 620px;
}

#hero .hero-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.17);
  color: #e6fff2;
  padding: 8px 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 12px;
  margin-bottom: 14px;
}

#hero h1,
#hero h2 {
  color: #fff;
  background: transparent !important;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.45);
}

#hero h1 {
  font-size: clamp(1.8rem, 3.4vw, 3.2rem);
  line-height: 1.1;
  margin-bottom: 12px;
}

#hero h1 span {
  color: #b5f7ce;
}

#hero h2 {
  font-size: clamp(1rem, 1.5vw, 1.3rem);
  line-height: 1.45;
  margin-bottom: 22px;
}

#hero .btn-get-started,
.btn-brand {
  border: 0;
  border-radius: 999px;
  padding: 12px 26px;
  background: linear-gradient(120deg, var(--brand-700), var(--brand-500));
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.02em;
  box-shadow: 0 8px 20px rgba(11, 108, 67, 0.35);
}

#hero .btn-get-started:hover,
.btn-brand:hover {
  background: linear-gradient(120deg, var(--brand-500), var(--brand-700));
  color: #fff;
}

section {
  overflow: hidden;
}

.section-title h2 {
  background: var(--brand-100);
  color: var(--brand-700);
  letter-spacing: 0.06em;
}

.section-title h3 span {
  color: var(--brand-700);
}

.public-page {
  margin-top: 92px;
}

.public-panel {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(11, 108, 67, 0.12);
  box-shadow: var(--shadow-soft);
  padding: clamp(18px, 2vw, 34px);
}

.public-panel + .public-panel {
  margin-top: 18px;
}

.public-intro {
  max-width: 760px;
  margin: 0 auto 28px;
  text-align: center;
  color: var(--text-500);
}

.about,
.contact {
  position: relative;
}

.about::before,
.contact::before {
  content: "";
  position: absolute;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: radial-gradient(circle at center, rgba(20, 163, 93, 0.13) 0%, rgba(20, 163, 93, 0) 70%);
  z-index: 0;
}

.about::before {
  top: -90px;
  right: -90px;
}

.contact::before {
  bottom: -120px;
  left: -90px;
}

.about .container,
.contact .container {
  position: relative;
  z-index: 1;
}

.highlight-card {
  background: linear-gradient(145deg, #0a4f33, #0d6a43);
  color: #ecfff5;
  border-radius: var(--radius-lg);
  padding: clamp(20px, 2vw, 34px);
  box-shadow: var(--shadow-lift);
}

.highlight-card h3,
.highlight-card p,
.highlight-card span {
  color: inherit !important;
}

.mission-vision {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(11, 108, 67, 0.14);
  box-shadow: var(--shadow-soft);
  padding: clamp(16px, 2vw, 30px);
}

.media-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(11, 108, 67, 0.12);
}

.media-card video,
.media-card img {
  width: 100%;
  display: block;
}

.about-video-card video {
  width: 100%;
  height: auto;
  max-height: 430px;
  object-fit: contain;
  background: #000;
}

.mv-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px;
  border: 1px solid rgba(11, 108, 67, 0.14);
  border-radius: 14px;
  background: #f9fcfa;
  margin-bottom: 14px;
}

.mv-item h3 {
  font-size: 1.15rem;
}

.mv-icon {
  width: 46px;
  height: 46px;
  min-width: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(120deg, var(--brand-700), var(--brand-500));
  color: #fff;
  font-size: 24px;
  box-shadow: 0 8px 20px rgba(11, 108, 67, 0.25);
}

#portfolio.testimonials {
  background: linear-gradient(145deg, #0a3f2a, #0d6d45);
  border-radius: 26px;
  margin: 20px auto;
  max-width: 1220px;
  box-shadow: var(--shadow-lift);
}

#portfolio.testimonials::before {
  background: linear-gradient(130deg, rgba(10, 63, 42, 0.75), rgba(13, 109, 69, 0.6));
  border-radius: 26px;
}

#portfolio .section-title h2 {
  background: rgba(255, 255, 255, 0.2);
  color: #d8ffea;
}

#portfolio .section-title h3,
#portfolio .section-title p {
  color: #fff;
}

#portfolio .icon-box {
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.benefits-panel {
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 18px;
  padding: 18px;
}

.benefits-tabs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 16px;
}

.benefit-tab {
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.12);
  color: #eefcf4;
  border-radius: 12px !important;
  padding: 10px 12px;
  text-align: left;
  font-size: 0.93rem;
  font-weight: 700;
  transition: all 0.2s ease;
}

.benefit-tab i {
  font-size: 1rem;
  margin-right: 6px;
}

.benefit-tab:hover,
.benefit-tab.active {
  background: rgba(255, 255, 255, 0.95);
  color: #0a4f33;
  transform: translateY(-1px);
}

.benefit-highlight {
  border-radius: 14px;
  background: #fff;
  color: #153526;
  padding: 18px;
  min-height: 205px;
  box-shadow: 0 14px 30px rgba(7, 59, 37, 0.2);
}

.benefit-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(120deg, var(--brand-700), var(--brand-500));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  font-size: 1.4rem;
}

.benefit-highlight h4 {
  color: #123725;
  margin-bottom: 8px;
}

.benefit-highlight p {
  margin-bottom: 10px;
  color: #355a49;
}

.benefit-metric {
  display: inline-block;
  background: #e9f8ef;
  color: #0b6c43;
  border-radius: 999px;
  padding: 6px 12px;
  font-weight: 700;
  font-size: 0.86rem;
}

.benefit-cards {
  display: grid;
  gap: 10px;
}

.benefit-card {
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 14px;
  padding: 14px;
  transition: transform 0.2s ease, background 0.2s ease;
}

.benefit-card:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.2);
}

.benefit-card i {
  color: #c5ffe0;
  font-size: 1.5rem;
  margin-bottom: 6px;
  display: inline-block;
}

.benefit-card h5 {
  color: #f0fff7;
  font-size: 1rem;
  margin-bottom: 6px;
}

.benefit-card p {
  margin: 0;
  color: #d9f6e8;
  font-size: 0.9rem;
}

.contact .info-box,
.contact .php-email-form,
.table-responsive,
.public-card {
  border-radius: var(--radius-md);
  border: 1px solid rgba(11, 108, 67, 0.12);
  box-shadow: var(--shadow-soft);
  background: #fff;
}

.contact .info-box {
  padding: 24px 14px;
}

.contact .info-box i {
  color: var(--brand-700);
  border-color: rgba(11, 108, 67, 0.28);
}

.contact .php-email-form input,
.contact .php-email-form textarea,
.contact .php-email-form select,
.input-group .form-control,
.form-control {
  border-radius: 10px;
  border: 1px solid #c8d8ce;
  min-height: 44px;
}

.contact .php-email-form input:focus,
.contact .php-email-form textarea:focus,
.contact .php-email-form select:focus,
.input-group .form-control:focus,
.form-control:focus {
  border-color: var(--brand-500);
  box-shadow: 0 0 0 0.2rem rgba(20, 163, 93, 0.15);
}

.btn,
button,
.input-group-append .btn {
  border-radius: 999px !important;
  font-weight: 700;
}

.btn-primary,
.btn-success {
  border: none;
  background: linear-gradient(120deg, var(--brand-700), var(--brand-500));
}

.btn-primary:hover,
.btn-success:hover {
  background: linear-gradient(120deg, var(--brand-500), var(--brand-700));
}

.table {
  margin-bottom: 0;
}

.table thead th {
  border: 0;
  background: linear-gradient(120deg, #f0f7f3, #e5f5eb);
  color: var(--brand-900);
  font-weight: 700;
}

.table td,
.table th {
  border-top: 1px solid #e4efe8;
  vertical-align: middle;
}

.table-striped tbody tr:nth-of-type(odd) {
  background: #f9fcfa;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 18px;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(11, 108, 67, 0.14);
  box-shadow: var(--shadow-soft);
  background: #fff;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lift);
}

.gallery-item img {
  width: 100%;
  display: block;
}

.gallery-figure {
  position: relative;
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 59, 37, 0) 45%, rgba(7, 59, 37, 0.72) 100%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.gallery-item:hover::after {
  opacity: 1;
}

.gallery-zoom-btn {
  position: absolute;
  left: 50%;
  bottom: 14px;
  transform: translateX(-50%);
  z-index: 2;
  border: 0;
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 0.85rem;
  font-weight: 700;
  color: #0a4f33;
  background: #fff;
  opacity: 0;
  transition: all 0.25s ease;
}

.gallery-item:hover .gallery-zoom-btn {
  opacity: 1;
  bottom: 18px;
}

.gallery-preview-modal .modal-dialog {
  max-width: min(1100px, 96vw);
}

.gallery-preview-modal .modal-content {
  background: rgba(8, 22, 15, 0.96);
  border: 0;
  border-radius: 16px;
  padding: 12px;
}

.gallery-preview-modal img {
  width: 100%;
  max-height: 84vh;
  object-fit: contain;
  border-radius: 10px;
}

.gallery-modal-close {
  position: absolute;
  right: 14px;
  top: 8px;
  z-index: 2;
  color: #fff;
  opacity: 1;
  text-shadow: none;
}

.iframe-panel {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(11, 108, 67, 0.12);
}

.download-card {
  display: block;
  border-radius: var(--radius-md);
  padding: 16px 18px;
  border: 1px solid rgba(11, 108, 67, 0.15);
  background: linear-gradient(145deg, #ffffff, #f5fbf8);
  color: var(--text-900);
  font-weight: 700;
  box-shadow: var(--shadow-soft);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.download-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lift);
  color: var(--brand-700);
}

.login-card {
  max-width: 560px;
  margin: 0 auto;
}

.login-card h2 {
  color: var(--brand-900);
  font-weight: 800;
}

.login-card .input-group .btn {
  border: 1px solid #c8d8ce;
  border-left: 0;
  background: #f6fbf8;
  color: #2f4639;
  border-radius: 0 10px 10px 0 !important;
  padding: 0 16px;
}

.login-card .input-group .btn:hover {
  background: #ecf6f0;
}

#footer {
  background: #edf6f1;
  color: var(--text-700);
}

#footer .footer-top {
  background: linear-gradient(180deg, #f7fbf9 0%, #edf6f1 100%);
}

#footer .footer-top .footer-links ul a,
#footer .footer-top .footer-contact p {
  color: var(--text-700);
}

#footer .footer-top .social-links a {
  background: var(--brand-700);
}

#footer .footer-top .social-links a:hover {
  background: var(--brand-500);
}

@media (max-width: 991px) {
  .public-page {
    margin-top: 58px;
  }

  #hero .carousel-caption {
    left: 8% !important;
    right: 8%;
    top: 14% !important;
    max-width: 84%;
  }

  #hero .carousel-item img {
    height: 420px;
  }

  .mv-item {
    padding: 12px;
  }

  .benefits-tabs {
    grid-template-columns: 1fr;
  }

  .float {
    left: 16px;
    bottom: 18px;
    width: 54px;
    height: 54px;
  }

  .my-float {
    margin-top: 13px;
  }
}
