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

:root {
    --primary-color: #2563eb;
    --secondary-color: #1e40af;
    --accent-color: #3b82f6;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --bg-light: #f9fafb;
    --bg-white: #ffffff;
    --border-color: #e5e7eb;
    --success-color: #10b981;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--bg-white);
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary-color);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 100px 20px 80px;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: white;
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.cta-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
    margin-left: 1rem;
}

.cta-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    color: white;
}

.hero-highlights {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 2.5rem;
}

.hero-tag {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    font-size: 0.95rem;
    font-weight: 500;
    backdrop-filter: blur(5px);
    color: white;
    text-decoration: none;
    cursor: pointer;
}

.hero-tag:hover {
    text-decoration: none;
    color: white;
}

.hero-tag-new {
    background: rgba(16, 185, 129, 0.35);
    border: 1px solid rgba(16, 185, 129, 0.6);
    animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 5px rgba(16, 185, 129, 0.3); }
    50% { box-shadow: 0 0 15px rgba(16, 185, 129, 0.6); }
}

/* Section Styles */
section {
    padding: 80px 20px;
}

h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-align: center;
    color: var(--text-dark);
}

.section-subtitle {
    text-align: center;
    color: var(--primary-color);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    padding: 0.5rem 1.5rem;
    display: inline-block;
    background: rgba(37, 99, 235, 0.1);
    border-radius: 30px;
    margin-left: 50%;
    transform: translateX(-50%);
}

.platform-note {
    text-align: center;
    color: var(--text-light);
    font-size: 1rem;
    margin-bottom: 3rem;
    font-style: italic;
}

.platform-badge {
    display: inline-block;
    font-size: 0.7rem;
    padding: 0.3rem 0.8rem;
    background: #3ddc84;
    color: white;
    border-radius: 12px;
    font-weight: 600;
    margin-left: 0.5rem;
    vertical-align: middle;
}

/* Find Local App Icon Badge */
.find-local-icon {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.25rem 0.75rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white !important;
    font-weight: 700;
    font-size: 0.85em;
    border-radius: 10px;
    text-decoration: none !important;
    white-space: nowrap;
    transition: all 0.25s ease;
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.35);
    vertical-align: middle;
    line-height: 1.5;
    cursor: pointer;
}

.find-local-icon:hover {
    transform: translateY(-1px) scale(1.03);
    box-shadow: 0 4px 14px rgba(102, 126, 234, 0.5);
    filter: brightness(1.08);
}

.find-local-icon .fl-emoji {
    font-size: 1em;
}

/* Variants for different contexts */
.find-local-icon.fl-large {
    padding: 0.4rem 1rem;
    font-size: 1rem;
    border-radius: 12px;
}

.find-local-icon.fl-badge {
    font-size: 0.7rem;
    padding: 0.3rem 0.8rem;
    border-radius: 12px;
    margin-left: 0.5rem;
    box-shadow: 0 1px 4px rgba(102, 126, 234, 0.3);
}

.find-local-icon.fl-badge-amber {
    font-size: 0.7rem;
    padding: 0.3rem 0.8rem;
    border-radius: 12px;
    margin-left: 0.5rem;
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    box-shadow: 0 1px 4px rgba(245, 158, 11, 0.3);
}

/* Inside white/featured cards */
.product-card.featured .find-local-icon {
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.product-card.featured .find-local-icon:hover {
    background: rgba(255, 255, 255, 0.35);
}

/* About Section */
.about {
    background: var(--bg-light);
}

.about-text {
    max-width: 900px;
    margin: 0 auto;
}

.about-text a {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
}

.about-text a:hover {
    text-decoration: underline;
}

.lead {
    font-size: 1.3rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.about-text p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.mission {
    font-size: 1.15rem;
    color: var(--text-dark);
    background: white;
    padding: 1.5rem;
    border-left: 4px solid var(--primary-color);
    border-radius: 8px;
    font-style: italic;
}

.mission em {
    color: var(--primary-color);
    font-weight: 600;
    font-style: normal;
}

/* About — Problem / Solution grid */
.about-problem-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
    margin: 2rem 0;
}

.about-problem-item {
    display: flex;
    gap: 1rem;
    background: white;
    border: 1px solid var(--border-color);
    border-left: 4px solid #ef4444;
    border-radius: 10px;
    padding: 1.5rem;
    align-items: flex-start;
}

.about-solution-item {
    border-left-color: var(--success-color);
}

.about-problem-item strong {
    display: block;
    font-size: 1rem;
    color: var(--text-dark);
    margin-bottom: 0.4rem;
}

.about-problem-item p {
    font-size: 0.97rem !important;
    color: var(--text-light) !important;
    margin-bottom: 0 !important;
    line-height: 1.6 !important;
}

.problem-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 0.1rem;
}

/* About — USPs */
.about-usps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    margin: 2rem 0;
}

.about-usp {
    text-align: center;
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 1.5rem 1rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.usp-value {
    display: block;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.about-usp p {
    font-size: 0.9rem !important;
    color: var(--text-light) !important;
    margin-bottom: 0 !important;
    line-height: 1.5 !important;
}

/* About — Recognition */
.about-recognition {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    background: #fffbeb;
    border: 1px solid #fde68a;
    border-left: 4px solid #f59e0b;
    border-radius: 10px;
    padding: 1.5rem;
    margin: 2rem 0;
}

.recognition-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.about-recognition strong {
    display: block;
    font-size: 1rem;
    color: var(--text-dark);
    margin-bottom: 0.4rem;
}

.about-recognition p {
    font-size: 0.97rem !important;
    color: var(--text-light) !important;
    margin-bottom: 0 !important;
    line-height: 1.6 !important;
}

.about-recognition a {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
}

.about-recognition a:hover {
    text-decoration: underline;
}

.stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.stat {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.stat h3 {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat p {
    color: var(--text-light);
    font-size: 1rem;
}

/* Products Section */
.products {
    background: white;
}

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

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

.model-card {
    background: var(--bg-light);
    padding: 2.5rem 2rem;
    border-radius: 15px;
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
}

.model-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.model-card-highlight {
    border-color: var(--success-color);
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.05), rgba(16, 185, 129, 0.12));
}

.model-card-highlight:hover {
    border-color: var(--success-color);
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.15);
}

.model-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.model-card h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    text-align: left;
}

.model-platforms {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.model-card p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.model-example {
    background: white;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    font-size: 0.9rem;
    color: var(--text-light);
    border-left: 3px solid var(--primary-color);
    font-style: italic;
}

/* Super App Section */
.super-app-section {
    margin-bottom: 3rem;
}

.super-app-section .product-card.featured {
    max-width: 800px;
    margin: 0 auto;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    position: relative;
    text-align: center;
}

.super-app-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.super-app-section .product-card.featured h3,
.super-app-section .product-card.featured p {
    color: white;
}

.super-app-section .product-card.featured a {
    color: white;
    text-decoration: underline;
    font-weight: 600;
    transition: opacity 0.3s ease;
}

.super-app-section .product-card.featured a:hover {
    opacity: 0.8;
}

.super-app-section .badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-top: 1rem;
}

/* Group Titles */
.group-title {
    text-align: center;
    font-size: 1.6rem;
    margin-top: 3rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.group-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 1rem;
    margin-bottom: 2rem;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.product-card {
    background: var(--bg-light);
    padding: 2.5rem 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
}

.product-card.highlight {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
    transition: all 0.3s ease;
}

/* Jobs / Value-Added Service Card */
.product-card-new {
    border: 2px solid var(--success-color);
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.04), rgba(16, 185, 129, 0.1));
    position: relative;
}

.product-card-new:hover {
    border-color: var(--success-color);
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.2);
}

/* Find Local Badge — green variant for new services */
.find-local-icon.fl-badge-new {
    font-size: 0.7rem;
    padding: 0.3rem 0.8rem;
    border-radius: 12px;
    margin-left: 0.5rem;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    box-shadow: 0 1px 4px rgba(16, 185, 129, 0.3);
}

.badge-new {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 700;
    margin-top: 1rem;
    letter-spacing: 0.3px;
}

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

.product-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.product-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.product-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.product-link:hover {
    color: var(--secondary-color);
}

.coming-soon {
    margin-top: 4rem;
}

.coming-soon h3 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.product-card.featured {
    max-width: 600px;
    margin: 0 auto;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    position: relative;
}

.product-card.featured h3,
.product-card.featured p {
    color: white;
}

.product-card.featured a {
    color: white;
    text-decoration: underline;
    font-weight: 600;
    transition: opacity 0.3s ease;
}

.product-card.featured a:hover {
    opacity: 0.8;
}

a.product-card.featured {
    color: white;
}

a.product-card.featured .product-link,
a.product-card.featured .super-app-links span {
    color: white;
    text-decoration: none;
}

.badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-top: 1rem;
}

/* Roadmap Section */
.roadmap {
    background: var(--bg-light);
}

.timeline {
    max-width: 800px;
    margin: 3rem auto;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: var(--border-color);
}

.timeline-item {
    display: flex;
    justify-content: flex-start;
    padding: 2rem 0;
    position: relative;
}

.timeline-item:nth-child(even) {
    justify-content: flex-end;
}

.timeline-marker {
    width: 20px;
    height: 20px;
    background: var(--border-color);
    border-radius: 50%;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 2.5rem;
    z-index: 1;
}

.timeline-item.completed .timeline-marker {
    background: var(--success-color);
}

.timeline-item.current .timeline-marker {
    background: var(--primary-color);
    box-shadow: 0 0 0 10px rgba(37, 99, 235, 0.2);
}

.timeline-content {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    width: 45%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.timeline-content h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    text-align: left;
    color: var(--text-dark);
}

.timeline-content p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Contact Section */
.contact {
    background: white;
}

.contact-content {
    max-width: 600px;
    margin: 2rem auto;
    text-align: center;
}

.contact-info {
    background: var(--bg-light);
    padding: 3rem;
    border-radius: 15px;
}

.contact-info h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.contact-info p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.contact-info a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.contact-info a:hover {
    text-decoration: underline;
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: white;
    text-align: center;
    padding: 2rem 20px;
}

.footer-links {
    margin-top: 1rem;
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        gap: 1rem;
    }

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

    .hero p {
        font-size: 1.2rem;
    }

    .hero-highlights {
        gap: 0.5rem;
    }

    .hero-tag {
        font-size: 0.85rem;
        padding: 0.3rem 0.75rem;
    }

    .cta-secondary {
        margin-left: 0;
        margin-top: 0.75rem;
    }

    h2 {
        font-size: 2rem;
    }

    .product-grid {
        grid-template-columns: 1fr;
    }

    .model-grid {
        grid-template-columns: 1fr;
    }

    .super-app-links {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .timeline::before {
        left: 20px;
    }

    .timeline-item,
    .timeline-item:nth-child(even) {
        justify-content: flex-end;
    }

    .timeline-content {
        width: calc(100% - 60px);
    }

    .timeline-marker {
        left: 20px;
        transform: translateX(-50%);
    }

    .stats {
        grid-template-columns: 1fr 1fr;
    }

    .about-problem-grid {
        grid-template-columns: 1fr;
    }

    .about-usps {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .nav-links {
        display: none;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }
}
