/* Base Font Imports */
@import url('https://fonts.googleapis.com/css2?family=Kanit:wght@300;400;500;600;700&family=Raleway:wght@400;500;600;700&display=swap');

/* Australian Color Variables */
:root {
  --aussie-green: #00843D;
  --aussie-gold: #FFCD00;
  --aussie-navy: #003F87;
  --aussie-dark: #222222;
  --aussie-light: #FFFFFF;
  --aussie-accent: #FF9E1B;
  --aussie-light-bg: #F5F9F6;
  --aussie-medium-gray: #e0e0e0;
  --aussie-dark-gray: #777777;
  
  /* Other Variables */
  --gradient-primary: linear-gradient(135deg, var(--aussie-green), var(--aussie-gold));
  --gradient-secondary: linear-gradient(to right, var(--aussie-green), var(--aussie-accent));
  --shadow-sm: 0 4px 10px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 6px 18px rgba(0, 0, 0, 0.15);
  --shadow-lg: 0 12px 30px rgba(0, 0, 0, 0.2);
  --border-radius-sm: 8px;
  --border-radius-md: 14px;
  --border-radius-lg: 25px;
  --transition: all 0.3s ease;
  
  /* Typography */
  --font-heading: 'Kanit', sans-serif;
  --font-body: 'Raleway', sans-serif;
}

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 62.5%;
}

body {
  font-family: var(--font-body);
  font-size: 1.6rem;
  line-height: 1.7;
  color: var(--aussie-dark);
  background-color: var(--aussie-light);
  overflow-x: hidden;
}

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

a:hover {
  color: var(--aussie-gold);
}

h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.3;
  color: var(--aussie-dark);
}

ul {
  list-style: none;
}

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

/* Container */
.container {
  width: 92%;
  max-width: 120rem;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 1.6rem 3.2rem;
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 500;
  text-align: center;
  border-radius: var(--border-radius-sm);
  cursor: pointer;
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: none;
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  transition: all 0.4s ease-out;
  z-index: -1;
}

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

.btn:hover::after {
  width: 100%;
}

.btn-primary {
  background: var(--aussie-green);
  color: var(--aussie-light);
}

.btn-primary:hover {
  background: #006d32;
}

.btn-secondary {
  background: var(--aussie-gold);
  color: var(--aussie-dark);
}

.btn-secondary:hover {
  background: #e6b900;
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--aussie-green);
  color: var(--aussie-green);
}

.btn-outline:hover {
  background: var(--aussie-green);
  color: var(--aussie-light);
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 2rem 0;
  background-color: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow-sm);
  z-index: 1000;
  transition: var(--transition);
}

.header.scrolled {
  padding: 1.2rem 0;
  box-shadow: var(--shadow-md);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.logo svg {
  width: 4.5rem;
  height: 4.5rem;
}

.logo-text {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 2.4rem;
  color: var(--aussie-green);
  letter-spacing: 0px;
}

.nav-menu {
  display: flex;
  align-items: center;
}

.nav-list {
  display: flex;
  gap: 4rem;
}

.nav-link {
  font-weight: 500;
  color: var(--aussie-dark);
  position: relative;
  padding: 0.5rem 0;
  font-size: 1.7rem;
}

.nav-link::before {
  content: '';
  position: absolute;
  width: 0;
  height: 3px;
  bottom: -4px;
  left: 0;
  background: var(--gradient-secondary);
  transition: width 0.3s ease-in-out;
  border-radius: 3px;
}

.nav-link:hover {
  color: var(--aussie-green);
}

.nav-link:hover::before {
  width: 100%;
}

.nav-cta {
  margin-left: 3.5rem;
}

/* Mobile Toggle */
.mobile-toggle {
  display: none;
  cursor: pointer;
  width: 3.2rem;
  height: 2.5rem;
  position: relative;
  z-index: 2000;
}

.mobile-toggle span {
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  background: var(--aussie-green);
  border-radius: 3px;
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  transition: .35s ease-in-out;
}

.mobile-toggle span:nth-child(1) {
  top: 0;
}

.mobile-toggle span:nth-child(2) {
  top: 10px;
}

.mobile-toggle span:nth-child(3) {
  top: 20px;
}

.mobile-toggle.open span:nth-child(1) {
  top: 10px;
  transform: rotate(135deg);
}

.mobile-toggle.open span:nth-child(2) {
  opacity: 0;
  transform: translateX(-20px);
}

.mobile-toggle.open span:nth-child(3) {
  top: 10px;
  transform: rotate(-135deg);
}

/* Hero Section */
.hero {
  position: relative;
  padding: 18rem 0 12rem;
  background: #111111;
  color: var(--aussie-light);
  overflow: hidden;
}

.hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 132, 61, 0.15) 0%, rgba(255, 205, 0, 0.15) 50%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 80rem;
  margin: 0 auto;
  text-align: center;
}

.hero-tag {
  display: inline-block;
  padding: 0.8rem 2.2rem;
  background-color: var(--aussie-gold);
  color: var(--aussie-dark);
  border-radius: 30px;
  font-size: 1.6rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 3rem;
}

.hero-title {
  font-size: 5rem;
  margin-bottom: 2.8rem;
  color: var(--aussie-light);
  line-height: 1.2;
}

.hero-description {
  font-size: 1.8rem;
  margin-bottom: 4.5rem;
  opacity: 0.9;
  max-width: 85%;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 2rem;
}

/* Features Section */
.features {
  padding: 12rem 0;
  background-color: var(--aussie-light-bg);
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 7rem;
}

.section-subtitle {
  font-family: var(--font-body);
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--aussie-green);
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  display: inline-block;
  padding: 0.5rem 1.5rem;
  background-color: rgba(0, 132, 61, 0.1);
  border-radius: 30px;
}

.section-title {
  font-size: 4rem;
  margin-bottom: 2.5rem;
  color: var(--aussie-dark);
}

.section-description {
  font-size: 1.8rem;
  color: var(--aussie-dark-gray);
  max-width: 75rem;
  margin: 0 auto;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
  gap: 4rem;
  margin-top: 6rem;
}

.feature-box {
  background-color: var(--aussie-light);
  border-radius: var(--border-radius-md);
  padding: 4rem 3rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  text-align: center;
  z-index: 1;
}

.feature-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0.4rem;
  background: var(--gradient-primary);
}

.feature-box:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
}

.feature-icon {
  width: 8rem;
  height: 8rem;
  margin: 0 auto 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 132, 61, 0.1);
  border-radius: 50%;
  color: var(--aussie-green);
  transition: var(--transition);
}

.feature-icon svg {
  width: 4rem;
  height: 4rem;
}

.feature-box:hover .feature-icon {
  background-color: var(--aussie-green);
  color: var(--aussie-light);
  transform: scale(1.1);
}

.feature-title {
  font-size: 2.2rem;
  margin-bottom: 1.8rem;
  color: var(--aussie-dark);
}

.feature-text {
  font-size: 1.6rem;
  color: var(--aussie-dark-gray);
}

/* Process Section */
.process {
  padding: 12rem 0;
  background-color: var(--aussie-light);
  position: relative;
  overflow: hidden;
}

.process::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(circle at 10% 20%, rgba(0, 132, 61, 0.05) 0%, transparent 50%), 
                    radial-gradient(circle at 90% 80%, rgba(255, 205, 0, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.steps-container {
  position: relative;
  z-index: 1;
  max-width: 90rem;
  margin: 6rem auto 0;
}

.step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 3rem;
  margin-bottom: 5rem;
  padding: 3rem;
  background-color: var(--aussie-light);
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.step:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.step:last-child {
  margin-bottom: 0;
}

.step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 6.5rem;
  height: 6.5rem;
  background-color: var(--aussie-gold);
  border-radius: 50%;
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--aussie-dark);
}

.step-content {
  padding-top: 0.5rem;
}

.step-title {
  font-size: 2.4rem;
  margin-bottom: 1.5rem;
  color: var(--aussie-dark);
}

.step-text {
  font-size: 1.6rem;
  color: var(--aussie-dark-gray);
}

/* CTA Section */
.cta {
  padding: 10rem 0;
  background: var(--gradient-primary);
  color: var(--aussie-light);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.15);
}

.cta-content {
  position: relative;
  z-index: 1;
  max-width: 80rem;
  margin: 0 auto;
}

.cta-title {
  font-size: 4.5rem;
  margin-bottom: 2rem;
  color: var(--aussie-light);
}

.cta-text {
  font-size: 1.8rem;
  margin-bottom: 4rem;
  opacity: 0.9;
}

.cta .btn {
  background-color: var(--aussie-light);
  color: var(--aussie-green);
  font-weight: 600;
  padding: 1.6rem 4rem;
  font-size: 1.8rem;
}

.cta .btn:hover {
  background-color: var(--aussie-gold);
  color: var(--aussie-dark);
}

/* FAQ Section */
.faq {
  padding: 12rem 0;
  background-color: var(--aussie-light-bg);
}

.faq-container {
  max-width: 80rem;
  margin: 6rem auto 0;
}

.faq-item {
  margin-bottom: 2.5rem;
  background-color: var(--aussie-light);
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  border-left: 4px solid var(--aussie-green);
}

.faq-item:hover {
  box-shadow: var(--shadow-md);
}

.faq-question {
  padding: 2.2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: var(--transition);
}

.faq-question h3 {
  font-size: 1.8rem;
  font-weight: 600;
  padding-right: 2rem;
}

.faq-toggle {
  font-size: 2.4rem;
  color: var(--aussie-green);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-answer-inner {
  padding: 0 2.2rem 2.2rem;
  color: var(--aussie-dark-gray);
  font-size: 1.6rem;
}

/* Footer */
.footer {
  background-color: var(--aussie-dark);
  color: var(--aussie-light);
  padding: 8rem 0 2rem;
}

.footer-top {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
  gap: 5rem;
  margin-bottom: 5rem;
}

.footer-info {
  max-width: 40rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin-bottom: 2.5rem;
}

.footer-logo svg {
  width: 5rem;
  height: 5rem;
}

.footer-logo-text {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 2.4rem;
  color: var(--aussie-light);
}

.footer-desc {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 2.5rem;
  font-size: 1.5rem;
}

.footer-heading {
  font-size: 2rem;
  margin-bottom: 2.5rem;
  color: var(--aussie-light);
  position: relative;
  padding-bottom: 1.5rem;
}

.footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 5rem;
  height: 2px;
  background: var(--aussie-gold);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.5rem;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: var(--aussie-gold);
  padding-left: 5px;
}

.copyright {
  text-align: center;
  padding-top: 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.5);
  font-size: 1.4rem;
}

/* Animations */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

.delay-1 {
  transition-delay: 0.2s;
}

.delay-2 {
  transition-delay: 0.4s;
}

.delay-3 {
  transition-delay: 0.6s;
}

/* Media Queries */
@media (max-width: 1200px) {
  html {
    font-size: 58%;
  }
}

@media (max-width: 992px) {
  html {
    font-size: 56%;
  }
  
  .hero-title {
    font-size: 4.5rem;
  }
  
  .section-title {
    font-size: 3.8rem;
  }
  
  .cta-title {
    font-size: 4rem;
  }
  
  .step {
    grid-template-columns: 1fr;
  }
  
  .step-number {
    margin: 0 auto 2rem;
  }
  
  .step-content {
    text-align: center;
  }
}

@media (max-width: 768px) {
  html {
    font-size: 54%;
  }
  
  .mobile-toggle {
    display: block;
  }
  
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 30rem;
    height: 100vh;
    background-color: var(--aussie-light);
    padding: 12rem 3rem 3rem;
    flex-direction: column;
    box-shadow: var(--shadow-lg);
    transition: right 0.4s ease-in-out;
    z-index: 999;
  }
  
  .nav-menu.active {
    right: 0;
  }
  
  .nav-list {
    flex-direction: column;
    width: 100%;
    gap: 2.5rem;
    margin-bottom: 4rem;
  }
  
  .nav-cta {
    margin-left: 0;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  html {
    font-size: 52%;
  }
  
  .hero-title {
    font-size: 3.8rem;
  }
  
  .hero-tag {
    font-size: 1.4rem;
  }
  
  .section-title {
    font-size: 3.5rem;
  }
  
  .feature-box {
    padding: 3rem 2rem;
  }
}
