/* assets/css/style.css */
:root {
    --primary-color: #043c79;
    --secondary-color: #f4f4f4;
    --text-color: #333;
    --light-text: #fff;
    --transition-speed: 0.3s;

    /* Section background palette */
    --bg-portfolio: #eef4fb;
    --bg-legality: #ffffff;
    --bg-services: #0b1d3a;
    --bg-about: #faf7f2;
}

*, *::before, *::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 92px;
}

body {
    font-family: 'Poppins', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    color: var(--text-color);
    line-height: 1.6;
    width: 100%;
}

/* ─── Navbar ─────────────────────────────────────────────────────────────── */
.navbar {
    background-color: var(--primary-color);
    color: var(--light-text);
    padding: 1rem 2rem;
    position: sticky;
    top: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.navbar .logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-svg {
    height: 60px;
    width: auto;
    transition: transform var(--transition-speed);
}

.logo-svg:hover {
    transform: scale(1.05);
}

.nav-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex: 1;
    justify-content: center;
}

.nav-links li {
    margin-left: 1.5rem;
}

.nav-links a {
    color: var(--light-text);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.3px;
    transition: color var(--transition-speed);
}

.nav-links a:hover {
    color: #7cc3ff;
}

.nav-links a.active {
    color: #7cc3ff;
    border-bottom: 2px solid #7cc3ff;
    padding-bottom: 2px;
}

/* ─── Generic Section Reset ──────────────────────────────────────────────── */
/* Sections with custom backgrounds need full-width treatment */
section {
    padding: 5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

section h2 {
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2rem;
    font-weight: 700;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

/* Decorative underline accent on section headings */
section h2::after {
    content: '';
    display: block;
    width: 48px;
    height: 4px;
    border-radius: 2px;
    background: linear-gradient(90deg, var(--primary-color), #60a5fa);
    margin: 0.5rem auto 0;
}

/* ─── Full-bleed Section Wrapper ─────────────────────────────────────────── */
/* Portfolio, Services, and About use full-width backgrounds */
.section-full {
    width: 100%;
    max-width: 100%;
    margin: 0;
}

.section-full > .section-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 5rem 2rem;
}

/* ─── Hero Section ───────────────────────────────────────────────────────── */
.hero-section {
    padding: 0;
    margin: 0;
    width: 100%;
    max-width: 100%;
    min-height: calc(100vh - 92px); /* Accounts for navbar height to perfectly center text */
    background-image:
        linear-gradient(135deg, rgba(4, 20, 50, 0.75) 0%, rgba(4, 60, 121, 0.55) 60%, rgba(0, 0, 0, 0.35) 100%),
        url('../img/herobg.png?v=3');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    color: var(--light-text);
}

/* Hero entrance animation */
@keyframes heroFadeIn {
    from {
        opacity: 0;
        transform: translateY(28px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content {
    padding: 2rem 4rem;
    z-index: 1;
    max-width: 680px;
    animation: heroFadeIn 1s ease forwards;
}

/* Eyebrow label */
.hero-eyebrow {
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 600;
    font-size: 0.8rem;
    color: #7cc3ff;
    margin-bottom: 1.2rem;
    opacity: 0.95;
}

/* Gradient headline */
.hero-section h2 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.15;
    margin: 0 0 1.4rem;
    letter-spacing: -0.5px;
    background: linear-gradient(135deg, #ffffff 0%, #93c5fd 45%, #c4b5fd 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent; /* fallback */
    /* Override the generic h2::after for hero */
    position: static;
    display: block;
    left: auto;
    transform: none;
    text-align: left;
}

/* Hero has no underline accent */
.hero-section h2::after {
    display: none;
}

.hero-content p {
    color: rgba(255, 255, 255, 0.88);
    font-size: 1.05rem;
    font-weight: 400;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
    margin-bottom: 1.8rem;
    max-width: 560px;
    line-height: 1.75;
}

/* Hero CTA button – glowing style */
.hero-section .btn {
    background: linear-gradient(135deg, #1d6fcf, #0e4fa8);
    color: #fff;
    padding: 0.85rem 2rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.4px;
    text-decoration: none;
    display: inline-block;
    margin-top: 0;
    box-shadow: 0 4px 20px rgba(29, 111, 207, 0.45);
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.hero-section .btn:hover {
    background: linear-gradient(135deg, #2880e4, #1358be);
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(29, 111, 207, 0.6);
}

@media (max-width: 768px) {
    .hero-section {
        justify-content: center;
        background-position: center center;
        min-height: calc(100vh - 92px);
    }

    .hero-content {
        padding: 3rem 1.5rem;
        text-align: center;
    }

    .hero-section h2 {
        font-size: 2.2rem;
        text-align: center;
    }

    .hero-content p {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }
}

/* ─── Portfolio Section ──────────────────────────────────────────────────── */
#portfolio {
    background-color: var(--bg-portfolio);
    max-width: 100%;
    margin: 0;
    padding: 5rem 2rem;
}

#portfolio .portfolio-inner {
    max-width: 1200px;
    margin: 0 auto;
}

#portfolio h2 {
    color: var(--primary-color);
}

/* Portfolio Container (outer card) */
.portfolio-container {
    background: #ffffff;
    border-radius: 18px;
    box-shadow: 0 8px 32px rgba(4, 60, 121, 0.10);
    padding: 28px;
    width: 100%;
    box-sizing: border-box;
}

/* Portfolio Grid */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
}

.portfolio-item {
    cursor: pointer;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.10);
    transition: transform var(--transition-speed), box-shadow var(--transition-speed);
}

.portfolio-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 28px rgba(4, 60, 121, 0.18);
}

.portfolio-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

/* Load More — hidden items */
.portfolio-item--hidden {
    display: none;
}

/* Reveal animation (fade-in + slide-up) */
@keyframes portfolio-reveal {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.portfolio-item--reveal {
    display: block;
    animation: portfolio-reveal 0.4s ease forwards;
}

/* Load More button wrapper */
.load-more-wrap {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

/* Load More button */
.load-more-btn {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--light-text);
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 6px;
    font-size: 0.95rem;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    transition: background-color var(--transition-speed), transform var(--transition-speed);
}

.load-more-btn:hover {
    background-color: #032a56;
    transform: translateY(-2px);
}

.load-more-btn:active {
    transform: translateY(0);
}

.load-more-wrap--hidden {
    display: none;
}

/* Hide an individual button */
.load-more-btn.load-more-btn--hidden,
.minimize-btn.minimize-btn--hidden {
    display: none;
}

/* Minimize button — outlined secondary style */
.minimize-btn {
    display: inline-block;
    background-color: transparent;
    color: var(--primary-color);
    padding: 0.75rem 2rem;
    border: 2px solid var(--primary-color);
    border-radius: 6px;
    font-size: 0.95rem;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    transition: background-color var(--transition-speed),
        color var(--transition-speed),
        transform var(--transition-speed);
}

.minimize-btn:hover {
    background-color: var(--primary-color);
    color: var(--light-text);
    transform: translateY(-2px);
}

.minimize-btn:active {
    transform: translateY(0);
}

/* ─── Legality Section ─────────────────────────────────────────────────── */
#legality {
    background-color: var(--bg-legality);
    background-image: radial-gradient(ellipse at 50% 0%, rgba(4, 60, 121, 0.04) 0%, transparent 70%);
    max-width: 100%;
    margin: 0;
    padding: 5rem 2rem;
}

.legality-inner {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.section-badge {
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    font-weight: 700;
    font-size: 0.8rem;
    color: var(--primary-color);
    background-color: rgba(4, 60, 121, 0.08);
    padding: 0.4rem 1.2rem;
    border-radius: 50px;
    margin-bottom: 0.8rem;
}

#legality h2 {
    color: var(--primary-color);
    margin-top: 0;
    left: auto;
    transform: none;
}

.section-description {
    max-width: 760px;
    margin: 0 auto 2.5rem;
    color: #555;
    font-size: 1.05rem;
    line-height: 1.75;
}

/* Legality Container (Large container holding all legality certificates) */
.legality-container {
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 10px 35px rgba(4, 60, 121, 0.10);
    padding: 28px;
    position: relative;
    overflow: hidden;
    max-width: 560px;
    margin: 0 auto;
    border: 1px solid rgba(4, 60, 121, 0.06);
    outline: none;
}

.legality-container:focus-visible {
    box-shadow: 0 0 0 3px rgba(4, 60, 121, 0.3), 0 10px 35px rgba(4, 60, 121, 0.10);
}

/* Slider Track */
.legality-slider-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    width: 100%;
}

/* Slide Item */
.legality-slide {
    min-width: 100%;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 660px;
    background: #f8fafc;
    border-radius: 12px;
    padding: 1.25rem;
    overflow: hidden;
}

.legality-slide img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 6px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    background-color: #ffffff;
}

/* Navigation Buttons */
.legality-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    color: var(--primary-color);
    border: 1px solid rgba(4, 60, 121, 0.15);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.25s ease;
}

.legality-nav-btn.prev-btn {
    left: 18px;
}

.legality-nav-btn.next-btn {
    right: 18px;
}

.legality-nav-btn:hover {
    background: var(--primary-color);
    color: #ffffff;
    border-color: var(--primary-color);
    transform: translateY(-50%) scale(1.08);
    box-shadow: 0 6px 20px rgba(4, 60, 121, 0.35);
}

.legality-nav-btn:active {
    transform: translateY(-50%) scale(0.98);
}

/* Pagination Dots */
.legality-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 1.8rem;
}

.legality-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #cbd5e1;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.legality-dot:hover {
    background: #94a3b8;
}

.legality-dot.active {
    background: var(--primary-color);
    width: 28px;
    border-radius: 10px;
}

/* ─── Services Section ───────────────────────────────────────────────────── */
#services {
    background-color: var(--bg-services);
    background-image: radial-gradient(ellipse at 70% 40%, rgba(29, 111, 207, 0.18) 0%, transparent 65%);
    max-width: 100%;
    margin: 0;
    padding: 5rem 2rem;
}

#services h2 {
    color: #e0eeff;
}

#services h2::after {
    background: linear-gradient(90deg, #60a5fa, #a78bfa);
}

.services-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.services-content p {
    color: rgba(210, 230, 255, 0.85);
    font-size: 1.05rem;
    line-height: 1.8;
}

/* Services CTA – outlined on dark background */
#services .btn {
    background: transparent;
    color: #93c5fd;
    border: 2px solid #93c5fd;
    padding: 0.85rem 2.2rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.4px;
    transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
    box-shadow: none;
}

#services .btn:hover {
    background: #93c5fd;
    color: #0b1d3a;
    transform: translateY(-3px);
    box-shadow: 0 6px 22px rgba(147, 197, 253, 0.35);
}

/* ─── About Section ──────────────────────────────────────────────────────── */
#about {
    background-color: var(--bg-about);
    background-image: radial-gradient(ellipse at 30% 70%, rgba(4, 60, 121, 0.05) 0%, transparent 60%);
    max-width: 100%;
    margin: 0;
    padding: 5rem 2rem;
}

#about h2 {
    color: var(--primary-color);
}

/* About Us text block */
.about-text {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.05rem;
    color: #444;
    line-height: 1.8;
}

/* ─── Generic Button (fallback) ──────────────────────────────────────────── */
.btn {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--light-text);
    padding: 0.85rem 1.8rem;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: background-color var(--transition-speed), transform var(--transition-speed);
    margin-top: 1rem;
}

.btn:hover {
    background-color: #032a56;
    transform: translateY(-2px);
}

/* ─── Modal ──────────────────────────────────────────────────────────────── */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.82);
    justify-content: center;
    align-items: center;
    padding: 2rem;
    box-sizing: border-box;
}

.modal-content {
    background: var(--light-text);
    padding: 2rem;
    border-radius: 12px;
    max-width: 600px;
    width: 100%;
    position: relative;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-color);
    transition: color var(--transition-speed);
}

.close-btn:hover {
    color: var(--primary-color);
}

.modal-content img {
    max-width: 100%;
    max-height: 60vh;
    border-radius: 6px;
    margin-bottom: 1rem;
}

/* ─── Contact Page ───────────────────────────────────────────────────────── */
.contact-container {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.map-container {
    flex: 1;
    min-width: 300px;
}

.map-container iframe {
    width: 100%;
    height: 400px;
    border: none;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.contact-info {
    flex: 1;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1rem;
}

/* ─── Footer ─────────────────────────────────────────────────────────────── */
footer {
    background-color: var(--primary-color);
    color: var(--light-text);
    text-align: center;
    padding: 1.2rem 0;
    font-size: 0.9rem;
    letter-spacing: 0.2px;
}

/* ─── Mobile Menu Toggle ─────────────────────────────────────────────────── */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.menu-toggle span {
    height: 3px;
    width: 25px;
    background: var(--light-text);
    border-radius: 2px;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        align-items: center;
        width: 100%;
        position: absolute;
        top: 100%;
        left: 0;
        background-color: var(--primary-color);
        padding: 1rem 0;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        margin: 1rem 0;
    }

    .portfolio-container {
        padding: 16px;
    }

    #portfolio,
    #legality,
    #services,
    #about {
        padding: 3.5rem 1.25rem;
    }

    .legality-container {
        padding: 20px;
        border-radius: 16px;
    }

    .legality-slide {
        height: 520px;
        padding: 0.75rem;
    }

    .legality-nav-btn {
        width: 40px;
        height: 40px;
    }

    .legality-nav-btn.prev-btn {
        left: 8px;
    }

    .legality-nav-btn.next-btn {
        right: 8px;
    }

    section h2 {
        font-size: 1.7rem;
    }
}

/* ═══════════════════════════════════════════════════════════════════════════
   SERVICES SECTION — Dynamic Card Grid
   ═══════════════════════════════════════════════════════════════════════════ */

/* Section wrapper — full-bleed dark background, centred content */
#services {
    background-color: var(--bg-services);
    background-image: radial-gradient(ellipse at 70% 40%, rgba(29, 111, 207, 0.18) 0%, transparent 65%);
    max-width: 100%;
    margin: 0;
    padding: 5rem 2rem;
}

.services-section-inner {
    max-width: 1200px;
    margin: 0 auto;
}

/* Section heading colours (overrides generic section h2) */
#services h2 {
    color: #e0eeff;
    left: 50%;
    transform: translateX(-50%);
    position: relative;
    display: inline-block;
}

#services h2::after {
    background: linear-gradient(90deg, #60a5fa, #a78bfa);
}

/* Intro paragraph */
.services-intro {
    text-align: center;
    color: rgba(210, 230, 255, 0.82);
    font-size: 1.05rem;
    line-height: 1.8;
    max-width: 720px;
    margin: 0 auto 3rem;
}

/* ── Grid ─────────────────────────────────────────────────────────────────── */
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

/* ── Card base ────────────────────────────────────────────────────────────── */
.service-card {
    background: #ffffff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.22);
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease;
    cursor: pointer;
    position: relative;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow:
        0 16px 48px rgba(4, 60, 121, 0.35),
        0 4px 16px rgba(0, 0, 0, 0.2);
}

/* ── Image wrapper ────────────────────────────────────────────────────────── */
.service-card__img-wrap {
    position: relative;
    overflow: hidden;
    height: 200px;
    background: #1a2c48;
    flex-shrink: 0;
}

.service-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.45s ease;
}

.service-card:hover .service-card__img {
    transform: scale(1.08);
}

/* Placeholder when no image is uploaded */
.service-card__img-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1a2c48, #0b1d3a);
    color: rgba(255, 255, 255, 0.25);
}

.service-card__img-placeholder svg {
    width: 64px;
    height: 64px;
}

/* ── Hover overlay ────────────────────────────────────────────────────────── */
.service-card__overlay {
    position: absolute;
    inset: 0;
    background: rgba(4, 20, 50, 0.68);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.35s ease;
}

.service-card:hover .service-card__overlay {
    opacity: 1;
}

.service-card__overlay-label {
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-align: center;
    padding: 0.5rem 1rem;
    border: 1.5px solid rgba(255, 255, 255, 0.55);
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(4px);
    transform: translateY(6px);
    transition: transform 0.35s ease;
}

.service-card:hover .service-card__overlay-label {
    transform: translateY(0);
}

/* ── Card body ────────────────────────────────────────────────────────────── */
.service-card__body {
    padding: 1.1rem 1.25rem 1.25rem;
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 0.5rem;
}

/* Category badge */
.service-card__badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(4, 60, 121, 0.1), rgba(29, 111, 207, 0.12));
    color: #043c79;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 0.28rem 0.75rem;
    border-radius: 50px;
    border: 1px solid rgba(4, 60, 121, 0.18);
    width: fit-content;
}

/* Title */
.service-card__title {
    margin: 0;
    font-size: 1rem;
    font-weight: 700;
    color: #0c1e3a;
    line-height: 1.35;
}

/* Description — max 3 lines */
.service-card__desc {
    margin: 0;
    font-size: 0.875rem;
    color: #555;
    line-height: 1.65;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex: 1;
}

/* ── Footer ───────────────────────────────────────────────────────────────── */
.service-card__footer {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.6rem;
    padding-top: 0.75rem;
    border-top: 1px solid #f0f0f0;
}

.service-card__pdf-icon {
    display: flex;
    align-items: center;
    color: #d9534f;
    flex-shrink: 0;
}

.service-card__view-btn {
    font-size: 0.82rem;
    font-weight: 700;
    color: #043c79;
    letter-spacing: 0.3px;
    transition: color 0.25s ease;
}

.service-card:hover .service-card__view-btn {
    color: #1d6fcf;
}

.service-card__no-pdf {
    font-size: 0.78rem;
    color: #aaa;
    font-style: italic;
}

/* ── Empty state ──────────────────────────────────────────────────────────── */
.services-empty {
    text-align: center;
    padding: 3rem 1rem;
}

.services-empty p {
    color: rgba(210, 230, 255, 0.6);
    font-size: 1rem;
    font-style: italic;
}

/* ── Responsive grid ──────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .service-card__img-wrap {
        height: 180px;
    }

    .services-intro {
        font-size: 0.95rem;
        margin-bottom: 2rem;
    }
}