/* Vertical Landing Pages Styles */
.vertical-hero {
    position: relative;
    padding: 100px 0;
    min-height: 450px;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    color: #fff;
    margin-top: 70px;
    /* Offset for sticky header */
}

.vertical-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 60%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.8), transparent);
    z-index: 1;
}

.vertical-hero .container {
    position: relative;
    z-index: 2;
}

.vertical-badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(2, 199, 130, 0.2);
    border: 1px solid #02c782;
    color: #02c782;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 20px;
    backdrop-filter: blur(4px);
}

.vertical-hero h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.vertical-hero p {
    font-size: 18px;
    opacity: 0.9;
    max-width: 600px;
    margin-bottom: 30px;
}

.vertical-section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
}

.section-title .divider {
    width: 60px;
    height: 4px;
    background: #02c782;
    margin: 0 auto;
    border-radius: 2px;
}

/* Category Grid */
.category-card {
    background: #fff;
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
    height: 100%;
    text-decoration: none !important;
    display: block;
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: #02c782;
}

.category-icon {
    width: 70px;
    height: 70px;
    background: #f0fbff;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 28px;
    color: #02c782;
    transition: all 0.3s ease;
}

.category-card:hover .category-icon {
    background: #02c782;
    color: #fff;
}

.category-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
}

.category-card p {
    color: #777;
    font-size: 14px;
    margin: 0;
}

/* City Grid */
.city-pill {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 25px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 15px;
    text-decoration: none !important;
    color: #333;
    transition: all 0.2s;
    margin-bottom: 20px;
}

.city-pill:hover {
    background: #f9f9f9;
    border-color: #02c782;
    transform: scale(1.02);
}

.city-pill span {
    font-weight: 600;
}

.city-pill i {
    color: #ccc;
    font-size: 14px;
}

/* Content Blocks */
.content-block {
    background: #f8fafc;
    border-radius: 30px;
    padding: 60px;
    margin-top: 40px;
}

.content-block h3 {
    font-weight: 700;
    margin-bottom: 25px;
    color: #2d3748;
}

.content-block p {
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .vertical-hero {
        padding: 60px 0;
        text-align: center;
        margin-top: 60px;
    }

    .vertical-hero::before {
        width: 100%;
        background: rgba(0, 0, 0, 0.6);
    }

    .vertical-hero h1 {
        font-size: 32px;
    }

    .vertical-hero p {
        margin: 0 auto 30px;
    }

    .content-block {
        padding: 30px;
    }
}

/* Mobile City Links */
.mobile-city-links {
    display: flex;
    gap: 8px;
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 1px dashed #eee;
    flex-wrap: wrap;
}

.mobile-city-links a {
    background: #f8f9fa;
    color: #333;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s;
    border: 1px solid #eee;
}

.mobile-city-links a:hover {
    background: var(--brand-primary);
    color: #fff;
    border-color: var(--brand-primary);
}