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

:root {
    --leaf-green: #4CAF50;
    --mint-green: #81C784;
    --teal: #26A69A;
    --forest-green: #2E7D32;
    --light-green: #E8F5E8;
    --white: #FFFFFF;
    --text-dark: #2C3E50;
    --text-light: #6B7280;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Website Name in Hero */
.website-name {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 600;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.website-name .leaf-icon {
    font-size: 4rem;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(135deg, var(--leaf-green) 0%, var(--mint-green) 50%, var(--teal) 100%);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
}

.floating-leaves {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.floating-leaves::before,
.floating-leaves::after {
    content: '🍃';
    position: absolute;
    font-size: 2rem;
    animation: float 6s ease-in-out infinite;
    opacity: 0.7;
}

.floating-leaves::before {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.floating-leaves::after {
    top: 60%;
    right: 15%;
    animation-delay: 3s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(10deg); }
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-button {
    background: linear-gradient(45deg, var(--forest-green), var(--leaf-green));
    color: white;
    border: none;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    border-radius: 50px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    font-weight: 600;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(76, 175, 80, 0.3);
}

/* Plant Progress */
.plant-progress {
    position: fixed;
    top: 50%;
    right: 30px;
    transform: translateY(-50%);
    z-index: 100;
    background: white;
    padding: 1rem;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    border: 3px solid var(--light-green);
}

.plant-stage {
    font-size: 2rem;
    transition: all 0.5s ease;
}

/* Journey Section */
.journey-section {
    padding: 5rem 0;
    background: var(--light-green);
}

.journey-step {
    max-width: 800px;
    margin: 0 auto 4rem;
    padding: 3rem 2rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transform: translateY(50px);
    opacity: 0;
    transition: all 0.6s ease;
}

.journey-step.active {
    transform: translateY(0);
    opacity: 1;
}

.step-content {
    text-align: center;
}

.step-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.step-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--forest-green);
    margin-bottom: 1rem;
}

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

/* Impact Section */
.impact-section {
    padding: 5rem 0;
    background: white;
}

.impact-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    text-align: center;
    color: var(--forest-green);
    margin-bottom: 3rem;
}

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

.impact-card {
    background: linear-gradient(135deg, var(--light-green), white);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    border: 2px solid var(--mint-green);
    transition: transform 0.3s ease;
}

.impact-card:hover {
    transform: translateY(-5px);
}

.impact-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.impact-number {
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--forest-green);
    margin-bottom: 0.5rem;
}

.impact-label {
    font-size: 1.1rem;
    color: var(--text-light);
}

/* Why Choose Section */
.why-choose-section {
    padding: 5rem 0;
    background: var(--light-green);
}

.why-choose-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.credit-card {
    background: linear-gradient(135deg, var(--forest-green), var(--leaf-green));
    border-radius: 20px;
    padding: 2rem;
    color: white;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

.card-vines {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 100px;
    height: 100px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M20,80 Q50,20 80,80" stroke="rgba(255,255,255,0.2)" stroke-width="3" fill="none"/></svg>');
}

.card-logo {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 2rem;
}

.card-number {
    font-size: 1.5rem;
    letter-spacing: 2px;
}

.why-choose-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--forest-green);
    margin-bottom: 2rem;
}

.benefits-list {
    list-style: none;
}

.benefits-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    padding: 1rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.benefit-icon {
    font-size: 1.5rem;
}

/* Community Section */
.community-section {
    padding: 5rem 0;
    background: white;
}

.community-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    text-align: center;
    color: var(--forest-green);
    margin-bottom: 3rem;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: var(--light-green);
    padding: 2rem;
    border-radius: 20px;
    border-left: 5px solid var(--leaf-green);
}

.testimonial-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.testimonial-author {
    font-weight: 600;
    color: var(--forest-green);
}

/* Final CTA */
.final-cta {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--leaf-green), var(--teal));
    text-align: center;
    color: white;
}

.final-cta h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    margin-bottom: 2rem;
}

/* Footer */
.footer {
    background: white;
    border-top: 2px solid var(--light-green);
    padding: 2rem 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-nav {
    display: flex;
    gap: 2rem;
    font-weight: 600;
}

.footer-nav a {
    text-decoration: none;
    color: var(--forest-green);
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: var(--leaf-green);
}

.footer-links {
    display: flex;
    gap: 1rem;
}

.footer-links a {
    text-decoration: none;
    color: var(--text-light);
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--leaf-green);
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icon {
    font-size: 1.5rem;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.social-icon:hover {
    transform: scale(1.2);
}

/* Page Styles */
.page-hero {
    padding: 8rem 0 4rem;
    background: linear-gradient(135deg, var(--leaf-green), var(--mint-green));
    color: white;
    text-align: center;
}

.page-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    margin-bottom: 1rem;
}

.nav-menu .active {
    color: var(--leaf-green);
    font-weight: 600;
}

/* Cardless & Banking Pages */
.cardless-features, .banking-services {
    padding: 4rem 0;
    background: var(--light-green);
}

.features-grid, .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card, .service-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.feature-card:hover, .service-card:hover {
    transform: translateY(-5px);
}

.feature-card img, .service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 1rem;
}

.benefits-section, .banking-benefits {
    padding: 4rem 0;
    background: white;
}

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

.benefit-item {
    text-align: center;
    padding: 2rem;
    background: var(--light-green);
    border-radius: 15px;
}

.benefit-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--light-green);
    border-radius: 10px;
    margin-bottom: 1rem;
}

/* Contact Page */
.contact-section {
    padding: 4rem 0;
    background: var(--light-green);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-info, .contact-form {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-icon {
    font-size: 1.5rem;
}

.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-form input, .contact-form textarea {
    padding: 1rem;
    border: 2px solid var(--light-green);
    border-radius: 10px;
    font-family: inherit;
}

/* About Page */
.about-content {
    padding: 4rem 0;
    background: white;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-image img {
    width: 100%;
    border-radius: 15px;
}

.about-text ul {
    list-style: none;
    padding: 0;
}

.about-text li {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.values-section {
    padding: 4rem 0;
    background: var(--light-green);
}

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

.value-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

/* Legal Pages */
.legal-content {
    padding: 4rem 0;
    background: white;
}

.legal-text {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.legal-text h2 {
    color: var(--forest-green);
    font-family: 'Playfair Display', serif;
    margin-bottom: 2rem;
}

.legal-text h3 {
    color: var(--leaf-green);
    margin: 2rem 0 1rem;
}

.legal-text h4 {
    color: var(--forest-green);
    margin: 1.5rem 0 0.5rem;
    font-size: 1.1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .why-choose-grid, .contact-grid, .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .website-name {
        font-size: 2.5rem;
    }
    
    .website-name .leaf-icon {
        font-size: 2.5rem;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 1rem;
    }
    
    .plant-progress {
        display: none;
    }
    
    .page-hero h1 {
        font-size: 2rem;
    }
}