:root {
    --navy: #001F5B;
    --gold: #E87A1E;
    --dark: #1a1a1a;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', sans-serif;
    color: #222;
    background: #fff;
    padding-top: 0;
}

/* Utilities */
.text-navy { color: var(--navy); }
.text-gold { color: var(--gold); }
.bg-navy { background-color: var(--navy); }

/* ── NAVBAR ── */
.navbar {
    padding: 1.2rem 0;
    background: transparent !important;
    border-bottom: none;
    transition: background 0.3s, box-shadow 0.3s;
}
.navbar.scrolled {
    background: rgba(0, 0, 0, 0.95) !important;
    box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.navbar .nav-link {
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255,255,255,0.9) !important;
    margin-left: 1.8rem;
    letter-spacing: 0.03em;
    transition: color 0.2s;
}
.navbar .nav-link:hover { color: var(--gold) !important; }
.navbar-brand {
    font-size: 1.5rem;
    letter-spacing: 0.1em;
    color: #fff !important;
}
.navbar-brand .text-gold { color: var(--gold) !important; }

.lang-link {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 0 0.3rem;
    transition: color 0.2s;
}
.lang-link.active, .lang-link:hover { color: var(--gold); }

/* ── BUTTONS ── */
.btn-gold {
    background: var(--gold);
    color: #fff;
    border: none;
    padding: 1rem 2.2rem;
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 0.12em;
    border-radius: 3px;
    transition: background 0.3s;
    text-decoration: none;
    display: inline-block;
}
.btn-gold:hover { background: #d06a10; color: #fff; }

.btn-outline-navy {
    background: transparent;
    color: var(--navy);
    border: 2px solid var(--navy);
    padding: 0.8rem 2.2rem;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    border-radius: 2px;
    transition: all 0.3s;
    text-decoration: none;
}
.btn-outline-navy:hover { background: var(--navy); color: #fff; }

/* ── HERO ── */
.hero-section {
    background: linear-gradient(to right, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.4) 40%, rgba(0,0,0,0.1) 70%),
                url('/img/Banner.jpeg') center/cover no-repeat;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 8rem 0 6rem;
    color: #fff;
    position: relative;
}
.hero-eyebrow {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.5rem;
}
.hero-title {
    font-size: 3.8rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    color: #fff;
}
.hero-title .text-gold {
    color: var(--gold);
}
.hero-divider {
    width: 50px;
    height: 3px;
    background: var(--gold);
    margin-bottom: 1.5rem;
}
.hero-text {
    font-size: 1.2rem;
    line-height: 1.6;
    opacity: 0.9;
    max-width: 400px;
    font-weight: 300;
    margin-bottom: 0.5rem;
}

/* ── DIVISIONS CARDS ── */
.divisions-cards-section {
    padding: 4rem 0;
    background: #fff;
    margin-top: -2rem;
    position: relative;
    z-index: 2;
}
.division-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 4px;
    overflow: hidden;
    height: 100%;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transition: box-shadow 0.3s, transform 0.3s;
}
.division-card:hover {
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    transform: translateY(-4px);
}
.division-card-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border: 2px solid #ddd;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark);
    font-size: 1rem;
}
.division-card-body {
    display: flex;
    gap: 1rem;
    flex: 1;
}
.division-card-info {
    flex: 1;
    display: flex;
    flex-direction: column;
}
.division-card-info h5 {
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    color: var(--dark);
    margin-bottom: 0.4rem;
}
.division-card-info p {
    font-size: 0.82rem;
    color: #666;
    line-height: 1.5;
    margin-bottom: 0.6rem;
}
.division-card-link {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--gold);
    text-decoration: none;
    transition: color 0.2s;
    margin-top: auto;
}
.division-card-link:hover { color: #d06a10; }
.division-card-img {
    width: 120px;
    min-width: 120px;
    height: 100px;
    border-radius: 4px;
    overflow: hidden;
    align-self: center;
}
.division-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}
.division-card:hover .division-card-img img {
    transform: scale(1.05);
}

/* ── SECTIONS ── */
.section-padding { padding: 7rem 0; }
.bg-light-section { background: #f7f8fa; }

.label-tag {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
    display: block;
}
.label-light { color: rgba(232,122,30,0.9); }

.section-title {
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--navy);
    line-height: 1.2;
}
.body-text { font-size: 1rem; line-height: 1.8; color: #555; }

/* ── ABOUT STATS ── */
.stat-block { padding: 1.5rem 0.5rem; border-top: 2px solid var(--gold); }
.stat-label { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--navy); display: block; margin-bottom: 0.4rem; }
.stat-desc { font-size: 0.85rem; color: #777; margin: 0; }

/* ── PILLARS ── */
.pillar-card {
    padding: 2.5rem 2rem;
    border-top: 3px solid var(--gold);
    background: #fff;
    height: 100%;
    transition: box-shadow 0.3s;
}
.pillar-card:hover { box-shadow: 0 8px 30px rgba(0,0,0,0.08); }
.pillar-icon {
    width: 48px;
    height: 48px;
    background: rgba(232,122,30,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1.2rem;
    margin-bottom: 1.2rem;
}
.pillar-card h5 { font-weight: 700; color: var(--navy); margin-bottom: 0.75rem; }
.pillar-card p { font-size: 0.9rem; color: #666; margin: 0; }

/* ── INDUSTRIES ── */
.industries-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid #eee;
    border-left: 1px solid #eee;
}
.industry-item {
    padding: 2.5rem 2rem;
    border-right: 1px solid #eee;
    border-bottom: 1px solid #eee;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
    transition: background 0.3s;
}
.industry-item:hover { background: #f9f9f9; }
.industry-item i { font-size: 1.5rem; color: var(--gold); }
.industry-item span { font-size: 0.95rem; font-weight: 600; color: var(--navy); }

/* ── CONTACT ── */
.contact-section {
    background: var(--navy);
    padding: 7rem 0;
}
.contact-info-block { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: rgba(255,255,255,0.85);
    font-size: 1rem;
}
.contact-item i { font-size: 1.2rem; width: 24px; }

/* ── FOOTER ── */
.footer-section {
    background: #0a0a0a;
    color: #fff;
    padding: 4rem 0 2rem;
}
.footer-links li { margin-bottom: 0.6rem; }
.footer-links a { color: rgba(255,255,255,0.6); text-decoration: none; font-size: 0.9rem; transition: color 0.2s; }
.footer-links a:hover { color: var(--gold); }
.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.2);
    color: rgba(255,255,255,0.7);
    margin-right: 0.5rem;
    text-decoration: none;
    transition: all 0.3s;
}
.social-links a:hover { background: var(--gold); border-color: var(--gold); color: #fff; }

/* ══════════════════════════════════════════════
   SERVICES CARDS
   ══════════════════════════════════════════════ */
.svc-card {
    height: 100%;
    border: 1px solid #eee;
    border-radius: 4px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.3s;
}
.svc-card:hover {
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}
.svc-card-img {
    height: 200px;
    overflow: hidden;
}
.svc-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}
.svc-card:hover .svc-card-img img {
    transform: scale(1.04);
}
.svc-card-body {
    padding: 1.8rem 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.svc-card-brand {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1rem;
}
.svc-card-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    border: 2px solid var(--navy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy);
    font-size: 0.9rem;
}
.svc-card-label {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: #666;
    display: block;
    line-height: 1.2;
}
.svc-card-brand h5 {
    font-size: 0.9rem;
    font-weight: 800;
    color: var(--dark);
    margin: 0;
    letter-spacing: 0.03em;
}
.svc-card-subtitle {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--gold);
    line-height: 1.4;
    margin-bottom: 1rem;
}
.svc-card-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.3rem 1rem;
}
.svc-card-list li {
    font-size: 0.78rem;
    color: #555;
    padding-left: 0.9rem;
    position: relative;
    line-height: 1.6;
}
.svc-card-list li::before {
    content: '›';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: 700;
}
.svc-card-cta {
    margin-top: auto;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--gold);
    text-decoration: none;
    transition: color 0.2s;
}
.svc-card-cta:hover { color: #d06a10; }
.svc-card-cta span { margin-left: 0.4rem; }

/* ══════════════════════════════════════════════
   HOW WE WORK SECTION
   ══════════════════════════════════════════════ */
.howwework-section {
    background: var(--navy);
    padding: 4rem 0;
}
.howwework-title {
    color: #fff;
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1.3;
    margin: 0;
}
.hww-step {
    text-align: center;
    padding: 1rem 0.5rem;
}
.hww-number {
    display: block;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    color: var(--gold);
    margin-bottom: 0.3rem;
}
.hww-step h6 {
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    color: #fff;
    margin-bottom: 0.8rem;
}
.hww-icon {
    width: 50px;
    height: 50px;
    border: 2px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1.1rem;
    margin: 0 auto 0.8rem;
}
.hww-step p {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.5;
    margin: 0;
}

/* ── RESPONSIVE ── */
@media (max-width: 991px) {
    .industries-grid { grid-template-columns: repeat(2, 1fr); }
    .hero-title { font-size: 2.6rem; }
    .hero-section { padding: 7rem 0 4rem; }
}
@media (max-width: 768px) {
    .svc-card-list { grid-template-columns: 1fr; }
    .hero-title { font-size: 2.2rem; }
    .divisions-cards-section .row { flex-direction: column; }
}
@media (max-width: 576px) {
    .industries-grid { grid-template-columns: 1fr 1fr; }
    .section-padding { padding: 4rem 0; }
}
