/* ─── SERVICES PAGE ─── */
body.page-services {
    background: #111;
    color: #f0f0f0;
}

/* Fallback: force dark background by URL — in case body class is missing */
.srv-hero,
.srv-intro-section,
.srv-cards-section,
.srv-contact-section {
    box-sizing: border-box;
}

/* ensure full-width dark coverage on the wrapper */
.services-page-wrapper {
    background: #111;
    min-height: 100vh;
    color: #f0f0f0;
    text-align: center;
}

body.page-services nav {
    background: rgba(17, 17, 17, 0.97);
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

body.page-services .nav-brand {
    color: var(--yellow);
}

body.page-services .nav-links a {
    color: rgba(255, 255, 255, 0.45);
}

body.page-services .nav-links a:hover,
body.page-services .nav-links a.active {
    color: var(--yellow);
}

/* SERVICES HERO */
.srv-hero {
    background: #111;
    padding: clamp(60px, 10vw, 110px) clamp(20px, 5vw, 80px) clamp(40px, 6vw, 60px);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.srv-hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(247, 201, 72, 0.12);
    color: var(--yellow);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 100px;
    border: 1px solid rgba(247, 201, 72, 0.25);
    width: fit-content;
}

.srv-hero-title {
    font-family: 'Inter', sans-serif;
    font-size: clamp(2.4rem, 5vw, 4rem);
    font-weight: 800;
    color: #fff;
    letter-spacing: -1.5px;
    line-height: 1.1;
}

.srv-hero-sub {
    font-size: 1rem;
    color: rgba(255,255,255,0.45);
    font-weight: 400;
}

/* INTRO */
.srv-intro-section {
    background: #161616;
    padding: clamp(40px, 6vw, 60px) clamp(20px, 5vw, 80px);
    border-top: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    width: 100%;
    box-sizing: border-box;
}

.srv-intro {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 14px;
    align-items: center;
}

.srv-intro p {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.75;
}

.srv-intro strong {
    color: var(--yellow);
    font-weight: 600;
}

.srv-badge {
    margin-top: 8px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(46, 139, 87, 0.15);
    color: #4ade80;
    font-size: 0.85rem;
    font-weight: 700;
    padding: 8px 18px;
    border-radius: 100px;
    border: 1px solid rgba(46, 139, 87, 0.3);
    width: fit-content;
    letter-spacing: 0.02em;
}

/* PLAN CARDS */
.srv-cards-section {
    background: #111;
    padding: clamp(48px, 8vw, 80px) clamp(20px, 5vw, 80px);
    width: 100%;
    box-sizing: border-box;
}

.srv-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}

.srv-card {
    background: #1c1c1c;
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.srv-card-header {
    background: rgba(247, 201, 72, 0.06);
    border-bottom: 1px solid rgba(247, 201, 72, 0.1);
    padding: 28px 28px 22px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.srv-icon {
    font-size: 2rem;
    line-height: 1;
}

.srv-plan-title {
    font-family: 'Inter', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.3px;
}

.srv-meals-badge {
    display: inline-flex;
    background: var(--yellow);
    color: var(--dark);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 100px;
    width: fit-content;
}

.srv-card-body {
    padding: 24px 28px 28px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.srv-days {
    font-family: 'Inter', sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.35);
}

.srv-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.srv-features li {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.6);
    padding-left: 20px;
    position: relative;
    line-height: 1.5;
}

.srv-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--yellow);
    font-weight: 700;
}

/* CONTACT */
.srv-contact-section {
    background: #161616;
    border-top: 1px solid rgba(255,255,255,0.05);
    padding: clamp(40px, 6vw, 60px) clamp(20px, 5vw, 80px);
    display: flex;
    flex-direction: column;
    gap: 28px;
    width: 100%;
    box-sizing: border-box;
}

.srv-contact-title {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: rgba(255,255,255,0.6);
}

.srv-contact-links {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.srv-link {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 16px 24px;
    border-radius: 14px;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    width: fit-content;
    transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s;
}

.srv-link:hover {
    transform: translateX(6px);
    opacity: 0.9;
}

.srv-link--ig {
    background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    color: #fff;
}

.srv-link--email {
    background: rgba(247, 201, 72, 0.12);
    border: 1px solid rgba(247, 201, 72, 0.25);
    color: var(--yellow);
}

/* SERVICES FOOTER */
body.page-services footer {
    background: #0a0a0a;
}

@media (max-width: 640px) {
    .srv-cards {
        grid-template-columns: 1fr;
    }

    .srv-link {
        width: 100%;
    }
}
