/* ============================================================
 * AKSON Security & Manpower Solutions
 * Master Corporate Stylesheet (css/style.css)
 * 
 * Technology: Pure CSS3 (No Bootstrap, No Tailwind)
 * Architecture: BEM & Modular Utility Design System
 * Domain: aksonsecurity.com
 * ============================================================ */

/* --- 1. CSS VARIABLES & THEME TOKENS --- */
:root {
    /* Color Palette */
    --primary-navy: #0B1B3D;
    --primary-navy-dark: #071229;
    --secondary-blue: #162B56;
    --accent-gold: #C5A059;
    --accent-gold-hover: #B08C45;
    --accent-blue: #2563EB;
    --accent-blue-hover: #1D4ED8;
    
    /* Background Colors */
    --bg-white: #FFFFFF;
    --bg-light: #F8FAFC;
    --bg-subtle: #F1F5F9;
    --bg-dark: #0B1B3D;
    
    /* Typography Colors */
    --text-primary: #0F172A;
    --text-secondary: #475569;
    --text-muted: #64748B;
    --text-light: #F8FAFC;
    
    /* Borders & Dividers */
    --border-color: #E2E8F0;
    --border-dark: #1E293B;
    
    /* Shadows & Elevations */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(11, 27, 61, 0.08), 0 2px 4px -1px rgba(11, 27, 61, 0.04);
    --shadow-lg: 0 10px 15px -3px rgba(11, 27, 61, 0.1), 0 4px 6px -2px rgba(11, 27, 61, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(11, 27, 61, 0.12), 0 10px 10px -5px rgba(11, 27, 61, 0.04);
    
    /* Border Radii */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-full: 9999px;
    
    /* Fonts */
    --font-heading: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    
    /* Transitions */
    --transition-fast: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-normal: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--text-primary);
    background-color: var(--bg-white);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Headings */
h1, h2, h3, h4, h5, h6,
.heading-xl, .heading-lg, .heading-md, .heading-sm {
    font-family: var(--font-heading);
    color: var(--primary-navy);
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 0.75rem;
}

h1, .heading-xl { font-size: 2.75rem; letter-spacing: -0.02em; }
h2, .heading-lg { font-size: 2.25rem; letter-spacing: -0.01em; }
h3, .heading-md { font-size: 1.75rem; }
h4, .heading-sm { font-size: 1.35rem; }
h5 { font-size: 1.15rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* --- 3. CONTAINERS --- */
.container {
    width: 100%;
    max-width: 1240px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.container-fluid {
    width: 100%;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.container-sm {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

/* --- 4. SECTIONS & BACKGROUNDS --- */
.section {
    padding: 5rem 0;
    position: relative;
}

.section-sm {
    padding: 3rem 0;
}

.section-lg {
    padding: 7rem 0;
}

.bg-white { background-color: var(--bg-white); }
.bg-light { background-color: var(--bg-light); }
.bg-subtle { background-color: var(--bg-subtle); }
.bg-dark { 
    background-color: var(--primary-navy); 
    color: var(--text-light); 
}

.bg-dark h1, .bg-dark h2, .bg-dark h3, 
.bg-dark h4, .bg-dark h5, .bg-dark h6 {
    color: var(--bg-white);
}

.bg-dark p {
    color: #94A3B8;
}

/* Section Headers */
.section-header {
    text-align: center;
    max-width: 750px;
    margin: 0 auto 3.5rem auto;
}

.section-title {
    font-size: 2.25rem;
    color: var(--primary-navy);
    margin-bottom: 1rem;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background-color: var(--accent-gold);
    margin: 0.75rem auto 0 auto;
    border-radius: var(--radius-full);
}

.section-header.text-left {
    text-align: left;
    margin-left: 0;
}

.section-header.text-left .section-title::after {
    margin-left: 0;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* --- 5. GRID SYSTEM --- */
.grid {
    display: grid;
    width: 100%;
}

.grid-1 { grid-template-columns: 1fr; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.gap-sm { gap: 1rem; }
.gap-md { gap: 2rem; }
.gap-lg { gap: 3rem; }

/* --- 6. BUTTONS --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.8rem 1.75rem;
    border-radius: var(--radius-sm);
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition-normal);
    text-align: center;
    text-decoration: none;
    line-height: 1.2;
    white-space: nowrap;
}

.btn-primary {
    background-color: var(--accent-gold);
    color: var(--primary-navy);
    border-color: var(--accent-gold);
}

.btn-primary:hover {
    background-color: var(--accent-gold-hover);
    border-color: var(--accent-gold-hover);
    color: var(--bg-white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(197, 160, 89, 0.35);
}

.btn-secondary {
    background-color: var(--primary-navy);
    color: var(--bg-white);
    border-color: var(--primary-navy);
}

.btn-secondary:hover {
    background-color: var(--secondary-blue);
    border-color: var(--secondary-blue);
    color: var(--accent-gold);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(11, 27, 61, 0.25);
}

.btn-accent {
    background-color: var(--accent-blue);
    color: var(--bg-white);
    border-color: var(--accent-blue);
}

.btn-accent:hover {
    background-color: var(--accent-blue-hover);
    border-color: var(--accent-blue-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary-navy);
    border-color: var(--primary-navy);
}

.btn-outline:hover {
    background-color: var(--primary-navy);
    color: var(--bg-white);
}

.btn-outline-white {
    background-color: transparent;
    color: var(--bg-white);
    border-color: var(--bg-white);
}

.btn-outline-white:hover {
    background-color: var(--bg-white);
    color: var(--primary-navy);
}

.btn-lg {
    padding: 1rem 2.25rem;
    font-size: 1.05rem;
}

.btn-sm {
    padding: 0.45rem 1.1rem;
    font-size: 0.85rem;
}

.btn-block {
    display: flex;
    width: 100%;
}

/* --- 7. CARDS --- */
.card {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition-normal);
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
}

.card-hover:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(197, 160, 89, 0.4);
}

.card-body {
    padding: 2rem;
    flex: 1;
}

.card-footer {
    padding: 1.25rem 2rem;
    background-color: var(--bg-light);
    border-top: 1px solid var(--border-color);
}

.card-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(11, 27, 61, 0.05);
    color: var(--primary-navy);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    transition: var(--transition-normal);
}

.card-hover:hover .card-icon {
    background-color: var(--primary-navy);
    color: var(--accent-gold);
}

.card-title {
    font-size: 1.35rem;
    margin-bottom: 0.75rem;
}

/* --- 8. FORMS --- */
.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.form-label .required {
    color: #DC2626;
    margin-left: 0.2rem;
}

.form-control,
.form-select,
.form-textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text-primary);
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    transition: var(--transition-fast);
}

.form-control:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--accent-blue);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}

.form-textarea {
    min-height: 120px;
    resize: vertical;
}

.form-hint {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 0.4rem;
}

.form-check {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.form-check-input {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

/* --- 9. BADGES --- */
.badge {
    display: inline-flex;
    align-items: center;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.75rem;
    padding: 0.3rem 0.75rem;
    border-radius: var(--radius-full);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge-primary { background-color: rgba(11, 27, 61, 0.1); color: var(--primary-navy); }
.badge-gold { background-color: rgba(197, 160, 89, 0.18); color: #8A6D2A; }
.badge-success { background-color: #DCFCE7; color: #15803D; }
.badge-warning { background-color: #FEF3C7; color: #B45309; }
.badge-danger { background-color: #FEE2E2; color: #B91C1C; }
.badge-info { background-color: #E0F2FE; color: #0369A1; }

/* --- 10. ALERTS --- */
.alert {
    padding: 1rem 1.25rem;
    border-radius: var(--radius-sm);
    border: 1px solid transparent;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.alert-success { background-color: #ECFDF5; border-color: #A7F3D0; color: #065F46; }
.alert-warning { background-color: #FFFBEB; border-color: #FDE68A; color: #92400E; }
.alert-danger { background-color: #FEF2F2; border-color: #FECACA; color: #991B1B; }
.alert-info { background-color: #EFF6FF; border-color: #BFDBFE; color: #1E40AF; }

/* --- 11. CTA SECTIONS --- */
.cta-section {
    background: linear-gradient(135deg, var(--primary-navy-dark), var(--primary-navy));
    color: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 4rem 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(197, 160, 89, 0.18) 0%, rgba(11, 27, 61, 0) 70%);
    pointer-events: none;
}

.cta-content h2 {
    color: var(--bg-white);
    font-size: 2.25rem;
    margin-bottom: 1rem;
}

.cta-content p {
    color: #CBD5E1;
    font-size: 1.1rem;
    max-width: 680px;
    margin: 0 auto 2rem auto;
}

.cta-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.25rem;
    flex-wrap: wrap;
}

/* --- 12. TOP BAR & NAVBAR --- */
.top-bar {
    background-color: var(--primary-navy-dark);
    color: #94A3B8;
    font-size: 0.85rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.top-bar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.top-bar-left span, 
.top-bar-right span {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-right: 1.5rem;
}

.top-bar i {
    color: var(--accent-gold);
}

.main-header {
    background-color: var(--bg-white);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
}

.main-header.scrolled {
    box-shadow: var(--shadow-md);
    padding: 0.2rem 0;
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-icon {
    width: 44px;
    height: 44px;
    background-color: var(--primary-navy);
    color: var(--accent-gold);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 2px 8px rgba(11, 27, 61, 0.15);
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.brand-name {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.5rem;
    letter-spacing: 1px;
    color: var(--primary-navy);
    line-height: 1.1;
}

.brand-tagline {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.62rem;
    letter-spacing: 1.2px;
    color: var(--text-muted);
    text-transform: uppercase;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.nav-link {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--primary-navy);
    padding: 0.5rem 0.25rem;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-gold);
    transition: var(--transition-normal);
}

.nav-link:hover,
.nav-link.active {
    color: var(--accent-gold);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.mobile-nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.6rem;
    color: var(--primary-navy);
    cursor: pointer;
    padding: 0.5rem;
}

/* --- 13. FOOTER --- */
.site-footer {
    background-color: var(--primary-navy);
    color: #CBD5E1;
    font-size: 0.95rem;
}

.footer-top {
    padding: 4rem 0 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-container {
    display: grid;
    grid-template-columns: 1.8fr 1fr 1fr 1.4fr;
    gap: 2.5rem;
}

.footer-brand-col .footer-logo {
    display: inline-block;
    margin-bottom: 1rem;
}

.footer-brand-col .brand-name {
    color: var(--bg-white);
}

.footer-brand-col .brand-tagline {
    color: var(--accent-gold);
}

.footer-desc {
    color: #94A3B8;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-socials {
    display: flex;
    gap: 0.75rem;
}

.footer-socials a {
    width: 36px;
    height: 36px;
    background-color: rgba(255, 255, 255, 0.08);
    color: var(--bg-white);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-normal);
}

.footer-socials a:hover {
    background-color: var(--accent-gold);
    color: var(--primary-navy);
}

.footer-heading {
    font-family: var(--font-heading);
    color: var(--bg-white);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--accent-gold);
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: #94A3B8;
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: var(--accent-gold);
    padding-left: 5px;
}

.footer-contact-info li {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: #94A3B8;
    font-size: 0.9rem;
}

.footer-contact-info i {
    color: var(--accent-gold);
    margin-top: 0.25rem;
}

.footer-bottom {
    padding: 1.5rem 0;
    font-size: 0.85rem;
    color: #64748B;
}

.footer-bottom-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-legal-links {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.footer-legal-links a {
    color: #94A3B8;
}

.footer-legal-links a:hover {
    color: var(--accent-gold);
}

.footer-legal-links .sep {
    color: #475569;
}

/* --- 14. RESPONSIVE BREAKPOINTS --- */

/* Desktop Large (Min 1200px) */
@media (min-width: 1200px) {
    .container { max-width: 1200px; }
}

/* Tablet (Max 992px) */
@media (max-width: 992px) {
    .grid-4 { grid-template-columns: repeat(2, 1fr); }
    .grid-3 { grid-template-columns: repeat(2, 1fr); }
    .section { padding: 4rem 0; }
    h1, .heading-xl { font-size: 2.25rem; }
    h2, .heading-lg { font-size: 1.85rem; }
    .footer-container { grid-template-columns: 1fr 1fr; }
}

/* Mobile (Max 768px) */
@media (max-width: 768px) {
    .top-bar-container { justify-content: center; text-align: center; }
    .top-bar-right { display: none; }
    
    .mobile-nav-toggle { display: block; }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: var(--bg-white);
        flex-direction: column;
        justify-content: flex-start;
        padding: 2rem 1.5rem;
        gap: 1.5rem;
        transform: translateX(-100%);
        transition: transform 0.3s ease-in-out;
        box-shadow: var(--shadow-lg);
        overflow-y: auto;
    }

    .nav-menu.active { transform: translateX(0); }
    
    .nav-list {
        flex-direction: column;
        width: 100%;
        gap: 1.25rem;
    }

    .nav-item { width: 100%; text-align: center; }
    .nav-link { font-size: 1.1rem; display: inline-block; }
    .nav-cta { width: 100%; margin-top: 1rem; }
    .nav-cta .btn { width: 100%; }

    .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
    .section { padding: 3rem 0; }
    
    .cta-section { padding: 2.5rem 1.5rem; }
    .cta-content h2 { font-size: 1.75rem; }
    .cta-actions { flex-direction: column; width: 100%; }
    .cta-actions .btn { width: 100%; }

    .footer-container { grid-template-columns: 1fr; gap: 2rem; }
    .footer-bottom-container { flex-direction: column; text-align: center; }
}

/* Small Mobile (Max 576px) */
@media (max-width: 576px) {
    .container { padding-left: 1rem; padding-right: 1rem; }
    h1, .heading-xl { font-size: 1.85rem; }
    h2, .heading-lg { font-size: 1.5rem; }
    .btn { width: 100%; }
}

/* --- 15. HERO SECTION --- */
.hero-section {
    background: linear-gradient(135deg, var(--primary-navy-dark) 0%, var(--primary-navy) 60%, var(--secondary-blue) 100%);
    color: var(--bg-white);
    padding: 5rem 0 6rem;
    position: relative;
    overflow: hidden;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-gold) 0%, var(--accent-blue) 100%);
}

.hero-container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 3.5rem;
    align-items: center;
}

.hero-badge {
    margin-bottom: 1.5rem;
    font-size: 0.85rem;
}

.hero-title {
    color: var(--bg-white);
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 1.25rem;
}

.hero-title-accent {
    color: var(--accent-gold);
}

.hero-subheading {
    color: #CBD5E1;
    font-size: 1.15rem;
    line-height: 1.6;
    margin-bottom: 2.25rem;
    max-width: 620px;
}

.hero-buttons {
    display: flex;
    gap: 1.25rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    gap: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.stat-number {
    display: block;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.75rem;
    color: var(--accent-gold);
    line-height: 1.2;
}

.stat-label {
    font-size: 0.85rem;
    color: #94A3B8;
}

.hero-image-wrapper {
    position: relative;
}

.hero-image-card {
    background-color: var(--bg-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    overflow: hidden;
    color: var(--text-primary);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-card-banner {
    height: 180px;
    background: linear-gradient(135deg, var(--secondary-blue), var(--primary-navy));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-gold);
}

.hero-main-icon {
    font-size: 5rem;
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.3));
}

.hero-card-body {
    padding: 2rem;
}

.hero-card-body h3 {
    font-size: 1.35rem;
    margin-bottom: 0.5rem;
}

.hero-card-body p {
    font-size: 0.92rem;
    margin-bottom: 1.25rem;
}

.hero-feature-tags {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--primary-navy);
}

.hero-feature-tags i {
    color: #10B981;
    margin-right: 0.4rem;
}

/* --- 16. WHY CHOOSE AKSON CARDS --- */
.feature-card {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 2.25rem 1.75rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-gold);
}

.feature-icon {
    width: 54px;
    height: 54px;
    background-color: rgba(197, 160, 89, 0.12);
    color: var(--accent-gold);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
    transition: var(--transition-normal);
}

.feature-card:hover .feature-icon {
    background-color: var(--primary-navy);
    color: var(--accent-gold);
}

.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.feature-card p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 0;
}

/* --- 17. INDUSTRIES GRID --- */
.grid-5 {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
}

.industry-card {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 2rem 1rem;
    text-align: center;
    transition: var(--transition-normal);
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.industry-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-navy);
}

.industry-icon {
    width: 50px;
    height: 50px;
    background-color: var(--bg-light);
    color: var(--primary-navy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    transition: var(--transition-normal);
}

.industry-card:hover .industry-icon {
    background-color: var(--accent-gold);
    color: var(--primary-navy);
}

.industry-card h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0;
}

/* --- 18. HOW IT WORKS PROCESS STEPS --- */
.process-steps-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
    position: relative;
}

.process-step {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 2rem 1.25rem;
    position: relative;
    transition: var(--transition-normal);
}

.process-step:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-gold);
}

.step-number {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 2.25rem;
    color: rgba(11, 27, 61, 0.15);
    margin-bottom: 0.75rem;
    line-height: 1;
    transition: var(--transition-normal);
}

.process-step:hover .step-number {
    color: var(--accent-gold);
}

.step-title {
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
}

.step-desc {
    font-size: 0.88rem;
    color: var(--text-secondary);
    margin-bottom: 0;
}

/* --- 19. DUAL CTA CARDS --- */
.cta-card {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 3rem 2.5rem;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.cta-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.cta-corporate {
    border-top: 4px solid var(--accent-gold);
}

.cta-careers {
    border-top: 4px solid var(--primary-navy);
}

.cta-icon {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
}

.cta-corporate .cta-icon {
    background-color: rgba(197, 160, 89, 0.15);
    color: var(--accent-gold-hover);
}

.cta-careers .cta-icon {
    background-color: rgba(11, 27, 61, 0.08);
    color: var(--primary-navy);
}

.cta-card h2 {
    font-size: 1.85rem;
    margin-bottom: 0.75rem;
}

.cta-card p {
    font-size: 1.05rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    flex: 1;
}

.cta-button-wrapper {
    margin-top: auto;
}

/* --- 20. RESPONSIVE EXTENSIONS FOR HOMEPAGE --- */
@media (max-width: 992px) {
    .hero-container { grid-template-columns: 1fr; gap: 3rem; text-align: center; }
    .hero-subheading { margin-left: auto; margin-right: auto; }
    .hero-buttons { justify-content: center; }
    .hero-stats { justify-content: center; }
    .grid-5 { grid-template-columns: repeat(3, 1fr); }
    .process-steps-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .hero-title { font-size: 2.25rem; }
    .grid-5 { grid-template-columns: repeat(2, 1fr); }
    .process-steps-grid { grid-template-columns: 1fr; }
    .cta-card { padding: 2rem 1.5rem; }
}

@media (max-width: 576px) {
    .grid-5 { grid-template-columns: 1fr; }
    .hero-stats { flex-direction: column; gap: 1rem; }
}

