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

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #ffffff;
}

/* Variables */
:root {
    --primary-green: #387c53;
    --secondary-green: #81c784;
    --light-green: #e8f5e9;
    --dark-green: #1b5e20;
    --text-color: #333;
    --bg-color: #fff;
}

/* Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: var(--primary-green);
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background 0.3s ease;
}
.btn:hover {
    background-color: var(--dark-green);
}
.btn-whatsapp {
    background-color: #25D366;
}
.btn-whatsapp:hover {
    background-color: #1ebe57;
}

/* Header */
.site-header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}
.header-top {
    background: var(--primary-green);
    color: #fff;
    padding: 8px 0;
    font-size: 0.9em;
}
.header-top-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.header-top a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
}
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}
.logo {
    font-size: 1.5em;
    font-weight: 900;
    color: var(--primary-green);
    text-decoration: none;
    letter-spacing: -0.5px;
}
.nav-links {
    list-style: none;
    display: flex;
    gap: 25px;
    align-items: center;
}
.nav-links a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 600;
    transition: color 0.2s;
}
.nav-links a:hover {
    color: var(--primary-green);
}

/* Footer */
.site-footer {
    background: var(--dark-green);
    color: #fff;
    padding: 60px 0 20px;
    margin-top: 60px;
}
.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}
.footer-col h3 {
    margin-bottom: 20px;
    color: var(--secondary-green);
    font-size: 1.2em;
}
.footer-col p {
    color: #e0e0e0;
    margin-bottom: 12px;
}
.footer-col a {
    color: #e0e0e0;
    text-decoration: none;
    margin-bottom: 12px;
    display: block;
    transition: color 0.2s;
}
.footer-col a:hover {
    color: #fff;
}
.footer-bottom {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.9em;
    color: #aaa;
}

/* Responsive */
@media (max-width: 768px) {

    .header-top-inner {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

}

/* Layout & Sections */
.section {
    padding: 80px 0;
}
.bg-light {
    background-color: var(--light-green);
}
.section-header {
    text-align: center;
    margin-bottom: 50px;
}
.section-header h2 {
    color: var(--primary-green);
    font-size: 2.2em;
    margin-bottom: 10px;
}
.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}
.grid-2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
}
.align-center {
    align-items: center;
}

/* Hero Section */
/* Modern Hero */
.hero {
    background: linear-gradient(135deg, #f0fff4 0%, #dcfce7 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}
.hero-badge {
    display: inline-block;
    background: rgba(56, 124, 83, 0.1);
    color: var(--primary-green);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9em;
    font-weight: 700;
    margin-bottom: 20px;
    border: 1px solid rgba(56, 124, 83, 0.2);
}
.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    color: #1a202c;
    margin-bottom: 20px;
    letter-spacing: -1px;
}
.hero-subtitle {
    font-size: 1.1rem;
    color: #4a5568;
    margin-bottom: 30px;
    line-height: 1.7;
    max-width: 90%;
}
.hero-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}
.btn-pill {
    border-radius: 50px !important;
    padding: 14px 28px;
    font-weight: 600;
}
.shadow {
    box-shadow: 0 4px 14px rgba(0,0,0,0.1);
}
.shadow-lg {
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}
.rounded-img {
    border-radius: 20px;
}
.trust-indicators {
    margin-top: 25px;
    display: flex;
    gap: 15px;
    font-size: 0.85em;
    color: #718096;
    font-weight: 500;
}
.floating-img {
    animation: float 6s ease-in-out infinite;
    width: 100%;
    max-width: 500px;
}
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}
.btn-large {
    font-size: 1.1em;
    padding: 15px 30px;
}
.hero-image {
    flex: 1;
    text-align: center;
}
.img-fluid {
    max-width: 100%;
    height: auto;
}
.hero-img-shadow {
    border-radius: 12px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

/* Cards & Elements */
.card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    text-align: center;
    transition: transform 0.3s ease;
}
.card:hover {
    transform: translateY(-5px);
}
.card-icon {
    font-size: 3em;
    margin-bottom: 15px;
}
.card h3 {
    margin-bottom: 15px;
    color: var(--dark-green);
}
.card p {
    color: #666;
    margin-bottom: 20px;
}
.btn-outline {
    background: transparent;
    color: var(--primary-green);
    border: 2px solid var(--primary-green);
}
.btn-outline:hover {
    background: var(--primary-green);
    color: #fff;
}

/* Feature List */
.feature-list {
    list-style: none;
}
.feature-list li {
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
}
.feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-green);
    font-weight: bold;
    font-size: 1.2em;
}

/* Testimonials */
.testimonial-card {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    position: relative;
}
.stars {
    color: #ffc107;
    margin-bottom: 15px;
    font-size: 1.2em;
}
.quote {
    font-style: italic;
    color: #555;
    margin-bottom: 20px;
}
.author {
    font-weight: bold;
    color: var(--dark-green);
}

/* Form Styles */
.form-wrapper {
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.form-group {
    margin-bottom: 20px;
}
.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
}
.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 1em;
    font-family: inherit;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--primary-green);
    box-shadow: 0 0 0 3px rgba(56, 124, 83, 0.1);
}

/* Responsive tweaks */
@media (max-width: 992px) {
    .hero-inner {
        flex-direction: column;
        text-align: center;
    }
    .hero-actions {
        justify-content: center;
    }
}

/* Multi-step Form */
.form-progress {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
    background: #f1f1f1;
    border-radius: 5px;
    overflow: hidden;
}
.progress-step {
    flex: 1;
    text-align: center;
    padding: 10px;
    font-size: 0.85em;
    color: #888;
    background: #f1f1f1;
    transition: all 0.3s ease;
}
.progress-step.active {
    background: var(--primary-green);
    color: #fff;
    font-weight: bold;
}
.form-step {
    display: none;
}
.form-step.active {
    display: block;
    animation: fadeIn 0.4s ease-out;
}
.step-actions {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
    gap: 15px;
}
.step-actions .btn {
    flex: 1;
    text-align: center;
}
.alert {
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 20px;
}
.alert-success {
    background: #e8f5e9;
    color: #1b5e20;
    border: 1px solid #c8e6c9;
}
.alert-error {
    background: #ffebee;
    color: #b71c1c;
    border: 1px solid #ffcdd2;
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Thank You Page */
.text-center { text-align: center; }
.text-pink { color: #e91e63; }
.success-icon {
    width: 60px; height: 60px;
    background: var(--primary-green);
    color: white;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 2.5em;
    margin: 0 auto 20px;
    box-shadow: 0 4px 10px rgba(56, 124, 83, 0.3);
}
.ty-title { font-size: 2.2em; margin-bottom: 10px; color: #1a237e; font-weight: 900;}
.ty-subtitle { font-size: 1.1em; color: #555; margin-bottom: 30px; }

.ty-notice {
    background: #fffdf5;
    border: 1px solid #ffe082;
    border-left: 5px solid #ffb300;
    padding: 20px;
    border-radius: 8px;
    display: flex; gap: 15px;
    margin-bottom: 30px;
}
.notice-icon { font-size: 1.5em; margin-top: 2px;}
.notice-text strong { color: #b07d00; display: block; margin-bottom: 5px; font-size: 1.05em;}
.notice-text p { color: #666; font-size: 0.95em; margin: 0; line-height: 1.5;}

.ty-summary {
    border: 1px solid #eaeaea;
    border-radius: 12px;
    background: #fdfdfd;
    margin-bottom: 30px;
    padding: 20px;
}
.summary-header {
    display: flex; justify-content: space-between; align-items: center;
    border-bottom: 1px solid #eaeaea;
    padding-bottom: 15px;
    margin-bottom: 20px;
    font-weight: 700; color: #777; font-size: 0.9em;
}
.badge-green {
    background: #e8f5e9; color: #2e7d32;
    padding: 6px 12px; border-radius: 20px; font-size: 0.85em; font-weight: bold;
}
.summary-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 15px;
}
.summary-item {
    background: #fff; border: 1px solid #eaeaea;
    padding: 15px; border-radius: 8px;
}
.summary-item label {
    font-size: 0.75em; color: #999; font-weight: bold;
    text-transform: uppercase; display: block; margin-bottom: 5px;
}
.summary-item .value { font-weight: 700; color: #222; font-size: 1.05em;}

.ty-action-box {
    border: 2px dashed #f8bbd0;
    border-radius: 12px;
    padding: 35px 30px;
    text-align: center;
    background: #fffafb;
}
.action-title { color: #1a237e; margin-bottom: 10px; font-weight: 800;}
.action-desc { color: #666; font-size: 0.95em; margin-bottom: 25px; line-height: 1.5;}
.btn-full { display: block; width: 100%; margin-bottom: 15px; font-size: 1.1em; padding: 15px; }
.action-buttons { display: flex; gap: 15px; }
.btn-half { flex: 1; text-align: center; padding: 12px; font-weight: 600; border-radius: 8px;}
.btn-light { background: #f0f2f5; color: #333; text-decoration: none; display: inline-block; transition: background 0.2s; }
.btn-light:hover { background: #e4e6e9; }
@media (max-width: 600px) {
    .summary-grid { grid-template-columns: 1fr; }
    .action-buttons { flex-direction: column; }
}

/* Dropdown Menu */
.dropdown { position: relative; display: inline-block; }
.dropdown-content {
    display: none; position: absolute; background-color: #fff;
    min-width: 220px; box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.1);
    z-index: 100; border-radius: 8px; overflow: hidden; top: 100%; left: 0;
}
.dropdown-content a {
    color: #444; padding: 12px 16px; text-decoration: none; display: block;
    border-bottom: 1px solid #f1f1f1;
}
.dropdown-content a:hover { background-color: #f9f9f9; color: var(--primary-green); font-weight: 500;}
.dropdown:hover .dropdown-content { display: block; }

/* Floating WhatsApp */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0px 4px 15px rgba(0,0,0,0.2);
    z-index: 1000;
    transition: transform 0.3s ease;
    animation: bounce 2s infinite ease-in-out;
}
.floating-whatsapp:hover {
    transform: scale(1.1);
}
@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

/* Hamburger Menu & Mobile Nav */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 101;
    position: relative;
}
.hamburger span {
    width: 100%;
    height: 3px;
    background: var(--dark-green);
    border-radius: 2px;
    transition: all 0.3s linear;
}
.hamburger.toggle span:nth-child(1) { transform: rotate(45deg) translate(5px, 6px); }
.hamburger.toggle span:nth-child(2) { opacity: 0; }
.hamburger.toggle span:nth-child(3) { transform: rotate(-45deg) translate(8px, -10px); }

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    .nav-links {
        position: fixed;
        right: -100%;
        top: 0;
        flex-direction: column;
        background-color: #fff;
        width: 70%;
        height: 100vh;
        padding-top: 80px;
        box-shadow: -5px 0 15px rgba(0,0,0,0.1);
        transition: right 0.4s ease;
        z-index: 100;
        align-items: flex-start;
        padding-left: 30px;
        gap: 20px;
    }
    .nav-links.active {
        right: 0;
    }
    .nav-links li {
        width: 100%;
    }
    .dropdown-content {
        position: relative;
        box-shadow: none;
        border-left: 2px solid var(--primary-green);
        padding-left: 10px;
        margin-top: 10px;
        border-radius: 0;
    }
    .floating-whatsapp {
        bottom: 20px;
        right: 20px;
    }
}

/* How It Works */
.step-card {
    text-align: center;
    padding: 30px 20px;
}
.step-number {
    width: 60px;
    height: 60px;
    background: var(--primary-green);
    color: #fff;
    font-size: 1.8em;
    font-weight: bold;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 4px 10px rgba(56, 124, 83, 0.3);
}

/* Areas We Serve */
.areas-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}
.area-tag {
    background: #fff;
    border: 1px solid #ddd;
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: 600;
    color: var(--dark-green);
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    transition: transform 0.2s;
}
.area-tag:hover {
    transform: translateY(-3px);
    border-color: var(--primary-green);
}

/* FAQ Accordion */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}
.faq-item {
    border-bottom: 1px solid #eee;
}
.faq-btn {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 20px 0;
    font-size: 1.1em;
    font-weight: 600;
    color: #333;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}
.faq-content p {
    padding-bottom: 20px;
    color: #666;
    margin: 0;
    line-height: 1.6;
}
.faq-icon {
    font-size: 1.5em;
    color: var(--primary-green);
    transition: transform 0.3s;
}
.faq-item.active .faq-content {
    max-height: 300px;
}
.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.2rem;
        line-height: 1.2;
    }
    .trust-indicators {
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }
    .hero {
        padding: 60px 0 40px;
        text-align: center;
    }
    .hero-subtitle {
        margin: 0 auto 30px;
    }
    .hero-actions {
        justify-content: center;
    }
}
