/* Base Styles & Variables */
:root {
    --primary: #00843D;     /* Australian Green */
    --secondary: #FFCD00;   /* Australian Gold */
    --dark: #1A1A1A;        /* Dark shade */
    --light: #F8F8F8;       /* Light background */
    --text: #333333;        /* Main text */
    --text-light: #666666;  /* Secondary text */
    --gradient-primary: linear-gradient(135deg, #00843D, #005F2D);
    --gradient-secondary: linear-gradient(45deg, #FFCD00, #E0B000);
    --shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --border-radius: 12px;
    --border-radius-sm: 6px;
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Raleway', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text);
    background-color: var(--light);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    line-height: 1.3;
    color: var(--dark);
    margin-bottom: 1rem;
}

h1 {
    font-size: 3rem;
    letter-spacing: -0.5px;
}

h2 {
    font-size: 2.25rem;
    letter-spacing: -0.3px;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
    color: var(--text);
}

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

a:hover {
    color: var(--secondary);
}

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

/* Section styling */
section {
    padding: 80px 0;
    position: relative;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
}

.section-tag {
    display: inline-block;
    background: var(--gradient-secondary);
    color: var(--dark);
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 5px 15px;
    border-radius: 50px;
    margin-bottom: 15px;
}

.section-header h2 {
    margin-bottom: 15px;
    position: relative;
}

.section-header p {
    color: var(--text-light);
    font-size: 1.1rem;
}

.highlight {
    color: var(--primary);
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background-color: var(--secondary);
    opacity: 0.3;
    z-index: -1;
    border-radius: 4px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
}

.primary-btn {
    background: var(--gradient-primary);
    color: white;
    border: none;
    box-shadow: 0 5px 15px rgba(0, 132, 61, 0.3);
}

.primary-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 132, 61, 0.4);
    color: white;
}

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

.outline-btn:hover {
    background: var(--gradient-primary);
    color: white;
    border-color: transparent;
}

.large-btn {
    padding: 15px 40px;
    font-size: 1.1rem;
}

.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 132, 61, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(0, 132, 61, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(0, 132, 61, 0);
    }
}

/* Header & Navigation */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 15px 0;
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

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

.logo {
    display: flex;
    align-items: center;
    font-weight: 700;
    font-size: 1.4rem;
    color: var(--dark);
    font-family: 'Montserrat', sans-serif;
}

.logo-icon {
    margin-right: 10px;
}

.desktop-nav ul {
    display: flex;
    list-style: none;
}

.desktop-nav ul li {
    margin-left: 30px;
}

.desktop-nav ul li a {
    color: var(--dark);
    font-weight: 500;
    font-size: 1rem;
    position: relative;
}

.desktop-nav ul li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: var(--transition);
}

.desktop-nav ul li a:hover {
    color: var(--primary);
}

.desktop-nav ul li a:hover::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 30px;
    height: 24px;
    position: relative;
    z-index: 1001;
}

.menu-toggle span {
    display: block;
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: var(--primary);
    border-radius: 2px;
    transition: var(--transition);
}

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

.menu-toggle span:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
}

.menu-toggle span:nth-child(3) {
    bottom: 0;
}

.menu-toggle.active span:nth-child(1) {
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
}

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

.menu-toggle.active span:nth-child(3) {
    bottom: 50%;
    transform: translateY(50%) rotate(-45deg);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background: white;
    z-index: 999;
    padding: 80px 20px 30px;
    transition: var(--transition);
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu ul {
    list-style: none;
}

.mobile-menu ul li {
    margin-bottom: 20px;
}

.mobile-menu ul li a {
    color: var(--dark);
    font-weight: 500;
    font-size: 1.1rem;
    display: block;
    padding: 10px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.cta-btn.mobile {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 25px;
    color: white;
    background: var(--gradient-primary);
    border-radius: 50px;
}

/* Hero Section */
.hero {
    padding: 180px 0 100px;
    background-color: white;
    position: relative;
    overflow: hidden;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.hero-text {
    flex: 1;
}

.hero h1 {
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 30px;
    max-width: 600px;
}

.cta-group {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

.trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.badge {
    display: flex;
    align-items: center;
    background-color: rgba(255, 205, 0, 0.1);
    padding: 8px 15px;
    border-radius: 50px;
}

.badge svg {
    margin-right: 8px;
}

.badge span {
    font-size: 0.9rem;
    font-weight: 500;
}

.hero-visual {
    flex: 1;
    max-width: 500px;
}

.hero-svg {
    width: 100%;
    height: auto;
}

/* Features Section */
.features {
    background-color: #F2F9F5;
    overflow: hidden;
    position: relative;
}

.features::before {
    content: '';
    position: absolute;
    top: -50px;
    left: 0;
    width: 100%;
    height: 100px;
    background-color: white;
    border-radius: 0 0 50% 50% / 0 0 100% 100%;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-card {
    background: white;
    border-radius: var(--border-radius);
    padding: 40px 30px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-bottom-color: var(--secondary);
    border-top-color: var(--primary);
}

.feature-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 25px;
}

.feature-card h3 {
    margin-bottom: 15px;
}

.feature-card p {
    color: var(--text-light);
}

/* How it Works Section */
.how-it-works {
    background-color: white;
    position: relative;
}

.how-it-works::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: 0;
    width: 100%;
    height: 100px;
    background-color: white;
    border-radius: 50% 50% 0 0 / 100% 100% 0 0;
    z-index: 1;
}

.steps-container {
    max-width: 800px;
    margin: 60px auto;
}

.step {
    display: flex;
    align-items: flex-start;
    margin-bottom: 50px;
    position: relative;
}

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

.step::after {
    content: '';
    position: absolute;
    top: 60px;
    left: 30px;
    width: 2px;
    height: calc(100% - 30px);
    background: var(--gradient-secondary);
    z-index: -1;
}

.step:last-child::after {
    display: none;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    color: white;
    margin-right: 30px;
    flex-shrink: 0;
}

.step-content {
    background: #F2F9F5;
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--shadow);
    flex-grow: 1;
}

.step-content h3 {
    color: var(--primary);
    margin-bottom: 15px;
}

.action-box {
    background: var(--gradient-primary);
    border-radius: var(--border-radius);
    padding: 50px;
    margin-top: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
    position: relative;
    z-index: 2;
}

.action-content {
    flex: 1;
    min-width: 300px;
}

.action-content h3 {
    color: white;
    margin-bottom: 10px;
    font-size: 1.8rem;
}

.action-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    margin: 0;
}

.action-box .primary-btn {
    background: var(--secondary);
    color: var(--dark);
    font-weight: 700;
}

.action-box .primary-btn:hover {
    background: white;
}

/* FAQ Section */
.faq-section {
    background-color: #F2F9F5;
    position: relative;
    padding-top: 120px;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: var(--border-radius);
    margin-bottom: 20px;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.faq-question {
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    transition: var(--transition);
    border-left: 4px solid transparent;
}

.faq-item.active .faq-question {
    border-left-color: var(--primary);
}

.faq-question h3 {
    margin: 0;
    font-size: 1.1rem;
    padding-right: 20px;
}

.faq-toggle {
    color: var(--primary);
    transition: var(--transition);
    font-size: 24px;
    font-weight: 700;
    flex-shrink: 0;
}

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

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 20px 20px;
    max-height: 1000px;
}

.faq-answer p {
    color: var(--text-light);
}

/* Keywords Section */
.keywords-section {
    background-color: white;
    padding: 70px 0;
}

.keywords-cloud {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.keyword {
    padding: 10px 20px;
    background-color: rgba(0, 132, 61, 0.07);
    border-radius: 50px;
    font-size: 0.9rem;
    color: var(--text-light);
    transition: var(--transition);
}

.keyword:hover {
    background-color: rgba(255, 205, 0, 0.2);
    color: var(--dark);
    transform: translateY(-3px);
}

/* Footer */
footer {
    background-color: #004321;
    color: white;
    padding: 80px 0 30px;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background-color: rgba(255, 205, 0, 0.05);
    border-radius: 50%;
    transform: translate(150px, -150px);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.footer-brand h3 {
    color: white;
    margin: 15px 0;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
}

.footer-logo {
    display: flex;
    align-items: center;
}

.footer-icon {
    margin-right: 15px;
}

.footer-links h4 {
    color: var(--secondary);
    margin-bottom: 25px;
    font-size: 1.2rem;
    position: relative;
    padding-bottom: 10px;
}

.footer-links h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--secondary);
}

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

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links ul li a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.footer-links ul li a:hover {
    color: var(--secondary);
    padding-left: 5px;
}

.footer-cta h4 {
    color: var(--secondary);
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.footer-cta p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.disclaimer {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
}

/* Responsive Styles */
@media (max-width: 992px) {
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .hero-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cta-group, .trust-badges {
        justify-content: center;
    }
    
    .action-box {
        text-align: center;
        flex-direction: column;
        padding: 40px 25px;
    }
    
    .action-box .primary-btn {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .desktop-nav {
        display: none;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .hero {
        padding: 150px 0 80px;
    }
    
    section {
        padding: 70px 0;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .step {
        flex-direction: column;
    }
    
    .step-number {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .step::after {
        display: none;
    }
}

@media (max-width: 576px) {
    h1 {
        font-size: 2rem;
    }
    
    .cta-group {
        flex-direction: column;
        width: 100%;
    }
    
    .trust-badges {
        flex-direction: column;
        align-items: center;
    }
    
    .feature-card {
        padding: 30px 20px;
    }
    
    .action-box {
        padding: 30px 20px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
}
