/* --- Global Variables & Reset --- */
:root {
    --primary-color: #2c5e32; /* Dark Green */
    --secondary-color: #f9a826; /* Yellow/Gold */
    --dark-color: #212529;
    --light-color: #f8f9fa;
    --text-color: #495057;
    --white-color: #ffffff;
    --border-radius: 8px;
    --box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Heebo', sans-serif;
    line-height: 1.7;
    color: var(--text-color);
    background-color: var(--white-color);
    text-align: right;
}

h1, h2, h3 {
    font-weight: 700;
    color: var(--dark-color);
    line-height: 1.3;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; margin-bottom: 1rem; }
h3 { font-size: 1.25rem; margin-bottom: 0.5rem; }

p { margin-bottom: 1rem; }
a { color: var(--primary-color); text-decoration: none; }
a:hover { color: var(--secondary-color); }

.container {
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
}

section {
    padding: 60px 0;
}

.section-description {
    max-width: 600px;
    margin: 0 auto 2rem auto;
    text-align: center;
}

/* --- Header --- */
.site-header {
    background: var(--white-color);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    font-weight: 700;
    color: var(--dark-color);
    font-size: 1.2rem;
}
.logo img {
    height: 40px;
    margin-left: 10px;
}

.main-nav { display: none; } /* Hidden on mobile */

.header-cta {
    background: var(--primary-color);
    color: var(--white-color);
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius);
    font-weight: 500;
    transition: background-color 0.3s;
}
.header-cta:hover {
    background: #1e4223;
    color: var(--white-color);
}

/* --- Hero Section --- */
.hero-section {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('../img/hero-background.webp') no-repeat center center/cover;
    color: var(--white-color);
    text-align: center;
    padding: 100px 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero-section h1 {
    color: var(--white-color);
}
.hero-section .subtitle {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 1rem auto 2rem auto;
}

.cta-button {
    background: var(--secondary-color);
    color: var(--dark-color);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    display: inline-block;
    transition: transform 0.3s, box-shadow 0.3s;
}
.cta-button:hover {
    color: var(--dark-color);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(249, 168, 38, 0.4);
}

/* --- Demo Notice Sections --- */
.demo-notice-top {
    background: var(--dark-color);
    color: var(--light-color);
    padding: 0.8rem 0;
    text-align: center;
}
.demo-notice-top .container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}
.demo-notice-top p { margin: 0; font-size: 0.9rem; }
.demo-notice-top a { color: var(--secondary-color); font-weight: 700; }
.weblite-logo-small { height: 20px; }

.demo-notice-main {
    background: var(--light-color);
    text-align: center;
    border-top: 4px solid var(--primary-color);
    border-bottom: 4px solid var(--primary-color);
}
.weblite-logo-large { height: 50px; margin-bottom: 1rem; }
.demo-notice-main h2 { color: var(--primary-color); }
.demo-notice-main p { max-width: 700px; margin-left: auto; margin-right: auto; }
.cta-button-secondary {
    background: var(--primary-color);
    color: var(--white-color);
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    display: inline-block;
    margin-top: 1rem;
    transition: background-color 0.3s;
}
.cta-button-secondary:hover {
    background: #1e4223;
    color: var(--white-color);
}

/* --- Services Section --- */
.services-section { text-align: center; }
.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 2rem;
}
.service-card {
    background: var(--white-color);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: transform 0.3s, box-shadow 0.3s;
}
.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}
.service-icon {
    height: 50px;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

/* --- Why Us Section --- */
.why-us-section { background: var(--light-color); text-align: center; }
.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 2rem;
}
.feature-item { text-align: center; }
.feature-icon { height: 45px; margin-bottom: 1rem; }

/* --- Testimonials Section --- */
.testimonials-section { text-align: center; }
.testimonial-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 2rem;
}
.testimonial-card {
    background: var(--light-color);
    padding: 2rem;
    border-radius: var(--border-radius);
    border-right: 5px solid var(--primary-color);
}
.testimonial-card p { font-style: italic; }
.testimonial-card cite {
    display: block;
    margin-top: 1rem;
    font-weight: 700;
    color: var(--dark-color);
    font-style: normal;
}

/* --- Process Section --- */
.process-section {
    text-align: center;
}
.process-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 3rem;
    position: relative;
}
.process-step {
    position: relative;
    padding: 1.5rem;
}
.process-number {
    width: 50px;
    height: 50px;
    background-color: var(--secondary-color);
    color: var(--dark-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1rem auto;
    border: 3px solid var(--white-color);
    box-shadow: 0 0 0 3px var(--secondary-color);
}

/* --- FAQ Section --- */
.faq-section {
    background: var(--light-color);
    text-align: center;
}
.faq-accordion {
    max-width: 800px;
    margin: 2rem auto 0;
    text-align: right;
}
.faq-item {
    border-bottom: 1px solid #e0e0e0;
}
.faq-question {
    width: 100%;
    background: none;
    border: none;
    text-align: right;
    padding: 1.5rem 1rem;
    font-family: 'Heebo', sans-serif;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--dark-color);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.faq-icon { transition: transform 0.3s ease; }
.faq-item.active .faq-icon { transform: rotate(180deg); }
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
}
.faq-answer p { padding: 0 1rem 1.5rem 1rem; margin: 0; }

/* --- Contact Section --- */
.contact-section { background: var(--light-color); text-align: center; }
.contact-form {
    max-width: 600px;
    margin: 2rem auto 0 auto;
    display: grid;
    gap: 1rem;
}
.form-group input, .form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: var(--border-radius);
    font-family: 'Heebo', sans-serif;
    font-size: 1rem;
}
.form-group input:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(44, 94, 50, 0.2);
}

/* --- Footer --- */
.site-footer {
    background: var(--dark-color);
    color: var(--light-color);
    padding: 40px 0 20px 0;
}
.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
    margin-bottom: 2rem;
}
.site-footer h3 { color: var(--white-color); }
.site-footer p { color: #adb5bd; }
.site-footer a { color: var(--light-color); }
.site-footer a:hover { color: var(--secondary-color); }
.footer-links ul { list-style: none; }
.footer-links ul li { margin-bottom: 0.5rem; }

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #495057;
    font-size: 0.9rem;
    color: #adb5bd;
}
.footer-bottom a { color: var(--secondary-color); font-weight: 500; }

/* --- Media Queries for Desktop (Mobile-First) --- */
@media (min-width: 768px) {
    h1 { font-size: 3.5rem; }
    h2 { font-size: 2.5rem; }

    .site-header .container {
        display: grid;
        grid-template-columns: auto 1fr auto;
        gap: 2rem;
    }
    .main-nav {
        display: flex;
        justify-content: center;
        gap: 1.5rem;
    }
    .main-nav a {
        font-weight: 500;
        color: var(--dark-color);
        padding: 0.5rem 0;
        position: relative;
    }
    .main-nav a::after {
        content: '';
        position: absolute;
        bottom: 0;
        right: 0;
        width: 0;
        height: 2px;
        background: var(--primary-color);
        transition: width 0.3s;
    }
    .main-nav a:hover::after {
        width: 100%;
    }

    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .features-grid { grid-template-columns: repeat(3, 1fr); }
    .testimonial-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-content { grid-template-columns: repeat(3, 1fr); text-align: right; }
}

@media (min-width: 992px) {
    .process-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    /* Dashed line for process steps on desktop */
    .process-step:not(:last-child)::after {
        content: '';
        position: absolute;
        top: 42px;
        left: -50%;
        width: 100%;
        border-top: 2px dashed #ccc;
    }
    .services-grid { grid-template-columns: repeat(4, 1fr); }
}