/* ============================================================
   DESIGN TOKENS & RESET
   ============================================================ */
:root {
  --primary-dark:  #1E2E2C;
  --leaf-green:    #2F5233;
  --muted-sage:    #6B8F5E;
  --warm-gold:     #C9A96E;
  --gold-hover:    #b8944f;
  --cream:         #F5F2EC;
  --white:         #FFFFFF;

  --font-display:  'Playfair Display', serif;
  --font-body:     'Inter', sans-serif;
  --font-utility:  'Space Grotesk', sans-serif;

  --radius:        8px;
  --radius-lg:     14px;
  --shadow-sm:     0 2px 8px rgba(0,0,0,0.06);
  --shadow-md:     0 8px 24px rgba(0,0,0,0.08);
  --shadow-lg:     0 16px 48px rgba(0,0,0,0.12);
  --transition:    all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  color: var(--primary-dark);
  line-height: 1.6;
  overflow-x: hidden;
  background: var(--cream);
}

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

ul, ol { list-style: none; }

img, svg { display: block; max-width: 100%; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.2;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* ---- Generic Section Utilities ---- */
.section {
  padding: 5rem 0;
}
.section--dark { background: var(--primary-dark); }
.section--cream { background: var(--cream); }

.section__header {
  text-align: center;
  margin-bottom: 3rem;
}

.section__eyebrow {
  font-family: var(--font-utility);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  display: inline-block;
  padding: 0.35rem 1rem;
  border-radius: 100px;
  margin-bottom: 1rem;
}
.section__eyebrow--gold {
  color: var(--warm-gold);
  background: rgba(201, 169, 110, 0.1);
}
.section__eyebrow--green {
  color: var(--leaf-green);
  background: rgba(47, 82, 51, 0.08);
}

.section__title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  margin-bottom: 0.75rem;
}
.section__title--white { color: var(--white); }
.section__title--green { color: var(--leaf-green); }
.section__title--dark { color: var(--primary-dark); }

.section__divider {
  width: 60px;
  height: 3px;
  background: var(--warm-gold);
  margin: 1.25rem auto;
  border-radius: 2px;
}
.section__divider--gold { background: var(--warm-gold); }
.section__divider--left {
  width: 60px;
  height: 3px;
  background: var(--warm-gold);
  margin: 1rem 0 1.5rem 0;
  border-radius: 2px;
}

.section__intro {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #4a5d5a;
  margin-top: 1rem;
}
.section__intro--white {
  color: rgba(255,255,255,0.75);
}

.section__tagline {
  text-align: center;
  font-style: italic;
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin-top: 3rem;
}
.section__tagline--gold { color: var(--warm-gold); }

/* ---- Scroll Animations ---- */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s cubic-bezier(0.16,1,0.3,1), transform 0.6s cubic-bezier(0.16,1,0.3,1);
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---- Buttons ---- */
.btn {
  font-family: var(--font-utility);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.8rem 1.8rem;
  border-radius: 100px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  text-decoration: none;
  line-height: 1;
}
.btn--gold {
  background: var(--warm-gold);
  color: var(--primary-dark);
  border-color: var(--warm-gold);
}
.btn--gold:hover {
  background: var(--gold-hover);
  border-color: var(--gold-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201, 169, 110, 0.3);
}
.btn--outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.4);
}
.btn--outline-white:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.05);
  transform: translateY(-2px);
}
.btn--lg {
  padding: 1rem 2.2rem;
  font-size: 1rem;
}
.btn--full {
  width: 100%;
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1.1rem 0;
  transition: var(--transition);
}
.navbar--transparent {
  background: transparent;
}
.navbar--scrolled {
  background: rgba(30, 46, 44, 0.97);
  backdrop-filter: blur(12px);
  padding: 0.75rem 0;
  box-shadow: 0 4px 30px rgba(0,0,0,0.15);
}

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

.navbar__logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.navbar__logo-img {
  height: 44px;
  width: auto;
  object-fit: contain;
  border-radius: 6px;
  background-color: var(--white);
  padding: 3px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.navbar__logo:hover .navbar__logo-img {
  transform: scale(1.05);
}

.navbar__logo-text {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.15rem;
  color: var(--warm-gold);
  letter-spacing: 0.02em;
}

.navbar__links {
  display: none;
  align-items: center;
  gap: 2rem;
}
.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  transition: var(--transition);
  position: relative;
  padding-bottom: 4px;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--warm-gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s cubic-bezier(0.16,1,0.3,1);
}
.nav-link:hover {
  color: var(--warm-gold);
}
.nav-link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.navbar__cta { display: none; }

/* Hamburger */
.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger__line {
  width: 100%;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.is-active .hamburger__line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.is-active .hamburger__line:nth-child(2) {
  opacity: 0;
}
.hamburger.is-active .hamburger__line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (min-width: 1024px) {
  .navbar__links { display: flex; }
  .navbar__cta { display: block; }
  .hamburger { display: none; }
}

/* ============================================================
   MOBILE DRAWER
   ============================================================ */
.drawer {
  position: fixed;
  inset: 0;
  z-index: 2000;
  pointer-events: none;
  visibility: hidden;
}
.drawer.is-open {
  pointer-events: auto;
  visibility: visible;
}
.drawer__overlay {
  position: absolute;
  inset: 0;
  background: rgba(30, 46, 44, 0.6);
  backdrop-filter: blur(6px);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.drawer.is-open .drawer__overlay {
  opacity: 1;
}
.drawer__panel {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(85%, 380px);
  background: var(--primary-dark);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.16,1,0.3,1);
  box-shadow: -10px 0 40px rgba(0,0,0,0.3);
}
.drawer.is-open .drawer__panel {
  transform: translateX(0);
}
.drawer__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.drawer__brand-container {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.drawer__logo-img {
  height: 36px;
  width: auto;
  object-fit: contain;
  border-radius: 4px;
  background-color: var(--white);
  padding: 2px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}
.drawer__brand {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--warm-gold);
}
.drawer__close {
  background: none;
  border: none;
  color: var(--white);
  font-size: 2rem;
  cursor: pointer;
  line-height: 1;
  padding: 0;
}
.drawer__nav {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.drawer__link {
  color: rgba(255,255,255,0.85);
  font-size: 1.1rem;
  font-weight: 500;
  transition: var(--transition);
}
.drawer__link:hover { color: var(--warm-gold); }
.drawer__cta {
  margin-top: auto;
  text-align: center;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  background: var(--primary-dark);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 7rem 0 3rem;
  position: relative;
  overflow: hidden;
}

/* Decorative BG art */
.hero__bg-art {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.hero__circle {
  position: absolute;
  border-radius: 50%;
}
.hero__circle--1 {
  width: 600px;
  height: 600px;
  top: -200px;
  right: -150px;
}
.hero__circle--2 {
  width: 400px;
  height: 400px;
  bottom: -100px;
  left: -100px;
}
.hero__circle--3 {
  width: 250px;
  height: 250px;
  top: 40%;
  left: 60%;
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero__eyebrow {
  font-family: var(--font-utility);
  color: var(--warm-gold);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(201, 169, 110, 0.3);
  display: inline-block;
}

.hero__title {
  color: var(--white);
  font-size: clamp(2.2rem, 6vw, 4.2rem);
  font-weight: 700;
  max-width: 900px;
  margin-bottom: 1rem;
}
.hero__title-accent {
  color: var(--warm-gold);
}

.hero__subtitle {
  font-family: var(--font-display);
  color: var(--warm-gold);
  font-style: italic;
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  margin-bottom: 1.5rem;
  letter-spacing: 0.02em;
}

.hero__body {
  color: rgba(255,255,255,0.78);
  font-size: clamp(0.9rem, 1.5vw, 1.05rem);
  max-width: 780px;
  margin-bottom: 1rem;
  line-height: 1.8;
}

.hero__badges {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.6rem;
  margin: 1.5rem auto 2rem;
  padding: 1.25rem 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  max-width: 900px;
  width: 100%;
}
.hero__badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 500;
  text-align: left;
}
.hero__badge-icon {
  width: 18px;
  height: 18px;
  color: var(--warm-gold);
  flex-shrink: 0;
}

@media (min-width: 640px) {
  .hero__badges {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.6rem 2rem;
  }
}

.hero__ctas {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 0.5rem;
  width: 100%;
  max-width: 420px;
}

.hero__scroll-arrow {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.4);
  transition: var(--transition);
  animation: bounceArrow 2s infinite ease-in-out;
}
.hero__scroll-arrow:hover { color: var(--white); }

@keyframes bounceArrow {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(10px); }
}

@media (min-width: 640px) {
  .hero__ctas {
    flex-direction: row;
    max-width: none;
    width: auto;
  }
}

/* ============================================================
   ABOUT
   ============================================================ */
.about__grid {
  display: grid;
  gap: 3rem;
}
.about__text p {
  margin-bottom: 1rem;
  font-size: 1rem;
  line-height: 1.8;
  color: #4a5d5a;
}
.about__text .section__title {
  margin-bottom: 0.5rem;
}

.about__cards {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.about__card {
  background: var(--leaf-green);
  color: var(--white);
  padding: 2rem;
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--warm-gold);
  transition: var(--transition);
}
.about__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(47, 82, 51, 0.25);
}
.about__card-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--warm-gold);
}
.about__card p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.9);
}

@media (min-width: 1024px) {
  .about__grid {
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: start;
  }
}

/* ============================================================
   SERVICES
   ============================================================ */
.services__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.svc-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(107, 143, 94, 0.15);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.svc-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 100%;
  background: var(--leaf-green);
  transform: scaleY(0);
  transition: transform 0.4s cubic-bezier(0.16,1,0.3,1);
  transform-origin: bottom;
}
.svc-card:hover {
  transform: translateY(-4px);
  background: rgba(255,255,255,0.07);
  border-color: rgba(107, 143, 94, 0.3);
  box-shadow: 0 12px 32px rgba(0,0,0,0.15);
}
.svc-card:hover::before {
  transform: scaleY(1);
  transform-origin: top;
}

.svc-card__icon {
  width: 44px;
  height: 44px;
  margin-bottom: 1.25rem;
  color: var(--muted-sage);
}
.svc-card__icon svg {
  width: 100%;
  height: 100%;
}
.svc-card__title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.6rem;
}
.svc-card__desc {
  font-size: 0.92rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.6);
}
.svc-card__subtitle {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--warm-gold);
  margin-bottom: 0.75rem;
  font-style: italic;
}
.svc-card__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.svc-card__list li {
  font-size: 0.92rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.65);
  padding-left: 1.25rem;
  position: relative;
}
.svc-card__list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--muted-sage);
  font-weight: 700;
}

@media (min-width: 768px) {
  .services__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .services__grid { grid-template-columns: repeat(3, 1fr); }
}

/* Accordion (Additional Services) */
.services__accordion {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(107, 143, 94, 0.15);
  border-radius: var(--radius);
  margin-bottom: 1rem;
  overflow: hidden;
}
.accordion__trigger {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 1.5rem;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  text-align: left;
}
.accordion__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(107, 143, 94, 0.15);
  color: var(--muted-sage);
  transition: var(--transition);
  flex-shrink: 0;
}
.accordion__trigger[aria-expanded="true"] .accordion__icon {
  transform: rotate(180deg);
  background: var(--leaf-green);
  color: var(--white);
}
.accordion__panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16,1,0.3,1);
}
.accordion__panel-inner {
  padding: 0 1.5rem 1.5rem;
  border-top: 1px solid rgba(107, 143, 94, 0.1);
}
.services__spec-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.5rem;
  padding-top: 1rem;
}
.services__spec-list li {
  color: rgba(255,255,255,0.7);
  font-size: 0.92rem;
  padding-left: 1.2rem;
  position: relative;
}
.services__spec-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--muted-sage);
}

@media (min-width: 768px) {
  .services__spec-list { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .services__spec-list { grid-template-columns: repeat(3, 1fr); }
}

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.why__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.why-card {
  background: var(--white);
  border: 1px solid rgba(107, 143, 94, 0.12);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.why-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 100%;
  background: var(--leaf-green);
  transform: scaleY(0);
  transition: transform 0.4s cubic-bezier(0.16,1,0.3,1);
  transform-origin: bottom;
}
.why-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(47, 82, 51, 0.2);
}
.why-card:hover::before {
  transform: scaleY(1);
  transform-origin: top;
}

.why-card__icon {
  width: 40px;
  height: 40px;
  color: var(--leaf-green);
  margin-bottom: 1rem;
}
.why-card__icon svg {
  width: 100%;
  height: 100%;
}
.why-card__title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
}
.why-card__desc {
  font-size: 0.92rem;
  line-height: 1.7;
  color: #5a706c;
}

@media (min-width: 768px) {
  .why__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .why__grid { grid-template-columns: repeat(3, 1fr); }
}

.why__trust {
  background: var(--leaf-green);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  text-align: center;
}
.why__trust p {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--warm-gold);
  font-size: 1.1rem;
  line-height: 1.7;
  max-width: 900px;
  margin: 0 auto;
}

/* ============================================================
   EXPERT LOGOS MARQUEE
   ============================================================ */
.expert-logos {
  padding-bottom: 4rem;
  overflow: hidden;
}
.expert-logos .section__header {
  margin-bottom: 2.5rem;
}

.marquee {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 1.5rem 0;
}
.marquee::before,
.marquee::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 200px;
  z-index: 2;
  pointer-events: none;
}
.marquee::before {
  left: 0;
  background: linear-gradient(
    to right,
    var(--primary-dark) 0%,
    rgba(30, 46, 44, 0.95) 15%,
    rgba(30, 46, 44, 0.7) 40%,
    rgba(30, 46, 44, 0.3) 70%,
    rgba(30, 46, 44, 0) 100%
  );
}
.marquee::after {
  right: 0;
  background: linear-gradient(
    to left,
    var(--primary-dark) 0%,
    rgba(30, 46, 44, 0.95) 15%,
    rgba(30, 46, 44, 0.7) 40%,
    rgba(30, 46, 44, 0.3) 70%,
    rgba(30, 46, 44, 0) 100%
  );
}

.marquee__track {
  display: flex;
  gap: 3rem;
  width: max-content;
}

.marquee__group {
  display: flex;
  gap: 3rem;
  flex-shrink: 0;
  animation: marquee-scroll 80s linear infinite;
}
.marquee:hover .marquee__group {
  animation-play-state: paused;
}

.marquee__item {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 200px;
  height: 110px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  padding: 1.25rem;
  transition: all 0.3s ease;
}
.marquee__item:hover {
  background: #fff;
  border-color: rgba(201, 169, 110, 0.5);
  transform: scale(1.1);
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.3);
}
.marquee__item img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

@keyframes marquee-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-100% - 3rem));
  }
}

/* ============================================================
   INDUSTRIES
   ============================================================ */
.industries__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

.ind-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(107, 143, 94, 0.15);
  border-radius: var(--radius);
  padding: 1.5rem;
  text-align: center;
  min-height: 140px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: default;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.ind-card:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(107, 143, 94, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.ind-card__icon {
  width: 36px;
  height: 36px;
  color: var(--muted-sage);
  margin-bottom: 0.75rem;
  transition: var(--transition);
}
.ind-card__icon svg {
  width: 100%;
  height: 100%;
}
.ind-card:hover .ind-card__icon {
  color: var(--warm-gold);
  transform: scale(1.1);
}

.ind-card__name {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--white);
  margin-bottom: 0.5rem;
  transition: var(--transition);
}

.ind-card__desc {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.5;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, opacity 0.3s ease;
  opacity: 0;
}
.ind-card:hover .ind-card__desc {
  max-height: 60px;
  opacity: 1;
}

@media (min-width: 640px) {
  .industries__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .industries__grid { grid-template-columns: repeat(4, 1fr); }
}

/* ============================================================
   PROCESS
   ============================================================ */
.process__timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  max-width: 600px;
  margin: 0 auto;
}

.process__step {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.process__circle {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-utility);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--white);
  position: relative;
  z-index: 2;
}
.process__circle--green { background: var(--leaf-green); }
.process__circle--gold { background: var(--warm-gold); color: var(--primary-dark); }

.process__info {
  padding: 0.25rem 0 1rem;
}
.process__step-title {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 0.25rem;
}
.process__step-desc {
  font-size: 0.92rem;
  color: #5a706c;
  line-height: 1.6;
}

.process__connector {
  width: 2px;
  height: 24px;
  background: linear-gradient(to bottom, var(--leaf-green), var(--warm-gold));
  margin-left: 23px;
  opacity: 0.4;
}

.process__tagline {
  text-align: center;
  font-family: var(--font-utility);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.2em;
  color: var(--leaf-green);
  margin-top: 3rem;
  text-transform: uppercase;
}

@media (min-width: 1024px) {
  .process__timeline {
    flex-direction: row;
    align-items: flex-start;
    max-width: 100%;
    gap: 0;
  }
  .process__step {
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
    gap: 1rem;
  }
  .process__connector {
    width: auto;
    height: 2px;
    flex: 0 0 auto;
    margin-left: 0;
    margin-top: 24px;
    min-width: 30px;
    background: linear-gradient(to right, var(--leaf-green), var(--warm-gold));
    align-self: flex-start;
  }
}

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  background: var(--leaf-green);
  padding: 5rem 0;
}
.cta-banner__content {
  text-align: center;
}
.cta-banner__title {
  font-family: var(--font-display);
  color: var(--white);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
}
.cta-banner__body {
  color: rgba(255,255,255,0.85);
  font-size: 1.05rem;
  line-height: 1.8;
  max-width: 780px;
  margin: 0 auto 1rem;
}
.cta-banner .btn {
  margin-top: 1rem;
}

/* ============================================================
   FAQs
   ============================================================ */
.faqs__list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(107, 143, 94, 0.15);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
}
.faq:hover {
  border-color: rgba(107, 143, 94, 0.3);
}

.faq__trigger {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 1.5rem;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  text-align: left;
  gap: 1rem;
}
.faq__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(107, 143, 94, 0.15);
  color: var(--muted-sage);
  transition: var(--transition);
  flex-shrink: 0;
}
.faq__trigger[aria-expanded="true"] .faq__icon {
  transform: rotate(180deg);
  background: var(--leaf-green);
  color: var(--white);
}

.faq__panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16,1,0.3,1);
}
.faq__answer {
  padding: 0 1.5rem 1.25rem;
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
  line-height: 1.8;
  border-top: 1px solid rgba(107, 143, 94, 0.1);
  padding-top: 1rem;
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact__subheading {
  font-family: var(--font-display);
  color: var(--warm-gold);
  font-size: 1.2rem;
  font-weight: 600;
  margin-top: 0.25rem;
  text-align: center;
}

.contact__grid {
  display: grid;
  gap: 3rem;
}

.contact__info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.contact__detail {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}
.contact__detail-icon {
  width: 22px;
  height: 22px;
  color: var(--leaf-green);
  flex-shrink: 0;
  margin-top: 2px;
}
.contact__detail p {
  font-size: 0.95rem;
  color: #4a5d5a;
  line-height: 1.6;
}

.contact__why {
  background: var(--white);
  border: 1px solid rgba(107, 143, 94, 0.12);
  border-radius: var(--radius-lg);
  padding: 2rem;
  margin-top: 0.5rem;
}
.contact__why-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--leaf-green);
  margin-bottom: 1rem;
}
.contact__why-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.contact__why-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.92rem;
  color: #4a5d5a;
  line-height: 1.5;
}
.contact__check {
  width: 18px;
  height: 18px;
  color: var(--leaf-green);
  flex-shrink: 0;
  margin-top: 1px;
}

/* Form */
.contact__form-wrap {
  background: var(--white);
  border: 1px solid rgba(107, 143, 94, 0.12);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  box-shadow: var(--shadow-sm);
}
.contact__form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.form__group {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.form__label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary-dark);
}
.form__input {
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 0.8rem 1rem;
  border: 1px solid rgba(107, 143, 94, 0.2);
  border-radius: var(--radius);
  background: var(--cream);
  color: var(--primary-dark);
  transition: var(--transition);
  outline: none;
}
.form__input:focus {
  border-color: var(--leaf-green);
  box-shadow: 0 0 0 3px rgba(47, 82, 51, 0.08);
}
.form__input::placeholder {
  color: #8a9e9a;
}
.form__select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%234a5d5a' d='M6 8.5L1 3.5h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}
.form__textarea {
  resize: vertical;
  min-height: 100px;
}

.form__success {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem;
  background: rgba(47, 82, 51, 0.08);
  border-radius: var(--radius);
  color: var(--leaf-green);
  font-weight: 500;
  font-size: 0.92rem;
  margin-top: 0.5rem;
}
.form__success svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

@media (min-width: 1024px) {
  .contact__grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--primary-dark);
  padding: 3rem 0 2rem;
}
.footer__top {
  display: grid;
  gap: 2rem;
  margin-bottom: 2rem;
}
.footer__logo-container {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.footer__logo-img {
  height: 44px;
  width: auto;
  object-fit: contain;
  border-radius: 6px;
  background-color: var(--white);
  padding: 3px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.footer__logo-text {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.15rem;
  color: var(--warm-gold);
  letter-spacing: 0.02em;
}
.footer__tagline {
  font-family: var(--font-display);
  font-style: italic;
  color: rgba(255,255,255,0.6);
  font-size: 0.92rem;
}
.footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
}
.footer__link {
  color: rgba(255,255,255,0.7);
  font-size: 0.92rem;
  transition: var(--transition);
}
.footer__link:hover {
  color: var(--warm-gold);
}
.footer__contact p {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  line-height: 1.8;
}

.footer__divider {
  width: 100%;
  height: 1px;
  background: rgba(255,255,255,0.08);
}

.footer__bottom {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding-top: 1.5rem;
}
.footer__copyright {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
}
.footer__closing {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.35);
  font-style: italic;
}

@media (min-width: 768px) {
  .footer__top {
    grid-template-columns: 1.5fr 1fr 1fr;
    align-items: start;
  }
  .footer__bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}
