/* ===== RESET & BASE ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #1a3a5c;
    --accent: #e87722;
    --light: #f5f7fa;
    --text: #222;
    --muted: #666;
    --border: #dce3eb;
    --white: #fff;
    --radius: 8px;
    --shadow: 0 4px 24px rgba(26,58,92,.10);
    --max-width: 1140px;
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Segoe UI', Arial, sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: var(--text);
    background: var(--white);
}

img { display: block; max-width: 100%; }
a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ===== LAYOUT ===== */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== HEADER / NAV ===== */
header {
    background: var(--primary);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 12px rgba(0,0,0,.18);
}

nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
    height: 68px;
}

.logo {
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: var(--white);
    text-transform: uppercase;
}

.logo span { color: var(--accent); }

nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

nav ul a {
    color: rgba(255,255,255,.85);
    font-size: .95rem;
    font-weight: 500;
    letter-spacing: .3px;
    transition: color .2s;
}

nav ul a:hover,
nav ul a.active {
    color: var(--accent);
    text-decoration: none;
}

/* ===== HERO ===== */
.hero {
    background: linear-gradient(135deg, #1a3a5c 0%, #0d2340 60%, #112d50 100%);
    color: var(--white);
    padding: 100px 24px 90px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: .5;
}

.hero-inner { position: relative; z-index: 1; max-width: 800px; margin: 0 auto; }

.hero-badge {
    display: inline-block;
    background: rgba(232,119,34,.18);
    border: 1px solid rgba(232,119,34,.4);
    color: #f0a060;
    font-size: .8rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 40px;
    margin-bottom: 24px;
}

.hero h1 {
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.15rem;
    color: rgba(255,255,255,.78);
    margin-bottom: 36px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: var(--radius);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all .2s;
    text-decoration: none;
}

.btn-primary {
    background: var(--accent);
    color: var(--white);
}

.btn-primary:hover {
    background: #d06918;
    text-decoration: none;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(232,119,34,.35);
}

.btn-outline {
    border: 2px solid rgba(255,255,255,.5);
    color: var(--white);
    margin-left: 12px;
}

.btn-outline:hover {
    border-color: var(--white);
    background: rgba(255,255,255,.08);
    text-decoration: none;
}

/* ===== SECTION WRAPPER ===== */
.section { padding: 80px 24px; }
.section-alt { background: var(--light); }

.section-label {
    display: block;
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 10px;
}

.section-title {
    font-size: clamp(1.6rem, 3.5vw, 2.4rem);
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 16px;
    line-height: 1.25;
}

.section-sub {
    color: var(--muted);
    max-width: 600px;
    margin-bottom: 48px;
}

.center { text-align: center; }
.center .section-sub { margin-left: auto; margin-right: auto; }

/* ===== SERVICES GRID ===== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.svc-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px 28px;
    transition: box-shadow .25s, transform .25s;
}

.svc-card:hover {
    box-shadow: var(--shadow);
    transform: translateY(-3px);
}

.svc-icon {
    width: 52px;
    height: 52px;
    background: rgba(232,119,34,.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.svc-icon svg { width: 26px; height: 26px; fill: var(--accent); }

.svc-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
}

.svc-card p { color: var(--muted); font-size: .95rem; }

/* ===== INDUSTRIES ===== */
.industries-list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 32px;
}

.industry-tag {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 40px;
    padding: 8px 20px;
    font-size: .88rem;
    color: var(--primary);
    font-weight: 500;
}

/* ===== WHY US ===== */
.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
    margin-top: 48px;
}

.why-item {
    text-align: center;
    padding: 32px 20px;
    border-radius: var(--radius);
    background: var(--white);
    border: 1px solid var(--border);
}

.why-num {
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 8px;
}

.why-item h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 8px;
}

.why-item p { font-size: .9rem; color: var(--muted); }

/* ===== CTA BANNER ===== */
.cta-banner {
    background: linear-gradient(135deg, var(--primary), #0d2340);
    color: var(--white);
    text-align: center;
    padding: 72px 24px;
}

.cta-banner h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); margin-bottom: 14px; }
.cta-banner p { color: rgba(255,255,255,.75); margin-bottom: 32px; font-size: 1.05rem; }

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
    background: var(--primary);
    color: var(--white);
    padding: 64px 24px 56px;
    text-align: center;
}

.page-hero h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); margin-bottom: 12px; }
.page-hero p { color: rgba(255,255,255,.72); font-size: 1.05rem; }

/* ===== CONTACT ===== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

@media (max-width: 720px) { .contact-grid { grid-template-columns: 1fr; } }

.contact-info-block h3 {
    font-size: 1.35rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.contact-item {
    display: flex;
    gap: 16px;
    margin-bottom: 20px;
    align-items: flex-start;
}

.contact-item-icon {
    width: 40px;
    height: 40px;
    background: rgba(232,119,34,.1);
    border-radius: 8px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-item-icon svg { width: 20px; height: 20px; fill: var(--accent); }

.contact-item-text strong {
    display: block;
    color: var(--primary);
    font-size: .85rem;
    text-transform: uppercase;
    letter-spacing: .8px;
    margin-bottom: 2px;
}

.contact-item-text span, .contact-item-text a {
    color: var(--muted);
    font-size: .95rem;
}

/* ===== POLICY / TERMS ===== */
.policy-body {
    max-width: 820px;
    margin: 0 auto;
    padding: 72px 24px;
}

.policy-body h1 {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 8px;
}

.policy-body .meta {
    color: var(--muted);
    font-size: .9rem;
    margin-bottom: 40px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border);
}

.policy-body h2 {
    font-size: 1.25rem;
    color: var(--primary);
    margin-top: 40px;
    margin-bottom: 12px;
}

.policy-body p { margin-bottom: 14px; color: #444; }
.policy-body ul { margin: 12px 0 14px 24px; }
.policy-body ul li { margin-bottom: 6px; color: #444; }

/* ===== ABOUT ===== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

@media (max-width: 768px) { .about-grid { grid-template-columns: 1fr; } }

.about-visual {
    background: linear-gradient(135deg, #1a3a5c 0%, #0d2340 100%);
    border-radius: 12px;
    padding: 48px 40px;
    color: var(--white);
}

.about-visual h3 { font-size: 1.5rem; margin-bottom: 16px; }
.about-visual p { color: rgba(255,255,255,.78); margin-bottom: 24px; }

.stat-row {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.stat { flex: 1; min-width: 80px; }
.stat .num { font-size: 2rem; font-weight: 800; color: var(--accent); }
.stat .lbl { font-size: .85rem; color: rgba(255,255,255,.65); }

.about-text .section-sub { max-width: 100%; }

.check-list { list-style: none; margin: 20px 0; }
.check-list li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    margin-bottom: 12px;
    font-size: .97rem;
    color: #444;
}

.check-list li::before {
    content: '';
    width: 20px;
    height: 20px;
    min-width: 20px;
    background: var(--accent);
    border-radius: 50%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 14px;
    margin-top: 2px;
}

/* ===== FOOTER ===== */
footer {
    background: #0d1f33;
    color: rgba(255,255,255,.65);
    padding: 48px 24px 28px;
}

.footer-inner {
    max-width: var(--max-width);
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 36px;
    border-bottom: 1px solid rgba(255,255,255,.08);
    margin-bottom: 28px;
}

@media (max-width: 720px) { .footer-grid { grid-template-columns: 1fr; } }

.footer-brand .logo { color: var(--white); margin-bottom: 12px; font-size: 1rem; }
.footer-brand p { font-size: .9rem; line-height: 1.6; }

.footer-col h4 {
    color: var(--white);
    font-size: .9rem;
    font-weight: 600;
    letter-spacing: .5px;
    margin-bottom: 16px;
}

.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a { color: rgba(255,255,255,.6); font-size: .9rem; }
.footer-col ul li a:hover { color: var(--accent); text-decoration: none; }

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    font-size: .85rem;
}

.footer-links { display: flex; gap: 20px; }
.footer-links a { color: rgba(255,255,255,.55); }
.footer-links a:hover { color: var(--accent); text-decoration: none; }

/* ===== DIVIDER ===== */
.divider { border: none; border-top: 1px solid var(--border); margin: 40px 0; }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    nav ul { gap: 1.2rem; }
    .hero { padding: 72px 20px 64px; }
    .section { padding: 56px 20px; }
    .btn-outline { display: none; }
}

@media (max-width: 520px) {
    nav ul { display: none; }
    .logo { font-size: 1rem; }
}
