/* ===== Variables ===== */
:root {
  --green: #1a4d2e;
  --green-dark: #0f2e1c;
  --green-light: #2a6b42;
  --yellow: #f2b824;
  --yellow-dark: #d4a017;
  --white: #ffffff;
  --grey-bg: #f4f5f7;
  --grey-text: #555555;
  --grey-light: #888888;
  --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  --radius: 6px;
  --radius-lg: 10px;
  --font: "Montserrat", sans-serif;
  --container: 1200px;
  --header-h: 80px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  color: var(--grey-text);
  line-height: 1.6;
  overflow-x: hidden;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

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

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

ul {
  list-style: none;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-family: var(--font);
  font-size: 14px;
  font-weight: 600;
  border: 2px solid transparent;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.2s;
  white-space: nowrap;
}

.btn:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

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

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

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

.btn--sm {
  padding: 10px 20px;
  font-size: 13px;
}

/* ===== Section Labels & Titles ===== */
.section-label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--green);
  text-transform: uppercase;
  margin-bottom: 12px;
}

.section-label--center {
  text-align: center;
}

.section-title {
  font-size: clamp(28px, 4vw, 38px);
  font-weight: 700;
  color: var(--green);
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-title--center {
  text-align: center;
}

/* ===== Header ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  height: var(--header-h);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  gap: 20px;
}

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

.logo__icon {
  width: 44px;
  height: 44px;
  color: var(--green);
  flex-shrink: 0;
}

.logo--white .logo__icon,
.logo--white .logo__name,
.logo--white .logo__tagline {
  color: var(--white);
}

.logo__text {
  display: flex;
  flex-direction: column;
}

.logo__name {
  font-size: 15px;
  font-weight: 800;
  color: var(--green);
  letter-spacing: 0.5px;
  line-height: 1.2;
}

.logo__tagline {
  font-size: 8px;
  font-weight: 600;
  color: var(--grey-light);
  letter-spacing: 0.3px;
  line-height: 1.3;
}

.logo--white .logo__tagline {
  opacity: 0.7;
}

.nav {
  flex: 1;
  display: flex;
  justify-content: center;
}

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

.nav__link {
  font-size: 13px;
  font-weight: 500;
  color: var(--grey-text);
  position: relative;
  padding-bottom: 4px;
  transition: color 0.2s;
}

.nav__link:hover,
.nav__link--active {
  color: var(--green);
}

.nav__link--active::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--yellow);
}

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

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--green);
  transition: transform 0.3s, opacity 0.3s;
}

.nav-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

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

.nav-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  margin-top: var(--header-h);
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.92) 0%,
    rgba(255, 255, 255, 0.75) 45%,
    rgba(255, 255, 255, 0.2) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 1;
  flex: 1 1 100%;
  width: 100%;
  align-self: center;
  padding-top: 60px;
  padding-bottom: 80px;
  text-align: left;
}

.hero__title,
.hero__desc,
.hero__actions {
  max-width: 560px;
}

.hero__title {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}

.hero__title-green {
  font-size: clamp(36px, 5.5vw, 52px);
  font-weight: 800;
  color: var(--green);
  letter-spacing: 1px;
  line-height: 1.1;
}

.hero__title-yellow {
  font-size: clamp(36px, 5.5vw, 52px);
  font-weight: 800;
  color: var(--yellow);
  letter-spacing: 1px;
  line-height: 1.1;
}

.hero__desc {
  font-size: 15px;
  color: var(--grey-text);
  margin-bottom: 28px;
  max-width: 480px;
  line-height: 1.7;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* ===== Features Bar ===== */
.features-bar {
  background: var(--green);
  padding: 28px 0;
}

.features-bar__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

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

.feature-item__icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  color: var(--yellow);
}

.feature-item__icon svg {
  width: 100%;
  height: 100%;
}

.feature-item__text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.feature-item__text strong {
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.3;
}

.feature-item__text span {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.4;
}

/* ===== Services ===== */
.services {
  background: var(--grey-bg);
  padding: 80px 0;
}

.services__inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: start;
}

.services__intro {
  padding-top: 8px;
}

.services__desc {
  font-size: 15px;
  margin-bottom: 28px;
  line-height: 1.7;
}

.services__cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 24px 24px;
  box-shadow: var(--shadow);
  position: relative;
  transition: transform 0.2s, box-shadow 0.2s;
}

.service-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.service-card__icon {
  width: 40px;
  height: 40px;
  color: var(--yellow);
  margin-bottom: 16px;
}

.service-card__icon svg {
  width: 100%;
  height: 100%;
}

.service-card h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--green);
  margin-bottom: 8px;
}

.service-card p {
  font-size: 13px;
  line-height: 1.6;
  color: var(--grey-text);
  margin-bottom: 20px;
}

.service-card__link {
  display: inline-flex;
  color: var(--green);
  transition: transform 0.2s;
}

.service-card__link:hover {
  transform: translateX(4px);
}

/* ===== Brands ===== */
.brands {
    padding: 100px 0;
    background: var(--white);
}

.brands__inner {
    text-align: center;
}

.brands__logos{
    display:flex;
    flex-direction:row;
    justify-content:center;
    align-items:center;

    gap:50px;

    flex-wrap:nowrap;

    width:100%;
}

/* Individual Logo Card */
.brand-logo {
    width: 180px;
    height: 110px;

    display: flex;
    justify-content: center;
    align-items: center;

    padding: 20px;

    background: #fff;
    border-radius: 18px;

    transition: all .3s ease;
}

/* Logo Images */
.brand-logo img {
    width: auto;
    height: auto;

    max-width: 140px;
    max-height: 70px;

    object-fit: contain;

    transition: all .3s ease;
}

/* Hover Effect */
.brand-logo:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 45px rgba(0,0,0,.10);
}

.brand-logo:hover img {
    transform: scale(1.08);
}

/* View All Brands */
.brands__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    font-size: 15px;
    font-weight: 600;
    color: var(--green);

    transition: .3s;
}

.brands__link:hover {
    gap: 14px;
}
/* ===== About ===== */
.about {
  padding: 80px 0;
  background: var(--white);
}

.about__inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: center;
}

.about__content p {
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 16px;
}

.about__list {
  list-style: none;
  margin-top: 20px;
}

.about__list li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 10px;
  font-size: 14px;
  line-height: 1.6;
}

.about__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--yellow);
}

.about__stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.stat-card {
  background: var(--grey-bg);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  text-align: center;
}

.stat-card strong {
  display: block;
  font-size: 32px;
  font-weight: 800;
  color: var(--green);
  line-height: 1.2;
  margin-bottom: 6px;
}

.stat-card span {
  font-size: 13px;
  color: var(--grey-text);
}

/* ===== Industries ===== */
.industries {
  padding: 80px 0;
  background: var(--grey-bg);
}

.industries__intro {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 40px;
  font-size: 15px;
  line-height: 1.7;
}

.industries__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.industry-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  box-shadow: var(--shadow);
}

.industry-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--green);
  margin-bottom: 10px;
}

.industry-card p {
  font-size: 14px;
  line-height: 1.6;
}

/* ===== FAQ ===== */
.faq {
  padding: 80px 0;
  background: var(--white);
}

.faq__list {
  max-width: 760px;
  margin: 32px auto 0;
}

.faq__item {
  border: 1px solid #e8e8e8;
  border-radius: var(--radius-lg);
  margin-bottom: 12px;
  overflow: hidden;
}

.faq__item summary {
  padding: 18px 24px;
  font-size: 15px;
  font-weight: 600;
  color: var(--green);
  cursor: pointer;
  list-style: none;
}

.faq__item summary::-webkit-details-marker {
  display: none;
}

.faq__item summary::after {
  content: "+";
  float: right;
  font-size: 20px;
  font-weight: 400;
  color: var(--yellow-dark);
}

.faq__item[open] summary::after {
  content: "−";
}

.faq__item p {
  padding: 0 24px 18px;
  font-size: 14px;
  line-height: 1.7;
}

.faq__item a {
  color: var(--green);
  font-weight: 600;
  text-decoration: underline;
}

/* ===== CTA ===== */
.cta {
  background: var(--yellow);
  padding: 70px 0;
}

.cta__inner {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 1fr;
  gap: 40px;
  align-items: center;
}

.cta__label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--green);
  text-transform: uppercase;
  margin-bottom: 10px;
}

.cta__title {
  font-size: clamp(24px, 3.5vw, 32px);
  font-weight: 700;
  color: var(--green);
  margin-bottom: 12px;
  line-height: 1.2;
}

.cta__desc {
  font-size: 14px;
  color: var(--green);
  opacity: 0.85;
  margin-bottom: 24px;
  line-height: 1.6;
}

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

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

.contact-item__icon {
  width: 40px;
  height: 40px;
  background: rgba(26, 77, 46, 0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--green);
}

.contact-item__icon svg {
  width: 18px;
  height: 18px;
}

.contact-item div {
  display: flex;
  flex-direction: column;
}

.contact-item strong {
  font-size: 13px;
  font-weight: 700;
  color: var(--green);
}

.contact-item span,
.contact-item a {
  font-size: 13px;
  color: var(--green);
  opacity: 0.85;
}

.contact-item a:hover {
  opacity: 1;
  text-decoration: underline;
}

.cta__map{
    display:flex;
    justify-content:center;
    align-items:center;
    user-select: none;
    -webkit-user-drag: none;
    -webkit-user-select: none;
    pointer-events: none;
}

.australia-map{
    width:420px;
    max-width:100%;
    opacity:.95;
}

.australia-map {
  width: 100%;
  max-width: 220px;
  height: auto;
}

/* ===== Footer ===== */
.footer {
  background: var(--green-dark);
  color: rgba(255, 255, 255, 0.8);
}

.footer__main {
  display: grid;
  grid-template-columns: 1.4fr 1fr 0.8fr 1.3fr;
  gap: 40px;
  padding: 60px 24px 40px;
}

.footer__links h4,
.footer__social h4,
.footer__newsletter h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
}

.footer__links-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 24px;
}

.footer__links-grid a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.2s;
  line-height: 2;
}

.footer__links-grid a:hover {
  color: var(--yellow);
}

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

.social-icons a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: background 0.2s, border-color 0.2s;
}

.social-icons a:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--yellow);
}

.social-icons svg {
  width: 16px;
  height: 16px;
}

.footer__newsletter p {
  font-size: 12px;
  line-height: 1.6;
  margin-bottom: 16px;
  color: rgba(255, 255, 255, 0.65);
}

.newsletter-form {
  display: flex;
  gap: 0;
}

.newsletter-form input {
  flex: 1;
  padding: 12px 16px;
  border: none;
  border-radius: var(--radius) 0 0 var(--radius);
  font-family: var(--font);
  font-size: 13px;
  outline: none;
  min-width: 0;
}

.newsletter-form button {
  padding: 12px 16px;
  background: var(--yellow);
  border: none;
  border-radius: 0 var(--radius) var(--radius) 0;
  cursor: pointer;
  color: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s;
}

.newsletter-form button:hover {
  opacity: 0.9;
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  flex-wrap: wrap;
  gap: 12px;
}

.footer__bottom p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
}

.footer__legal {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
}

.footer__legal a {
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.2s;
}

.footer__legal a:hover {
  color: var(--yellow);
}

.footer__legal span {
  color: rgba(255, 255, 255, 0.3);
}

/* ===== Legal Pages ===== */
.legal-page {
  padding: 120px 0 80px;
  min-height: 60vh;
}

.legal-page h1 {
  font-size: 32px;
  color: var(--green);
  margin: 24px 0 12px;
}

.legal-page h2 {
  font-size: 20px;
  color: var(--green);
  margin: 28px 0 10px;
}

.legal-page p {
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 12px;
}

.legal-page a {
  color: var(--green);
  font-weight: 600;
}

.legal-page__back {
  font-size: 14px;
  font-weight: 600;
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .features-bar__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

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

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

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

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

  .cta__map {
    grid-column: 1 / -1;
  }

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

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

  .nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: var(--white);
    padding: 20px 24px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(-120%);
    opacity: 0;
    transition: transform 0.3s, opacity 0.3s;
    pointer-events: none;
  }

  .nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }

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

  .header__cta {
    display: none;
  }

  .hero__content {
    padding-top: 40px;
    padding-bottom: 60px;
  }

  .features-bar__grid {
    grid-template-columns: 1fr;
  }

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

  .brands__logos {
    gap: 24px;
  }

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

  .footer__main {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer__bottom-inner {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero__actions {
    flex-direction: column;
  }

  .hero__actions .btn {
    width: 100%;
    justify-content: center;
  }
}
