/* Offset anchor scroll for fixed header */
html {
    scroll-behavior: smooth;
}

#categories,
#businesses,
#marketplace,
#offers,
#plans {
    scroll-margin-top: 90px;
    /* match your header height */
}

/* Layout */
.category-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
    align-items: center;
    margin-top: 30px;
}

/* Illustration */
.category-visual img {
    width: 100%;
    max-width: 550px;
    display: block;
    height: 370px;
    margin: auto;
    align-items: center;
}

/* Cards grid */
.category-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 18px;
}

/* Card */
.category-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 20px;
    text-align: center;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.category-card:hover {
    transform: translateY(-6px);
    box-shadow:
        0 14px 28px rgba(250, 89, 33, 0.25),
        0 0 0 6px rgba(250, 89, 33, 0.06);
}

/* Icon */
.category-card i {
    font-size: 26px;
    color: #FA5921;
    margin-bottom: 8px;
}

/* Title */
.category-card h4 {
    font-size: 14px;
    font-weight: 600;
    color: #111;
}

/* Text */
.category-intro,
.category-note {
    font-size: 14px;
    color: #444;
}

/* Mobile */
@media (max-width: 768px) {
    .category-layout {
        grid-template-columns: 1fr;
        gap: 26px;
    }

    .category-visual img {
        max-width: 400px;
    }
}


.plan-info-section {
    padding: 50px 0;
    background: #fff7f2;
}

.plan-split {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
    align-items: center;
}


/* IMAGE */
.plan-image img {
    width: 100%;
    max-width: 500px;
    height: 400px;
    display: block;
    margin: 0 auto;



}

/* CONTENT */
.section-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 8px;

}

.section-subtitle {
    font-size: 14px;
    color: #555;
    margin-bottom: 26px;
}

/* CARDS */
.plan-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.info-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 14px;
    padding: 16px;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.info-card i {
    font-size: 24px;
    color: #FA5921;
    margin-bottom: 10px;
    display: inline-block;
}

.info-card h4 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 6px;
}

.info-card p {
    font-size: 13px;
    color: #555;
    line-height: 1.5;
}

.info-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 26px rgba(250, 89, 33, 0.25);
}

.info-card.highlight {
    border-color: #FA5921;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .plan-split {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .plan-info-grid {
        grid-template-columns: 1fr;
    }

    .plan-image img {
        max-width: 320px;
    }
}

.plan-cards-section {
    padding: 70px 0;
    background: #fff7f2;
}

.section-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
}

.section-subtitle {
    font-size: 14px;
    color: #555;
    margin-bottom: 32px;
}

.plan-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
    gap: 20px;
}

.plan-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 16px;
    padding: 22px;
    text-align: center;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.plan-card i {
    font-size: 26px;
    color: #FA5921;
    margin-bottom: 10px;
}

.plan-card h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 6px;
}

.plan-card p {
    font-size: 13px;
    color: #555;
    line-height: 1.5;
}

.plan-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 30px rgba(250, 89, 33, 0.25);
}

/* Highlight main price card */
.plan-card.highlight {
    border-color: #FA5921;
    background: #fff;
}

.plan-note {
    margin-top: 28px;
    font-size: 14px;
    color: #444;
    text-align: center;
}

/* Mobile */
@media (max-width: 768px) {
    .section-title {
        font-size: 24px;
    }
}

.join-section {
    background: #000;
}

.join-section .section-title,
.join-section .section-subtitle,
.join-section .plan-note {
    color: #fff;
}

.join-section .plan-card {
    background: #111;
    border-color: #222;
}

.join-section .plan-card p {
    color: #ddd;
}

.join-section .plan-card i {
    color: #FA5921;
}

/* WhatsApp button */
.join-btn {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 18px;
    background: #25D366;
    color: #000;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
}

.join-btn:hover {
    opacity: 0.9;
}