/* =========================================
   DELTA STUMP — Stylesheet
   ========================================= */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800;900&family=Inter:wght@300;400;500;600&family=Playfair+Display:ital,wght@0,700;0,900;1,700&display=swap');

:root {
  --green-dark: #0d1f16;
  --green-mid: #163024;
  --green-light: #245c38;
  --green-muted: #3a6b4c;
  --amber: #b56e0a;
  --amber-light: #c47a12;
  --amber-pale: #e8d4a6;
  --white: #ffffff;
  --gray-bg: #f8f9fa;
  --gray-border: #e8eaed;
  --gray-mid: #5f5f5f;
  --text-dark: #1a1a1a;
  --text-mid: #4a4a4a;
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 14px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.06);
  --transition: 0.22s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.65;
}

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

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

ul {
  list-style: none;
}

h1,
h2,
h3,
h4 {
  font-family: 'Outfit', sans-serif;
  line-height: 1.15;
  font-weight: 700;
}

.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 28px;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.01em;
  padding: 13px 28px;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

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

.btn-primary:hover {
  background: var(--green-mid);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.45);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.75);
}

.btn-dark {
  background: var(--gray-bg);
  color: var(--text-dark);
  border: 1.5px solid var(--gray-border);
}

.btn-dark:hover {
  background: var(--gray-border);
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 18px 0;
  transition: background 0.3s ease, padding 0.25s ease, box-shadow 0.25s ease;
}

.navbar.scrolled,
.navbar-dark {
  background: var(--white);
  box-shadow: var(--shadow-sm);
  padding: 12px 0;
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-logo .logo-icon {
  width: 36px;
  height: 36px;
  background: transparent;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: inherit;
}

.nav-logo .logo-icon img {
  width: 36px;
  height: 36px;
  display: block;
  object-fit: contain;
}

.navbar:not(.scrolled):not(.navbar-dark) .nav-logo .logo-icon img {
  filter: brightness(0) invert(1);
}

.nav-logo .logo-text {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--white);
  letter-spacing: -0.01em;
}

.navbar.scrolled .nav-logo .logo-text,
.navbar-dark .nav-logo .logo-text {
  color: var(--text-dark);
}

.nav-logo .logo-text span {
  color: var(--white);
}

.navbar.scrolled .nav-logo .logo-text span,
.navbar-dark .nav-logo .logo-text span {
  color: var(--green-light);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links a {
  font-family: 'Outfit', sans-serif;
  font-weight: 500;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.85);
  transition: var(--transition);
}

.navbar.scrolled .nav-links a,
.navbar-dark .nav-links a {
  color: var(--text-mid);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
}

.navbar.scrolled .nav-links a:hover,
.navbar.scrolled .nav-links a.active,
.navbar-dark .nav-links a:hover,
.navbar-dark .nav-links a.active {
  color: var(--text-dark);
}

.nav-cta {
  margin-left: 4px;
  background: var(--green-dark) !important;
  color: var(--white) !important;
  padding: 10px 20px !important;
  font-size: 0.82rem !important;
}

.nav-cta:hover {
  background: var(--green-mid) !important;
  transform: translateY(-1px) !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

.navbar.scrolled .hamburger span,
.navbar-dark .hamburger span {
  background: var(--text-dark);
}

/* ============================================
   HERO (Home page)
   ============================================ */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-color: var(--green-dark);
  background-image: url('images/hero-bg.png');
  background-size: cover;
  background-position: center 30%;
}

/* Grain texture overlay */
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.4;
  pointer-events: none;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(to top,
      rgba(8, 18, 11, 0.94) 0%,
      rgba(8, 18, 11, 0.65) 45%,
      rgba(8, 18, 11, 0.3) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 740px;
  padding-bottom: 90px;
  padding-top: 100px;
}

.hero-label {
  display: inline-block;
  font-family: 'Outfit', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.4);
  padding: 5px 12px;
  border-radius: 3px;
  margin-bottom: 24px;
}

.hero h1 {
  font-size: clamp(2.8rem, 7vw, 5rem);
  color: var(--white);
  margin-bottom: 20px;
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.hero h1 em {
  font-style: italic;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.92);
}

.hero-sub {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.62);
  margin-bottom: 36px;
  line-height: 1.75;
  max-width: 520px;
}

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

/* ============================================
   TRUST BAR
   ============================================ */
.trust-bar {
  background: var(--white);
  border-bottom: 1px solid var(--gray-border);
  padding: 32px 0;
}

.trust-bar-inner {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 0;
  flex-wrap: wrap;
}

.trust-bar-inner > .trust-item-link,
.trust-bar-inner > .trust-item {
  padding: 0 28px;
  border-right: 1px solid var(--gray-border);
}

.trust-bar-inner > *:last-child {
  border-right: none;
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
}

.trust-item-num {
  font-family: 'Outfit', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--green-dark);
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.trust-item-text {
  font-size: 0.8rem;
  color: var(--text-mid);
  line-height: 1.4;
  max-width: 160px;
  font-weight: 400;
}

.trust-divider {
  display: none;
}

.trust-item-link {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
}

.trust-item-link:hover .trust-item-num {
  color: var(--green-light);
}

.trust-item-link:hover .trust-item-text {
  color: var(--text-dark);
}

/* ============================================
   HOME — SERVICES PREVIEW
   ============================================ */
.home-services {
  padding: 88px 0 72px;
  background: var(--white);
  border-bottom: 1px solid var(--gray-border);
}

.section-label {
  font-family: 'Outfit', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--green-light);
  margin-bottom: 12px;
}

.home-services h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 48px;
  color: var(--text-dark);
  font-weight: 800;
  letter-spacing: -0.01em;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
  align-items: start;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.3s ease;
  border: 1px solid var(--gray-border);
  display: block;
  box-shadow: var(--shadow-sm);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--green-light);
}

.service-card.featured {
  grid-row: span 1;
}

.service-card-img-wrap {
  overflow: hidden;
  background: var(--gray-bg);
  min-height: 220px;
}

.service-card-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.5s ease;
  background: var(--gray-bg);
}

.service-card.featured .service-card-img-wrap {
  min-height: 220px;
}

.service-card.featured .service-card-img {
  height: 220px;
}

.service-card:hover .service-card-img {
  transform: scale(1.04);
}

.service-card-body {
  padding: 22px 24px;
}

.service-card-body h3 {
  font-size: 1.05rem;
  margin-bottom: 7px;
  color: var(--text-dark);
  font-weight: 700;
}

.service-card-body p {
  font-size: 0.875rem;
  color: var(--gray-mid);
  line-height: 1.68;
}

/* ============================================
   HOME — WHY US
   ============================================ */
.home-why {
  padding: 72px 0;
  background: var(--gray-bg);
  border-top: 1px solid var(--gray-border);
  border-bottom: 1px solid var(--gray-border);
}

.home-why-inner {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  align-items: center;
}

.home-why h2 {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  color: var(--text-dark);
  font-weight: 800;
  letter-spacing: -0.01em;
  line-height: 1.18;
}

.home-why h2 em {
  font-style: italic;
  font-family: 'Playfair Display', serif;
  color: var(--green-light);
}

.home-why-sub {
  font-size: 0.9rem;
  color: var(--text-mid);
  margin-top: 14px;
  line-height: 1.7;
}

.why-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.why-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--gray-border);
}

.why-item:first-child {
  padding-top: 0;
}

.why-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.why-num {
  font-family: 'Outfit', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--amber);
  width: 22px;
  flex-shrink: 0;
  padding-top: 2px;
}

.why-item-content strong {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 3px;
}

.why-item-content span {
  font-size: 0.85rem;
  color: var(--gray-mid);
  line-height: 1.6;
}

/* ============================================
   HOME — CTA
   ============================================ */
.home-cta {
  padding: 80px 0;
}

.cta-box {
  background: var(--gray-bg);
  border: 1px solid var(--gray-border);
  border-radius: var(--radius-md);
  padding: 52px 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.cta-box h2 {
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  color: var(--text-dark);
  margin-bottom: 10px;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.cta-box p {
  font-size: 0.92rem;
  color: var(--text-mid);
  max-width: 380px;
  line-height: 1.7;
}

.cta-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  flex-shrink: 0;
}

.cta-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--text-mid);
  transition: var(--transition);
}

.cta-phone:hover {
  color: var(--green-light);
}

.cta-phone svg {
  width: 17px;
  height: 17px;
}

.cta-actions .btn-primary {
  background: var(--green-dark);
}

.cta-actions .btn-primary:hover {
  background: var(--green-mid);
}

/* ============================================
   PAGE HEADER (Inner pages)
   ============================================ */
.page-header {
  background: var(--white);
  padding: 130px 0 64px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--gray-border);
}

.page-header::after {
  content: none;
}

.page-header h1 {
  font-size: clamp(2.2rem, 4.5vw, 3.2rem);
  color: var(--text-dark);
  margin-bottom: 10px;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.page-header p {
  font-size: 1rem;
  color: var(--text-mid);
}

.page-header .section-label {
  color: var(--green-light);
}

/* ============================================
   SERVICES PAGE — Detail sections
   ============================================ */
.service-detail {
  padding: 80px 0;
  background: var(--white);
}

.service-detail.alt {
  background: var(--gray-bg);
}

.service-detail-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.service-detail-layout.reverse {
  direction: rtl;
}

.service-detail-layout.reverse>* {
  direction: ltr;
}

.service-detail-img img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: var(--radius-md);
}

.service-detail-text h2 {
  font-size: clamp(1.6rem, 2.5vw, 2.1rem);
  margin-bottom: 18px;
  color: var(--text-dark);
  font-weight: 800;
  letter-spacing: -0.01em;
}

.service-detail-text p {
  font-size: 0.94rem;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 16px;
}

.service-detail-text .btn {
  margin-top: 12px;
}

/* Service inline Q&A */
.service-qa {
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid var(--gray-border);
}

.service-qa-item {
  margin-bottom: 16px;
}

.service-qa-item:last-child {
  margin-bottom: 0;
}

.service-qa-item strong {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.service-qa-item p {
  font-size: 0.875rem !important;
  color: var(--gray-mid) !important;
  margin-bottom: 0 !important;
}

/* ============================================
   ABOUT PAGE
   ============================================ */
.about-content {
  padding: 80px 0;
}

.about-layout {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 64px;
  align-items: start;
}

.about-img {
  position: relative;
}

.about-img img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: var(--radius-md);
  position: sticky;
  top: 100px;
}

.about-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: var(--green-dark);
  color: var(--white);
  padding: 12px 18px;
  border-radius: var(--radius-sm);
  font-family: 'Outfit', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.5;
  border-left: 3px solid var(--amber);
}

.about-text h2 {
  font-size: 1.35rem;
  color: var(--text-dark);
  margin-bottom: 12px;
  margin-top: 44px;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.about-text h2:first-child {
  margin-top: 0;
}

.about-text p {
  font-size: 0.94rem;
  color: var(--text-mid);
  line-height: 1.85;
  margin-bottom: 14px;
}

.about-facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 32px;
  margin-bottom: 8px;
}

.about-fact {
  background: var(--gray-bg);
  border: 1px solid var(--gray-border);
  border-radius: var(--radius-sm);
  padding: 16px 18px;
}

.about-fact-num {
  font-family: 'Outfit', sans-serif;
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--green-light);
  line-height: 1;
  margin-bottom: 4px;
}

.about-fact-label {
  font-size: 0.78rem;
  color: var(--gray-mid);
  line-height: 1.4;
}

.about-contact {
  margin-top: 44px;
  padding-top: 32px;
  border-top: 1px solid var(--gray-border);
}

.about-contact>p {
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 16px;
  font-size: 0.95rem !important;
}

.about-contact-links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.about-contact-links .btn svg {
  width: 15px;
  height: 15px;
}

.about-text > .btn {
  margin-top: 12px;
  margin-bottom: 28px;
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-section {
  padding: 60px 0 90px;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.45fr;
  gap: 80px;
  align-items: start;
}

.contact-info h2 {
  font-size: 1.5rem;
  margin-bottom: 12px;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.contact-info>p {
  font-size: 0.92rem;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 12px;
}

.contact-aside {
  background: var(--gray-bg);
  border: 1px solid var(--gray-border);
  border-left: 3px solid var(--green-light);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  font-size: 0.82rem;
  color: var(--text-mid);
  margin-bottom: 32px;
  line-height: 1.6;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.contact-icon {
  width: 19px;
  height: 19px;
  color: var(--amber);
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-item strong {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-dark);
  margin-bottom: 2px;
}

.contact-item a,
.contact-item span {
  font-size: 0.9rem;
  color: var(--text-mid);
}

.contact-item a:hover {
  color: var(--amber);
}

.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 40px;
  border: 1px solid var(--gray-border);
  box-shadow: var(--shadow-sm);
}

.contact-form-wrap h2 {
  font-size: 1.25rem;
  margin-bottom: 4px;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.form-sub {
  font-size: 0.86rem;
  color: var(--gray-mid);
  margin-bottom: 28px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 14px;
}

.form-group label {
  font-family: 'Outfit', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text-mid);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--gray-border);
  border-radius: var(--radius-sm);
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  color: var(--text-dark);
  background: var(--white);
  transition: var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green-light);
  box-shadow: 0 0 0 3px rgba(36, 92, 56, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

/* Super-simple intake: fewer fields, cleaner layout */
.intake-form--simple .form-group {
  margin-bottom: 18px;
}

.intake-form--simple .form-submit {
  margin-top: 8px;
  width: 100%;
}

.form-submit {
  width: 100%;
  padding: 14px;
  font-size: 0.92rem;
  margin-top: 6px;
  background: var(--green-dark);
}

.form-success {
  display: none;
  text-align: center;
  padding: 32px;
}

.form-success .check {
  width: 52px;
  height: 52px;
  background: var(--green-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: var(--white);
}

.form-success .check svg {
  width: 26px;
  height: 26px;
}

.form-success h3 {
  font-size: 1.2rem;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.form-success p {
  color: var(--gray-mid);
  font-size: 0.88rem;
  line-height: 1.7;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--gray-bg);
  padding: 36px 0 0;
  border-top: 1px solid var(--gray-border);
}

.footer-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  padding-bottom: 28px;
}

.footer-brand .nav-logo {
  flex-shrink: 0;
}

.footer-brand .nav-logo .logo-text {
  color: var(--text-dark);
}

.footer-brand .nav-logo .logo-text span {
  color: var(--green-light);
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.footer-links a {
  font-family: 'Outfit', sans-serif;
  font-size: 0.82rem;
  color: var(--text-mid);
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--text-dark);
}

.footer-contact-info {
  display: flex;
  gap: 24px;
}

.footer-contact-info a {
  font-size: 0.82rem;
  color: var(--text-mid);
  transition: var(--transition);
}

.footer-contact-info a:hover {
  color: var(--green-light);
}

.footer-bottom {
  border-top: 1px solid var(--gray-border);
  padding: 16px 0;
}

.footer-bottom p {
  font-size: 0.75rem;
  color: var(--gray-mid);
}

/* ============================================
   ANIMATIONS
   ============================================ */
.fade-up {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-up-delay-1 {
  transition-delay: 0.08s;
}

.fade-up-delay-2 {
  transition-delay: 0.16s;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 16px;
  }

  .service-detail-layout {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .service-detail-layout.reverse {
    direction: ltr;
  }

  .service-detail-img img {
    height: 300px;
  }

  .about-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-img img {
    position: static;
    height: 360px;
  }

  .about-badge {
    bottom: 16px;
    left: 16px;
  }

  .contact-layout {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .home-why-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .why-item {
    padding: 24px 0;
  }

  .trust-divider {
    display: none;
  }

  .trust-bar-inner {
    justify-content: flex-start;
    gap: 32px;
  }
}

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

  .hamburger {
    display: flex;
  }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--green-dark);
    justify-content: center;
    align-items: center;
    gap: 28px;
    z-index: 999;
  }

  .nav-links.open a {
    font-size: 1.25rem;
    color: var(--white);
  }

  .nav-cta {
    display: none !important;
  }

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

  .cta-box {
    flex-direction: column;
    text-align: center;
    padding: 36px 28px;
  }

  .cta-actions {
    justify-content: center;
  }

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

  .footer-main {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .footer-contact-info {
    flex-direction: column;
    gap: 8px;
  }

  .about-facts {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 480px) {
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .btn {
    text-align: center;
    justify-content: center;
  }

  .contact-form-wrap {
    padding: 24px;
  }

  .about-contact-links {
    flex-direction: column;
  }

  .trust-bar-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }

  .trust-bar-inner > .trust-item-link,
  .trust-bar-inner > .trust-item {
    border-right: none;
    padding: 0;
  }

  .about-facts {
    grid-template-columns: 1fr;
  }

  .cta-box {
    padding: 28px 20px;
  }
}