﻿:root {
  --green-900: #003a00;
  --green-800: #005200;
  --green-700: #006400;
  --green-600: #1a7d1a;
  --green-500: #2e9e2e;
  --green-400: #4ab54a;
  --green-100: #e6f5e6;
  --green-50: #f2faf2;
  --ink: #141414;
  --ink-mid: #3a3a3a;
  --ink-muted: #6b6b6b;
  --surface: #fafaf8;
  --white: #ffffff;
  --border: rgba(0, 0, 0, 0.08);
  --border-mid: rgba(0, 0, 0, 0.14);
  --font-display: 'Playfair Display', Georgia, serif;
  --font-serif: 'DM Serif Display', Georgia, serif;
  --font-sans: 'DM Sans', system-ui, sans-serif;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.10);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.12);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink-mid);
  background: var(--white);
  -ms-overflow-style: none;
  scrollbar-width: none;
}

body::-webkit-scrollbar {
  display: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-display);
  color: var(--ink);
}

p {
  color: var(--ink-muted);
}

a {
  text-decoration: none;
  transition: color 0.25s;
}

a:hover {
  color: var(--green-600);
}

img {
  max-width: 100%;
}

.container {
  max-width: 1200px;
}

/* ── LOGO ── */
.logo {
  height: auto;
  width: auto;
  transition: opacity 0.4s ease;
}

.logo-light {
  opacity: 1;
  max-height: 90px;
  position: relative;
}

.logo-dark {
  opacity: 0;
  max-height: 56px;
  position: absolute;
  top: 0;
  left: 0;
}

.custom-navbar.scrolled .logo-light {
  opacity: 0;
  position: absolute;
}

.custom-navbar.scrolled .logo-dark {
  opacity: 1;
  position: relative;
}

.logo-dark,
.logo-light {
  filter: none !important;
  -webkit-filter: none !important;
}

/* ── NAVBAR ── */
.custom-navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1030;
  padding: 1.25rem 0;
  background: transparent;
  transition: all 0.4s ease;
}

.custom-navbar.scrolled {
  background: var(--white);
  box-shadow: 0 1px 0 var(--border), 0 4px 24px rgba(0, 0, 0, 0.06);
  padding: 0.75rem 0;
}

.custom-navbar .navbar-brand {
  position: relative;
}

.custom-navbar .nav-link,
.custom-navbar .nav-link-active {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.92);
  padding: 0.5rem 1.1rem;
  margin: 0 2px;
  border-radius: var(--radius-sm);
  transition: all 0.25s;
  position: relative;
}

.custom-navbar.scrolled .nav-link,
.custom-navbar.scrolled .nav-link-active {
  color: var(--ink-mid);
}

.custom-navbar .nav-link:hover,
.custom-navbar .nav-link-active:hover {
  color: var(--green-600) !important;
}

.custom-navbar .nav-link-active {
  color: var(--green-400) !important;
}

.custom-navbar.scrolled .nav-link-active {
  color: var(--green-700) !important;
}

.custom-navbar .dropdown-menu {
  border: none;
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-md), 0 0 0 1px var(--border);
  padding: 0.5rem;
  min-width: 220px;
  margin-top: 0.5rem;
}

.custom-navbar .dropdown-item {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--ink-mid);
  padding: 0.65rem 1rem;
  border-radius: var(--radius-sm);
  transition: all 0.2s;
}

.custom-navbar .dropdown-item:hover {
  background: var(--green-50);
  color: var(--green-700);
  padding-left: 1.3rem;
}

/* ── MOBILE TOGGLER ── */
.mobile-toggler {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  width: 44px;
  height: 40px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  backdrop-filter: blur(8px);
  position: relative;
}

.custom-navbar.scrolled .mobile-toggler {
  background: var(--green-50);
  border-color: var(--border);
}

.mobile-toggler-icon,
.mobile-toggler-icon::before,
.mobile-toggler-icon::after {
  content: "";
  position: absolute;
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: 0.3s;
}

.custom-navbar.scrolled .mobile-toggler-icon,
.custom-navbar.scrolled .mobile-toggler-icon::before,
.custom-navbar.scrolled .mobile-toggler-icon::after {
  background: var(--ink);
}

.mobile-toggler-icon {
  top: 50%;
  transform: translateY(-50%);
}

.mobile-toggler-icon::before {
  top: -7px;
}

.mobile-toggler-icon::after {
  top: 7px;
}

/* ── OFFCANVAS ── */
.offcanvas.offcanvas-top {
  height: auto;
  max-height: 50vh;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-md);
}

.offcanvas-header {
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--border);
}

.offcanvas-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--ink);
}

.offcanvas-body {
  padding: 1rem 1.5rem 2rem;
}

#mobileOffcanvas .nav-link {
  color: var(--green-700) !important;
  font-weight: 600;
}

#mobileOffcanvas .nav-link:hover {
  color: var(--green-500) !important;
}

#mobileOffcanvas .dropdown-item {
  color: var(--ink-mid);
}

.close-float {
  width: 38px;
  height: 38px;
  background: var(--green-50);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--green-700);
  cursor: pointer;
  transition: 0.2s;
}

.close-float:hover {
  background: var(--green-100);
  transform: scale(1.05);
}

/* ── PAGE BANNER ── */
.page-banner {
  position: relative;
  height: 52vh;
  min-height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--green-900);
}

.page-banner-bg {
  position: absolute;
  inset: 0;
  background-image: url('../img/sincerely-media-4dSXcNTyXaI-unsplash.jpg');
  background-size: cover;
  background-position: center;
  filter: brightness(0.35) saturate(0.8);
  transform: scale(1.04);
  transition: transform 10s ease;
}

.page-banner:hover .page-banner-bg {
  transform: scale(1.07);
}

.page-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 40, 0, 0.5) 0%, rgba(0, 15, 0, 0.2) 50%, rgba(0, 0, 0, 0.65) 100%);
  z-index: 1;
}

.page-banner-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 1.5rem;
}

.page-banner-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 1rem;
}

.page-banner-eyebrow::before,
.page-banner-eyebrow::after {
  content: "";
  display: block;
  width: 28px;
  height: 1px;
  background: var(--green-400);
}

.page-banner h1 {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5.5vw, 4.2rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--white);
  margin: 0 0 1.5rem;
}

.page-banner h1 em {
  font-style: italic;
  color: var(--green-400);
}

.breadcrumb-wrap {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50px;
  padding: 0.45rem 1.25rem;
  font-family: var(--font-sans);
  font-size: 0.8rem;
}

.breadcrumb-wrap a {
  color: rgba(255, 255, 255, 0.55);
}

.breadcrumb-wrap a:hover {
  color: var(--green-400);
}

.breadcrumb-wrap .sep {
  color: rgba(255, 255, 255, 0.3);
}

.breadcrumb-wrap .current {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
}

/* ── SECTION LABELS & HEADINGS ── */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green-600);
  margin-bottom: 1rem;
}

.section-label::before {
  content: "";
  display: block;
  width: 24px;
  height: 2px;
  background: var(--green-600);
  border-radius: 2px;
}

.section-heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--ink);
  margin-bottom: 0.5rem;
}

.section-heading span {
  color: var(--green-700);
}

/* ── SERVICE INTRO ── */
.service-intro {
  padding: 100px 0 80px;
  background: var(--white);
}

.service-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.service-intro-text .lead {
  font-size: 1.1rem;
  font-weight: 300;
  color: var(--ink-muted);
  line-height: 1.9;
  margin-bottom: 0;
}

.service-img-panel {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.service-img-panel img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}

.service-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 40, 0, 0.85) 0%, rgba(0, 40, 0, 0.2) 55%, transparent 100%);
}

.service-img-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem 1.75rem;
}

.service-img-caption h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.service-img-caption p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.7;
  margin: 0;
}

/* ── SERVICE DETAILS ── */
.service-details {
  padding: 80px 0 100px;
  background: var(--surface);
  position: relative;
}

.service-details::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23006400' fill-opacity='0.025'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.details-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 3.5rem;
}

.detail-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.25rem 2rem;
  position: relative;
  overflow: hidden;
  transition: all 0.35s ease;
}

.detail-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green-700), var(--green-400));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.detail-card:hover::before {
  transform: scaleX(1);
}

.detail-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--green-100);
}

.detail-card-icon {
  width: 52px;
  height: 52px;
  background: var(--green-50);
  border: 1px solid var(--green-100);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  transition: all 0.3s;
}

.detail-card:hover .detail-card-icon {
  background: var(--green-700);
  border-color: var(--green-700);
}

.detail-card-icon i {
  font-size: 1.3rem;
  color: var(--green-700);
  transition: color 0.3s;
}

.detail-card:hover .detail-card-icon i {
  color: var(--white);
}

.detail-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 0.9rem;
}

.detail-card p {
  font-size: 0.93rem;
  line-height: 1.8;
  color: var(--ink-muted);
  margin: 0;
}

/* Check list */
.check-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.93rem;
  color: var(--ink-muted);
  margin-bottom: 0.6rem;
}

.check-list li::before {
  content: "";
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 2px;
  background: var(--green-50);
  border: 1px solid var(--green-100);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M2 6l3 3 5-5' stroke='%23006400' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 10px;
}

/* CTA Card */
.cta-card {
  grid-column: 1 / -1;
  background: var(--green-900);
  border-color: transparent;
  text-align: center;
  padding: 3.5rem 2rem;
}

.cta-card::before {
  background: linear-gradient(90deg, var(--green-400), var(--green-500), var(--green-400));
}

.cta-card h3 {
  color: var(--white);
}

.cta-card p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 2rem;
}

.cta-card:hover {
  transform: none;
  box-shadow: none;
}

.cta-card:hover::before {
  transform: scaleX(1);
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--green-600);
  color: var(--white) !important;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 0.9rem 2.25rem;
  border-radius: var(--radius-sm);
  transition: all 0.3s;
}

.cta-btn::after {
  content: "→";
  transition: transform 0.3s;
}

.cta-btn:hover {
  background: var(--green-500);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0, 100, 0, 0.4);
}

.cta-btn:hover::after {
  transform: translateX(4px);
}

/* ── BRAND STRIP ── */
.brand-strip {
  background: var(--green-50);
  border-top: 1px solid var(--green-100);
  border-bottom: 1px solid var(--green-100);
  padding: 1.25rem;
  text-align: center;
}

.brand-strip p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--green-700);
  margin: 0;
}

.brand-strip i {
  margin-right: 0.5rem;
  color: var(--green-500);
}

/* ── FOOTER ── */
.footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.75);
  padding: 4.5rem 0 2.5rem;
  position: relative;
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green-700), var(--green-400), var(--green-700));
}

.footer h5 {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1.25rem;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.55);
  transition: color 0.2s;
}

.footer-links a:hover,
.footer-links a.active {
  color: var(--green-400);
}

.footer .contact-info {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .contact-info li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 0.6rem;
}

.footer .contact-info i {
  color: var(--green-400);
  font-size: 0.9rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.footer .contact-info a {
  color: rgba(255, 255, 255, 0.55);
}

.footer .contact-info a:hover {
  color: var(--green-400);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 3rem;
  padding-top: 1.5rem;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.3);
  margin: 0;
}

/* ── BACK TO TOP ── */
#back-top-wrapper {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 99;
  display: none;
}

.back-to-top-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: var(--green-700);
  color: var(--white) !important;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-md);
  font-size: 0.9rem;
  transition: all 0.3s;
}

.back-to-top-btn:hover {
  background: var(--green-600);
  transform: translateY(-3px);
}

/* ── PRELOADER ── */
.preloader {
  position: fixed !important;
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 99999;
  background: var(--white);
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.preloader.hidden {
  opacity: 0;
  visibility: hidden;
}

.preloader-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.preloader-logo {
  width: 100px;
  animation: pulse 1.5s infinite;
}

.preloader-bar {
  width: 80px;
  height: 2px;
  background: var(--green-100);
  border-radius: 2px;
  overflow: hidden;
}

.preloader-bar::after {
  content: "";
  display: block;
  width: 40%;
  height: 100%;
  background: var(--green-600);
  animation: bar-slide 1.2s ease infinite;
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
    opacity: .75
  }

  50% {
    transform: scale(1.06);
    opacity: 1
  }
}

@keyframes bar-slide {
  0% {
    transform: translateX(-100%)
  }

  100% {
    transform: translateX(350%)
  }
}

/* ── RESPONSIVE ── */
@media (max-width: 991px) {
  .service-intro-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .service-img-panel {
    order: -1;
  }

  .service-img-panel img {
    height: 320px;
  }

  .details-grid {
    grid-template-columns: 1fr;
  }

  .cta-card {
    grid-column: 1;
  }
}

@media (max-width: 767px) {
  .page-banner {
    height: 44vh;
    min-height: 300px;
  }

  .footer .row {
    flex-direction: column;
  }

  .footer [class*="col-"] {
    margin-bottom: 2rem;
  }
}

@media (min-width: 992px) {
  .logo-dark {
    max-height: 52px;
  }
}

.custom-navbar .nav-btn {
  display: inline-flex;
  align-items: center;
  background: var(--green-600);
  color: var(--white) !important;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.6rem 1.4rem;
  border-radius: var(--radius-sm);
  transition: all 0.3s ease;
  margin-left: 0.5rem;
}

.custom-navbar .nav-btn:hover {
  background: var(--green-500);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 100, 0, 0.2);
}

#mobileOffcanvas .nav-btn {
  display: inline-block;
  background: var(--green-600);
  color: var(--white) !important;
  text-align: center;
  padding: 0.75rem;
  border-radius: var(--radius-sm);
  margin-top: 1rem;
  font-weight: 600;
}