/* Landing Page Styles */

/* Navigation */
.navbar {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-nav h1 {
    font-size: 1.8rem;
    color: var(--navy-blue);
    font-weight: 700;
    margin: 0;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

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

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

.nav-btn {
    padding: 0.6rem 1.5rem;
    background: var(--navy-blue);
    color: var(--white) !important;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.nav-btn:hover {
    background: #1e40af;
    transform: translateY(-2px);
}

.nav-btn-secondary {
    background: var(--soft-pink) !important;
    color: var(--navy-blue) !important;
}

.nav-btn-secondary:hover {
    background: #fca5a5 !important;
}

/* Hero Section */
.hero {
    background: linear-gradient(160deg, #ffffff 0%, #f1f5f9 50%, #e0e7ff 100%);
    padding: 6rem 2rem 4rem;
    min-height: 650px;
    display: flex;
    align-items: center;
}

.hero-container {
    max-width: 1000px;
    margin: 0 auto;
}

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

.hero-badge {
    display: inline-block;
    background: rgba(30, 58, 138, 0.1);
    color: var(--navy-blue);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.hero-title {
    font-size: 3.75rem;
    color: var(--navy-blue);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    letter-spacing: -0.5px;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 3rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 16px;
    backdrop-filter: blur(10px);
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--navy-blue);
    margin-bottom: 0.25rem;
}

.stat-label {
    display: block;
    font-size: 0.85rem;
    color: var(--text-light);
    font-weight: 500;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.btn-hero {
    padding: 1.1rem 2.25rem;
    font-size: 1.05rem;
    font-weight: 600;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-arrow {
    transition: transform 0.3s ease;
}

.btn-hero:hover .btn-arrow {
    transform: translateX(4px);
}

.btn-hero-primary {
    background: var(--navy-blue);
    color: var(--white);
    box-shadow: 0 4px 14px rgba(30, 58, 138, 0.25);
}

.btn-hero-primary:hover {
    background: #1e40af;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(30, 58, 138, 0.35);
}

.btn-hero-secondary {
    background: var(--white);
    color: var(--navy-blue);
    border: 2px solid var(--navy-blue);
}

.btn-hero-secondary:hover {
    background: var(--navy-blue);
    color: var(--white);
    transform: translateY(-2px);
}

/* Section Styles */
.section-light {
    background: var(--light-gray);
    padding: 5rem 2rem;
}

.section-white {
    background: var(--white);
    padding: 5rem 2rem;
}

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

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-tag {
    display: inline-block;
    background: var(--soft-pink);
    color: var(--navy-blue);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.section-title {
    font-size: 2.75rem;
    color: var(--navy-blue);
    font-weight: 700;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.15rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Steps Timeline */
.steps-timeline {
    max-width: 900px;
    margin: 0 auto;
}

.step-item {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 2rem;
    position: relative;
    padding-bottom: 3rem;
}

.step-item:last-child {
    padding-bottom: 0;
}

.step-item:last-child .step-connector {
    display: none;
}

.step-icon {
    width: 80px;
    height: 80px;
    background: var(--white);
    border: 3px solid var(--navy-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    position: relative;
    z-index: 2;
    box-shadow: 0 4px 12px rgba(30, 58, 138, 0.15);
}

.step-connector {
    position: absolute;
    left: 40px;
    top: 80px;
    bottom: -3rem;
    width: 3px;
    background: linear-gradient(180deg, var(--navy-blue) 0%, var(--soft-pink) 100%);
    z-index: 1;
}

.step-content {
    padding-top: 0.75rem;
}

.step-content h3 {
    font-size: 1.5rem;
    color: var(--navy-blue);
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.step-content p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 1.05rem;
}

/* Features Split Layout */
.features-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.features-left {
    position: sticky;
    top: 100px;
}

.feature-highlight {
    background: linear-gradient(135deg, var(--navy-blue) 0%, #1e40af 100%);
    color: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(30, 58, 138, 0.2);
}

.highlight-badge {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.feature-highlight h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.feature-highlight p {
    line-height: 1.7;
    opacity: 0.95;
    margin-bottom: 1.5rem;
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
}

.feature-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    font-weight: 700;
    color: var(--soft-pink);
}

.features-right {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.feature-box {
    background: var(--white);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(30, 58, 138, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.feature-box:hover {
    border-color: var(--soft-pink);
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(30, 58, 138, 0.12);
}

.feature-emoji {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 1rem;
}

.feature-box h4 {
    font-size: 1.15rem;
    color: var(--navy-blue);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.feature-box p {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* CTA Section */
.cta-section {
    background: var(--light-gray);
    padding: 5rem 2rem;
}

.cta-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.cta-card {
    background: var(--white);
    padding: 3rem 2.5rem;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(30, 58, 138, 0.1);
    border: 3px solid transparent;
    transition: all 0.3s ease;
}

.cta-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(30, 58, 138, 0.15);
}

.cta-pharmacy {
    border-color: var(--navy-blue);
}

.cta-driver {
    border-color: var(--soft-pink);
}

.cta-card h3 {
    font-size: 2rem;
    color: var(--navy-blue);
    margin-bottom: 1rem;
    font-weight: 700;
}

.cta-card p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.cta-benefits {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.cta-benefits li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    color: var(--text-dark);
    position: relative;
    font-weight: 500;
}

.cta-benefits li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: 700;
}

.btn-cta-card {
    display: inline-block;
    width: 100%;
    padding: 1.2rem 2rem;
    background: var(--navy-blue);
    color: var(--white);
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.05rem;
    text-align: center;
    transition: all 0.3s ease;
}

.btn-cta-card:hover {
    background: #1e40af;
    transform: scale(1.02);
    box-shadow: 0 6px 20px rgba(30, 58, 138, 0.3);
}

/* Footer */
.footer {
    background: #1e293b;
    color: var(--white);
    padding: 3rem 2rem 1.5rem;
}

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

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

.footer-section h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.footer-section h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.footer-section p {
    color: #94a3b8;
    line-height: 1.6;
}

.footer-section a {
    display: block;
    color: #94a3b8;
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--soft-pink);
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid #334155;
    text-align: center;
    color: #94a3b8;
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero-title {
        font-size: 3rem;
    }

    .hero-stats {
        gap: 2rem;
    }

    .step-item {
        grid-template-columns: 60px 1fr;
        gap: 1.5rem;
    }

    .step-icon {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }

    .step-connector {
        left: 30px;
    }

    .features-split {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .features-left {
        position: static;
    }

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

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

    .nav-links a:not(.nav-btn) {
        display: none;
    }

    .hero {
        padding: 4rem 1.5rem 3rem;
    }

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

    .hero-subtitle {
        font-size: 1.05rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
        padding: 1.5rem;
    }

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

    .btn-hero {
        width: 100%;
        justify-content: center;
    }

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

    .section-subtitle {
        font-size: 1rem;
    }

    .step-item {
        grid-template-columns: 50px 1fr;
        gap: 1rem;
    }

    .step-icon {
        width: 50px;
        height: 50px;
        font-size: 1.75rem;
    }

    .step-connector {
        left: 25px;
    }

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

    .feature-highlight {
        padding: 2rem;
    }

    .cta-card {
        padding: 2rem 1.5rem;
    }

    .cta-card h3 {
        font-size: 1.75rem;
    }
}
