:root {
  --green: #06472f;
  --green-dark: #03351f;
  --green-soft: #eaf5ef;
  --gold: #c48b31;
  --gold-light: #f4d391;
  --cream: #fffaf0;
  --text: #1c2a24;
  --muted: #62706a;
  --white: #ffffff;
  --shadow: 0 22px 60px rgba(3, 53, 31, 0.13);
  --radius: 26px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background: #ffffff;
  overflow-x: hidden;
}

a {
  text-decoration: none;
}

img {
  max-width: 100%;
}

::selection {
  background: var(--gold);
  color: var(--green-dark);
}

/* Preloader */
#preloader {
  position: fixed;
  inset: 0;
  background: var(--green-dark);
  z-index: 99999;
  display: grid;
  place-items: center;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

#preloader.hide {
  opacity: 0;
  visibility: hidden;
}

.loader-mark {
  width: 110px;
  height: 110px;
  background: var(--white);
  border-radius: 28px;
  display: grid;
  place-items: center;
  animation: pulseLogo 1.3s infinite ease-in-out;
  overflow: hidden;
}

.loader-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@keyframes pulseLogo {
  0%, 100% { transform: scale(1); box-shadow: 0 0 0 rgba(196, 139, 49, 0.5); }
  50% { transform: scale(1.05); box-shadow: 0 0 40px rgba(196, 139, 49, 0.5); }
}

/* Common */
.section-padding {
  padding: 100px 0;
}

.section-title {
  max-width: 780px;
  margin: 0 auto 48px;
}

.section-title.left {
  margin-left: 0;
  margin-right: 0;
}

.section-title span,
.eyebrow {
  color: var(--gold);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 13px;
}

.section-title h2 {
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1.08;
  font-weight: 800;
  color: var(--green-dark);
  margin: 12px 0 14px;
}

.section-title p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.8;
}

.section-title.light h2,
.section-title.light p {
  color: var(--white);
}

.btn {
  border-radius: 999px;
  padding: 12px 24px;
  font-weight: 800;
  transition: 0.3s ease;
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--green-dark);
  border: 0;
  box-shadow: 0 12px 26px rgba(196, 139, 49, 0.24);
}

.btn-gold:hover {
  transform: translateY(-3px);
  color: var(--green-dark);
  box-shadow: 0 18px 38px rgba(196, 139, 49, 0.35);
}

.btn-outline-green {
  border: 2px solid var(--green);
  color: var(--green);
  background: var(--white);
}

.btn-outline-green:hover {
  background: var(--green);
  color: var(--white);
  transform: translateY(-3px);
}

.btn-light-gold {
  background: var(--white);
  color: var(--green-dark);
}

.btn-light-gold:hover {
  background: var(--gold-light);
  color: var(--green-dark);
  transform: translateY(-3px);
}

/* Top Strip */
.top-strip {
  background: var(--green-dark);
  color: rgba(255,255,255,0.88);
  padding: 9px 0;
  font-size: 14px;
}

.small-info {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.small-info i {
  color: var(--gold-light);
  margin-right: 6px;
}

.social-mini {
  display: flex;
  gap: 10px;
}

.social-mini a {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,0.09);
  color: var(--white);
  border-radius: 50%;
  transition: 0.3s ease;
}

.social-mini a:hover {
  background: var(--gold);
  color: var(--green-dark);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(15px);
  border-bottom: 1px solid rgba(6, 71, 47, 0.08);
  transition: 0.3s ease;
}

.site-header.scrolled {
  box-shadow: 0 10px 30px rgba(3, 53, 31, 0.08);
}

.navbar {
  padding: 14px 0;
}

.brand-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-wrap img {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  object-fit: cover;
  border: 1px solid rgba(196, 139, 49, 0.25);
}

.brand-wrap span {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-wrap strong {
  color: var(--green-dark);
  font-weight: 900;
  letter-spacing: 0.5px;
}

.brand-wrap small {
  color: var(--gold);
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.nav-link {
  color: var(--green-dark);
  font-weight: 800;
  margin: 0 4px;
  position: relative;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 8px;
  right: 8px;
  bottom: 2px;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--gold);
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
}

.navbar-toggler {
  color: var(--green);
  border: 0;
  font-size: 24px;
  box-shadow: none !important;
}

/* Hero */
.hero-section {
  position: relative;
  min-height: 90vh;
  background:
    radial-gradient(circle at 12% 20%, rgba(196, 139, 49, 0.13), transparent 30%),
    linear-gradient(135deg, #fffdf8 0%, #edf7f2 100%);
  overflow: hidden;
}

.min-vh-90 {
  min-height: 90vh;
}

.hero-bg-shape {
  position: absolute;
  width: 560px;
  height: 560px;
  border-radius: 50%;
  background: rgba(6, 71, 47, 0.08);
  top: -230px;
  right: -180px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}

.eyebrow span {
  width: 38px;
  height: 2px;
  background: var(--gold);
  display: inline-block;
}

.hero-section h1 {
  font-size: clamp(44px, 6vw, 82px);
  line-height: 0.98;
  font-weight: 900;
  color: var(--green-dark);
  letter-spacing: -2px;
}

.hero-section h1 span {
  color: var(--gold);
  font-family: "Playfair Display", serif;
}

.hero-text {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.8;
  margin: 24px 0;
  max-width: 620px;
}

.hero-badges {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.hero-badges div {
  background: var(--white);
  border: 1px solid rgba(6, 71, 47, 0.08);
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  color: var(--green-dark);
  box-shadow: 0 10px 30px rgba(3, 53, 31, 0.08);
}

.hero-badges i {
  color: var(--gold);
  margin-right: 6px;
}

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

.mini-note {
  color: var(--muted);
  font-size: 13px;
  max-width: 620px;
}

.hero-card {
  position: relative;
  border-radius: 36px;
  padding: 16px;
  background: linear-gradient(135deg, rgba(6, 71, 47, 0.94), rgba(196, 139, 49, 0.24));
  box-shadow: var(--shadow);
}

.hero-card img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  border-radius: 26px;
}

.floating-card {
  position: absolute;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(10px);
  border-radius: 18px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 18px 40px rgba(0,0,0,0.12);
  color: var(--green-dark);
  font-weight: 900;
}

.floating-card i {
  color: var(--gold);
  font-size: 22px;
}

.card-one {
  left: -18px;
  top: 70px;
}

.card-two {
  right: -18px;
  bottom: 80px;
}

/* Trust Strip */
.trust-strip {
  background: var(--green-dark);
  padding: 30px 0;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.14);
  border-radius: 24px;
  overflow: hidden;
}

.trust-grid div {
  background: var(--green-dark);
  color: var(--white);
  padding: 26px;
  text-align: center;
}

.trust-grid strong {
  display: block;
  color: var(--gold-light);
  font-size: 18px;
  margin-bottom: 5px;
}

.trust-grid span {
  color: rgba(255,255,255,0.75);
  font-size: 14px;
}

/* Services */
.service-card {
  height: 100%;
  background: var(--white);
  padding: 34px;
  border-radius: var(--radius);
  border: 1px solid rgba(6, 71, 47, 0.08);
  box-shadow: 0 18px 48px rgba(3, 53, 31, 0.06);
  transition: 0.35s ease;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: auto -80px -80px auto;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: rgba(196, 139, 49, 0.10);
  transition: 0.35s ease;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow);
  border-color: rgba(196, 139, 49, 0.28);
}

.service-card:hover::before {
  transform: scale(1.4);
}

.service-card .icon {
  width: 70px;
  height: 70px;
  background: var(--green-soft);
  color: var(--green);
  border-radius: 22px;
  display: grid;
  place-items: center;
  font-size: 28px;
  margin-bottom: 22px;
}

.service-card h3 {
  font-weight: 900;
  color: var(--green-dark);
  margin-bottom: 12px;
}

.service-card p {
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 20px;
}

.service-card a {
  color: var(--gold);
  font-weight: 900;
}

.service-card a i {
  transition: 0.3s ease;
}

.service-card a:hover i {
  transform: translateX(5px);
}

/* About */
.about-section {
  background: linear-gradient(135deg, var(--green-soft), #fffaf0);
  position: relative;
}

.about-media {
  position: relative;
  border-radius: 38px;
  background: var(--white);
  padding: 28px;
  box-shadow: var(--shadow);
}

.about-media img {
  width: 100%;
  height: 470px;
  object-fit: contain;
  border-radius: 28px;
  background: #fafafa;
}

.about-box {
  position: absolute;
  left: 52px;
  right: 52px;
  bottom: -34px;
  background: var(--green-dark);
  color: var(--white);
  padding: 24px;
  border-radius: 24px;
  box-shadow: 0 20px 44px rgba(3,53,31,0.25);
}

.about-box h4 {
  color: var(--gold-light);
  font-weight: 900;
}

.about-box p {
  margin: 0;
  color: rgba(255,255,255,0.78);
}

.about-text {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.8;
}

.about-points {
  display: grid;
  gap: 13px;
  margin: 24px 0;
}

.about-points div {
  background: rgba(255,255,255,0.74);
  border: 1px solid rgba(6,71,47,0.08);
  padding: 14px 16px;
  border-radius: 16px;
  color: var(--green-dark);
  font-weight: 700;
}

.about-points i {
  color: var(--gold);
  margin-right: 8px;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 26px;
}

.stats-row div {
  background: var(--white);
  border-radius: 22px;
  padding: 22px;
  text-align: center;
  box-shadow: 0 14px 30px rgba(3,53,31,0.07);
}

.stats-row strong {
  display: block;
  font-size: 34px;
  color: var(--green);
  font-weight: 900;
}

.stats-row span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

/* Process */
.process-line {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}

.process-step {
  background: var(--white);
  border-radius: var(--radius);
  padding: 34px;
  box-shadow: 0 18px 48px rgba(3,53,31,0.06);
  border: 1px solid rgba(6,71,47,0.08);
  position: relative;
}

.process-step span {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--green-dark);
  color: var(--gold-light);
  display: grid;
  place-items: center;
  font-weight: 900;
  margin-bottom: 20px;
}

.process-step h3 {
  color: var(--green-dark);
  font-weight: 900;
}

.process-step p {
  color: var(--muted);
  line-height: 1.75;
  margin: 0;
}

/* Portfolio */
.portfolio-section {
  background: #f8fbf9;
}

.portfolio-filter {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 34px;
}

.filter-btn {
  border: 1px solid rgba(6,71,47,0.16);
  background: var(--white);
  color: var(--green-dark);
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 900;
  transition: 0.3s ease;
}

.filter-btn.active,
.filter-btn:hover {
  background: var(--green);
  color: var(--white);
}

.portfolio-card {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  box-shadow: var(--shadow);
  min-height: 430px;
  background: var(--green-dark);
}

.portfolio-card img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
  transition: 0.5s ease;
}

.portfolio-card:hover img {
  transform: scale(1.05);
  opacity: 0.62;
}

.portfolio-overlay {
  position: absolute;
  inset: auto 20px 20px 20px;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(12px);
  border-radius: 20px;
  padding: 22px;
  transform: translateY(12px);
  opacity: 0;
  transition: 0.35s ease;
}

.portfolio-card:hover .portfolio-overlay {
  transform: translateY(0);
  opacity: 1;
}

.portfolio-overlay h3 {
  color: var(--green-dark);
  font-weight: 900;
}

.portfolio-overlay p {
  color: var(--muted);
  margin: 0;
}

/* Advisor */
.advisor-section {
  background:
    linear-gradient(135deg, rgba(3,53,31,0.97), rgba(6,71,47,0.92)),
    radial-gradient(circle at 80% 20%, rgba(196,139,49,0.45), transparent 24%);
  color: var(--white);
  overflow: hidden;
}

.advisor-section p {
  color: rgba(255,255,255,0.78);
  line-height: 1.8;
  font-size: 17px;
}

.advisor-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin: 26px 0;
}

.advisor-features div {
  background: rgba(255,255,255,0.09);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 18px;
  padding: 15px;
  font-weight: 800;
}

.advisor-features i {
  color: var(--gold-light);
  margin-right: 8px;
}

.growth-card {
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 34px;
  padding: 42px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.18);
  backdrop-filter: blur(12px);
}

.target-icon {
  width: 90px;
  height: 90px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: 28px;
  display: grid;
  place-items: center;
  color: var(--green-dark);
  font-size: 42px;
  margin-bottom: 28px;
}

.growth-card h3 {
  font-size: 38px;
  font-weight: 900;
  color: var(--white);
}

.growth-card a {
  color: var(--gold-light);
  font-weight: 900;
}

/* Why */
.why-card {
  height: 100%;
  text-align: center;
  background: var(--white);
  border-radius: var(--radius);
  padding: 34px 24px;
  border: 1px solid rgba(6,71,47,0.08);
  box-shadow: 0 18px 42px rgba(3,53,31,0.06);
  transition: 0.35s ease;
}

.why-card:hover {
  transform: translateY(-10px);
  background: var(--green-dark);
}

.why-card i {
  font-size: 38px;
  color: var(--gold);
  margin-bottom: 22px;
}

.why-card h3 {
  color: var(--green-dark);
  font-weight: 900;
  margin-bottom: 10px;
}

.why-card p {
  color: var(--muted);
  line-height: 1.7;
  margin: 0;
}

.why-card:hover h3,
.why-card:hover p {
  color: var(--white);
}

/* FAQ */
.faq-section {
  background: linear-gradient(135deg, #fffaf0, var(--green-soft));
}

.custom-accordion .accordion-item {
  border: 0;
  margin-bottom: 14px;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(3,53,31,0.06);
}

.custom-accordion .accordion-button {
  font-weight: 900;
  color: var(--green-dark);
  padding: 20px 24px;
  box-shadow: none;
}

.custom-accordion .accordion-button:not(.collapsed) {
  background: var(--green-dark);
  color: var(--white);
}

.custom-accordion .accordion-body {
  color: var(--muted);
  line-height: 1.8;
}

/* CTA */
.cta-section {
  background: var(--white);
  padding: 80px 0 0;
}

.cta-box {
  background:
    radial-gradient(circle at right, rgba(196,139,49,0.25), transparent 30%),
    linear-gradient(135deg, var(--green-dark), var(--green));
  color: var(--white);
  border-radius: 34px;
  padding: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  box-shadow: var(--shadow);
}

.cta-box span {
  color: var(--gold-light);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  font-size: 13px;
}

.cta-box h2 {
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 900;
  margin: 8px 0 0;
}

/* Contact */
.contact-info-card {
  height: 100%;
  background:
    linear-gradient(135deg, rgba(3,53,31,0.96), rgba(6,71,47,0.92)),
    url("../assets/banner.jpg") center/cover;
  color: var(--white);
  border-radius: 34px;
  padding: 40px;
  box-shadow: var(--shadow);
}

.contact-info-card p {
  color: rgba(255,255,255,0.78);
  line-height: 1.8;
}

.contact-list {
  display: grid;
  gap: 14px;
  margin: 30px 0;
}

.contact-list a {
  color: var(--white);
  background: rgba(255,255,255,0.10);
  padding: 15px 18px;
  border-radius: 16px;
  font-weight: 800;
  transition: 0.3s ease;
}

.contact-list a:hover {
  background: var(--gold);
  color: var(--green-dark);
}

.contact-list i {
  margin-right: 10px;
}

.contact-social {
  display: flex;
  gap: 12px;
}

.contact-social a {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--white);
  color: var(--green-dark);
  transition: 0.3s ease;
}

.contact-social a:hover {
  background: var(--gold-light);
  transform: translateY(-4px);
}

.contact-form {
  background: var(--white);
  border-radius: 34px;
  padding: 40px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(6,71,47,0.08);
}

.contact-form label {
  color: var(--green-dark);
  font-weight: 900;
  margin-bottom: 8px;
}

.contact-form .form-control,
.contact-form .form-select {
  min-height: 56px;
  border-radius: 16px;
  border: 1px solid rgba(6,71,47,0.13);
  padding: 13px 16px;
  box-shadow: none;
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
  border-color: var(--gold);
}

.form-disclaimer {
  color: var(--muted);
  font-size: 13px;
  margin: 0;
}

/* Footer */
.site-footer {
  background: var(--green-dark);
  color: rgba(255,255,255,0.78);
  padding: 70px 0 24px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
}

.footer-brand img {
  width: 72px;
  height: 72px;
  border-radius: 18px;
  object-fit: cover;
  background: var(--white);
}

.footer-brand h3 {
  color: var(--white);
  font-weight: 900;
  margin: 0;
}

.footer-brand p {
  color: var(--gold-light);
  margin: 0;
}

.footer-text {
  line-height: 1.8;
}

.site-footer h4 {
  color: var(--gold-light);
  font-weight: 900;
  margin-bottom: 20px;
}

.site-footer ul {
  list-style: none;
  padding: 0;
  display: grid;
  gap: 10px;
}

.site-footer a {
  color: rgba(255,255,255,0.78);
}

.site-footer a:hover {
  color: var(--gold-light);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  margin-top: 44px;
  padding-top: 22px;
  display: flex;
  gap: 30px;
  justify-content: space-between;
  align-items: start;
  flex-wrap: wrap;
}

.footer-bottom p {
  margin: 0;
}

.disclaimer {
  max-width: 740px;
  font-size: 12px;
  line-height: 1.7;
}

/* Floating Buttons */
.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 24px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #25d366;
  color: var(--white);
  font-size: 30px;
  z-index: 998;
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.35);
  animation: floatPulse 1.8s infinite;
}

.whatsapp-float:hover {
  color: var(--white);
}

@keyframes floatPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.06); }
}

.back-to-top {
  position: fixed;
  right: 92px;
  bottom: 28px;
  width: 50px;
  height: 50px;
  border: 0;
  border-radius: 50%;
  background: var(--green-dark);
  color: var(--white);
  display: none;
  place-items: center;
  z-index: 997;
}

.back-to-top.show {
  display: grid;
}

/* Responsive */
@media (max-width: 1199px) {
  .nav-link {
    margin: 0;
    font-size: 14px;
  }
}

@media (max-width: 991px) {
  .navbar-collapse {
    background: var(--white);
    margin-top: 16px;
    padding: 18px;
    border-radius: 20px;
    box-shadow: var(--shadow);
  }

  .hero-section {
    padding: 70px 0;
  }

  .hero-card img {
    height: auto;
  }

  .trust-grid,
  .process-line {
    grid-template-columns: repeat(2, 1fr);
  }

  .cta-box {
    flex-direction: column;
    align-items: start;
  }
}

@media (max-width: 767px) {
  .section-padding {
    padding: 74px 0;
  }

  .top-strip .container {
    justify-content: center !important;
    text-align: center;
  }

  .small-info {
    justify-content: center;
  }

  .brand-wrap img {
    width: 48px;
    height: 48px;
  }

  .brand-wrap strong {
    font-size: 15px;
  }

  .brand-wrap small {
    font-size: 11px;
  }

  .hero-section h1 {
    letter-spacing: -1px;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .floating-card {
    display: none;
  }

  .trust-grid,
  .process-line,
  .advisor-features,
  .stats-row {
    grid-template-columns: 1fr;
  }

  .about-box {
    position: static;
    margin-top: 18px;
  }

  .about-media img {
    height: 330px;
  }

  .portfolio-card,
  .portfolio-card img {
    min-height: 360px;
  }

  .cta-box,
  .contact-form,
  .contact-info-card,
  .growth-card {
    padding: 28px;
  }

  .back-to-top {
    display: none !important;
  }
}
