:root {
  --green: #076536;
  --green-dark: #05522b;
  --green-light: #0c7d45;
  --yellow: #f3c43a;
  --yellow-hover: #e4b62f;
  --white: #ffffff;
  --off-white: #f9f9f6;
  --text-dark: #1a1a1a;
  --text-muted: #555555;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.12);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.16);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
  font-family: 'Poppins', sans-serif;
  color: var(--text-dark);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  margin-bottom: 1.5rem;
  color: var(--green);
}

.section-title .accent {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  color: var(--yellow);
  font-weight: 700;
  font-size: 1.1em;
}

.section-title-white {
  color: var(--white);
}

.section-title-white .accent {
  color: var(--yellow);
}

.btn {
  display: inline-block;
  padding: 14px 36px;
  border-radius: 4px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  letter-spacing: 0.5px;
}

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

.btn-yellow:hover {
  background: var(--yellow-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background: transparent;
  border-color: var(--yellow);
  color: var(--yellow);
}

.btn-outline:hover {
  background: var(--yellow);
  color: var(--green-dark);
  transform: translateY(-2px);
}

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

.btn-green:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* ===================== ANIMATIONS ===================== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-60px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(60px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.85);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-scale.visible {
  opacity: 1;
  transform: scale(1);
}

.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }
.stagger-5 { transition-delay: 0.5s; }

/* ===================== NAVBAR ===================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 18px 0;
  transition: all var(--transition);
  background: transparent;
}

.navbar.scrolled {
  background: var(--green);
  padding: 10px 0;
  box-shadow: var(--shadow-md);
}

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

.navbar-logo {
  font-family: 'Poppins', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 1px;
}

.navbar-links {
  display: flex;
  list-style: none;
  gap: 32px;
  align-items: center;
}

.navbar-links a {
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 500;
  position: relative;
  padding-bottom: 4px;
}

.navbar-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--yellow);
  transition: width var(--transition);
}

.navbar-links a:hover::after,
.navbar-links a.active::after {
  width: 100%;
}

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

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

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ===================== HERO ===================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: stretch;
  position: relative;
  overflow: hidden;
}

.hero .hero-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100%;
  min-height: 100vh;
}

.hero-image {
  position: relative;
  overflow: hidden;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-content {
  background: var(--green);
  color: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 80px 60px 60px;
}

.hero-content .hero-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.95rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 1.5px;
  text-transform: lowercase;
  margin-bottom: 30px;
}

.hero-content h1 {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: 'Playfair Display', serif;
  font-size: clamp(3.2rem, 6vw, 5.5rem);
  font-weight: 700;
  line-height: 0.92;
  margin-bottom: 0;
  color: #ffffff;
}

.hero-content h1 .hero-title-main {
  display: block;
  font-size: clamp(4rem, 7vw, 6rem);
  letter-spacing: -0.03em;
}

.hero-content h1 .accent {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  color: #ffffff;
  font-weight: 500;
  font-size: 1.05em;
  display: block;
  line-height: 0.95;
  margin-top: 2px;
  letter-spacing: -0.01em;
}

.hero-divider {
  width: min(350px, 58%);
  height: 10px;
  margin-top: 0px;
  margin-bottom: 26px;
  position: relative;
}

.hero-divider::before {
  content: '';
  position: absolute;
  top: 2px;
  left: 0;
  width: 100%;
  border-bottom: 2px solid rgba(255, 255, 255, 0.95);
  border-radius: 999px;
  transform: rotate(-1deg);
}

.hero-content .hero-subtitle {
  font-size: 1.45rem;
  color: rgba(255, 255, 255, 0.9);
  margin-top: 0;
  margin-bottom: 44px;
  font-weight: 600;
  letter-spacing: 0.2px;
}

.hero-content .btn {
  border-radius: 50px;
  padding: 16px 50px;
  font-size: 1rem;
  font-weight: 600;
  background: var(--yellow);
  color: var(--green-dark);
  box-shadow: 0 12px 24px rgba(5, 82, 43, 0.2);
}

/* ===================== ABOUT US ===================== */
.about {
  padding: 80px 0 24px;
  background: var(--white);
  text-align: center;
}

.about .section-title {
  position: relative;
  display: inline-block;
  font-size: clamp(2.4rem, 5vw, 3.6rem);
}

.about .section-title .accent {
  color: var(--yellow);
}

.about .section-title::after {
  content: '';
  position: absolute;
  bottom: 9px;
  left: 83%;
  transform: translateX(-50%);
  width: 135px;
  height: 3px;
  background: var(--yellow);
  border-radius: 2px;
}

.about p {
  max-width: 860px;
  margin: 28px auto 0;
  font-size: 1.18rem;
  font-weight: 500;
  color: var(--text);
  line-height: 1.7;
}

/* ===================== WHAT WE DO ===================== */
.what-we-do {
  padding: 24px 0 80px;
  background: var(--white);
  text-align: center;
}

.what-we-do .section-title {
  position: relative;
  display: inline-block;
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  margin-bottom: 56px;
}

.what-we-do .section-title::after {
  content: '';
  position: absolute;
  bottom: 9px;
  left: 24%;
  transform: translateX(-50%);
  width: 200px;
  height: 3px;
  background: var(--yellow);
  border-radius: 2px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.service-card {
  text-align: center;
  padding: 8px 16px;
  background: transparent;
  transition: transform var(--transition);
}

.service-card:hover {
  transform: translateY(-6px);
}

.service-card .icon-wrapper {
  width: 96px;
  height: 96px;
  margin: 0 auto 20px;
  background: #e9eef2;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition);
}

.service-card:hover .icon-wrapper {
  transform: scale(1.1) rotate(5deg);
}

.service-card .icon-wrapper img {
  width: 48px;
  height: 48px;
}

.service-card h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--green);
  margin-bottom: 12px;
}

.service-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ===================== WHO WE SERVE ===================== */
.who-we-serve {
  padding: 100px 0;
  background: var(--green);
  color: var(--white);
}

.who-we-serve .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.who-left .section-title {
  color: var(--white);
  margin-bottom: 16px;
}

.who-left .section-title .accent {
  border-bottom: 3px solid var(--yellow);
  padding-bottom: 2px;
}

.who-left p {
  font-size: 0.95rem;
  line-height: 1.8;
}

.who-right {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.who-item {
  display: flex;
  align-items: center;
  gap: 16px;
  transition: transform var(--transition);
}

.who-item:hover {
  transform: translateX(8px);
}

.who-item .who-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: var(--white);
  display: inline-block;
}

.who-item span:not(.who-icon) {
  font-size: 1.35rem;
  font-weight: 700;
}

/* ===================== WHY TEVGA ===================== */
.why-tevga {
  padding: 100px 0;
  background: var(--white);
  border-top: 3px solid var(--green);
  border-bottom: 3px solid var(--green);
}

.why-tevga .container {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
}

.why-tevga .section-title {
  font-size: clamp(2.6rem, 5vw, 4rem);
}

.why-tevga .section-title .accent {
  border-bottom: 3px solid var(--yellow);
  padding-bottom: 4px;
}

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

.why-item {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-dark);
}

.why-item .check {
  width: 36px;
  height: 36px;
  min-width: 36px;
  background: var(--yellow);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-item .check svg {
  width: 20px;
  height: 20px;
  fill: var(--white);
}

/* ===================== HOW WE WORK ===================== */
.how-we-work {
  padding: 100px 0;
  background: var(--green);
  color: var(--white);
}

.how-we-work .section-title {
  text-align: center;
  color: var(--white);
  margin-bottom: 70px;
}

.how-we-work .section-title .accent {
  border-bottom: 5px solid var(--yellow);
  padding-bottom: 6px;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  position: relative;
}

.step {
  text-align: center;
  position: relative;
}

.step-number {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 700;
  font-size: 2.6rem;
  color: var(--yellow);
  margin-bottom: 12px;
}

.step .icon-wrapper {
  width: 72px;
  height: 72px;
  margin: 0 auto 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  transition: all var(--transition);
}

.step:hover .icon-wrapper {
  transform: scale(1.1);
}

.step .icon-wrapper .step-icon {
  width: 34px;
  height: 34px;
  background: var(--green);
}

.step p {
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.5;
  padding: 0 8px;
}

/* ===================== WHERE WE DELIVER ===================== */
.where-deliver {
  padding: 80px 0 0;
  background: var(--green);
  text-align: center;
}

.where-deliver .section-title {
  color: var(--white);
  margin-bottom: 50px;
}

.where-deliver .section-title .accent {
  border-bottom: 5px solid var(--yellow);
  padding-bottom: 6px;
}

.map-wrapper {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  overflow: hidden;
}

.map-wrapper img {
  width: 100%;
  opacity: 0.9;
  transition: transform 0.6s ease;
}

.map-wrapper:hover img {
  transform: scale(1.03);
}

/* ===================== SUCCESS STORIES ===================== */
.success-stories {
  padding: 100px 0;
  background: var(--white);
  text-align: center;
}

.success-stories .section-title {
  margin-bottom: 50px;
}

.stories-carousel {
  max-width: 640px;
  margin: 0 auto;
}

.stories-viewport {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--white);
}

.stories-track {
  display: flex;
  transition: transform 0.45s ease;
  touch-action: pan-y;
}

.story-slide {
  flex: 0 0 100%;
  margin: 0;
}

.story-slide img {
  width: min(640px, 82vw);
  max-height: 420px;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}

.stories-hit {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 50%;
  border: 0;
  padding: 0;
  background: transparent;
  cursor: pointer;
  z-index: 2;
}

.stories-hit-prev {
  left: 0;
}

.stories-hit-next {
  right: 0;
}

.stories-indicators {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 18px;
}

.stories-indicator {
  width: 11px;
  height: 11px;
  border: 0;
  border-radius: 999px;
  padding: 0;
  background: rgba(14, 102, 64, 0.25);
  cursor: pointer;
  transition: transform var(--transition), background var(--transition);
}

.stories-indicator.is-active {
  background: var(--yellow);
  transform: scale(1.18);
}

.stories-indicator:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 3px;
}

@media (max-width: 767px) {
  .story-slide img {
    width: min(640px, 88vw);
    max-height: 320px;
  }
}

/* ===================== CTA: READY TO EXPAND ===================== */
.cta-expand {
  padding: 0 24px 96px;
  background: var(--green-dark);
}

.cta-expand-shell {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  min-height: 520px;
  display: flex;
  overflow: hidden;
  background: var(--green-dark);
}

.cta-expand-left {
  flex: 1 1 55%;
  background: var(--green-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 60px;
}

.cta-expand-right {
  flex: 1 1 45%;
  min-width: 0;
  background: #b8d4b8;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.cta-expand-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.02);
  filter: saturate(0.7) hue-rotate(8deg) brightness(1.05);
}

.cta-expand-content {
  color: var(--white);
  max-width: 420px;
}

.cta-expand-content .cta-logo {
  font-family: 'Poppins', sans-serif;
  font-size: 2.15rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 22px;
  text-transform: lowercase;
  text-align: center;
}

.cta-expand-content h2 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2.35rem, 3.9vw, 3.45rem);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.04em;
  margin-bottom: 22px;
}

.cta-expand-content h2 .headline-line {
  display: block;
    text-align:center;
}

.cta-expand-content h2 .accent {
  font-family: 'Sacramento', cursive;
  color: var(--yellow);
  font-weight: 400;
  font-size: 1.6em;
  line-height: 0.8;
  display: block;
  padding: 0 0 10px 0;
  position: relative;
  width: fit-content;
  margin: 0 0 6px 111px;
}

.cta-expand-content h2 .accent::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  height: 3px;
  background: var(--yellow);
  border-radius: 999px;
}

.cta-expand-content p {
  color: rgba(255,255,255,0.9);
  font-size: 0.98rem;
  font-weight: 400;
  margin-bottom: 32px;
  line-height: 1.45;
}

.cta-expand-content .btn-yellow {
  border-radius: 999px;
  padding: 13px 28px;
  font-size: 0.92rem;
  font-weight: 600;
  box-shadow: none;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
}

/* ===================== CTA: LET'S CREATE ===================== */
.cta-create {
  background: var(--green-dark);
  position: relative;
  overflow: hidden;
}

.cta-create-split {
  display: flex;
  min-height: 400px;
}

.cta-create-text {
  flex: 0 0 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px 60px 60px 80px;
}

.cta-create-map {
  flex: 0 0 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
}

.cta-create-map img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.cta-create h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--white);
  font-weight: 700;
  font-style: italic;
  margin-bottom: 20px;
}

.cta-create h2 .accent {
  font-family: 'Sacramento', cursive;
  color: var(--yellow);
  font-weight: 400;
  font-size: 1.3em;
}

.cta-create p {
  max-width: 500px;
  margin: 0 0 36px;
  color: rgba(255,255,255,0.85);
  font-size: 1.05rem;
  line-height: 1.7;
}

/* ===================== CONTACT US ===================== */
.contact {
  padding: 100px 0;
  background: var(--white);
}

.contact .section-title {
  text-align: center;
  margin-bottom: 50px;
}

.contact-form {
  max-width: 800px;
  margin: 0 auto;
}

.form-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

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

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
  padding: 14px 16px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  color: var(--text-dark);
  transition: border-color var(--transition), box-shadow var(--transition);
  background: var(--white);
  outline: none;
}

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

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

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-submit {
  text-align: right;
  margin-top: 8px;
}

.form-submit .btn[disabled] {
  opacity: 0.7;
  cursor: wait;
  transform: none;
  box-shadow: none;
}

.form-status {
  min-height: 1.5rem;
  margin: 0 0 8px;
  font-size: 0.95rem;
  font-weight: 500;
}

.form-status.is-pending {
  color: var(--text-muted);
}

.form-status.is-success {
  color: var(--green);
}

.form-status.is-error {
  color: #b42318;
}

/* ===================== FOOTER ===================== */
.footer {
  background: var(--green);
  color: var(--white);
  padding: 70px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 50px;
}

.footer-brand .footer-logo {
  font-family: 'Poppins', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: 1px;
}

.footer-brand p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
}

.footer-col h4 {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--yellow);
  margin-bottom: 20px;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  transition: all var(--transition);
}

.footer-col ul li a:hover {
  color: var(--white);
  padding-left: 4px;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
}

.footer-contact-item img {
  width: 20px;
  height: 20px;
  filter: brightness(0) saturate(100%) invert(76%) sepia(68%) saturate(500%) hue-rotate(6deg) brightness(100%);
}

.footer-social {
  margin-top: 24px;
}

.footer-social h4 {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--yellow);
  margin-bottom: 14px;
}

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

.social-icon {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}

.social-icon:hover {
  background: var(--yellow);
  border-color: var(--yellow);
  transform: translateY(-3px);
}

.social-icon img {
  width: 20px;
  height: 20px;
  filter: brightness(0) invert(1);
}

.social-icon:hover img {
  filter: brightness(0) saturate(100%) invert(22%) sepia(98%) saturate(1000%) hue-rotate(130deg) brightness(0.6);
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.12);
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
}

/* ===================== BACK TO TOP ===================== */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 48px;
  height: 48px;
  background: var(--green);
  color: var(--white);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all var(--transition);
  box-shadow: var(--shadow-md);
  z-index: 999;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--yellow);
  color: var(--green-dark);
  transform: translateY(-3px);
}

.back-to-top svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

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

  .steps-grid {
    grid-template-columns: repeat(3, 1fr);
    row-gap: 40px;
  }

  .steps-grid::before {
    display: none;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .navbar-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--green-dark);
    flex-direction: column;
    justify-content: center;
    gap: 24px;
    padding: 40px;
    transition: right var(--transition);
    box-shadow: -4px 0 20px rgba(0,0,0,0.3);
  }

  .navbar-links.open {
    right: 0;
  }

  .navbar-links a {
    font-size: 1.1rem;
  }

  .hamburger {
    display: flex;
  }

  .hero .hero-split {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-image {
    height: 50vh;
  }

  .hero-content {
    padding: 60px 24px;
  }

  .who-we-serve .container,
  .why-tevga .container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .cta-expand {
    padding: 0 16px 72px;
  }

  .cta-expand-shell {
    flex-direction: column;
    min-height: 0;
  }

  .cta-expand-left {
    padding: 60px 24px;
  }

  .cta-expand-right {
    min-height: 300px;
  }

  .cta-expand-content {
    max-width: 100%;
  }

  .cta-expand-content h2 .accent {
    margin-left: 0;
    margin-right: 0;
  }

  .services-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

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

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

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-contact-item {
    justify-content: center;
  }

  .social-icons {
    justify-content: center;
  }


  .cta-create-split {
    flex-direction: column;
  }

  .cta-create-text {
    padding: 50px 24px;
    text-align: center;
    align-items: center;
  }

  .cta-create-map {
    padding: 0 24px 40px;
  }
}

@media (max-width: 480px) {
  .steps-grid {
    grid-template-columns: 1fr;
    max-width: 250px;
    margin: 0 auto;
  }

  .hero-content h1 {
    font-size: 2.5rem;
  }

  .hero-content h1 .accent {
    font-size: 1.05em;
  }

  .section-title {
    font-size: 1.8rem;
  }
}

/* ===================== MOBILE OVERLAY ===================== */
.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
}

.nav-overlay.active {
  opacity: 1;
  visibility: visible;
}
