/* ════════════════════════════════════════════════════════
   AxionSield – Premium Security Website CSS
   Color palette:
     --bg-deep:    #080c14   (darkest bg)
     --bg-dark:    #0d1117   (main bg)
     --bg-card:    #111827   (card surfaces)
     --bg-alt:     #161e2e   (alternating sections)
     --border:     #1f2d40
     --text:       #e2e8f0
     --muted:      #7a8fa6
     --accent:     #f59e0b   (gold / amber)
     --accent-2:   #3b82f6   (blue)
     --gradient:   from accent to accent-2
════════════════════════════════════════════════════════ */

/* ── 1. CSS VARIABLES ──────────────────────────────── */
:root {
    --bg-deep: #080c14;
    --bg-dark: #0d1117;
    --bg-card: #111827;
    --bg-alt: #161e2e;
    --border: #1f2d40;
    --text: #e2e8f0;
    --muted: #7a8fa6;
    --accent: #f59e0b;
    --accent-glow: rgba(245,158,11,.18);
    --accent-2: #3b82f6;
    --accent-2-glow: rgba(59,130,246,.15);
    --gradient: linear-gradient(135deg, #f59e0b, #3b82f6);
    --gradient-dark: linear-gradient(135deg, rgba(245,158,11,.15), rgba(59,130,246,.1));
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Inter', sans-serif;
    --radius: 14px;
    --radius-lg: 24px;
    --shadow: 0 4px 32px rgba(0,0,0,.45);
    --shadow-glow: 0 0 40px var(--accent-glow);
    --transition: .3s cubic-bezier(.4,0,.2,1);
}

/* ── 2. RESET & BASE ───────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
    background-color: var(--bg-dark);
    color: var(--text);
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.7;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: #fff;
    line-height: 1.25;
}

a { color: var(--accent); text-decoration: none; transition: var(--transition); }
a:hover { color: #fbbf24; }

img { max-width: 100%; }

/* ── 3. UTILITIES ──────────────────────────────────── */
.text-accent  { color: var(--accent) !important; }
.text-muted   { color: var(--muted) !important; }
.bg-dark-alt  { background-color: var(--bg-alt); }

.text-gradient {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.py-section { padding: 90px 0; }
.mb-section { margin-bottom: 56px; }

/* ── 4. SECTION LABELS & TITLES ────────────────────── */
.section-tag {
    display: inline-block;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--accent);
    background: var(--accent-glow);
    border: 1px solid rgba(245,158,11,.3);
    padding: .35rem .9rem;
    border-radius: 50px;
    margin-bottom: 1rem;
}
.section-tag.light { color: #fff; background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.25); }

.section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.7rem);
    font-weight: 800;
    margin-bottom: .75rem;
}

.section-subtitle, .section-body {
    color: var(--muted);
    font-size: 1.05rem;
    max-width: 640px;
}
.section-subtitle { margin: 0 auto; }

.divider-accent {
    border: none;
    height: 2px;
    background: var(--gradient);
    opacity: .5;
}

/* ── 5. TOP BAR ────────────────────────────────────── */
.topbar {
    background: var(--bg-deep);
    border-bottom: 1px solid var(--border);
    padding: .45rem 0;
    font-size: .82rem;
}
.topbar-link { color: var(--muted); transition: var(--transition); }
.topbar-link:hover { color: var(--accent); }
.topbar-social {
    color: var(--muted);
    font-size: .9rem;
    width: 28px; height: 28px;
    display: inline-flex; align-items: center; justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
}
.topbar-social:hover { color: #fff; background: var(--accent-glow); }

/* ── 6. NAVBAR ─────────────────────────────────────── */
.sg-navbar {
    background: rgba(8,12,20,.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: background var(--transition), box-shadow var(--transition);
}
.sg-navbar.scrolled {
    background: rgba(8,12,20,.97);
    box-shadow: 0 4px 30px rgba(0,0,0,.5);
}

/* Brand */
.navbar-brand { display: flex; align-items: center; gap: .6rem; text-decoration: none; }
.brand-logo {
    height: 78px;
    width: auto;
    display: block;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0,0,0,.35);
}

.footer-brand .brand-logo {
    height: 100px;
}
.brand-icon {
    font-size: 1.75rem;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.brand-text { font-family: var(--font-heading); font-size: 1.4rem; font-weight: 800; color: #fff; }
.brand-accent { color: var(--accent); -webkit-text-fill-color: var(--accent); }

/* Nav links */
.sg-navbar .nav-link {
    color: rgba(226,232,240,.8) !important;
    font-weight: 500;
    font-size: .9rem;
    padding: .5rem .75rem !important;
    border-radius: 8px;
    transition: var(--transition);
    position: relative;
}
.sg-navbar .nav-link:hover,
.sg-navbar .nav-link.active { color: #fff !important; background: var(--accent-glow); }

/* Dropdown */
.sg-dropdown {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: .5rem;
    min-width: 240px;
}
.sg-dropdown .dropdown-item {
    color: var(--text);
    border-radius: 8px;
    padding: .55rem .85rem;
    font-size: .88rem;
    transition: var(--transition);
}
.sg-dropdown .dropdown-item:hover { background: var(--accent-glow); color: var(--accent); }
.sg-dropdown .dropdown-divider { border-color: var(--border); }

/* CTA button in nav */
.btn-cta {
    background: var(--gradient);
    color: #fff !important;
    border: none;
    border-radius: 50px;
    padding: .6rem 1.4rem;
    font-weight: 600;
    font-size: .88rem;
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(245,158,11,.3);
}
.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(245,158,11,.45);
    color: #fff !important;
}

/* Toggler */
.navbar-toggler {
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: .4rem .6rem;
}
.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28226,232,240,0.8%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ── 7. HERO SECTION ───────────────────────────────── */
.hero-section {
    position: relative;
    min-height: 100vh;
    background: radial-gradient(ellipse at 60% 40%, rgba(59,130,246,.12) 0%, transparent 65%),
                radial-gradient(ellipse at 10% 80%, rgba(245,158,11,.1) 0%, transparent 55%),
                var(--bg-deep);
    overflow: hidden;
}

.hero-particles {
    position: absolute; inset: 0;
    pointer-events: none;
}

.hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(180deg, transparent 60%, var(--bg-dark) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(245,158,11,.12);
    border: 1px solid rgba(245,158,11,.3);
    color: var(--accent);
    font-size: .8rem;
    font-weight: 600;
    letter-spacing: .06em;
    padding: .45rem 1rem;
    border-radius: 50px;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
    line-height: 1.1;
    color: #fff;
    margin-bottom: 1.25rem;
}
.hero-title-accent {
    display: block;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    color: var(--muted);
    font-size: 1.1rem;
    max-width: 580px;
    line-height: 1.75;
}

.btn-hero-primary {
    background: var(--gradient);
    color: #fff !important;
    border: none;
    padding: .85rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: .95rem;
    transition: var(--transition);
    box-shadow: 0 6px 28px rgba(245,158,11,.35);
}
.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(245,158,11,.5);
}

.btn-hero-outline {
    background: transparent;
    color: #fff !important;
    border: 1.5px solid rgba(255,255,255,.3);
    padding: .85rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: .95rem;
    transition: var(--transition);
}
.btn-hero-outline:hover {
    background: rgba(255,255,255,.07);
    border-color: rgba(255,255,255,.6);
    transform: translateY(-2px);
}

.btn-primary-outline {
    background: transparent;
    color: var(--accent) !important;
    border: 1.5px solid var(--accent);
    padding: .6rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: .88rem;
    transition: var(--transition);
}
.btn-primary-outline:hover {
    background: var(--accent-glow);
    transform: translateY(-2px);
}

.hero-trust { gap: 1.5rem; }
.trust-item {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-size: .85rem;
    color: rgba(226,232,240,.7);
    font-weight: 500;
}
.trust-item i { font-size: 1rem; }

/* Hero Visual – animated shield */
.hero-visual {
    position: relative;
    width: 420px; height: 420px;
    display: flex; align-items: center; justify-content: center;
}
.hero-shield {
    width: 22rem;
    height: 22rem;
    display: flex;
    align-items: center;
    justify-content: center;
    filter: drop-shadow(0 0 40px rgba(245,158,11,.35));
    animation: shieldPulse 3s ease-in-out infinite;
    position: relative;
    z-index: 2;
}
.hero-shield img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}
@keyframes shieldPulse {
    0%, 100% { transform: scale(1); filter: drop-shadow(0 0 40px rgba(245,158,11,.35)); }
    50% { transform: scale(1.05); filter: drop-shadow(0 0 60px rgba(59,130,246,.45)); }
}

.hero-orbit {
    position: absolute;
    border-radius: 50%;
    border: 1px dashed rgba(255,255,255,.12);
    animation: orbitSpin linear infinite;
}
.orbit-1 { width: 200px; height: 200px; animation-duration: 12s; }
.orbit-2 { width: 300px; height: 300px; animation-duration: 20s; animation-direction: reverse; }
.orbit-3 { width: 400px; height: 400px; animation-duration: 30s; }
@keyframes orbitSpin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

.orbit-dot {
    position: absolute;
    width: 52px; height: 52px;
    border-radius: 50%;
    background: var(--bg-card);
    border: 1px solid var(--border);
    display: flex; align-items: center; justify-content: center;
    overflow: hidden;
    font-size: 1.1rem;
    color: var(--accent);
    box-shadow: var(--shadow);
}
.orbit-dot img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    display: block;
}
.dot-1 { top: 10px; left: 50%; transform: translateX(-50%); }
.dot-2 { right: 10px; top: 50%; transform: translateY(-50%); }
.dot-3 { bottom: 10px; left: 50%; transform: translateX(-50%); }
.dot-4 { left: 10px; top: 50%; transform: translateY(-50%); }
.dot-5 { top: 65px; right: 65px; }
.dot-6 { bottom: 65px; left: 65px; }

/* Scroll indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .4rem;
    color: var(--muted);
    font-size: .75rem;
    letter-spacing: .08em;
    text-transform: uppercase;
    animation: fadeInUp 1s .5s both;
}
.scroll-mouse {
    width: 22px; height: 36px;
    border: 2px solid rgba(255,255,255,.25);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    padding-top: 4px;
}
.scroll-wheel {
    width: 4px; height: 8px;
    background: var(--accent);
    border-radius: 4px;
    animation: scrollWheel 1.8s ease-in-out infinite;
}
@keyframes scrollWheel {
    0% { transform: translateY(0); opacity: 1; }
    100% { transform: translateY(12px); opacity: 0; }
}

/* ── 8. STATS STRIP ────────────────────────────────── */
.stats-strip {
    background: var(--bg-card);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 40px 0;
}
.stat-item { padding: 1rem; }
.stat-icon {
    font-size: 1.6rem;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: .4rem;
}
.stat-value {
    font-family: var(--font-heading);
    font-size: 2.4rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
}
.stat-label {
    font-size: .82rem;
    color: var(--muted);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: .06em;
    margin-top: .3rem;
}

/* ── 9. ABOUT SECTION ──────────────────────────────── */
.about-image-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 16px;
    position: relative;
}
.about-img-main { grid-column: 1 / 2; grid-row: 1 / 3; }
.about-img-side  { display: flex; flex-direction: column; gap: 16px; }

.img-placeholder {
    background: var(--gradient-dark);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: .75rem;
    color: var(--muted);
    text-align: center;
    font-size: .8rem;
    font-weight: 500;
    overflow: hidden;
    position: relative;
}
.img-placeholder::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 0%, rgba(245,158,11,.08), transparent 70%);
}
.img-placeholder i { font-size: 2.5rem; color: var(--accent); opacity: .6; }
.large-img { height: 340px; }
.small-img  { height: 160px; }

.about-badge-float {
    position: absolute;
    bottom: -16px;
    left: -16px;
    z-index: 3;
}
.float-badge {
    background: var(--gradient);
    border-radius: var(--radius);
    padding: 1rem 1.25rem;
    text-align: center;
    box-shadow: 0 8px 32px rgba(245,158,11,.35);
}
.fb-number { font-size: 1.9rem; font-weight: 900; color: #fff; line-height: 1; }
.fb-text   { font-size: .72rem; font-weight: 600; color: rgba(255,255,255,.85); margin-top: .2rem; }

.about-features { display: flex; flex-direction: column; gap: .75rem; }
.af-item {
    display: flex;
    align-items: center;
    gap: .75rem;
    font-size: .92rem;
    color: var(--text);
}
.af-item i { font-size: 1rem; flex-shrink: 0; }

/* ── 10. SERVICE CARDS ─────────────────────────────── */
.service-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    height: 100%;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--gradient);
    transform: scaleX(0);
    transition: var(--transition);
    transform-origin: left;
}
.service-card:hover { transform: translateY(-6px); border-color: rgba(245,158,11,.3); box-shadow: 0 20px 60px rgba(0,0,0,.4); }
.service-card:hover::before { transform: scaleX(1); }

/* ── Service card image ─────────────────────────────── */
.sc-img-wrap {
    margin: -2rem -2rem 1.5rem -2rem;
    overflow: hidden;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    position: relative;
    aspect-ratio: 16 / 9;
}
.sc-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .55s cubic-bezier(.4,0,.2,1);
}
.service-card:hover .sc-img { transform: scale(1.07); }

.sc-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(8,12,20,.75) 0%, transparent 55%);
    display: flex;
    align-items: flex-end;
    padding: 1rem 1.25rem;
    transition: var(--transition);
}
.sc-img-icon {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: var(--accent);
    color: #000;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 18px rgba(245,158,11,.45);
    transition: var(--transition);
}
.service-card:hover .sc-img-overlay { background: linear-gradient(to top, rgba(8,12,20,.85) 0%, transparent 60%); }
.service-card:hover .sc-img-icon { transform: scale(1.1) rotate(-5deg); }

.sc-icon {
    width: 60px; height: 60px;
    border-radius: 14px;
    background: var(--accent-glow);
    border: 1px solid rgba(245,158,11,.25);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.6rem;
    color: var(--accent);
    margin-bottom: 1.25rem;
    transition: var(--transition);
}
.service-card:hover .sc-icon { background: var(--accent); color: #fff; }

.sc-icon-lg {
    width: 72px; height: 72px;
    border-radius: 16px;
    background: var(--accent-glow);
    border: 1px solid rgba(245,158,11,.25);
    display: flex; align-items: center; justify-content: center;
    font-size: 2rem;
    color: var(--accent);
    transition: var(--transition);
}
.service-card:hover .sc-icon-lg { background: var(--accent); color: #fff; }

.sc-title { font-size: 1.15rem; font-weight: 700; color: #fff; margin-bottom: .6rem; }
.sc-desc  { font-size: .88rem; color: var(--muted); line-height: 1.65; }
.sc-link  { color: var(--accent); font-size: .85rem; font-weight: 600; display: inline-flex; align-items: center; margin-top: 1rem; }
.sc-link:hover { color: #fbbf24; gap: .25rem; }

.sc-features {
    list-style: none;
    padding: 0;
    margin: 1rem 0 0;
    display: flex;
    flex-direction: column;
    gap: .45rem;
}
.sc-features li { font-size: .85rem; color: var(--muted); display: flex; align-items: center; }

/* ── 11. WHY CHOOSE US ─────────────────────────────── */
.why-grid { display: flex; flex-direction: column; gap: 1.25rem; }
.why-item {
    display: flex;
    gap: 1rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.25rem;
    transition: var(--transition);
}
.why-item:hover { border-color: rgba(245,158,11,.3); background: rgba(245,158,11,.04); }
.wi-icon {
    width: 48px; height: 48px; flex-shrink: 0;
    border-radius: 12px;
    background: var(--accent-glow);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem;
    color: var(--accent);
}
.wi-content h5 { font-size: .95rem; font-weight: 700; margin-bottom: .3rem; color: #fff; }
.wi-content p  { font-size: .82rem; color: var(--muted); margin: 0; }

.why-visual {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    padding: 2rem;
}
.wv-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: var(--transition);
}
.wv-card:hover { transform: translateY(-4px); border-color: rgba(245,158,11,.3); box-shadow: var(--shadow-glow); }
.wv-card i { font-size: 2.2rem; color: var(--accent); flex-shrink: 0; }
.wv-title { font-size: .75rem; color: var(--muted); font-weight: 500; text-transform: uppercase; letter-spacing: .06em; }
.wv-value { font-size: 1.25rem; font-weight: 800; color: #fff; margin-top: .2rem; }
.wv-card-2 { background: var(--gradient-dark); border-color: rgba(59,130,246,.25); }
.wv-card-4 { background: var(--gradient-dark); border-color: rgba(245,158,11,.2); }

/* ── 12. INDUSTRIES ────────────────────────────────── */
.industries-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}
.industry-tile {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.75rem 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .75rem;
    text-align: center;
    font-size: .88rem;
    font-weight: 600;
    color: var(--text);
    transition: var(--transition);
    cursor: default;
}
.industry-tile i { font-size: 1.8rem; color: var(--accent); }
.industry-tile:hover { background: var(--accent-glow); border-color: rgba(245,158,11,.35); transform: translateY(-4px); }

/* ── 13. OUR CLIENTS ──────────────────────────────── */
.section-clients {
    position: relative;
    background: radial-gradient(ellipse at 20% 0%, rgba(59,130,246,.08) 0%, transparent 55%), var(--bg-dark);
}

.clients-name-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}

.client-name-chip {
    background: linear-gradient(180deg, rgba(255,255,255,.02), rgba(255,255,255,.01));
    border: 1px solid var(--border);
    border-radius: 999px;
    padding: .72rem 1rem;
    text-align: center;
    font-size: .84rem;
    color: var(--text);
    font-weight: 600;
    letter-spacing: .02em;
    transition: var(--transition);
}

.client-name-chip:hover {
    transform: translateY(-2px);
    border-color: rgba(245,158,11,.35);
    box-shadow: 0 10px 26px rgba(0,0,0,.28);
    background: rgba(245,158,11,.08);
}

/* ── 14. TESTIMONIALS ──────────────────────────────── */
.testimonial-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transition: var(--transition);
}
.testimonial-card:hover { border-color: rgba(245,158,11,.3); transform: translateY(-4px); }
.tc-stars { color: var(--accent); font-size: .9rem; letter-spacing: 2px; }
.tc-quote {
    font-size: .9rem;
    color: var(--text);
    font-style: italic;
    line-height: 1.7;
    flex: 1;
}
.tc-author { display: flex; align-items: center; gap: .85rem; margin-top: .5rem; }
.tc-avatar {
    width: 46px; height: 46px; border-radius: 50%;
    background: var(--gradient);
    display: flex; align-items: center; justify-content: center;
    font-size: .9rem; font-weight: 800; color: #fff; flex-shrink: 0;
}
.tc-name { font-size: .9rem; font-weight: 700; color: #fff; }
.tc-role { font-size: .76rem; color: var(--muted); margin-top: .1rem; }

/* ── 15. CTA SECTION ───────────────────────────────── */
.section-cta {
    position: relative;
    padding: 90px 0;
    background: radial-gradient(ellipse at center, rgba(245,158,11,.12) 0%, transparent 70%), var(--bg-deep);
    overflow: hidden;
}
.cta-bg-overlay {
    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.02'%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");
}
.cta-content { position: relative; z-index: 1; }
.cta-title {
    font-size: clamp(1.9rem, 4vw, 3rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: .75rem;
}
.cta-subtitle { color: var(--muted); font-size: 1.05rem; max-width: 560px; margin: 0 auto; }

/* ── 16. PAGE HERO (inner pages) ───────────────────── */
.page-hero {
    position: relative;
    padding: 110px 0 80px;
    background: radial-gradient(ellipse at 50% 0%, rgba(59,130,246,.1) 0%, transparent 60%), var(--bg-deep);
    overflow: hidden;
}
.page-hero-sm { padding: 80px 0 60px; }
.page-hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(180deg, transparent 60%, var(--bg-dark) 100%);
}
.page-hero-content { position: relative; z-index: 1; }
.page-hero-title { font-size: clamp(2.2rem, 5vw, 3.5rem); font-weight: 900; color: #fff; }
.page-hero-subtitle { color: var(--muted); font-size: 1.05rem; max-width: 560px; margin: .75rem auto 0; }

.breadcrumb { background: transparent; padding: 0; margin: 0; }
.breadcrumb-item + .breadcrumb-item::before { color: var(--muted); }
.breadcrumb-item a { color: var(--accent); }
.breadcrumb-item.active { color: var(--muted); }

/* ── 17. SERVICE DETAIL PAGE ───────────────────────── */
.service-detail-icon {
    width: 90px; height: 90px;
    border-radius: 20px;
    background: var(--accent-glow);
    border: 1px solid rgba(245,158,11,.3);
    display: flex; align-items: center; justify-content: center;
    font-size: 2.6rem;
    color: var(--accent);
}
.feature-tick {
    display: flex;
    align-items: center;
    gap: .75rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: .75rem 1rem;
    font-size: .88rem;
    color: var(--text);
    transition: var(--transition);
}
.feature-tick:hover { border-color: rgba(245,158,11,.3); }
.feature-tick i { font-size: 1rem; flex-shrink: 0; }

.detail-sidebar { position: sticky; top: 90px; }
.sidebar-cta-box {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
}
.sidebar-cta-box h5 { color: #fff; font-weight: 700; margin-bottom: .5rem; }
.sidebar-cta-box p  { font-size: .85rem; color: var(--muted); margin-bottom: 1rem; }

.sidebar-guarantee {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: .75rem;
}
.guarantee-item { display: flex; align-items: center; gap: .75rem; font-size: .85rem; color: var(--text); }
.guarantee-item i { font-size: 1rem; flex-shrink: 0; }

/* ── 17. ABOUT PAGE ────────────────────────────────── */
.story-visual {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}
.story-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.5rem;
    transition: var(--transition);
}
.story-card:hover { border-color: rgba(245,158,11,.35); transform: translateY(-4px); }
.story-card i { font-size: 1.5rem; margin-bottom: .6rem; display: block; }
.story-year { font-size: 1.3rem; font-weight: 800; color: #fff; }
.story-desc { font-size: .8rem; color: var(--muted); margin-top: .2rem; }

.mvv-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    height: 100%;
    transition: var(--transition);
}
.mvv-card:hover { border-color: rgba(245,158,11,.3); transform: translateY(-4px); }
.mvv-card-accent {
    background: var(--gradient-dark);
    border-color: rgba(245,158,11,.25);
}
.mvv-icon {
    width: 56px; height: 56px;
    border-radius: 14px;
    background: var(--accent-glow);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem;
    color: var(--accent);
    margin-bottom: 1.25rem;
}
.mvv-title { font-size: 1.15rem; font-weight: 700; margin-bottom: .75rem; }
.mvv-text  { font-size: .88rem; color: var(--muted); line-height: 1.7; }

.cert-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem 1rem;
    text-align: center;
    transition: var(--transition);
}
.cert-card:hover { border-color: rgba(245,158,11,.4); transform: translateY(-4px); background: var(--accent-glow); }
.cert-card i { font-size: 2.4rem; color: var(--accent); display: block; margin-bottom: .75rem; }
.cert-name { font-size: 1rem; font-weight: 700; color: #fff; }
.cert-desc { font-size: .78rem; color: var(--muted); margin-top: .25rem; }

.team-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem 1.5rem;
    text-align: center;
    transition: var(--transition);
}
.team-card:hover { border-color: rgba(245,158,11,.3); transform: translateY(-4px); }
.team-avatar {
    width: 80px; height: 80px;
    border-radius: 50%;
    background: var(--gradient);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem; font-weight: 800; color: #fff;
    margin: 0 auto 1.25rem;
    box-shadow: 0 4px 20px rgba(245,158,11,.3);
}
.team-name { font-size: 1rem; font-weight: 700; color: #fff; margin-bottom: .2rem; }
.team-role { font-size: .78rem; color: var(--accent); font-weight: 600; letter-spacing: .04em; margin-bottom: .75rem; }
.team-bio  { font-size: .82rem; color: var(--muted); line-height: 1.6; }

/* ── 18. CONTACT PAGE ──────────────────────────────── */
.contact-info-block { display: flex; flex-direction: column; gap: 1rem; }
.contact-info-card {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.25rem;
    transition: var(--transition);
}
.contact-info-card:hover { border-color: rgba(245,158,11,.3); }
.cic-icon {
    width: 44px; height: 44px; flex-shrink: 0;
    border-radius: 12px;
    background: var(--accent-glow);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem; color: var(--accent);
}
.cic-body h6 { font-size: .85rem; font-weight: 700; color: #fff; margin-bottom: .3rem; }
.cic-body p  { font-size: .82rem; color: var(--muted); margin: 0; line-height: 1.6; }
.cic-body a  { color: var(--muted); }
.cic-body a:hover { color: var(--accent); }

.contact-offices { padding: 1.25rem; background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); }
.office-item { font-size: .84rem; color: var(--muted); padding: .4rem 0; border-bottom: 1px solid var(--border); }
.office-item:last-child { border: none; }

.contact-form-wrap {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
}
.contact-form-title { font-size: 1.5rem; font-weight: 700; color: #fff; margin-bottom: .25rem; }

.sg-input {
    background: var(--bg-alt) !important;
    border: 1px solid var(--border) !important;
    color: var(--text) !important;
    border-radius: 10px !important;
    padding: .75rem 1rem !important;
    font-size: .9rem !important;
    transition: var(--transition) !important;
}
.sg-input:focus {
    border-color: var(--accent) !important;
    box-shadow: 0 0 0 3px var(--accent-glow) !important;
    outline: none;
}
.sg-input::placeholder { color: rgba(122,143,166,.5) !important; }
.form-label { color: var(--text); font-size: .85rem; font-weight: 500; margin-bottom: .4rem; }

.contact-success {
    background: var(--bg-card);
    border: 1px solid rgba(34,197,94,.3);
    border-radius: var(--radius-lg);
    padding: 3rem;
    text-align: center;
}
.success-icon { font-size: 4rem; color: #22c55e; margin-bottom: 1rem; }
.contact-success h3 { color: #fff; font-size: 1.6rem; margin-bottom: 1rem; }
.contact-success p { color: var(--muted); font-size: .95rem; }
.contact-success a { color: var(--accent); }

/* ── 19. FOOTER ────────────────────────────────────── */
.sg-footer { background: var(--bg-deep); border-top: 1px solid var(--border); }

.footer-top { padding: 70px 0 50px; }

.footer-brand { display: flex; align-items: center; gap: .6rem; }
.footer-tagline { font-size: .87rem; color: var(--muted); line-height: 1.7; max-width: 320px; }

.footer-social-btn {
    width: 38px; height: 38px;
    border-radius: 50%;
    background: var(--bg-card);
    border: 1px solid var(--border);
    display: flex; align-items: center; justify-content: center;
    font-size: .95rem;
    color: var(--muted);
    transition: var(--transition);
}
.footer-social-btn:hover { background: var(--accent); color: #fff; border-color: var(--accent); }

.footer-heading {
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 1.25rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: .6rem;
}
.footer-links a {
    font-size: .85rem;
    color: var(--muted);
    display: flex; align-items: center; gap: .4rem;
    transition: var(--transition);
}
.footer-links a:hover { color: var(--accent); padding-left: .25rem; }

.footer-contact-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: .85rem;
}
.footer-contact-list li {
    display: flex;
    gap: .75rem;
    align-items: flex-start;
    font-size: .84rem;
    color: var(--muted);
}
.footer-contact-list i { color: var(--accent); font-size: .9rem; flex-shrink: 0; margin-top: .15rem; }
.footer-contact-list a { color: var(--muted); }
.footer-contact-list a:hover { color: var(--accent); }

.footer-bottom {
    border-top: 1px solid var(--border);
    padding: 1.25rem 0;
    font-size: .8rem;
    color: var(--muted);
}
.footer-bottom a { color: var(--muted); transition: var(--transition); }
.footer-bottom a:hover { color: var(--accent); }

/* ── 20. ANIMATIONS ────────────────────────────────── */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ── 21. SCROLLBAR ─────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-deep); }
::-webkit-scrollbar-thumb { background: var(--border); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--accent); }

/* ── 22. RESPONSIVE ────────────────────────────────── */
@media (max-width: 991px) {
    .brand-logo { height: 60px; }
    .footer-brand .brand-logo { height: 76px; }
    .py-section { padding: 60px 0; }
    .hero-section { min-height: auto; padding: 80px 0; }
    .industries-grid { grid-template-columns: repeat(2, 1fr); }
    .clients-name-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .why-visual { grid-template-columns: 1fr 1fr; padding: .5rem; }
    .about-image-grid { grid-template-columns: 1fr; }
    .about-img-side { flex-direction: row; }
    .about-badge-float { bottom: -10px; left: 0; }
    .story-visual { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 575px) {
    .stats-strip .stat-item { border-bottom: 1px solid var(--border); }
    .industries-grid { grid-template-columns: repeat(2, 1fr); gap: .75rem; }
    .clients-name-grid { grid-template-columns: 1fr; gap: .7rem; }
    .why-visual { grid-template-columns: 1fr; }
    .story-visual { grid-template-columns: 1fr; }
    .wv-card { flex-direction: column; text-align: center; }
    .contact-form-wrap { padding: 1.5rem; }
    .hero-actions { flex-direction: column; }
    .hero-actions .btn { width: 100%; justify-content: center; }
}

/* ══════════════════════════════════════════════════════
   PAGE HERO EXTRAS (breadcrumb / sub-line)
══════════════════════════════════════════════════════ */
.page-hero-sub {
    color: var(--muted);
    font-size: 1.05rem;
    max-width: 640px;
    margin: .9rem auto 0;
}
.page-hero-inner { position: relative; z-index: 1; }

.sg-breadcrumb { background: transparent; }
.sg-breadcrumb .breadcrumb-item a { color: var(--accent); }
.sg-breadcrumb .breadcrumb-item.active { color: var(--muted); }
.sg-breadcrumb .breadcrumb-item + .breadcrumb-item::before { color: var(--muted); }

/* ══════════════════════════════════════════════════════
   GALLERY FILTER BUTTONS
══════════════════════════════════════════════════════ */
.gallery-filters { row-gap: .6rem; }

.gallery-filter-btn {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    padding: .45rem 1.1rem;
    border-radius: 50px;
    border: 1px solid var(--border);
    background: var(--bg-card);
    color: var(--muted);
    font-size: .82rem;
    font-weight: 600;
    font-family: var(--font-heading);
    letter-spacing: .04em;
    cursor: pointer;
    transition: var(--transition);
}
.gallery-filter-btn:hover {
    border-color: var(--accent);
    color: var(--accent);
    background: var(--accent-glow);
}
.gallery-filter-btn.active {
    background: var(--accent);
    border-color: var(--accent);
    color: #000;
}

/* ══════════════════════════════════════════════════════
   GALLERY GRID
══════════════════════════════════════════════════════ */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.25rem;
}

.gallery-item { transition: var(--transition); }

.gallery-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
}
.gallery-card:hover {
    border-color: var(--accent);
    transform: translateY(-4px);
    box-shadow: 0 12px 36px rgba(0,0,0,.5), var(--shadow-glow);
}

.gallery-img-wrap {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4 / 3;
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .5s cubic-bezier(.4,0,.2,1);
}
.gallery-card:hover .gallery-img { transform: scale(1.06); }

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.55);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}
.gallery-card:hover .gallery-overlay { opacity: 1; }

.gallery-zoom-btn {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 2px solid var(--accent);
    background: rgba(245,158,11,.15);
    color: var(--accent);
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    backdrop-filter: blur(4px);
}
.gallery-zoom-btn:hover {
    background: var(--accent);
    color: #000;
    transform: scale(1.1);
}

.gallery-caption {
    padding: .85rem 1rem;
    font-size: .82rem;
    color: var(--muted);
    line-height: 1.45;
    border-top: 1px solid var(--border);
}

/* ══════════════════════════════════════════════════════
   LIGHTBOX MODAL
══════════════════════════════════════════════════════ */
.gallery-modal .modal-dialog { max-width: 1100px; }

.gallery-modal-content {
    background: var(--bg-deep);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    position: relative;
    overflow: hidden;
}

.gallery-modal-body {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem;
}

.gallery-modal-img {
    max-height: 72vh;
    max-width: 100%;
    object-fit: contain;
    border-radius: var(--radius);
    display: block;
}

.gallery-modal-caption {
    color: var(--muted);
    font-size: .9rem;
    text-align: center;
    padding: .9rem .5rem .5rem;
}

.gallery-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 10;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid var(--border);
    background: var(--bg-card);
    color: var(--text);
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}
.gallery-modal-close:hover { background: var(--accent); color: #000; border-color: var(--accent); }

.gallery-modal-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid var(--border);
    background: var(--bg-card);
    color: var(--text);
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}
.gallery-modal-nav:hover:not(:disabled) { background: var(--accent); color: #000; border-color: var(--accent); }
.gallery-modal-nav:disabled { opacity: .3; cursor: default; }
.gallery-modal-prev { left: 1rem; }
.gallery-modal-next { right: 1rem; }

/* ══════════════════════════════════════════════════════
   CTA STRIP (shared across pages)
══════════════════════════════════════════════════════ */
.cta-strip {
    background: linear-gradient(135deg, rgba(245,158,11,.08) 0%, rgba(59,130,246,.06) 100%);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

/* ── Gallery responsive ── */
@media (max-width: 576px) {
    .gallery-grid { grid-template-columns: 1fr; }
    .gallery-modal-nav { display: none; }
}
