/* ── SERVICES LIGHT THEME ───────────────────────── */
body.page-services-light {
    background-color: #f9f9f9;
    color: #00193c;
    background-image: radial-gradient(circle, rgba(0,25,60,0.03) 1px, transparent 1px);
    background-size: 30px 30px;
}

/* Nav */
body.page-services-light .navbar { background: rgba(255, 255, 255, 0.95); border-bottom: 1px solid rgba(0,0,0,0.05); }
body.page-services-light .logo-text { color: #00193c; }
body.page-services-light .logo-text span { color: #00193c; opacity: 0.6; }

body.page-services-light .nav-link { color: #48626e; }
body.page-services-light .nav-link:hover,
body.page-services-light .nav-link.active { color: #00193c; background: rgba(0,0,0,0.03); }
body.page-services-light .menu-toggle span { background: #00193c; }

/* Hero */
.services-hero-light {
    padding-top: 140px;
    padding-bottom: 80px;
    overflow: hidden;
    background: url('images/hero.png') center/cover no-repeat;
    position: relative;
}
.services-hero-light::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 25, 60, 0.85); /* Navy overlay */
    z-index: 0;
}
.services-hero-split {
    position: relative;
    z-index: 1;
}
.services-hero-split {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: center;
}
.sv-subheading {
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    color: #F47920;
    text-transform: uppercase;
    margin-bottom: 1rem;
    display: block;
}
.sv-hero-title {
    font-size: clamp(3rem, 5vw, 4.25rem);
    font-weight: 900;
    color: #ffffff;
    line-height: 1.0;
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
}
.sv-hero-title span {
    color: #F47920;
    display: block;
}
.sv-hero-subtitle {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 2rem;
    max-width: 500px;
}
.sv-hero-tags {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}
.sv-tag {
    background: #f0f0f4;
    color: #00193c;
    padding: 8px 16px;
    border-radius: 4px;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    display: flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
}
.sv-tag svg { width: 14px; height: 14px; fill: #F47920; }

.sv-hero-image {
    padding-left: 20px;
}
.sv-hero-image img {
    width: 100%;
    height: auto;
    filter: grayscale(100%) contrast(1.1);
    border-radius: 4px;
    transform: translateX(10%);
    box-shadow: -20px 20px 60px rgba(0,0,0,0.1);
}

/* Services Grid */
.sv-grid-section {
    padding: 40px 0 100px 0;
}
.sv-masonry {
    display: flex;
    gap: 24px;
    align-items: flex-start;
}
.sv-col {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.sv-col-1 { flex: 1.35; }
.sv-col-2 { flex: 1; }
.sv-col-3 { flex: 1; }

.sv-card {
    background: #f4f4f6;
    padding: 32px;
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    position: relative;
    box-shadow: 0 5px 15px rgba(0,0,0,0.02);
    transition: transform 0.3s;
}
.sv-card:hover { transform: translateY(-4px); }
.sv-card-white {
    background: #ffffff;
    box-shadow: 0 15px 35px rgba(0,0,0,0.06);
}
.sv-card-dark {
    background: #00193c;
    color: #ffffff;
    padding: 0;
    overflow: hidden;
}
.sv-icon {
    width: 24px;
    height: 24px;
    margin-bottom: 32px;
}
.sv-icon svg { width: 100%; height: 100%; fill: #00193c; }
.sv-icon.sv-icon-orange svg { fill: #F47920; }

.sv-ref {
    position: absolute;
    top: 32px;
    right: 32px;
    font-size: 0.55rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: #a0a0a0;
}
.sv-card h3 {
    font-size: 1.25rem;
    font-weight: 800;
    color: #00193c;
    margin-bottom: 12px;
}
.sv-card-dark h3 { color: #ffffff; padding: 0 32px; margin-top: 40px; font-size:1.5rem; }
.sv-card p {
    font-size: 0.85rem;
    color: #48626e;
    line-height: 1.6;
}
.sv-card-dark p { color: #7796d1; padding: 0 32px; margin-bottom: 24px; }
.sv-card-dark .sv-dark-bg {
    width: 100%;
    height: 240px;
    background-size: cover;
    background-position: center;
    mix-blend-mode: luminosity;
    opacity: 0.3;
}
.sv-dark-bg-electrical {
    background-image: url('images/ELECTRICT ENG.jpg');
}
.sv-dark-bg-mechanical {
    background-image: url('images/machine.jpeg');
}
.sv-dark-bg-mining {
    background-image: url('images/mining.png');
}
.sv-dark-bg-vehicle {
    background-image: url('images/MOTOR.jpeg');
}
.sv-dark-bg-consulting {
    background-image: url('images/team.jpeg');
}
.sv-link {
    margin-top: auto;
    padding-top: 32px;
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    color: #00193c;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-decoration: none;
}
.sv-link svg { width: 12px; height: 12px; fill: currentColor; }

.sv-progressbar {
    margin-top: 40px;
    width: 100%;
    height: 3px;
    background: #e0e0e0;
}
.sv-progressbar .sv-fill {
    height: 100%;
    background: #00193c;
    width: 30%;
}
.sv-card-mining {
    flex-direction: row;
    gap: 20px;
    align-items: center;
}
.sv-card-mining .sv-content { flex: 1; display:flex; flex-direction:column; }
.sv-card-mining .sv-img {
    width: 140px;
    height: 120px;
    background: #fff;
    padding: 8px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}
.sv-card-mining .sv-img img { width: 100%; height: 100%; object-fit: cover; }

/* CTA */
.sv-cta {
    background: #00193c;
    padding: 60px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    overflow: hidden;
    margin-top: 40px;
    margin-bottom: 40px;
}
.sv-cta::after {
    content: '';
    position: absolute;
    right: -100px;
    top: -100px;
    width: 500px;
    height: 500px;
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 50%;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.05),
                inset 0 0 0 40px transparent,
                inset 0 0 0 41px rgba(255,255,255,0.05),
                inset 0 0 0 80px transparent,
                inset 0 0 0 81px rgba(255,255,255,0.05);
    pointer-events: none;
}
.sv-cta-left {
    z-index: 2;
    max-width: 480px;
}
.sv-cta-left h2 {
    color: #fff;
    font-size: 2.25rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}
.sv-cta-left p {
    color: #7796d1;
    font-size: 0.95rem;
}
.btn-brown {
    background: #632800;
    color: #F47920; 
    border: 1px solid rgba(244,121,32,0.3);
    padding: 1rem 2rem;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    z-index: 2;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}
.btn-brown:hover {
    background: #F47920;
    color: #fff;
}

@media (max-width: 1024px) {
    .sv-masonry { flex-direction: column; }
    .sv-col { width: 100%; display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
    .sv-col-1 { grid-template-columns: 1fr; } /* Keep col 1 full width on tablet */
    .services-hero-split { grid-template-columns: 1fr; }
    .sv-hero-image { padding:0; }
    .sv-hero-image img { transform: none; }
}
@media (max-width: 768px) {
    .sv-col { grid-template-columns: 1fr; }
    .sv-cta { flex-direction: column; text-align: center; padding: 60px 30px; }
    .sv-card-mining { flex-direction: column; text-align: center; }
}
