:root {
    --primary-navy: #0b132b;
    --accent-orange: #d9531e;
    --accent-gold: #c59b27;
    --accent-purple: #5b2c6f;
    --bg-light: #f8f6f0;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Inter', sans-serif;
}

body {
    background-color: var(--primary-navy);
    color: #ffffff;
}
html {
    scroll-behavior: smooth;
}
/* --- HERO SECTION --- */
.services-hero {
    position: relative;
    background:
                url('../assets/services-hero.webp') center/cover no-repeat;
    padding: 100px 5% 150px;
    text-align: center;
    display: flex;
    justify-content: center;
}

.services-hero-content {
    max-width: 800px;
    margin-top: 60px;
}

.hero-badge {
    font-size: 18px;
    font-weight: bolder;
    letter-spacing: 2px;
    color: var(--accent-gold);
    margin-bottom: 16px;
    font-weight: 600;
}

.hero-main-title {
    font-size: 38px;
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 18px;
    color: #ffffff;
}

.hero-description {
    font-size: 14px;
    color: #d1d5db;
    line-height: 1.6;
    margin-bottom: 30px;
}

.hero-cta-group {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-orange {
    background-color: var(--accent-orange);
    color: #fff;
    padding: 10px 22px;
}

.btn-red {
    background-color: #b31b1b;
    color: #fff;
    padding: 10px 22px;
}

/* --- THREE PLATFORMS STRIP --- */
.three-platforms-section {
    background-color: #f8f6f0;
    color: #111;
    padding: 40px 3%;
    text-align: center;
    border-bottom: 1px solid #e5e7eb;
}

.strip-heading {
    font-size: 26px;
    font-weight: 700;
    color: #0b132b;
    margin-bottom: 30px;
}

.platforms-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.platform-item {
    display: flex;
    align-items: center;
    gap: 16px;
    text-align: left;
}

.platform-icon {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background-color: #0b132b;
    color: #f1c40f;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.platform-info h3 {
    font-size: 16px;
    font-weight: 700;
    color: #0b132b;
    margin-bottom: 4px;
}

.platform-info p {
    font-size: 12px;
    color: #555;
    line-height: 1.4;
}

/* --- SERVICE DETAIL CARDS --- */
.service-details-container {
    background-color: #f8f6f0;
    padding: 50px 3%;
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.service-detail-card {
    max-width: 1500px;
    margin: 0 auto;
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.service-detail-card.reverse-row {
    grid-template-columns: 1fr 1.2fr;
}

.dark-blue-card { background-color: #0a1833; color: #fff; }
.light-beige-card { background-color: #fdf6ed; color: #222; }
.purple-card { background-color: #2e1842; color: #fff; }

.service-text-content {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.card-header-flex {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 16px;
}

.card-badge-icon {
    width: 42px;
    height: 42px;
    border-radius: 8px;
    background-color: #1d4ed8;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.orange-icon { background-color: #d9531e; }
.purple-icon { background-color: #7e22ce; }

.card-titles h2 { font-size: 20px; font-weight: 700; color: #93c5fd; }
.card-titles h3 { font-size: 18px; font-weight: 600; color: #ffffff; }

.orange-heading { color: #802e0c !important; }

.card-main-desc {
    font-size: 13px;
    line-height: 1.6;
    color: #d1d5db;
    margin-bottom: 20px;
}

.card-main-desc.dark-text { color: #4b5563; }

.check-list {
    list-style: none;
    margin-bottom: 24px;
}

.check-list li {
    font-size: 13px;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #e5e7eb;
}

.check-list li i { color: #60a5fa; }
.dark-check li { color: #374151; }
.dark-check li i { color: #d9531e; }

.service-btn {
    align-self: flex-start;
    padding: 10px 20px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.blue-btn { background-color: #1e40af; }
.orange-btn { background-color: #d9531e; }
.purple-btn { background-color: #6b21a8; }

.service-image-container {
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

.service-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* --- SERVICE STATS BAR --- */
.service-stats-bar {
    background-color: #0b132b;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px 3%;
}

.stats-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.stat-box {
    display: flex;
    align-items: center;
    gap: 15px;
    border-right: 1px solid rgba(255,255,255,0.1);
    padding-right: 10px;
}

.stat-box:last-child { border-right: none; }

.stat-ico {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 1px solid var(--accent-gold);
    color: var(--accent-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.stat-txt h3 { font-size: 20px; font-weight: 700; color: #fff; }
.stat-txt p { font-size: 12px; color: #d1d5db; }
.stat-txt p span { font-size: 10px; color: #9ca3af; }

/* --- PATTERN CTA BANNER --- */
.pattern-cta-section {
    background: linear-gradient(rgba(100, 20, 20, 0), rgba(70, 10, 10, 0)),
                url('../assets/services-Join the movement.webp') center/cover;
    padding: 60px 5%;
    text-align: center;
    border-top: 6px solid rgb(197, 138, 0);
}

.pattern-cta-title {
    font-size: 28px;
    color: var(--accent-gold);
    margin-bottom: 25px;
    line-height: 1.3;
}

.pattern-cta-btns {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-purple { background-color: #4c1d95; color: #fff; padding: 10px 20px; }
.btn-dark-outline { border: 1px solid #ffffff; color: #fff; background: rgba(0,0,0,0.3); padding: 10px 20px; }

/* --- RED BANNER --- */
.red-banner {
    border-top: 6px solid rgb(197, 138, 0);
    border-bottom: 6px solid rgb(197, 138, 0);
    background: linear-gradient(rgba(100, 20, 20, 0.433), rgba(70, 10, 10, 0.4)),
                url('../assets/services-Join the movement.webp') center/cover;
    padding: 16px 3%;
}

.red-banner-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.gold-cta-btn {
    background-color: #f1c40f;
    color: #111;
    border: none;
    padding: 8px 18px;
    font-weight: 700;
    font-size: 12px;
    border-radius: 20px;
    cursor: pointer;
}

/* --- RESPONSIVENESS --- */
@media (max-width: 1024px) {
    .platforms-grid, .stats-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }
    .stat-box { border-right: none; }
}

@media (max-width: 768px) {
    .service-detail-card, .service-detail-card.reverse-row {
        grid-template-columns: 1fr;
    }
    .platforms-grid, .stats-wrapper {
        grid-template-columns: 1fr;
    }
    .hero-main-title { font-size: 28px; }
    .pattern-cta-title { font-size: 20px; }
    .red-banner-content { flex-direction: column; text-align: center; }
}
@media (max-width: 550px){
    .service-image-container img {
    width: 100%;
    height: 100%;
}
}