/* Business Home Page Styles - Subtle Green Palette */

:root {
    /* Subtle Green Palette */
    --primary-green: #10b981;      /* Emerald green */
    --primary-green-dark: #059669; /* Darker emerald */
    --primary-green-light: #34d399; /* Light emerald */
    --accent-green: #6ee7b7;       /* Mint green */
    --sage-green: #a7c4bc;         /* Soft sage */
    --forest-green: #047857;       /* Deep forest */

    /* Neutral colors that work with green */
    --navy: #1e293b;
    --dark-slate: #0f172a;
    --slate: #334155;
    --light-gray: #f8fafc;
    --medium-gray: #e2e8f0;
    --white: #ffffff;

    /* Shadows and effects */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-2xl: 4rem;
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: var(--slate);
    background: var(--white);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* Header */
.header {
    background: var(--white);
    border-bottom: 1px solid var(--medium-gray);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
    padding: 16px 0;
}

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

.logo img {
    display: block;
    height: 50px;
    width: auto;
}

.nav {
    display: flex;
    gap: 8px;
    align-items: center;
}

.nav a {
    text-decoration: none;
    color: #334155;
    font-weight: 600;
    font-size: 0.938rem;
    transition: all 0.3s ease;
    padding: 10px 20px;
    border-radius: 8px;
    position: relative;
}

.nav a:not(.btn-nav-cta):hover {
    color: var(--primary-green);
    background: #f0fdf4;
}

.btn-nav-cta {
    background: linear-gradient(135deg, var(--primary-green), var(--primary-green-dark));
    color: var(--white) !important;
    padding: 12px 24px;
    border-radius: 10px;
    font-weight: 700;
    border: none;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.25);
    margin-left: 8px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.35);
    color: var(--white) !important;
    background: linear-gradient(135deg, var(--primary-green-dark), var(--forest-green));
}

.btn-nav-cta i {
    width: 20px;
    height: 20px;
}

.header-contact {
    display: none;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #f0fdf4 0%, #ecfdf5 50%, #d1fae5 100%);
    padding: var(--spacing-2xl) 0;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(16, 185, 129, 0.1), transparent);
    pointer-events: none;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--white);
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    font-weight: 600;
    color: var(--primary-green);
    margin-bottom: var(--spacing-md);
    box-shadow: var(--shadow-md);
    border: 2px solid var(--accent-green);
}

.hero-badge i {
    width: 20px;
    height: 20px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: var(--spacing-md);
    color: var(--dark-slate);
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary-green), var(--forest-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--slate);
    margin-bottom: var(--spacing-xl);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
    margin-bottom: var(--spacing-xl);
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: var(--spacing-xl);
    margin-top: var(--spacing-xl);
    padding-top: var(--spacing-xl);
    border-top: 1px solid rgba(16, 185, 129, 0.2);
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-green);
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--slate);
    margin-top: 0.5rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.9rem 1.8rem;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn i {
    width: 20px;
    height: 20px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-green), var(--primary-green-dark));
    color: var(--white);
    box-shadow: var(--shadow-md);
}

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

.btn-secondary {
    background: var(--white);
    color: var(--primary-green);
    border: 2px solid var(--primary-green);
}

.btn-secondary:hover {
    background: var(--primary-green);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Services Section */
.services {
    padding: var(--spacing-2xl) 0;
    background: var(--white);
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--dark-slate);
    margin-bottom: var(--spacing-sm);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--slate);
    max-width: 600px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: var(--spacing-lg);
}

.service-card {
    background: var(--white);
    border: 2px solid var(--medium-gray);
    border-radius: 16px;
    padding: var(--spacing-xl);
    transition: all 0.3s ease;
    position: relative;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
    border-color: var(--accent-green);
}

.service-card.featured {
    border-color: var(--primary-green);
    background: linear-gradient(135deg, #f0fdf4 0%, var(--white) 100%);
    box-shadow: var(--shadow-lg);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-green), var(--primary-green-dark));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-md);
}

.service-icon i {
    width: 32px;
    height: 32px;
    color: var(--white);
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-slate);
    margin-bottom: var(--spacing-sm);
}

.service-card p {
    color: var(--slate);
    margin-bottom: var(--spacing-md);
    line-height: 1.7;
}

.service-features {
    list-style: none;
    margin-bottom: var(--spacing-md);
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.5rem 0;
    color: var(--slate);
}

.service-features i {
    width: 18px;
    height: 18px;
    color: var(--primary-green);
    flex-shrink: 0;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-green);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.service-link:hover {
    gap: 0.8rem;
    color: var(--primary-green-dark);
}

.service-link i {
    width: 18px;
    height: 18px;
}

/* WILLO Platform Section */
.willo-section {
    padding: var(--spacing-2xl) 0;
    background: linear-gradient(135deg, var(--dark-slate) 0%, var(--navy) 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.willo-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.15), transparent);
    border-radius: 50%;
}

.willo-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-2xl);
    align-items: center;
    position: relative;
    z-index: 1;
}

.willo-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(16, 185, 129, 0.2);
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    font-weight: 600;
    color: var(--accent-green);
    margin-bottom: var(--spacing-md);
    border: 1px solid var(--accent-green);
}

.willo-badge i {
    width: 20px;
    height: 20px;
}

.willo-section .section-title {
    color: var(--white);
    margin-bottom: var(--spacing-md);
}

.large-text {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: var(--spacing-md);
}

.willo-text p {
    margin-bottom: var(--spacing-md);
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
}

.willo-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-md);
    margin: var(--spacing-xl) 0;
}

.willo-feature {
    display: flex;
    gap: var(--spacing-sm);
    align-items: flex-start;
}

.willo-feature i {
    width: 28px;
    height: 28px;
    color: var(--accent-green);
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.willo-feature h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
    color: var(--white);
}

.willo-feature p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.willo-cta {
    display: flex;
    gap: var(--spacing-md);
    margin-top: var(--spacing-xl);
}

.willo-visual {
    perspective: 1000px;
}

.willo-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: var(--spacing-lg);
    box-shadow: var(--shadow-xl);
}

.willo-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: var(--spacing-lg);
    padding-bottom: var(--spacing-sm);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.willo-dots {
    display: flex;
    gap: 0.4rem;
}

.willo-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
}

.willo-title {
    font-weight: 600;
    color: var(--white);
}

.willo-card-content {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.willo-stat-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    padding: var(--spacing-md);
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.willo-stat-item i {
    width: 40px;
    height: 40px;
    color: var(--accent-green);
}

.willo-stat-item .stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--white);
}

.willo-stat-item .stat-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Why Choose Section */
.why-choose {
    padding: var(--spacing-2xl) 0;
    background: var(--light-gray);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--spacing-lg);
}

.feature-card {
    background: var(--white);
    padding: var(--spacing-xl);
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-green);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #ecfdf5, #d1fae5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-md);
}

.feature-icon i {
    width: 36px;
    height: 36px;
    color: var(--primary-green);
}

.feature-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dark-slate);
    margin-bottom: var(--spacing-sm);
}

.feature-card p {
    color: var(--slate);
    line-height: 1.7;
}

/* Testimonials Section */
.testimonials {
    padding: var(--spacing-2xl) 0;
    background: var(--white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--spacing-lg);
}

.testimonial-card {
    background: var(--light-gray);
    padding: var(--spacing-xl);
    border-radius: 16px;
    border: 2px solid var(--medium-gray);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-green);
}

.quote-icon {
    font-size: 4rem;
    color: var(--accent-green);
    line-height: 1;
    margin-bottom: var(--spacing-sm);
    opacity: 0.5;
}

.testimonial-text {
    font-size: 1.05rem;
    color: var(--slate);
    line-height: 1.7;
    margin-bottom: var(--spacing-md);
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    margin-top: var(--spacing-md);
    padding-top: var(--spacing-md);
    border-top: 1px solid var(--medium-gray);
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-green), var(--primary-green-dark));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-info strong {
    color: var(--dark-slate);
    font-size: 1rem;
}

.author-info span {
    color: var(--slate);
    font-size: 0.85rem;
}

/* CTA Section */
.cta-section {
    padding: var(--spacing-2xl) 0;
    background: linear-gradient(135deg, #f0fdf4 0%, #ecfdf5 100%);
    text-align: center;
}

.cta-content {
    max-width: 1000px;
    margin: 0 auto;
}

.cta-content .section-title {
    margin-bottom: var(--spacing-md);
}

.cta-content .large-text {
    margin-bottom: var(--spacing-xl);
    color: var(--slate);
}

.cta-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
}

.cta-option {
    background: var(--white);
    padding: var(--spacing-xl);
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    border: 2px solid var(--medium-gray);
    transition: all 0.3s ease;
}

.cta-option:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-green);
}

.cta-option i {
    width: 50px;
    height: 50px;
    color: var(--primary-green);
    margin-bottom: var(--spacing-md);
}

.cta-option h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dark-slate);
    margin-bottom: var(--spacing-sm);
}

.cta-option p {
    color: var(--slate);
    margin-bottom: var(--spacing-md);
}

.cta-hours {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    color: var(--slate);
    font-size: 0.95rem;
}

.cta-hours i {
    width: 18px;
    height: 18px;
    color: var(--primary-green);
}

/* Footer */
.footer {
    background: var(--dark-slate);
    color: rgba(255, 255, 255, 0.8);
    padding: var(--spacing-2xl) 0 var(--spacing-md);
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-xl);
}

.footer-brand img {
    margin-bottom: var(--spacing-sm);
    filter: brightness(0) invert(1);
}

.footer-brand p {
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-links h4,
.footer-contact h4 {
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
}

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

.footer-links li,
.footer-legal li {
    margin-bottom: 0.5rem;
}

.footer-links a,
.footer-legal a,
.footer-contact a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-links a:hover,
.footer-legal a:hover,
.footer-contact a:hover {
    color: var(--accent-green);
}

.footer-contact i {
    width: 16px;
    height: 16px;
}

.footer-bottom {
    text-align: center;
    padding-top: var(--spacing-md);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    background: #f0fdf4;
    border: 2px solid var(--primary-green);
    cursor: pointer;
    padding: 12px;
    color: var(--primary-green);
    transition: all 0.3s ease;
    border-radius: 8px;
    position: relative;
    z-index: 1001;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    min-width: 48px;
    min-height: 48px;
    align-items: center;
    justify-content: center;
}

.mobile-menu-btn:active {
    background: var(--primary-green);
    color: var(--white);
    transform: scale(0.95);
}

.mobile-menu-btn:hover {
    background: #dcfce7;
}

.mobile-menu-btn.active {
    background: var(--primary-green);
    color: var(--white);
}

.mobile-menu-btn i {
    width: 24px;
    height: 24px;
    pointer-events: none;
}

.mobile-menu {
    position: fixed;
    top: 82px;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999;
}

.mobile-menu.active {
    max-height: 500px;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    padding: 1.5rem 1rem;
    gap: 8px;
}

.mobile-nav a {
    padding: 1rem 1.5rem;
    color: #334155;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.063rem;
    transition: all 0.3s ease;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.mobile-nav a:not(.mobile-phone):hover {
    background: #f0fdf4;
    color: var(--primary-green);
    transform: translateX(8px);
}

.mobile-nav a.mobile-phone {
    background: linear-gradient(135deg, var(--primary-green), var(--primary-green-dark));
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
    margin-top: 12px;
    border-radius: 12px;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
    padding: 1.25rem 1.5rem;
}

.mobile-nav a.mobile-phone:hover {
    background: linear-gradient(135deg, var(--primary-green-dark), var(--forest-green));
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
}

.mobile-nav a.mobile-phone i {
    width: 20px;
    height: 20px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .willo-content {
        grid-template-columns: 1fr;
    }

    .willo-visual {
        order: -1;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

/* Desktop: Hide mobile menu button, show nav */
@media (min-width: 769px) {
    .mobile-menu-btn {
        display: none !important;
    }

    .nav {
        display: flex !important;
    }
}

/* Mobile: Show mobile menu button, hide nav */
@media (max-width: 768px) {
    .nav {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .header-contact {
        display: none;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .hero-cta {
        flex-direction: column;
    }

    .hero-stats {
        flex-direction: column;
        gap: var(--spacing-md);
    }

    .willo-features {
        grid-template-columns: 1fr;
    }

    .willo-cta {
        flex-direction: column;
    }

    .services-grid,
    .features-grid,
    .testimonials-grid,
    .cta-options {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .hero-badge,
    .willo-badge {
        font-size: 0.85rem;
        padding: 0.5rem 1rem;
    }

    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.95rem;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-card,
.feature-card,
.testimonial-card {
    animation: fadeInUp 0.6s ease-out;
}
