/* ========================================
   Services Page — Merged Hero + Packages
   ======================================== */

/* ---- Main Services Section ---- */
.mmc-svc-main {
    position: relative;
    display: flex;
    align-items: center;
}

.mmc-svc-main-bg {
    background: linear-gradient(160deg, rgba(2, 120, 212, 0.82) 0%, rgba(10, 10, 10, 0.78) 100%), url('/images/services-hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    width: 100%;
    padding: 80px 0 100px;
    position: relative;
    overflow: hidden;
}

.mmc-svc-main-bg::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -80px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.04) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.mmc-svc-main-bg::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -60px;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(2, 120, 212, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

/* ---- Header ---- */
.mmc-svc-main-header {
    text-align: center;
    color: var(--mmc-white);
    margin-bottom: 52px;
    position: relative;
    z-index: 1;
}

.mmc-svc-main-label {
    display: inline-block;
    font-family: 'Exo 2', sans-serif;
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 12px;
}

.mmc-svc-main-header h1 {
    font-family: var(--mmc-font-heading);
    font-size: 3.2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    line-height: 1.1;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
    margin-bottom: 18px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.mmc-svc-main-header p {
    font-size: 1.02rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
    font-weight: 300;
    max-width: 540px;
    margin: 0 auto;
}

/* ---- Pricing Cards Grid ---- */
.mmc-svc-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.mmc-svc-card {
    background: var(--mmc-white);
    border-radius: var(--mmc-radius-lg);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.25);
    overflow: hidden;
    transition: all var(--mmc-transition);
    position: relative;
    display: flex;
    flex-direction: column;
}

.mmc-svc-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

/* Badge — same dark bg, left accent bar for differentiation */
.mmc-svc-card-badge {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: #0a0e14;
    color: rgba(255, 255, 255, 0.7);
    padding: 11px 20px;
    font-family: 'Exo 2', sans-serif;
    font-size: 0.65rem;
    font-weight: 600;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    z-index: 2;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

/* Alt badge */
.mmc-svc-card-badge-alt {
    background: #0a0e14;
    color: var(--mmc-primary);
}

/* Card Header */
.mmc-svc-card-header {
    background: linear-gradient(135deg, var(--mmc-primary) 0%, var(--mmc-primary-dark) 100%);
    color: var(--mmc-white);
    padding: 48px 32px 28px;
    text-align: center;
    position: relative;
    margin-top: 34px;
}

.mmc-svc-card-header::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 16px solid transparent;
    border-right: 16px solid transparent;
    border-top: 12px solid var(--mmc-primary-dark);
}

.mmc-svc-card-header h2 {
    font-family: var(--mmc-font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 14px;
}

.mmc-svc-card-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
}

.mmc-svc-currency {
    font-size: 1.4rem;
    font-weight: 600;
}

.mmc-svc-amount {
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1;
}

.mmc-svc-period {
    font-size: 0.92rem;
    font-weight: 400;
    opacity: 0.85;
}

/* Card Body */
.mmc-svc-card-body {
    padding: 40px 32px 36px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.mmc-svc-card-body p {
    font-size: 0.92rem;
    color: var(--mmc-text-light);
    line-height: 1.75;
    margin-bottom: 24px;
    text-align: center;
    font-weight: 300;
}

.mmc-svc-card-body ul {
    list-style: none;
    margin-bottom: 28px;
    flex-grow: 1;
}

.mmc-svc-card-body li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 13px;
    font-size: 0.9rem;
    color: var(--mmc-text);
    line-height: 1.55;
    font-weight: 400;
}

.mmc-svc-card-body li i {
    color: var(--mmc-primary);
    font-size: 0.75rem;
    margin-top: 4px;
    flex-shrink: 0;
}

/* Enquire Button */
.mmc-svc-card-btn {
    display: block;
    width: 100%;
    padding: 16px;
    background: var(--mmc-primary);
    color: var(--mmc-white);
    font-family: 'Exo 2', sans-serif;
    font-size: 0.88rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    text-align: center;
    text-decoration: none;
    border-radius: var(--mmc-radius);
    transition: all var(--mmc-transition);
}

.mmc-svc-card-btn:hover {
    background: var(--mmc-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(2, 120, 212, 0.35);
}

/* ========================================
   Tablet Styles
   ======================================== */
@media (max-width: 968px) {
    .mmc-svc-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        max-width: 520px;
    }
}

@media (max-width: 768px) {
    .mmc-svc-main-bg { padding: 60px 0 72px; background-attachment: scroll; }
    .mmc-svc-main-header h1 { font-size: 2.4rem; }
    .mmc-svc-main-header p { font-size: 0.92rem; }
    .mmc-svc-main-header { margin-bottom: 40px; }

    .mmc-svc-card-header { padding: 44px 28px 24px; }
    .mmc-svc-card-header h2 { font-size: 1.15rem; }
    .mmc-svc-amount { font-size: 2.5rem; }
    .mmc-svc-card-body { padding: 36px 28px 32px; }
    .mmc-svc-card-body p { font-size: 0.9rem; }
    .mmc-svc-card-body li { font-size: 0.88rem; }
}

/* ========================================
   Mobile Styles
   ======================================== */
@media (max-width: 480px) {
    .mmc-svc-main-bg { padding: 48px 0 56px; }
    .mmc-svc-main-header h1 { font-size: 1.9rem; }
    .mmc-svc-main-header p { font-size: 0.88rem; max-width: none; }
    .mmc-svc-main-label { font-size: 0.72rem; }
    .mmc-svc-main-header { margin-bottom: 32px; }

    .mmc-svc-grid { max-width: none; }
    .mmc-svc-card-badge { font-size: 0.65rem; padding: 9px 16px; letter-spacing: 1.5px; }
    .mmc-svc-card-header { padding: 44px 20px 22px; }
    .mmc-svc-card-header h2 { font-size: 1.1rem; }
    .mmc-svc-amount { font-size: 2.4rem; }
    .mmc-svc-currency { font-size: 1.2rem; }
    .mmc-svc-period { font-size: 0.85rem; }
    .mmc-svc-card-body { padding: 32px 22px 28px; }
    .mmc-svc-card-body p { font-size: 0.88rem; }
    .mmc-svc-card-body li { font-size: 0.86rem; margin-bottom: 11px; }
    .mmc-svc-card-btn { padding: 14px; font-size: 0.85rem; }
}
