/* ============================================================
   MITRI — CFO Advisory Practice
   Stylesheet  |  Version 1.0
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700;900&display=swap');

/* ---- CSS Variables ---- */
:root {
  --grey-green:   #3a7047;
  --sage-green:   #ffffff;
  --creme:        #fffbf5;
  --accent-green: #3a7047;
  --dark:         #1a1a1a;
  --dark-alt:     #2e2e2e;
  --text-muted:   #6b7280;
  --border:       #e5e8e0;
  --white:        #ffffff;
  --card-bg:      #ffffff;
  --nav-height:   76px;

  --shadow-xs:    0 1px 4px rgba(0,0,0,0.06);
  --shadow-sm:    0 2px 10px rgba(0,0,0,0.07);
  --shadow:       0 4px 24px rgba(58,112,71,0.11);
  --shadow-lg:    0 8px 40px rgba(58,112,71,0.18);
  --radius:       14px;
  --radius-sm:    8px;
  --transition:   all 0.28s ease;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Roboto', sans-serif;
  background-color: var(--creme);
  color: var(--dark);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { transition: var(--transition); }
ul { list-style: none; }

/* ---- Layout ---- */
.container { max-width: 1180px; margin: 0 auto; }
section { padding: 90px 2rem; }

/* ---- Typography ---- */
h1 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 900; line-height: 1.08; color: var(--grey-green); }
h2 { font-size: clamp(1.65rem, 3vw, 2.35rem); font-weight: 700; line-height: 1.18; color: var(--grey-green); }
h3 { font-size: 1.2rem; font-weight: 700; line-height: 1.3; color: var(--grey-green); }
h4 { font-size: 0.95rem; font-weight: 700; color: var(--dark-alt); }
p  { line-height: 1.72; }

.section-tag {
  display: inline-block;
  background: rgba(58,112,71,0.07);
  color: var(--grey-green);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 0.32rem 0.85rem;
  border-radius: 20px;
  border: 1px solid rgba(58,112,71,0.18);
  margin-bottom: 0.75rem;
}

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.section-header h2 { margin-bottom: 0.85rem; }
.section-header p {
  color: var(--text-muted);
  font-size: 1.04rem;
  max-width: 580px;
  margin: 0 auto;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.82rem 1.85rem;
  border-radius: var(--radius-sm);
  font-family: 'Roboto', sans-serif;
  font-size: 0.94rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--grey-green);
  color: white;
}
.btn-primary:hover {
  background: #2d5a38;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(58,112,71,0.38);
}
.btn-outline-white {
  background: transparent;
  color: white;
  border-color: rgba(255,255,255,0.5);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.1);
  border-color: white;
  transform: translateY(-2px);
}
.btn-dark {
  background: var(--grey-green);
  color: white;
}
.btn-dark:hover {
  background: #2d5a38;
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.btn-outline-green {
  background: transparent;
  color: var(--grey-green);
  border-color: var(--grey-green);
}
.btn-outline-green:hover {
  background: var(--grey-green);
  color: white;
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.btn-lg { padding: 1rem 2.2rem; font-size: 1rem; }
.btn-sm { padding: 0.55rem 1.2rem; font-size: 0.86rem; }

/* Service block "Learn More" link */
.service-learn-more { margin-top: 1.2rem; }
.service-block-content h2 a {
  color: inherit;
  text-decoration: none;
}
.service-block-content h2 a:hover { color: #2d5a38; }

/* ============================================================
   NAVIGATION
   ============================================================ */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: white;
  box-shadow: 0 1px 8px rgba(0,0,0,0.07);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-height);
}
.nav-logo {
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}
.nav-logo img { height: 42px; width: auto; }
.nav-logo-text {
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--grey-green);
  letter-spacing: -0.5px;
  display: block;
}
.nav-logo-text span { color: var(--accent-green); }

.nav-menu {
  display: flex;
  align-items: center;
  gap: 0;
}
.nav-menu a {
  display: block;
  color: var(--dark-alt);
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 500;
  padding: 0.4rem 0.65rem;
  border-radius: 5px;
  transition: var(--transition);
  white-space: nowrap;
}
.nav-menu a:hover,
.nav-menu a.active {
  color: var(--grey-green);
  background: rgba(58,112,71,0.06);
}
.nav-menu .btn-nav {
  background: var(--grey-green) !important;
  color: white !important;
  font-weight: 700;
  font-size: 0.82rem;
  padding: 0.42rem 1rem;
  border-radius: 7px;
  margin-left: 0.2rem;
}
.nav-menu .btn-nav:hover {
  background: #2d5a38 !important;
  transform: translateY(-1px);
}

/* ---- Dropdown menus ---- */
.nav-dropdown {
  position: relative;
}
.nav-dropdown-toggle {
  display: flex !important;
  align-items: center;
  gap: 0.28rem;
  cursor: pointer;
}
.nav-arrow {
  font-size: 0.6rem;
  transition: transform 0.22s ease;
  pointer-events: none;
}
.nav-dropdown:hover .nav-arrow,
.nav-dropdown.open .nav-arrow {
  transform: rotate(180deg);
}
.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
  min-width: 230px;
  padding: 0.45rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  z-index: 1100;
  list-style: none;
}
/* Small notch / caret */
.nav-dropdown-menu::before {
  content: '';
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%);
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 6px solid var(--border);
}
.nav-dropdown-menu::after {
  content: '';
  position: absolute;
  top: -5px;
  left: 50%;
  transform: translateX(-50%);
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 6px solid var(--white);
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown.open .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown-menu li a {
  display: block !important;
  padding: 0.52rem 0.85rem !important;
  color: var(--dark-alt) !important;
  font-size: 0.82rem !important;
  font-weight: 500 !important;
  border-radius: 5px !important;
  white-space: nowrap;
  width: auto !important;
  background: none;
}
.nav-dropdown-menu li a:hover {
  background: rgba(58,112,71,0.07) !important;
  color: var(--grey-green) !important;
}
.nav-dropdown-menu li + li {
  margin-top: 1px;
}

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--grey-green);
  border-radius: 2px;
  transition: var(--transition);
}

/* ============================================================
   HERO — HOME
   ============================================================ */
.hero {
  background: var(--creme);
  padding: 110px 2rem;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -120px; right: -120px;
  width: 580px; height: 580px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(58,112,71,0.05) 0%, transparent 68%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -130px; left: -80px;
  width: 420px; height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(58,112,71,0.03) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  max-width: 1180px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 3.5rem;
  align-items: center;
}

.hero-text .section-tag {
  background: rgba(58,112,71,0.08);
  border-color: rgba(58,112,71,0.18);
  color: var(--grey-green);
}
.hero-text h1 {
  color: var(--grey-green);
  margin-bottom: 1.25rem;
}
.hero-text h1 em {
  font-style: normal;
  color: var(--accent-green);
}
.hero-text > p {
  color: var(--text-muted);
  font-size: 1.1rem;
  max-width: 510px;
  margin-bottom: 2.2rem;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; }

/* Hero Visual Cards */
.hero-visual { display: flex; flex-direction: column; gap: 1rem; }
.hero-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.35rem 1.6rem;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 1rem;
  box-shadow: var(--shadow-xs);
}
.hero-card:hover {
  transform: translateX(5px);
  border-color: rgba(58,112,71,0.25);
  box-shadow: var(--shadow-sm);
}
/* Hero card as clickable link */
a.hero-card-link {
  text-decoration: none;
  display: block;
}
a.hero-card-link .hero-card { cursor: pointer; }
a.hero-card-link:hover .hero-card {
  transform: translateX(5px);
  border-color: rgba(58,112,71,0.25);
  box-shadow: var(--shadow-sm);
}
a.hero-card-link:hover .hero-card-text .value { color: var(--grey-green); }
.hero-card-icon {
  width: 44px; height: 44px;
  background: rgba(58,112,71,0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.hero-card-icon i { color: var(--grey-green); font-size: 1.1rem; }
.hero-card-text .label {
  font-size: 0.72rem;
  color: var(--text-muted);
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 0.2rem;
}
.hero-card-text .value {
  color: var(--dark);
  font-size: 0.95rem;
  font-weight: 600;
}

/* ============================================================
   TRUST BAR
   ============================================================ */
.trust-bar {
  background: white;
  padding: 26px 2rem;
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-xs);
}
.trust-bar-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--text-muted);
  font-size: 0.88rem;
  font-weight: 500;
}
.trust-item i { color: var(--accent-green); font-size: 1.05rem; }
.trust-divider {
  width: 1px;
  height: 24px;
  background: var(--border);
}

/* ============================================================
   SERVICES GRID — HOME
   ============================================================ */
.services-home { background: var(--creme); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}

.service-card {
  background: var(--card-bg);
  border-radius: var(--radius);
  padding: 1.9rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: var(--transition);
  text-decoration: none;
  display: block;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, #3a7047, #2d5a38);
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(58,112,71,0.18);
}
.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  width: 50px; height: 50px;
  background: linear-gradient(135deg, #3a7047 0%, #2d5a38 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
  box-shadow: 0 4px 12px rgba(58,112,71,0.25);
}
.service-icon i { color: white; font-size: 1.25rem; }

.service-card h3 {
  margin-bottom: 0.55rem;
  font-size: 1.05rem;
}
.service-card p {
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.65;
  margin-bottom: 1.2rem;
}
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--grey-green);
  font-size: 0.83rem;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.2px;
}
.service-link i { font-size: 0.7rem; transition: var(--transition); }
.service-card:hover .service-link i { transform: translateX(4px); }

/* ============================================================
   ABOUT / WHY MITRI
   ============================================================ */
.about-section {
  background: white;
  position: relative;
  overflow: hidden;
}
.about-section::before {
  content: '';
  position: absolute;
  right: -80px; top: -80px;
  width: 440px; height: 440px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(58,112,71,0.04) 0%, transparent 70%);
  pointer-events: none;
}
.about-section::after {
  content: '';
  position: absolute;
  left: 40%; bottom: -60px;
  width: 280px; height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(58,112,71,0.03) 0%, transparent 70%);
  pointer-events: none;
}

.about-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.about-text .section-tag {
  background: rgba(58,112,71,0.08);
  border-color: rgba(58,112,71,0.18);
  color: var(--grey-green);
}
.about-text h2 { color: var(--grey-green); margin-bottom: 1.2rem; }
.about-text p {
  color: var(--text-muted);
  margin-bottom: 1rem;
  font-size: 0.97rem;
}
.about-text .btn-primary { margin-top: 1.2rem; }

.about-features { display: flex; flex-direction: column; gap: 0.9rem; }
.about-feature {
  background: var(--creme);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 1.15rem 1.4rem;
  display: flex;
  align-items: flex-start;
  gap: 0.95rem;
  transition: var(--transition);
}
.about-feature:hover {
  background: rgba(58,112,71,0.04);
  border-color: rgba(58,112,71,0.2);
}
.about-feature-icon {
  width: 38px; height: 38px;
  background: rgba(58,112,71,0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.about-feature-icon i { color: var(--grey-green); font-size: 0.95rem; }
.about-feature h4 { color: var(--grey-green); margin-bottom: 0.2rem; font-size: 0.92rem; }
.about-feature p { color: var(--text-muted); font-size: 0.83rem; margin: 0; }

/* ============================================================
   PROCESS
   ============================================================ */
.process-section { background: white; }

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  position: relative;
  max-width: 1180px;
  margin: 0 auto;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(12.5% + 28px);
  right: calc(12.5% + 28px);
  height: 2px;
  background: linear-gradient(90deg, #3a7047, #2d5a38);
  z-index: 0;
}

.process-step { text-align: center; padding: 0 0.5rem; position: relative; z-index: 1; }
.step-number {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, #3a7047, #2d5a38);
  color: white;
  font-size: 1.1rem;
  font-weight: 900;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.2rem;
  box-shadow: 0 4px 14px rgba(58,112,71,0.3);
}
.process-step h3 { margin-bottom: 0.5rem; font-size: 0.98rem; }
.process-step p { color: var(--text-muted); font-size: 0.85rem; line-height: 1.6; }

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
  background: linear-gradient(145deg, #1e3d26 0%, #2a5435 60%, #3a7047 100%);
  padding: 90px 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-top: none;
  border-bottom: none;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 65% 50%, rgba(58,112,71,0.04) 0%, transparent 60%);
}
.cta-section .container { position: relative; z-index: 1; max-width: 680px; margin: 0 auto; }
.cta-section .section-tag {
  background: rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.85);
  border-color: rgba(255,255,255,0.2);
}
.cta-section h2 { color: white; margin-bottom: 1rem; }
.cta-section p { color: rgba(255,255,255,0.72); font-size: 1.04rem; margin-bottom: 2rem; }
.cta-section .btn-primary {
  background: var(--creme);
  color: var(--grey-green);
  font-weight: 700;
}
.cta-section .btn-primary:hover {
  background: white;
  box-shadow: 0 6px 24px rgba(0,0,0,0.18);
  transform: translateY(-2px);
}
.cta-section .btn-outline-green {
  color: white;
  border-color: rgba(255,255,255,0.45);
  background: transparent;
}
.cta-section .btn-outline-green:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.75);
  color: white;
  transform: translateY(-2px);
}
.cta-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: #182e1e;
  color: rgba(255,255,255,0.65);
  padding: 65px 2rem 0;
}
.footer-inner {
  max-width: 1180px;
  margin: 0 auto;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1.2fr 1.4fr 1.8fr;
  gap: 3rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.09);
}
.footer-brand .nav-logo-text { font-size: 1.35rem; margin-bottom: 0.85rem; }
.footer-brand p { font-size: 0.87rem; line-height: 1.72; color: rgba(255,255,255,0.5); }
.footer-logo-img {
  height: 44px;
  width: auto;
  display: block;
  margin-bottom: 1rem;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.footer-col h4 {
  color: white;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1.2rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.55rem; }
.footer-col ul a {
  color: rgba(255,255,255,0.52);
  text-decoration: none;
  font-size: 0.87rem;
  transition: var(--transition);
}
.footer-col ul a:hover { color: var(--sage-green); padding-left: 3px; }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  margin-bottom: 0.85rem;
}
.footer-contact-item i { color: var(--sage-green); font-size: 0.88rem; margin-top: 3px; flex-shrink: 0; }
.footer-contact-item span,
.footer-contact-item a {
  color: rgba(255,255,255,0.52);
  font-size: 0.87rem;
  line-height: 1.5;
  text-decoration: none;
  transition: var(--transition);
}
.footer-contact-item a:hover { color: var(--sage-green); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.4rem 0;
  font-size: 0.81rem;
  color: rgba(255,255,255,0.38);
  flex-wrap: wrap;
  gap: 0.75rem;
}
.footer-bottom a { color: rgba(255,255,255,0.38); text-decoration: none; transition: var(--transition); }
.footer-bottom a:hover { color: var(--sage-green); }
.footer-bottom-links { display: flex; gap: 1.5rem; }

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  background: var(--creme);
  padding: 75px 2rem 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 65% 40%, rgba(58,112,71,0.04) 0%, transparent 60%);
}
.page-hero-inner {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.page-hero .section-tag {
  background: rgba(58,112,71,0.08);
  border-color: rgba(58,112,71,0.18);
  color: var(--grey-green);
}
.page-hero h1 { color: var(--grey-green); font-size: clamp(1.9rem, 4vw, 2.7rem); margin-bottom: 1rem; }
.page-hero p { color: var(--text-muted); font-size: 1.04rem; }

/* Breadcrumb */
.breadcrumb {
  background: white;
  border-bottom: 1px solid var(--border);
  padding: 0.7rem 2rem;
}
.breadcrumb-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.8rem;
  color: var(--text-muted);
}
.breadcrumb a { color: var(--grey-green); text-decoration: none; font-weight: 500; }
.breadcrumb a:hover { color: var(--accent-green); }
.breadcrumb i { font-size: 0.62rem; }

/* ============================================================
   SERVICES PAGE
   ============================================================ */
.services-page { background: var(--creme); }

.services-list {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.service-block {
  background: white;
  border-radius: var(--radius);
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 2.5rem;
  align-items: start;
  transition: var(--transition);
}
.service-block:hover { box-shadow: var(--shadow); border-color: rgba(58,112,71,0.15); }

.service-block-visual {
  background: linear-gradient(145deg, #3a7047 0%, #2d5a38 100%);
  border-radius: 10px;
  padding: 2.2rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 200px;
  gap: 1rem;
}
.service-block-visual i { color: rgba(255,255,255,0.92); font-size: 2.8rem; }
.service-block-visual span {
  color: rgba(255,255,255,0.78);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.service-block-content h2 {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}
.service-block-content > p {
  color: var(--text-muted);
  margin-bottom: 1.6rem;
  font-size: 0.95rem;
  line-height: 1.72;
}

.service-includes-label {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--grey-green);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 0.75rem;
}

.service-includes-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.45rem 1.2rem;
}
.service-includes-grid li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.87rem;
  color: var(--dark-alt);
  line-height: 1.4;
}
.service-includes-grid li i {
  color: var(--accent-green);
  font-size: 0.72rem;
  flex-shrink: 0;
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-section { background: var(--creme); }

.contact-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 3.5rem;
  align-items: start;
}

.contact-info > h2 { margin-bottom: 0.85rem; }
.contact-info > p { color: var(--text-muted); margin-bottom: 2.2rem; font-size: 0.96rem; }

.contact-details { display: flex; flex-direction: column; gap: 0.9rem; }
.contact-detail-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.2rem;
  background: white;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-xs);
  transition: var(--transition);
}
.contact-detail-item:hover { box-shadow: var(--shadow-sm); }
.contact-detail-icon {
  width: 40px; height: 40px;
  background: linear-gradient(135deg, #3a7047, #2d5a38);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-detail-icon i { color: white; font-size: 0.92rem; }
.contact-detail-text label {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--text-muted);
  margin-bottom: 0.15rem;
}
.contact-detail-text span,
.contact-detail-text a {
  font-size: 0.9rem;
  color: var(--dark);
  text-decoration: none;
  font-weight: 500;
}
.contact-detail-text a:hover { color: var(--grey-green); }

/* Contact Form */
.contact-form-card {
  background: white;
  border-radius: var(--radius);
  padding: 2.5rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}
.contact-form-card h3 { margin-bottom: 0.4rem; }
.contact-form-card > p { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 1.75rem; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.38rem; margin-bottom: 1.05rem; }

.form-group label {
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--dark-alt);
  text-transform: uppercase;
  letter-spacing: 0.6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  font-family: 'Roboto', sans-serif;
  font-size: 0.92rem;
  color: var(--dark);
  background: var(--creme);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.72rem 1rem;
  outline: none;
  transition: var(--transition);
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent-green);
  background: white;
  box-shadow: 0 0 0 3px rgba(73,194,102,0.13);
}
.form-group textarea { resize: vertical; min-height: 118px; }

/* Required field validation */
.field-error {
  font-size: 0.78rem;
  color: #c0392b;
  font-weight: 500;
  min-height: 1em;
  display: block;
}
.form-group input.field-invalid,
.form-group select.field-invalid,
.form-group textarea.field-invalid {
  border-color: #c0392b;
  background: #fff8f8;
  box-shadow: 0 0 0 3px rgba(192,57,43,0.10);
}

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%233a7047' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}
.form-submit { margin-top: 0.75rem; }
.form-submit .btn { width: 100%; }
.form-disclaimer {
  text-align: center;
  font-size: 0.76rem;
  color: var(--text-muted);
  margin-top: 0.7rem;
}

/* Success message */
.form-success {
  display: none;
  text-align: center;
  padding: 2rem;
}
.form-success i { color: var(--accent-green); font-size: 2.5rem; margin-bottom: 1rem; }
.form-success h3 { color: var(--grey-green); margin-bottom: 0.5rem; }
.form-success p { color: var(--text-muted); font-size: 0.9rem; }

/* ============================================================
   PRIVACY PAGE
   ============================================================ */
.privacy-section { background: var(--creme); }
.privacy-content {
  max-width: 820px;
  margin: 0 auto;
  background: white;
  border-radius: var(--radius);
  padding: 3rem 3.5rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}
.privacy-content .last-updated {
  display: inline-block;
  background: rgba(58,112,71,0.07);
  color: var(--grey-green);
  font-size: 0.76rem;
  font-weight: 700;
  padding: 0.28rem 0.8rem;
  border-radius: 20px;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(58,112,71,0.2);
}
.privacy-content h2 {
  font-size: 1.2rem;
  color: var(--grey-green);
  margin: 2.2rem 0 0.7rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}
.privacy-content h2:first-of-type { margin-top: 0; padding-top: 0; border-top: none; }
.privacy-content p { color: var(--dark-alt); font-size: 0.93rem; margin-bottom: 0.9rem; }
.privacy-content ul { margin: 0.4rem 0 1rem 1.4rem; list-style: disc; }
.privacy-content ul li { color: var(--dark-alt); font-size: 0.93rem; margin-bottom: 0.4rem; line-height: 1.65; }
.privacy-content a { color: var(--grey-green); }
.privacy-content a:hover { color: var(--accent-green); }

/* ============================================================
   HEXAGON MOTIF
   ============================================================ */
.hex-motif {
  position: absolute;
  pointer-events: none;
  opacity: 0.065;
  z-index: 0;
}
.hex-motif svg { width: 100%; height: 100%; }
.hex-motif-hero {
  width: 310px; height: 340px;
  right: 0px; top: 50%;
  transform: translateY(-50%);
}
.hex-motif-about {
  width: 260px; height: 285px;
  left: -40px; bottom: -30px;
}
.hex-motif-inner-page {
  width: 200px; height: 220px;
  right: 3%; top: 50%;
  transform: translateY(-50%);
  opacity: 0.04;
}
.hex-motif-cta {
  width: 220px; height: 240px;
  right: 4%; top: 50%;
  transform: translateY(-50%);
  opacity: 0.05;
}
@media (max-width: 900px) {
  .hex-motif-hero { width: 180px; height: 200px; right: -20px; }
  .hex-motif-about { width: 160px; height: 175px; }
  .hex-motif-inner-page { display: none; }
  .hex-motif-cta { display: none; }
}

/* ============================================================
   REVEAL ANIMATION
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
/* ============================================================
   SERVICE DETAIL PAGES
   ============================================================ */
.service-detail-section { background: var(--creme); }
.service-detail-inner {
  max-width: 1180px;
  margin: 0 auto;
}
.service-detail-overview {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 3rem;
  align-items: start;
  margin-bottom: 3.5rem;
}
.service-detail-text h2 { margin-bottom: 1rem; }
.service-detail-text p { color: var(--text-muted); font-size: 0.97rem; margin-bottom: 1rem; line-height: 1.75; }

.service-sidebar {
  background: white;
  border-radius: var(--radius);
  padding: 1.75rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: calc(var(--nav-height) + 1.5rem);
}
.service-sidebar h4 {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--grey-green);
  margin-bottom: 1rem;
}
.service-sidebar ul { display: flex; flex-direction: column; gap: 0.5rem; }
.service-sidebar ul li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.88rem;
  color: var(--dark-alt);
  padding: 0.4rem 0;
  border-bottom: 1px solid var(--border);
}
.service-sidebar ul li:last-child { border-bottom: none; }
.service-sidebar ul li i { color: var(--accent-green); font-size: 0.7rem; flex-shrink: 0; }
.service-sidebar .btn { width: 100%; margin-top: 1.25rem; text-align: center; justify-content: center; }

.about-facts-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}
.about-fact-card {
  background: white;
  border-radius: var(--radius);
  padding: 1.5rem 1.75rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.about-fact-card .fact-icon {
  width: 2.25rem;
  height: 2.25rem;
  min-width: 2.25rem;
  border-radius: 50%;
  background: var(--accent-green);
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-fact-card .fact-icon i { color: white; font-size: 0.85rem; }
.about-fact-card .fact-body { display: flex; flex-direction: column; gap: 0.15rem; }
.about-fact-card .fact-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--grey-green);
  font-weight: 600;
}
.about-fact-card .fact-value {
  font-size: 0.9rem;
  color: var(--dark-alt);
  font-weight: 500;
  line-height: 1.4;
}

.service-benefits {
  background: white;
  border-radius: var(--radius);
  padding: 2.5rem;
  border: 1px solid var(--border);
  margin-bottom: 2.5rem;
}
.service-benefits h3 { margin-bottom: 1.75rem; }
.service-benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.service-benefit-card {
  background: var(--creme);
  border-radius: var(--radius-sm);
  padding: 1.35rem;
  border: 1px solid var(--border);
  transition: var(--transition);
}
.service-benefit-card:hover { border-color: rgba(58,112,71,0.25); background: rgba(58,112,71,0.03); }
.service-benefit-card .benefit-icon {
  width: 40px; height: 40px;
  background: linear-gradient(135deg, #3a7047, #2d5a38);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.85rem;
}
.service-benefit-card .benefit-icon i { color: white; font-size: 0.9rem; }
.service-benefit-card h4 { font-size: 0.9rem; color: var(--grey-green); margin-bottom: 0.4rem; }
.service-benefit-card p { font-size: 0.83rem; color: var(--text-muted); line-height: 1.6; }

.service-for {
  background: linear-gradient(135deg, rgba(58,112,71,0.05), rgba(73,194,102,0.07));
  border-radius: var(--radius);
  padding: 2.5rem;
  border: 1px solid rgba(58,112,71,0.12);
  margin-bottom: 2.5rem;
}
.service-for h3 { margin-bottom: 1.2rem; }
.service-for-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}
.service-for-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  background: white;
  border-radius: var(--radius-sm);
  padding: 1rem 1.25rem;
  border: 1px solid var(--border);
  transition: var(--transition);
}
.service-for-list li:hover { border-color: rgba(58,112,71,0.3); box-shadow: var(--shadow-sm); }
.service-for-list li i { color: var(--accent-green); font-size: 0.7rem; flex-shrink: 0; margin-top: 0.35rem; }
.service-for-list .sfl-body { display: flex; flex-direction: column; gap: 0.2rem; }
.service-for-list .sfl-body strong { display: block; font-size: 0.88rem; font-weight: 600; color: var(--dark); }
.service-for-list .sfl-body span { font-size: 0.82rem; color: var(--text-muted); line-height: 1.55; }

.service-faq { margin-bottom: 2.5rem; }
.service-faq h3 { margin-bottom: 1.5rem; }
.faq-item {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  margin-bottom: 0.75rem;
  overflow: hidden;
}
.faq-question {
  padding: 1.15rem 1.4rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  font-size: 0.93rem;
  color: var(--dark);
  transition: var(--transition);
  background: none;
  border: none;
  width: 100%;
  text-align: left;
}
.faq-question:hover { color: var(--grey-green); background: rgba(58,112,71,0.03); }
.faq-question i { color: var(--accent-green); font-size: 0.8rem; flex-shrink: 0; transition: var(--transition); }
.faq-answer {
  padding: 0 1.4rem 1.15rem;
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.7;
  display: none;
}
.faq-item.open .faq-answer { display: block; }
.faq-item.open .faq-question i { transform: rotate(45deg); }
.faq-item.open .faq-question { color: var(--grey-green); }

.service-related {
  background: white;
  border-radius: var(--radius);
  padding: 2.5rem;
  border: 1px solid var(--border);
}
.service-related h3 { margin-bottom: 1.5rem; }
.related-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.related-card {
  background: var(--creme);
  border-radius: var(--radius-sm);
  padding: 1.2rem;
  border: 1px solid var(--border);
  text-decoration: none;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.related-card:hover { border-color: rgba(58,112,71,0.3); transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.related-card-icon {
  width: 36px; height: 36px;
  background: linear-gradient(135deg, #3a7047, #2d5a38);
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.related-card-icon i { color: white; font-size: 0.8rem; }
.related-card span { font-size: 0.85rem; font-weight: 600; color: var(--dark); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .service-detail-overview { grid-template-columns: 1fr; }
  .service-sidebar { position: static; }
  .service-benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .related-services-grid { grid-template-columns: repeat(2, 1fr); }
  .about-facts-strip { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .process-steps::before { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .service-block { grid-template-columns: 1fr; }
  .service-block-visual { min-height: 140px; flex-direction: row; justify-content: flex-start; gap: 1rem; padding: 1.5rem; }
  .service-block-visual i { font-size: 2rem; }
  .service-for-list { grid-template-columns: 1fr; }
}

@media (max-width: 820px) {
  .nav-hamburger { display: flex; }
  .nav-menu {
    display: none;
    position: absolute;
    top: var(--nav-height);
    left: 0; right: 0;
    z-index: 999;
    background: white;
    flex-direction: column;
    align-items: flex-start;
    padding: 1.2rem 1.75rem 1.75rem;
    gap: 0.15rem;
    box-shadow: 0 10px 25px rgba(0,0,0,0.12);
    border-top: 1px solid var(--border);
    max-height: calc(100vh - var(--nav-height));
    overflow-y: auto;
  }
  .nav-menu.open { display: flex; }
  .nav-menu a { width: 100%; padding: 0.7rem 0.75rem; font-size: 0.95rem; border-radius: 6px; }
  .nav-menu .btn-nav { margin-left: 0; margin-top: 0.35rem; width: 100%; justify-content: center; display: flex; }

  /* Mobile dropdowns */
  .nav-dropdown { width: 100%; }
  .nav-dropdown-toggle { justify-content: space-between; }
  .nav-dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    border-left: 2px solid rgba(58,112,71,0.18);
    border-radius: 0;
    margin: 0.2rem 0 0.2rem 0;
    padding: 0.1rem 0 0.1rem 0.75rem;
    display: none;
    min-width: 0;
    width: 100%;
    left: auto;
    right: auto;
  }
  .nav-dropdown-menu::before,
  .nav-dropdown-menu::after { display: none; }
  .nav-dropdown.open .nav-dropdown-menu {
    display: block;
    transform: none;
    opacity: 1;
    visibility: visible;
  }
  .nav-dropdown-menu li a { padding: 0.55rem 0.75rem !important; font-size: 0.88rem !important; }
  section { padding: 65px 1.25rem; }
  .hero { padding: 75px 1.25rem; }
  .page-hero { padding: 55px 1.25rem 60px; }
  .about-section { padding: 65px 1.25rem; }
  .service-benefits { padding: 1.75rem; }
  .service-for { padding: 1.75rem; }
  .service-related { padding: 1.75rem; }
}

@media (max-width: 600px) {
  .services-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .trust-bar-inner { gap: 1.2rem; justify-content: flex-start; flex-wrap: wrap; }
  .trust-divider { display: none; }
  .form-row { grid-template-columns: 1fr; }
  .service-includes-grid { grid-template-columns: 1fr; }
  .privacy-content { padding: 2rem 1.25rem; }
  .service-benefits-grid { grid-template-columns: 1fr; }
  .related-services-grid { grid-template-columns: 1fr; }
  .service-for-list { grid-template-columns: 1fr; }
  .contact-form-card { padding: 1.75rem; }
  .hero-actions { flex-wrap: wrap; gap: 0.75rem; }
  .footer-grid { gap: 1.75rem; }
  h1 { font-size: clamp(1.75rem, 8vw, 3.5rem); }
}

@media (max-width: 400px) {
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  .cta-buttons { flex-direction: column; }
  .cta-buttons .btn { width: 100%; }
  .trust-bar-inner { gap: 0.9rem; }
}
