/* Commercial spaces — simple page (uses css/style.css only). */

.com-hero {
    position: relative;
    min-height: 56vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    padding: 88px 24px 72px;
}

.com-hero__bg {
    position: absolute;
    inset: 0;
}

.com-hero__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.com-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(15, 57, 100, 0.78) 0%,
        rgba(19, 70, 123, 0.5) 50%,
        rgba(15, 57, 100, 0.82) 100%
    );
}

.com-hero__inner {
    position: relative;
    z-index: 1;
    max-width: 700px;
}

.com-hero__tag {
    display: inline-block;
    font-size: 12px;
    letter-spacing: 0.14em;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.92);
    margin-bottom: 14px;
}

.com-hero__title {
    font-size: clamp(1.85rem, 4.2vw, 2.65rem);
    font-weight: 700;
    line-height: 1.18;
    margin-bottom: 16px;
}

.com-hero__lead {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.65;
    margin-bottom: 28px;
}

.com-hero__actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.com-intro {
    padding: 56px 0 24px;
    text-align: center;
}

.com-intro p {
    max-width: 640px;
    margin: 0 auto;
    color: var(--text-light);
    font-size: 1.05rem;
    line-height: 1.75;
}

.com-offerings {
    padding: 40px 0 72px;
    background: var(--white);
}

.com-offerings__head {
    text-align: center;
    margin-bottom: 40px;
}

.com-offerings__head h2 {
    font-size: 1.65rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 10px;
}

.com-offerings__head p {
    color: var(--text-light);
    font-size: 0.95rem;
    max-width: 520px;
    margin: 0 auto;
    line-height: 1.55;
}

.com-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

@media (max-width: 900px) {
    .com-grid {
        grid-template-columns: 1fr;
        max-width: 420px;
        margin: 0 auto;
    }
}

.com-card {
    border-radius: 14px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    background: var(--white);
    border: 1px solid rgba(19, 70, 123, 0.08);
    transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.com-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.com-card__media {
    aspect-ratio: 4 / 3;
    background: var(--bg-color);
}

.com-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.com-card__body {
    padding: 22px 22px 26px;
}

.com-card__body h3 {
    font-size: 1.12rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--primary-color);
}

.com-card__body p {
    font-size: 0.92rem;
    color: var(--text-light);
    line-height: 1.62;
}

.com-pills {
    padding: 44px 0 56px;
    background: var(--bg-color);
}

.com-pills__inner {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    max-width: 800px;
    margin: 0 auto;
}

.com-pill {
    padding: 10px 18px;
    border-radius: 999px;
    background: var(--white);
    border: 1px solid rgba(19, 70, 123, 0.12);
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--text-color);
}

.com-cta {
    padding: 68px 24px;
    background: linear-gradient(135deg, var(--primary-color-dark), var(--primary-color));
    text-align: center;
    color: var(--white);
}

.com-cta h2 {
    font-size: clamp(1.45rem, 3vw, 1.95rem);
    font-weight: 700;
    margin-bottom: 12px;
}

.com-cta p {
    opacity: 0.9;
    max-width: 520px;
    margin: 0 auto 24px;
    font-size: 1rem;
    line-height: 1.6;
}

.com-cta__actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-outline-white {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 26px;
    border-radius: 50px;
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.5);
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: var(--transition);
}

.btn-outline-white:hover {
    background: var(--white);
    color: var(--primary-color-dark);
    border-color: var(--white);
}
