/**
 * Stratnetic Corporate Site Stylesheet
 * Location: /public_html/assets/css/stratnetic-corporate.css
 * 
 * Refined color palette for corporate credibility:
 * - Navy: #0C1C3C (primary)
 * - Amber: #CFAE70 (accent)
 * - Steel Gray: #E5E7EB (neutral)
 * - White: #F9FAFB (background)
 */

/* ============================================
   ROOT VARIABLES
   ============================================ */

:root {
    /* Corporate Colors */
    --primary-navy: #0C1C3C;
    --deep-navy: #0A1530;
    --accent-amber: #CFAE70;
    --accent-amber-hover: #B89A5F;
    --steel-gray: #E5E7EB;
    --soft-white: #F9FAFB;
    --pure-white: #FFFFFF;
    
    /* Text Colors */
    --text-primary: #1E293B;
    --text-secondary: #64748B;
    --text-light: #94A3B8;
    --text-inverse: #FFFFFF;
    
    /* Borders */
    --border-color: #E2E8F0;
    --border-dark: #CBD5E1;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    
    /* Spacing */
    --spacing-unit: 8px;
    
    /* Typography */
    --font-primary: system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    --font-headings: 'Inter', var(--font-primary);
    
    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* ============================================
   GLOBAL STYLES
   ============================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--soft-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-headings);
    font-weight: 700;
    line-height: 1.2;
    color: var(--primary-navy);
    margin-bottom: 1rem;
}

h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    letter-spacing: -0.02em;
}

h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

h4 {
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
}

p {
    margin-bottom: 1rem;
}

a {
    color: var(--accent-amber);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--accent-amber-hover);
}

strong {
    font-weight: 600;
}

/* ============================================
   ACCESSIBILITY
   ============================================ */

.skip-to-content {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--primary-navy);
    color: var(--text-inverse);
    padding: 8px 16px;
    text-decoration: none;
    z-index: 10000;
    border-radius: 0 0 4px 0;
}

.skip-to-content:focus {
    top: 0;
    outline: 2px solid var(--accent-amber);
    outline-offset: 2px;
}

/* Focus Styles */
*:focus-visible {
    outline: 2px solid var(--accent-amber);
    outline-offset: 2px;
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */

.site-header {
    background: linear-gradient(135deg, var(--primary-navy) 0%, var(--deep-navy) 100%);
    box-shadow: var(--shadow-md);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    padding: 1rem 0;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--text-inverse) !important;
    transition: opacity var(--transition-fast);
}

.navbar-brand:hover {
    opacity: 0.9;
}

.logo-icon {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.logo-text {
    letter-spacing: 0.05em;
}

.logo-suffix {
    font-size: 0.7em;
    font-weight: 400;
    opacity: 0.8;
    margin-left: 4px;
}

.navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.9) !important;
    font-weight: 500;
    padding: 0.5rem 1rem;
    transition: all var(--transition-fast);
    position: relative;
}

.navbar-nav .nav-link:hover {
    color: var(--text-inverse) !important;
}

.navbar-nav .nav-link.active {
    color: var(--text-inverse) !important;
}

.navbar-nav .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 1rem;
    right: 1rem;
    height: 2px;
    background: var(--accent-amber);
}

/* CTA Button in Nav */
.btn-accent {
    background: var(--accent-amber);
    color: var(--primary-navy);
    border: none;
    font-weight: 600;
    padding: 0.5rem 1.25rem;
    border-radius: 6px;
    transition: all var(--transition-base);
}

.btn-accent:hover {
    background: var(--accent-amber-hover);
    color: var(--primary-navy);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Certification Badge Strip */
.cert-badge-strip {
    background: rgba(255, 255, 255, 0.05);
    padding: 0.75rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.cert-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--text-inverse);
    font-size: 0.875rem;
    font-weight: 500;
}

.cert-badge i {
    color: var(--accent-amber);
}

.cert-badge-separator {
    color: rgba(255, 255, 255, 0.3);
    margin: 0 8px;
}

/* Mobile Menu */
.navbar-toggler {
    border-color: rgba(255, 255, 255, 0.3);
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 0.2rem rgba(207, 174, 112, 0.5);
}

/* ============================================
   HERO SECTIONS
   ============================================ */

.hero {
    background-image: url('../img/bubble-stripe.jpg'); 
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    color: var(--text-inverse);
    padding: 6rem 0 4rem;
    overflow: hidden;
}

/* Add subtle overlay to ensure text readability over bubble texture */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(12, 28, 60, 0.85); /* Navy with 85% opacity */
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero h1 {
    color: var(--text-inverse);
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    max-width: 800px;
}

.hero .btn {
    margin: 0.5rem;
}

 /* Video and overlay */
        .hero-video {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: 0;
        }
        .hero-overlay {
            position: absolute;
            inset: auto 0 0 0;
            height: 35%;
            background: url("/assets/img/human-robot-faceoff-optimized.jpg") bottom center / cover no-repeat;
            z-index: 1;
        }

        .hero-content {
            max-width: 800px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }
        
/* ============================================
   BUTTONS
   ============================================ */

.btn {
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    transition: all var(--transition-base);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-primary {
    background: var(--accent-amber);
    border-color: var(--accent-amber);
    color: var(--primary-navy);
}

.btn-primary:hover {
    background: var(--accent-amber-hover);
    border-color: var(--accent-amber-hover);
    color: var(--primary-navy);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-outline-light {
    border-color: rgba(255, 255, 255, 0.5);
    color: var(--text-inverse);
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--text-inverse);
    color: var(--text-inverse);
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

/* ============================================
   CARDS
   ============================================ */

.card {
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    transition: all var(--transition-base);
    background: var(--pure-white);
    height: 100%;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
    border-color: var(--accent-amber);
}

.card-body {
    padding: 2rem;
}

.card-title {
    font-size: 1.5rem;
    color: var(--primary-navy);
    margin-bottom: 1rem;
}

.card-text {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.card-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-navy), var(--deep-navy));
    color: var(--accent-amber);
    border-radius: 12px;
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

/* ============================================
   SECTIONS
   ============================================ */

.section {
    padding: 5rem 0;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.section-title {
    color: var(--primary-navy);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
}

.section-gray {
    background: var(--steel-gray);
}

/* ============================================
   STATS / METRICS BAR
   ============================================ */

.stats-bar {
    background: var(--pure-white);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    padding: 3rem 0;
}

.stat-item {
    text-align: center;
}

.stat-value {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent-amber);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-secondary);
    font-weight: 600;
}

/* ============================================
   CAPABILITY GRID
   ============================================ */

.capability-card {
    background: var(--pure-white);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2rem;
    transition: all var(--transition-base);
    height: 100%;
}

.capability-card:hover {
    border-color: var(--accent-amber);
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.capability-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--primary-navy), var(--deep-navy));
    color: var(--accent-amber);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
}

.capability-title {
    font-size: 1.25rem;
    color: var(--primary-navy);
    margin-bottom: 1rem;
}

.capability-description {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    line-height: 1.7;
}

.capability-link {
    color: var(--accent-amber);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap var(--transition-fast);
}

.capability-link:hover {
    gap: 0.75rem;
}

/* ============================================
   CASE STUDY HIGHLIGHT
   ============================================ */

.case-study-highlight {
    background: var(--pure-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.case-study-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.case-study-content {
    padding: 3rem;
}

.case-study-label {
    display: inline-block;
    background: var(--accent-amber);
    color: var(--primary-navy);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.375rem 0.75rem;
    border-radius: 4px;
    margin-bottom: 1rem;
}

.case-study-title {
    font-size: 2rem;
    color: var(--primary-navy);
    margin-bottom: 1rem;
}

.case-study-text {
    color: var(--text-secondary);
    font-size: 1.125rem;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.case-study-metrics {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.metric {
    flex: 1;
    min-width: 150px;
}

.metric-value {
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent-amber);
    line-height: 1;
}

.metric-label {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-top: 0.5rem;
}

/* ============================================
   CTA SECTIONS
   ============================================ */

.cta-section {
    background: linear-gradient(135deg, var(--primary-navy) 0%, var(--deep-navy) 100%);
    color: var(--text-inverse);
    padding: 0.1rem 0;
    text-align: center;
}

.cta-section h2 {
    color: var(--text-inverse);
    margin-bottom: 1.5rem;
}

.cta-section p {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}

/* ============================================
   FOOTER
   ============================================ */

.site-footer {
    background: linear-gradient(135deg, var(--primary-navy) 0%, var(--deep-navy) 100%);
    color: var(--text-inverse);
    margin-top: auto;
}

.footer-main {
    padding: 4rem 0 2rem;
}

.footer-heading {
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-inverse);
    margin-bottom: 1.5rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    transition: color var(--transition-fast);
    text-decoration: none;
}

.footer-links a:hover {
    color: var(--accent-amber);
}

.footer-text {
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact a {
    color: var(--accent-amber);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem 0;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
}

.footer-certifications {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.cert-badge-small {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}

.cert-badge-small i {
    color: var(--accent-amber);
    font-size: 0.875rem;
}

/* ============================================
   FORMS
   ============================================ */

.form-control,
.form-select,
.form-check-input {
    border-color: var(--border-color);
    padding: 0.75rem 1rem;
    transition: border-color var(--transition-fast);
}

.form-control:focus,
.form-select:focus,
.form-check-input:focus {
    border-color: var(--accent-amber);
    box-shadow: 0 0 0 0.2rem rgba(207, 174, 112, 0.25);
}

.form-label {
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

/* ============================================
   ANIMATIONS
   ============================================ */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 991.98px) {
    .hero {
        min-height: 500px;
        padding: 4rem 0 3rem;
    }
    
    .section {
        padding: 3rem 0;
    }
    
    .footer-certifications {
        justify-content: flex-start;
        margin-top: 1rem;
    }
}

@media (max-width: 767.98px) {
    h1 {
        font-size: 2rem;
    }
    
    .hero {
        min-height: 400px;
        padding: 3rem 0 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .stat-value {
        font-size: 2rem;
    }
    
    .case-study-content {
        padding: 2rem;
    }
    
    .cert-badge-separator {
        display: none;
    }
}

/* ============================================
   PRINT STYLES
   ============================================ */

@media print {
    .site-header,
    .site-footer,
    .btn,
    .cta-section {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
}

/* Legal Pages Specific Styles */
.legal-page {
    background-color: var(--white);
    padding: 4rem 0;
}

.legal-header {
    background: linear-gradient(135deg, var(--primary-navy) 0%, var(--deep-navy) 100%);
    color: var(--white);
    padding: 4rem 0 3rem;
    margin-bottom: 3rem;
}

.legal-header h1 {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.legal-header .last-updated {
    color: var(--amber-accent);
    font-size: 0.95rem;
    font-weight: 500;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
}

.legal-content h2 {
    color: var(--primary-navy);
    font-size: 1.75rem;
    margin-top: 3rem;
    margin-bottom: 1.25rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--amber-accent);
}

.legal-content h3 {
    color: var(--primary-navy);
    font-size: 1.35rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.legal-content h4 {
    color: var(--text-primary);
    font-size: 1.15rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.legal-content p {
    color: var(--text-primary);
    margin-bottom: 1.25rem;
    line-height: 1.8;
}

.legal-content ul,
.legal-content ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.legal-content li {
    margin-bottom: 0.75rem;
    line-height: 1.8;
}

.legal-content a {
    color: var(--amber-accent);
    text-decoration: underline;
}

.legal-content a:hover {
    color: var(--primary-navy);
}

.legal-content strong {
    color: var(--primary-navy);
    font-weight: 600;
}

.legal-content em {
    color: var(--text-secondary);
}

.legal-content code {
    background-color: var(--light-bg);
    color: var(--primary-navy);
    padding: 0.2rem 0.4rem;
    border-radius: 3px;
    font-size: 0.9em;
}

.legal-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
}

.legal-content th,
.legal-content td {
    padding: 1rem;
    text-align: left;
    border: 1px solid var(--border-color);
}

.legal-content th {
    background-color: var(--primary-navy);
    color: var(--white);
    font-weight: 600;
}

.legal-content tr:nth-child(even) {
    background-color: var(--light-bg);
}

.info-box {
    background-color: var(--light-bg);
    border-left: 4px solid var(--amber-accent);
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 4px;
}

.info-box h4 {
    color: var(--primary-navy);
    margin-top: 0;
    margin-bottom: 1rem;
}

.info-box p:last-child {
    margin-bottom: 0;
}

.warning-box {
    background-color: #FEF3C7;
    border-left: 4px solid #F59E0B;
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 4px;
}

.warning-box h4 {
    color: #92400E;
    margin-top: 0;
    margin-bottom: 1rem;
}

.section-intro {
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.toc {
    background-color: var(--light-bg);
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 3rem;
}

.toc h3 {
    color: var(--primary-navy);
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.toc ul {
    list-style: none;
    padding-left: 0;
}

.toc li {
    margin-bottom: 0.5rem;
}

.toc a {
    color: var(--text-primary);
    text-decoration: none;
}

.toc a:hover {
    color: var(--amber-accent);
}

/* Responsive */
@media (max-width: 768px) {
    .legal-header h1 {
        font-size: 2rem;
    }
    
    .legal-content h2 {
        font-size: 1.5rem;
    }
    
    .legal-content h3 {
        font-size: 1.25rem;
    }
    
    .legal-page {
        padding: 2rem 0;
    }
    
    .legal-content {
        padding: 0 1rem;
    }
}

/* Legal Pages Header Fix */
.legal-page-header {
    background: linear-gradient(135deg, var(--primary-navy) 0%, var(--deep-navy) 100%);
    border-bottom: 3px solid var(--accent-amber);
    padding: 3rem 0;
}

.legal-page-header h1 {
    color: var(--accent-amber) !important;
}

.legal-page-header p {
    color: rgba(255, 255, 255, 0.9) !important;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
}

/**
 * HEADER REFINEMENTS - Add to stratnetic-corporate.css
 * Visual enhancements for corporate site header
 */

/* ============================================
   HEADER SEPARATOR LINE (like SaaS site)
   ============================================ */

.header-separator {
    height: 5px;
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.05);
}

/* ============================================
   CERTIFICATION STRIP ENHANCEMENTS - human-robot-faceoff-optimized.jpg, bubble-stripe.jpg
   ============================================ */

.cert-badge-strip {
    background-image: url('../img/bubble-stripe.jpg'); 
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    padding: 1rem 0;
}

/* Add subtle overlay to ensure text readability over bubble texture */
.cert-badge-strip::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(12, 28, 60, 0.85); /* Navy with 85% opacity */
    pointer-events: none;
}

.cert-badge-strip .container {
    position: relative;
    z-index: 1;
}

/* Enhance cert badges for better visibility on textured background */
.cert-badge {
    background: rgba(207, 174, 112, 0.15);
    border: 1px solid rgba(207, 174, 112, 0.3);
    border-radius: 20px;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--accent-amber);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.cert-badge:hover {
    background: rgba(207, 174, 112, 0.25);
    border-color: rgba(207, 174, 112, 0.5);
    transform: translateY(-2px);
}

.cert-badge i {
    color: var(--accent-amber);
    font-size: 1rem;
}

.cert-badge-separator {
    color: rgba(207, 174, 112, 0.4);
    font-weight: 300;
}

/* ============================================
   LOGO ENHANCEMENTS
   ============================================ */

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 700;
    font-size: 1.25rem;
    letter-spacing: 0.5px;
    color: var(--text-inverse);
    text-decoration: none;
    transition: all 0.3s ease;
}

.navbar-brand:hover {
    color: var(--accent-amber);
}

.navbar-brand .logo-icon {
    display: block;
    transition: transform 0.3s ease;
}

.navbar-brand:hover .logo-icon {
    transform: scale(1.05);
}

.navbar-brand .logo-text {
    color: inherit;
}

/* ============================================
   NAVIGATION REFINEMENTS
   ============================================ */

.navbar {
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.nav-link {
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    padding: 0.5rem 1rem !important;
}

/* Subtle underline effect on hover */
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 1rem;
    right: 1rem;
    height: 2px;
    background: var(--accent-amber);
    opacity: 0;
    transform: scaleX(0);
    transition: all 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    opacity: 1;
    transform: scaleX(1);
}

/* CTA Button refinements */
.btn-accent {
    background: linear-gradient(135deg, var(--accent-amber), #B89A5F);
    border: none;
    color: var(--primary-navy);
    font-weight: 600;
    padding: 0.5rem 1.25rem;
    border-radius: 25px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(207, 174, 112, 0.3);
}

.btn-accent:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(207, 174, 112, 0.4);
    color: var(--primary-navy);
}

/* ============================================
   RESPONSIVE ADJUSTMENTS
   ============================================ */

@media (max-width: 991px) {
    /* Stack nav items on mobile */
    .navbar-nav {
        padding-top: 1rem;
    }
    
    .nav-item {
        padding: 0.25rem 0;
    }
    
    .nav-link::after {
        display: none; /* Remove underline effect on mobile */
    }
    
    /* Adjust CTA button on mobile */
    .btn-accent {
        margin-top: 1rem;
        width: 100%;
        text-align: center;
    }
    
    /* Adjust certification strip on mobile */
    .cert-badge-strip {
        padding: 1.5rem 0;
    }
    
    .cert-badge {
        font-size: 0.75rem;
        padding: 0.4rem 0.8rem;
    }
}

@media (max-width: 576px) {
    .cert-badge {
        font-size: 0.7rem;
        padding: 0.35rem 0.7rem;
    }
    
    .cert-badge i {
        font-size: 0.85rem;
    }
}

/* ============================================
   ACCESSIBILITY ENHANCEMENTS
   ============================================ */

/* Skip to content link */
.skip-to-content {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--accent-amber);
    color: var(--primary-navy);
    padding: 8px 16px;
    text-decoration: none;
    font-weight: 600;
    z-index: 100;
    border-radius: 0 0 4px 0;
}

.skip-to-content:focus {
    top: 0;
}

/* Ensure focus states are visible */
.nav-link:focus,
.btn-accent:focus,
.navbar-brand:focus {
    outline: 2px solid var(--accent-amber);
    outline-offset: 2px;
}

/* ============================================
   ANNOUNCEMENT BAR (optional)
   ============================================ */

.announcement-bar {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    padding: 0.75rem 0;
    text-align: center;
    font-size: 0.9rem;
}

.announcement-bar p {
    margin: 0;
}

.announcement-link {
    color: white;
    font-weight: 600;
    text-decoration: underline;
    margin-left: 0.5rem;
}

.announcement-link:hover {
    color: rgba(255, 255, 255, 0.9);
}

/**
 * FOOTER BACKGROUND ENHANCEMENTS
 * Add to stratnetic-corporate.css
 * 
 * Options for adding visual interest to footer
 */

/* ============================================
   FOOTER WITH BACKGROUND TEXTURE
   ============================================ */

/* Option 1: Bubble Texture Background (Recommended) */
.footer-with-texture {
    background-image: url('../img/human-robot-faceoff-optimized.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

/* Add overlay to ensure text readability */
.footer-with-texture::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
}

/* Ensure content is above overlay */
.footer-with-texture .container {
    position: relative;
    z-index: 1;
}

/* ============================================
   ALTERNATIVE BACKGROUND OPTIONS
   ============================================ */

/* Option 2: Gradient with Subtle Pattern */
.footer-with-gradient {
    background: linear-gradient(135deg, 
        var(--primary-navy) 0%, 
        var(--deep-navy) 50%,
        var(--primary-navy) 100%
    );
    position: relative;
}

.footer-with-gradient::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 10px,
            rgba(207, 174, 112, 0.02) 10px,
            rgba(207, 174, 112, 0.02) 20px
        );
    pointer-events: none;
}

/* Option 3: Subtle Dots Pattern */
.footer-with-dots {
    background-color: var(--primary-navy);
    background-image: 
        radial-gradient(circle at 2px 2px, rgba(207, 174, 112, 0.08) 1px, transparent 0);
    background-size: 24px 24px;
    position: relative;
}

/* Option 4: Circuit Board Pattern (Tech Feel) */
.footer-with-circuit {
    background-color: var(--primary-navy);
    background-image: 
        linear-gradient(90deg, rgba(207, 174, 112, 0.05) 1px, transparent 1px),
        linear-gradient(rgba(207, 174, 112, 0.05) 1px, transparent 1px);
    background-size: 40px 40px;
    position: relative;
}

/* ============================================
   FOOTER HEADING ENHANCEMENTS
   ============================================ */

.footer-heading {
    color: var(--accent-amber);
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.75rem;
}

/* Subtle underline for headings */
.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-amber), transparent);
}

/* ============================================
   FOOTER LINKS ENHANCEMENTS
   ============================================ */

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.875rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}

.footer-links a:hover {
    color: var(--accent-amber);
    padding-left: 5px;
}

/* External link icon styling */
.footer-links a .bi-box-arrow-up-right {
    font-size: 0.75rem;
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.footer-links a:hover .bi-box-arrow-up-right {
    opacity: 1;
}

/* ============================================
   FOOTER TEXT ENHANCEMENTS
   ============================================ */

.footer-text {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.footer-text strong {
    color: var(--accent-amber);
    font-weight: 600;
}

/* ============================================
   FOOTER CONTACT SECTION
   ============================================ */

.footer-contact {
    background: rgba(207, 174, 112, 0.08);
    padding: 1.25rem;
    border-radius: 8px;
    border-left: 3px solid var(--accent-amber);
}

.footer-contact a {
    color: var(--accent-amber);
    font-weight: 500;
}

.footer-contact a:hover {
    color: rgba(207, 174, 112, 0.8);
}

/* ============================================
   FOOTER BOTTOM SECTION
   ============================================ */

.footer-bottom {
    background-color: rgba(0, 0, 0, 0.2);
    padding: 1.5rem 0;
    border-top: 1px solid rgba(207, 174, 112, 0.15);
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
}

/* ============================================
   FOOTER CERTIFICATION BADGES
   ============================================ */

.footer-certifications {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
    justify-content: center;
}

.cert-badge-small {
    color: var(--accent-amber);
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    transition: all 0.3s ease;
}

.cert-badge-small:hover {
    color: rgba(207, 174, 112, 0.8);
    transform: translateY(-1px);
}

.cert-badge-small i {
    font-size: 0.9rem;
}

.cert-badge-separator {
    color: rgba(207, 174, 112, 0.3);
    font-weight: 300;
}

/* ============================================
   RESPONSIVE ADJUSTMENTS
   ============================================ */

@media (max-width: 991px) {
    .footer-main {
        padding: 3rem 0;
    }
    
    .footer-heading {
        font-size: 0.8rem;
        letter-spacing: 1.2px;
    }
    
    .footer-links a {
        font-size: 0.9rem;
    }
}

@media (max-width: 767px) {
    /* Stack footer columns on mobile */
    .footer-main .col-lg-3,
    .footer-main .col-md-6 {
        margin-bottom: 2rem;
    }
    
    .footer-main .col-lg-3:last-child,
    .footer-main .col-md-6:last-child {
        margin-bottom: 0;
    }
    
    /* Adjust certification badges on mobile */
    .footer-certifications {
        gap: 0.5rem;
        font-size: 0.75rem;
    }
    
    .cert-badge-small {
        font-size: 0.7rem;
    }
    
    /* Full width contact box on mobile */
    .footer-contact {
        text-align: center;
    }
}

@media (max-width: 576px) {
    .footer-heading::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-links {
        text-align: center;
    }
    
    .footer-links a:hover {
        padding-left: 0; /* Remove left padding on mobile hover */
    }
}

/* ============================================
   PRINT STYLES
   ============================================ */

@media print {
    .footer-with-texture::before,
    .footer-with-gradient::before {
        display: none;
    }
    
    .footer-main {
        background: white !important;
        color: black !important;
    }
    
    .footer-heading,
    .footer-links a,
    .footer-text {
        color: black !important;
    }
}

/* ============================================
   ACCESSIBILITY ENHANCEMENTS
   ============================================ */

/* Ensure focus states are visible */
.footer-links a:focus,
.footer-contact a:focus {
    outline: 2px solid var(--accent-amber);
    outline-offset: 2px;
}

/* Ensure sufficient contrast for WCAG AA */
.footer-links a {
    /* White at 80% opacity on navy provides 4.5:1+ contrast */
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* ============================================
   ANIMATION ENHANCEMENTS (Optional)
   ============================================ */

/* Subtle fade-in animation for footer on page load */
@keyframes footerFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.site-footer {
    animation: footerFadeIn 0.6s ease-out;
}

/* Hover effect for footer sections */
.footer-main .col-lg-3:hover,
.footer-main .col-md-6:hover {
    transform: translateY(-2px);
    transition: transform 0.3s ease;
}

.no-indent {
    text-indent: 0 !important;
    margin-left: 0 !important;
    display: inline-block;
}


