/* ═══════════════════════════════════════════════════════
   BUSINESSES PAGE CSS
   Append to: assets/css/pages.css (at the bottom)
   ═══════════════════════════════════════════════════════ */

/* ══════════════════════════════════════════════════════
   HERO
══════════════════════════════════════════════════════ */
.biz-hero {
    position: relative;
    height: 70vh;
    min-height: 500px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}

.biz-hero__bg {
    position: absolute;
    inset: 0;
}

.biz-hero__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.biz-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(28, 40, 51, 0.96) 0%,
        rgba(28, 40, 51, 0.65) 50%,
        rgba(28, 40, 51, 0.20) 100%
    );
}

.biz-hero__content {
    position: relative;
    z-index: 2;
    padding-bottom: 72px;
    color: white;
    max-width: 760px;
}

.biz-hero__title {
    font-family: var(--font-display);
    font-size: clamp(36px, 5vw, 60px);
    font-weight: 800;
    color: white;
    line-height: 1.1;
    letter-spacing: -1px;
    margin-bottom: 20px;
}

.biz-hero__desc {
    font-size: 16px;
    color: rgba(255,255,255,0.78);
    line-height: 1.8;
    margin-bottom: 36px;
    max-width: 620px;
}

/* Quick nav pills */
.biz-hero__pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.biz-pill {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(255,255,255,0.10);
    border: 1px solid rgba(255,255,255,0.22);
    border-radius: 30px;
    color: rgba(255,255,255,0.88);
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(8px);
}

.biz-pill:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
    transform: translateY(-2px);
}

/* ══════════════════════════════════════════════════════
   BUSINESS SECTIONS
══════════════════════════════════════════════════════ */
.biz-section {
    padding: 100px 0;
    background: white;
}

.biz-section--alt {
    background: var(--light-bg);
}

.biz-section__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.biz-section__grid--reverse {
    direction: rtl;
}

.biz-section__grid--reverse > * {
    direction: ltr;
}

/* ── Image Side ───────────────────────────────────────── */
.biz-section__image {
    position: relative;
}

.biz-section__image-wrap {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 24px 64px rgba(0,0,0,0.13);
    aspect-ratio: 4 / 3;
}

.biz-section__image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.biz-section__image-wrap:hover img {
    transform: scale(1.04);
}

/* Number badge */
.biz-section__num-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 64px;
    height: 64px;
    background: var(--primary);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 800;
    color: white;
    box-shadow: 0 8px 24px rgba(46,187,111,0.35);
    z-index: 2;
}

/* Logo pill floating below image */
.biz-section__logo-pill {
    position: absolute;
    bottom: -20px;
    left: 24px;
    background: white;
    border-radius: 12px;
    padding: 10px 18px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
    border: 1px solid var(--border);
    z-index: 2;
}

.biz-section__logo-pill img {
    height: 36px;
    width: auto;
    object-fit: contain;
    display: block;
}

/* ── Content Side ─────────────────────────────────────── */
.biz-section__content {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.biz-section__tag {
    display: inline-block;
    background: rgba(46,187,111,0.10);
    color: var(--primary);
    border: 1px solid rgba(46,187,111,0.25);
    border-radius: 20px;
    padding: 5px 16px;
    font-family: var(--font-display);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
    width: fit-content;
}

.biz-section__name {
    font-family: var(--font-display);
    font-size: clamp(26px, 3vw, 38px);
    font-weight: 800;
    color: var(--charcoal);
    line-height: 1.15;
    letter-spacing: -0.5px;
    margin-bottom: 20px;
}

.biz-section__divider {
    width: 48px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    border-radius: 2px;
    margin-bottom: 28px;
}

.biz-section__sub {
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gray);
    margin-bottom: 10px;
}

.biz-section__desc {
    font-size: 15px;
    color: var(--gray);
    line-height: 1.85;
    margin-bottom: 28px;
}

/* Services list */
.biz-section__services {
    margin-bottom: 36px;
}

.biz-services-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.biz-services-list__item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: var(--charcoal);
    font-weight: 500;
    padding: 10px 14px;
    background: white;
    border-radius: 8px;
    border: 1px solid var(--border);
    transition: all 0.25s ease;
}

.biz-section--alt .biz-services-list__item {
    background: white;
}

.biz-services-list__item:hover {
    border-color: var(--primary);
    background: rgba(46,187,111,0.04);
    transform: translateX(4px);
}

.biz-services-list__item svg {
    color: var(--primary);
    flex-shrink: 0;
}

/* CTA link */
.biz-section__cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 13px 28px;
    background: var(--primary);
    color: white;
    border-radius: 8px;
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    width: fit-content;
}

.biz-section__cta:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(46,187,111,0.30);
    color: white;
    gap: 14px;
}

/* ══════════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
    .biz-section__grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .biz-section__grid--reverse {
        direction: ltr;
    }

    .biz-section__image {
        max-width: 580px;
        margin: 0 auto;
        width: 100%;
    }

    .biz-section {
        padding: 72px 0;
    }
}

@media (max-width: 768px) {
    .biz-hero {
        height: 80vh;
    }

    .biz-hero__content {
        padding-bottom: 48px;
    }

    .biz-section {
        padding: 56px 0;
    }

    .biz-section__num-badge {
		top: 12px;
		right: 12px;
		width: 52px;
		height: 52px;
		font-size: 16px;
	}
}

@media (max-width: 480px) {
    .biz-hero__title {
        font-size: 32px;
    }

    .biz-hero__pills {
        gap: 8px;
    }

    .biz-pill {
        font-size: 11px;
        padding: 6px 14px;
    }

    .biz-section__logo-pill {
        display: none;
    }
}