/* Kratos-Inspired Design System */
:root {
    /* Kratos Color Palette */
    --kratos-navy: #1a1a2e;
    --kratos-dark-blue: #16213e;
    --kratos-blue: #0f3460;
    --kratos-accent: #e94560;
    --kratos-light: #f5f5f5;
    --kratos-white: #ffffff;
    --kratos-gray: #6b7280;
    --kratos-dark-gray: #374151;
    
    /* Typography */
    --font-primary: 'Inter', 'Segoe UI', system-ui, sans-serif;
    --font-mono: 'JetBrains Mono', 'Fira Code', monospace;
    
    /* Spacing */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    
    /* 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);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    
    /* Borders */
    --border-radius: 8px;
    --border-radius-lg: 12px;
}

/* Map Container Styling */
.map-container {
    position: relative;
    width: 100%;
    height: 400px;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    margin-top: var(--space-md);
    border: 1px solid var(--kratos-gray);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 8px;
}

.map-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.1) 0%, rgba(59, 130, 246, 0.05) 100%);
    pointer-events: none;
    z-index: 1;
}

/* Responsive map */
@media (max-width: 768px) {
    .map-container {
        height: 300px;
        margin-top: 0.5rem;
    }
}

@media (max-width: 480px) {
    .map-container {
        height: 250px;
    }
}

/* Map Fallback Styling */
.map-fallback {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 2rem;
    text-align: center;
    border-radius: 8px;
    border: 2px solid #cbd5e1;
    color: #334155;
}

.map-fallback p {
    margin: 0.5rem 0;
    font-size: 1rem;
}

.map-fallback a {
    color: #1e40af;
    text-decoration: none;
    font-weight: 600;
    padding: 0.5rem 1rem;
    background: #dbeafe;
    border-radius: 4px;
    display: inline-block;
    margin-top: 1rem;
    transition: all 0.3s ease;
}

.map-fallback a:hover {
    background: #bfdbfe;
    transform: translateY(-1px);
}
.faq-section {
    background-color: var(--navy-subtle);
    padding: 4rem 0;
}

.faq-section h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-dark);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.faq-item h3 {
    color: var(--navy-primary);
    margin-bottom: 1rem;
    font-size: 1.1rem;
    line-height: 1.4;
}

.faq-item p {
    color: var(--text-medium);
    line-height: 1.6;
}

/* Responsive FAQ */
@media (max-width: 768px) {
    .faq-section {
        padding: 2rem 0;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .faq-item {
        padding: 1.5rem;
    }
}
.breadcrumb {
    background-color: var(--navy-subtle);
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--navy-border);
}

.breadcrumb ol {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
}

.breadcrumb li {
    display: flex;
    align-items: center;
    font-size: 0.875rem;
    color: var(--text-medium);
}

.breadcrumb li:not(:last-child)::after {
    content: "›";
    margin: 0 0.5rem;
    color: var(--text-light);
    font-weight: bold;
}

.breadcrumb a {
    color: var(--navy-primary);
    text-decoration: none;
    transition: color 0.2s ease;
}

.breadcrumb a:hover {
    color: var(--navy-accent);
    text-decoration: underline;
}

.breadcrumb span {
    color: var(--text-dark);
    font-weight: 500;
}

/* Responsive breadcrumb */
@media (max-width: 768px) {
    .breadcrumb {
        padding: 0.5rem 0;
    }
    
    .breadcrumb li {
        font-size: 0.8rem;
    }
    
    .breadcrumb li:not(:last-child)::after {
        margin: 0 0.25rem;
    }
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

html {
    scroll-behavior: smooth;
}

/* Global Styles - Kratos Inspired */
* {
    box-sizing: border-box;
}

body {
    font-family: var(--font-primary);
    font-weight: 400;
    line-height: 1.6;
    color: var(--kratos-dark-gray);
    background-color: var(--kratos-white);
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Legacy Color Variables - Keeping for compatibility */
:root {
    --navy-primary: var(--kratos-blue);
    --navy-light: var(--kratos-accent);
    --navy-accent: var(--kratos-dark-blue);
    --navy-subtle: var(--kratos-light);
    --navy-border: var(--kratos-gray);
    --text-dark: var(--kratos-dark-gray);
    --text-medium: var(--kratos-gray);
    --text-light: #64748b;
    --success: #059669;
    --warning: #d97706;
    --error: #dc2626;
    --shadow-sm: var(--shadow-sm);
    --shadow-md: var(--shadow-md);
    --shadow-lg: var(--shadow-lg);
    --shadow-xl: var(--shadow-xl);
    --radius-sm: 6px;
    --radius-md: var(--border-radius);
    --radius-lg: var(--border-radius-lg);
    --radius-xl: 16px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

strong, b, .bold {
    font-weight: 700;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2 {
    color: var(--navy-primary);
}

h1 {
    font-size: 2.5rem;
    font-weight: 700;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
    font-weight: 400;
    color: var(--text-medium);
    line-height: 1.7;
}

/* Kratos-Inspired Navigation */
.navbar {
    background-color: var(--kratos-white);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 2px 20px rgba(26, 26, 46, 0.1);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 2px solid var(--kratos-navy);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar.scrolled {
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 30px rgba(26, 26, 46, 0.15);
    border-bottom-color: var(--kratos-accent);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--space-xl);
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 90px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-shrink: 0;
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s ease;
}

.nav-logo:hover {
    text-decoration: none;
    color: inherit;
    transform: scale(1.02);
}

.logo-img {
    height: 60px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
    filter: drop-shadow(0 2px 4px rgba(26, 26, 46, 0.1));
}

.nav-logo:hover .logo-img {
    transform: scale(1.05);
}

.logo-text h2 {
    color: var(--navy-primary);
    font-size: 1.75rem;
    margin: 0;
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.logo-text span {
    font-size: 0.85rem;
    color: var(--text-medium);
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: 0.01em;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 3rem;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--kratos-dark-gray);
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    padding: 12px 0;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.nav-link:hover {
    color: var(--kratos-accent);
    transform: translateY(-2px);
}

.nav-link.active {
    color: var(--kratos-accent);
    font-weight: 600;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--navy-primary) 0%, var(--navy-light) 100%);
    border-radius: 1px;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 3px 0;
    transition: 0.3s;
}

.cta-button {
    background: linear-gradient(135deg, var(--navy-primary) 0%, var(--navy-accent) 100%);
    color: white;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(30, 58, 138, 0.2);
    will-change: transform, box-shadow;
}

.cta-button:hover {
    background: linear-gradient(135deg, var(--navy-accent) 0%, var(--navy-light) 100%);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(30, 58, 138, 0.3);
}

/* Kratos-Inspired Hero Section - Home Page Only */
.index-page .hero {
    background: linear-gradient(135deg, var(--kratos-navy) 0%, var(--kratos-dark-blue) 50%, var(--kratos-blue) 100%);
    position: relative;
    overflow: hidden;
    height: 700px;
    display: flex;
    align-items: center;
    border-bottom: 3px solid var(--kratos-accent);
}

.index-page .hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 25% 25%, rgba(233, 69, 96, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(15, 52, 96, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(22, 33, 62, 0.08) 0%, transparent 50%);
    animation: subtleFloat 20s ease-in-out infinite;
    z-index: 0;
}

.index-page .hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.02) 50%, transparent 70%),
        linear-gradient(-45deg, transparent 30%, rgba(255, 255, 255, 0.01) 50%, transparent 70%);
    animation: shimmer 8s ease-in-out infinite;
    z-index: 0;
}

.index-page .hero-container {
    position: relative;
    z-index: 1;
    color: white;
    text-align: center;
    width: 100%;
}

.index-page .hero-content h1 {
    color: var(--kratos-white);
    text-shadow: 0 4px 8px rgba(26, 26, 46, 0.4);
    font-size: 3.5rem;
    margin-bottom: var(--space-lg);
    font-weight: 700;
    letter-spacing: -0.03em;
    text-transform: uppercase;
    line-height: 1.1;
}

.index-page .hero-subtitle {
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 2px 4px rgba(26, 26, 46, 0.3);
    font-size: 1.3rem;
    margin-bottom: var(--space-2xl);
    font-weight: 500;
    line-height: 1.6;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

@keyframes subtleFloat {
    0%, 100% { 
        transform: translateY(0px) scale(1); 
        opacity: 1;
    }
    50% { 
        transform: translateY(-8px) scale(1.02); 
        opacity: 0.8;
    }
}

@keyframes shimmer {
    0%, 100% { 
        transform: translateX(-100%) rotate(45deg); 
        opacity: 0;
    }
    50% { 
        transform: translateX(100%) rotate(45deg); 
        opacity: 1;
    }
}

/* Hero Section - Force Consistent Height */
.hero {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%) !important;
    padding: 120px 0 80px !important;
    text-align: center;
    position: relative;
    overflow: hidden;
    height: 600px !important;
    min-height: 600px !important;
    max-height: 600px !important;
    display: flex;
    align-items: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 25% 25%, rgba(59, 130, 246, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(99, 102, 241, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(139, 92, 246, 0.04) 0%, transparent 50%);
    animation: subtleFloat 25s ease-in-out infinite;
    z-index: 0;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.015) 50%, transparent 70%),
        linear-gradient(-45deg, transparent 30%, rgba(255, 255, 255, 0.008) 50%, transparent 70%);
    animation: shimmer 12s ease-in-out infinite;
    z-index: 0;
}

.hero-container {
    position: relative;
    z-index: 1;
    color: white;
    text-align: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-content h1 {
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    font-weight: 400;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

/* Hero buttons now use unified button component */

.hero-actions {
    margin-top: 1.5rem;
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

/* Hero actions now use unified button component */

/* Kratos-Inspired Button Component */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    text-decoration: none;
    border-radius: var(--border-radius);
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    background: var(--kratos-white);
    color: var(--kratos-navy);
    box-shadow: var(--shadow-lg);
    letter-spacing: 0.02em;
    min-height: 52px;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(233, 69, 96, 0.2), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn:hover {
    background: var(--kratos-accent);
    color: var(--kratos-white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

.btn:active {
    transform: translateY(0);
    box-shadow: var(--shadow-md);
}

.btn-primary {
    background: linear-gradient(135deg, var(--kratos-navy) 0%, var(--kratos-blue) 100%);
    color: var(--kratos-white);
    border-color: var(--kratos-navy);
    box-shadow: var(--shadow-lg);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--kratos-accent) 0%, var(--kratos-blue) 100%);
    border-color: var(--kratos-accent);
    color: var(--kratos-white);
    box-shadow: var(--shadow-xl);
}

.btn-secondary {
    background: var(--kratos-white);
    color: var(--kratos-navy);
    border-color: var(--kratos-gray);
    box-shadow: var(--shadow-md);
}

.btn-secondary:hover {
    background: var(--kratos-light);
    border-color: var(--kratos-accent);
    color: var(--kratos-accent);
}

.btn-outline {
    background: transparent;
    color: var(--navy-primary);
    border-color: var(--navy-primary);
}

.btn-outline:hover {
    background: var(--navy-primary);
    color: white;
}

/* Highlights Section */
.highlights {
    padding: 80px 0;
    background-color: var(--navy-subtle);
    position: relative;
}

.highlights::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--navy-border) 50%, transparent 100%);
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.highlight-item {
    text-align: center;
    padding: var(--space-2xl) var(--space-xl);
    background-color: var(--kratos-white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid var(--kratos-gray);
    position: relative;
    overflow: hidden;
}

.highlight-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--kratos-accent) 0%, var(--kratos-blue) 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.highlight-item:hover::before {
    transform: scaleX(1);
}

.highlight-item:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-xl);
    border-color: var(--kratos-accent);
}

.highlight-icon {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--kratos-accent);
    margin-bottom: var(--space-lg);
    padding: var(--space-lg);
    background: linear-gradient(135deg, var(--kratos-light) 0%, var(--kratos-white) 100%);
    border-radius: var(--border-radius);
    border: 2px solid var(--kratos-accent);
    display: inline-block;
    min-width: 90px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(233, 69, 96, 0.2);
}

.highlight-item h3 {
    color: var(--kratos-navy);
    margin-bottom: var(--space-md);
    font-weight: 700;
    font-size: 1.3rem;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

/* Kratos-Inspired Section Titles */
.section-title {
    text-align: center;
    color: var(--kratos-navy);
    margin-bottom: var(--space-3xl);
    position: relative;
    font-weight: 800;
    font-size: 2.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--kratos-accent) 0%, var(--kratos-blue) 100%);
    margin: var(--space-lg) auto;
    border-radius: 2px;
    box-shadow: 0 2px 4px rgba(233, 69, 96, 0.3);
}

/* Capabilities Section */
.capabilities {
    padding: 80px 0;
}

.capabilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.capability-item {
    padding: 2rem;
    background-color: #f8fafc;
    border-radius: 10px;
    border-left: 4px solid #1e3a8a;
}

.capability-item h3 {
    color: #1e3a8a;
    margin-bottom: 1rem;
}

.capability-item ul {
    list-style: none;
    margin-top: 1rem;
}

.capability-item li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.capability-item li::before {
    content: '▶';
    position: absolute;
    left: 0;
    color: #1e3a8a;
    font-weight: 700;
}

/* Industries Section */
.industries {
    padding: 80px 0;
    background-color: #f8fafc;
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.industry-item {
    padding: 2rem;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.industry-item:hover {
    transform: translateY(-5px);
}

.industry-item h3 {
    color: #1e3a8a;
    margin-bottom: 1rem;
}

/* Certifications Section */
.certifications {
    padding: 80px 0;
}

.certifications-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
}

.cert-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.cert-item {
    padding: 2rem;
    background-color: #f8fafc;
    border-radius: 10px;
    border-left: 4px solid #1e3a8a;
}

.cert-item h3 {
    color: #1e3a8a;
    margin-bottom: 1rem;
}

.cert-item ul {
    list-style: none;
}

.cert-item li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.cert-item li::before {
    content: '▶';
    position: absolute;
    left: 0;
    color: #1e3a8a;
    font-weight: 700;
}

.download-section {
    padding: 2rem;
    background-color: #1e3a8a;
    color: white;
    border-radius: 10px;
    text-align: center;
}

.download-section h3 {
    color: white;
    margin-bottom: 1rem;
}

.download-section .btn {
    margin-top: 1rem;
}

/* Case Studies Section */
.case-studies {
    padding: 80px 0;
    background-color: #f8fafc;
}

.case-studies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.case-study {
    padding: 2rem;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.case-study:hover {
    transform: translateY(-5px);
}

.case-study h3 {
    color: #1e3a8a;
    margin-bottom: 1rem;
}

.case-details {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.industry, .timeline {
    background-color: #1e3a8a;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
}

/* Facilities Section */
.facilities {
    padding: 80px 0;
}

.equipment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.equipment-category {
    padding: 2rem;
    background-color: #f8fafc;
    border-radius: 10px;
    border-left: 4px solid #1e3a8a;
}

.equipment-category h3 {
    color: #1e3a8a;
    margin-bottom: 1rem;
}

.equipment-category ul {
    list-style: none;
}

.equipment-category li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.equipment-category li::before {
    content: '▶';
    position: absolute;
    left: 0;
    color: #1e3a8a;
    font-weight: 700;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background-color: #f8fafc;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
}

.contact-info h3 {
    color: white;
    margin-bottom: 2rem;
}

.contact-details {
    background-color: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.contact-item {
    margin-bottom: 1.5rem;
}

.contact-item strong {
    color: #1e3a8a;
}

.rfq-form {
    background-color: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.rfq-form h3 {
    color: #1e3a8a;
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.75rem;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.95rem;
    letter-spacing: 0.01em;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid var(--navy-border);
    border-radius: var(--radius-md);
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background-color: #ffffff;
    color: var(--text-dark);
    font-family: inherit;
    line-height: 1.5;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--navy-primary);
    box-shadow: 0 0 0 3px rgba(30, 58, 138, 0.1);
    background-color: #ffffff;
    transform: translateY(-1px);
}

.form-group input:hover,
.form-group textarea:hover,
.form-group select:hover {
    border-color: var(--navy-light);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
    line-height: 1.6;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-light);
    opacity: 0.8;
}

/* Form validation states */
.form-group.error input,
.form-group.error textarea,
.form-group.error select {
    border-color: var(--error);
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}

.form-group.success input,
.form-group.success textarea,
.form-group.success select {
    border-color: var(--success);
    box-shadow: 0 0 0 3px rgba(5, 150, 105, 0.1);
}

/* Kratos-Inspired Footer */
.footer {
    background: linear-gradient(135deg, var(--kratos-navy) 0%, var(--kratos-dark-blue) 50%, var(--kratos-blue) 100%);
    color: var(--kratos-white);
    padding: var(--space-3xl) 0 var(--space-xl);
    position: relative;
    border-top: 3px solid var(--kratos-accent);
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, rgba(233, 69, 96, 0.3) 50%, transparent 100%);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
    align-items: start;
}

.footer-section:first-child {
    max-width: 400px;
}

.footer-section h4 {
    color: var(--kratos-white);
    margin-bottom: var(--space-lg);
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-bottom: 2px solid rgba(233, 69, 96, 0.3);
    padding-bottom: var(--space-sm);
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section li {
    margin-bottom: 0.75rem;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    display: inline-block;
}

.footer-section a:hover {
    color: white;
    transform: translateX(5px);
}

.footer-section p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1rem;
    line-height: 1.6;
}

/* Left-align contact header and info in footer sections */
.footer-section.contact-section h4 {
    text-align: left;
}

.footer-section.contact-section p {
    text-align: left;
}

.footer-section .btn {
    margin-top: 1rem;
    font-size: 0.9rem;
    padding: 0.6rem 1.2rem;
    background-color: rgba(255, 255, 255, 0.95) !important;
    color: var(--navy-primary) !important;
    border: 2px solid rgba(255, 255, 255, 0.95) !important;
    font-weight: 600 !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2) !important;
    transition: all 0.3s ease !important;
}

.footer-section .btn:hover {
    background-color: white !important;
    color: var(--navy-primary) !important;
    border-color: white !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3) !important;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.footer-logo-img {
    height: 45px;
    width: auto;
    object-fit: contain;
    opacity: 0.9;
}

.footer-logo-text h3 {
    color: white;
    margin: 0;
    font-size: 1.6rem;
    font-weight: 700;
}

.footer-logo-text p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    font-size: 0.95rem;
    font-weight: 400;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 2rem;
    text-align: center;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-bottom p {
    color: #ffffff;
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.5;
}

.footer-bottom p:first-child {
    font-weight: 500;
}

.footer-bottom p:last-child {
    font-size: 0.85rem;
    opacity: 0.9;
    font-weight: 400;
}

/* Trust Signals Section */
.trust-signals {
    background: #f8fafc;
    padding: 60px 0;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.trust-item {
    padding: 1rem;
}

.trust-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e40af;
    margin-bottom: 0.5rem;
    font-family: 'Montserrat', sans-serif;
}

.trust-label {
    font-size: 0.9rem;
    color: #6b7280;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Navigation CTA Styling */
.nav-cta {
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    color: white !important;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(30, 64, 175, 0.3);
}

/* Services CTA Section */
.services-cta {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 12px;
    border: 1px solid #e5e7eb;
}

.services-cta p {
    font-size: 1.1rem;
    color: #6b7280;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.services-cta .btn {
    font-size: 1.1rem;
    padding: 12px 24px;
}

/* Service Type Selector Styling */
#service-type {
    background-color: #ffffff;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 16px;
    color: #374151;
    transition: all 0.3s ease;
    cursor: pointer;
}

#service-type:focus {
    outline: none;
    border-color: #1e40af;
    box-shadow: 0 0 0 3px rgba(30, 64, 175, 0.1);
}

#service-type option {
    padding: 8px;
    background-color: #ffffff;
    color: #374151;
}

/* Pre-selected service type styling */
#service-type[style*="background-color: #f0f9ff"] {
    background-color: #f0f9ff !important;
    border-color: #1e40af !important;
    box-shadow: 0 0 0 3px rgba(30, 64, 175, 0.1);
}

/* Clickable phone and email links */
a[href^="tel:"] {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

a[href^="tel:"]:hover {
    color: var(--blue-accent);
    text-decoration: underline;
}

a[href^="mailto:"] {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

a[href^="mailto:"]:hover {
    color: var(--blue-accent);
    text-decoration: underline;
}

@media (max-width: 768px) {
    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .trust-number {
        font-size: 2rem;
    }
    
    .nav-cta {
        padding: 0.4rem 0.8rem;
        font-size: 0.9rem;
    }
    
    .logo-img {
        height: 40px;
    }
    
    .logo-text h2 {
        font-size: 1.5rem;
    }
    
    .logo-text span {
        font-size: 0.8rem;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.05);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .cta-button {
        display: none;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .hero {
        padding: 100px 0 60px;
    }

    .hero-content h1 {
        font-size: 2.2rem !important;
        line-height: 1.2 !important;
        margin-bottom: 1rem !important;
    }

    .index-page .hero-content h1 {
        font-size: 2.2rem !important;
        line-height: 1.2 !important;
        margin-bottom: 1rem !important;
    }

    .hero-subtitle {
        font-size: 1rem !important;
        line-height: 1.5 !important;
        margin-bottom: 1.5rem !important;
        max-width: 100% !important;
    }

    .index-page .hero-subtitle {
        font-size: 1rem !important;
        line-height: 1.5 !important;
        margin-bottom: 1.5rem !important;
        max-width: 100% !important;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }

    .highlights-grid {
        grid-template-columns: 1fr;
    }

    .capabilities-grid {
        grid-template-columns: 1fr;
    }

    .industries-grid {
        grid-template-columns: 1fr;
    }

    .certifications-content {
        grid-template-columns: 1fr;
    }

    .case-studies-grid {
        grid-template-columns: 1fr;
    }

    .equipment-grid {
        grid-template-columns: 1fr;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-section:first-child {
        max-width: none;
    }
    
    .footer-logo {
        justify-content: center;
        gap: 0.75rem;
    }
    
    .footer-logo-img {
        height: 40px;
    }
    
    .footer-logo-text h3 {
        font-size: 1.4rem;
    }
    
    .footer-logo-text p {
        font-size: 0.9rem;
    }
    
    .footer-section h4 {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .nav-container {
        padding: 0 15px;
    }
    
    .nav-logo {
        gap: 0.25rem;
    }
    
    .logo-img {
        height: 35px;
    }
    
    .logo-text h2 {
        font-size: 1.3rem;
    }
    
    .logo-text span {
        font-size: 0.7rem;
    }

    h1 {
        font-size: 1.8rem;
    }

    .hero {
        padding: 90px 0 50px;
    }

    .hero-content h1 {
        font-size: 1.8rem !important;
        line-height: 1.2 !important;
        margin-bottom: 0.75rem !important;
    }

    .index-page .hero-content h1 {
        font-size: 1.8rem !important;
        line-height: 1.2 !important;
        margin-bottom: 0.75rem !important;
    }

    .hero-subtitle {
        font-size: 0.9rem !important;
        line-height: 1.4 !important;
        margin-bottom: 1.25rem !important;
        max-width: 100% !important;
    }

    .index-page .hero-subtitle {
        font-size: 0.9rem !important;
        line-height: 1.4 !important;
        margin-bottom: 1.25rem !important;
        max-width: 100% !important;
    }

    .hero-buttons {
        gap: 0.5rem;
    }

    .highlight-item,
    .capability-item,
    .industry-item,
    .cert-item,
    .case-study,
    .equipment-category,
    .contact-details,
    .rfq-form {
        padding: 1.5rem;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus styles for keyboard navigation */
.btn:focus,
.nav-link:focus,
input:focus,
textarea:focus {
    outline: 2px solid #1e3a8a;
    outline-offset: 2px;
}

/* Enhanced Capability Section */
.capability-section {
    padding: 100px 0;
    position: relative;
}

.capability-section.alt {
    background-color: var(--navy-subtle);
}

.capability-section.alt::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--navy-border) 50%, transparent 100%);
}

.capability-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 3rem;
}

.capability-text h3 {
    color: var(--navy-primary);
    margin-bottom: 1.5rem;
    font-size: 1.75rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.capability-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-medium);
    margin-bottom: 1.5rem;
}

.capability-list {
    list-style: none;
    margin-top: 1.5rem;
}

.capability-list li {
    padding: 0.75rem 0;
    position: relative;
    padding-left: 2rem;
    font-size: 1rem;
    color: var(--text-medium);
    line-height: 1.6;
}

.capability-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: 700;
    font-size: 1.1rem;
    top: 0.75rem;
}

.capability-image {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.capability-image img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    transition: transform 0.3s ease;
}

.capability-image:hover img {
    transform: scale(1.05);
}

.materials-section {
    padding: 80px 0;
    background-color: #f8fafc;
}

.materials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.material-category {
    background-color: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.material-category h3 {
    color: #1e3a8a;
    margin-bottom: 1rem;
}

.material-category ul {
    list-style: none;
}

.material-category li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.material-category li::before {
    content: '▶';
    position: absolute;
    left: 0;
    color: #1e3a8a;
    font-weight: 700;
}

/* Enhanced Industry Section */
.industry-section {
    padding: 100px 0;
    position: relative;
}

.industry-section.alt {
    background-color: var(--navy-subtle);
}

.industry-section.alt::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--navy-border) 50%, transparent 100%);
}

.industry-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 3rem;
}

.industry-text h3 {
    color: var(--navy-primary);
    margin-bottom: 1.5rem;
    font-size: 1.75rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.industry-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-medium);
    margin-bottom: 1.5rem;
}

.industry-features {
    list-style: none;
    margin-top: 1.5rem;
}

.industry-features li {
    padding: 0.75rem 0;
    position: relative;
    padding-left: 2rem;
    font-size: 1rem;
    color: var(--text-medium);
    line-height: 1.6;
}

.industry-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: 700;
    font-size: 1.1rem;
    top: 0.75rem;
}

.industry-image {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.industry-image img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    transition: transform 0.3s ease;
}

.industry-image:hover img {
    transform: scale(1.05);
}

.certifications-section {
    padding: 80px 0;
}

.certifications-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.cert-item {
    background-color: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    border-left: 4px solid #1e3a8a;
}

.cert-item h3 {
    color: #1e3a8a;
    margin-bottom: 1rem;
}

.cert-item ul {
    list-style: none;
}

.cert-item li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.cert-item li::before {
    content: '▶';
    position: absolute;
    left: 0;
    color: #1e3a8a;
    font-weight: 700;
}

.cta-section {
    padding: 80px 0;
    background-color: #1e3a8a;
    color: white;
    text-align: center;
}

.cta-section h2 {
    color: white;
    margin-bottom: 1rem;
}

.cta-section p {
    margin-bottom: 2rem;
    font-size: 1.1rem;
    color: white;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn {
    margin: 0;
}

.about {
    padding: 80px 0;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-text h2 {
    color: #1e3a8a;
    margin-bottom: 2rem;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature {
    padding: 2rem;
    background-color: #f8fafc;
    border-radius: 10px;
    border-left: 4px solid #1e3a8a;
}

.feature h4 {
    color: #1e3a8a;
    margin-bottom: 1rem;
}

.services-overview {
    padding: 80px 0;
    background-color: #f8fafc;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-item {
    background-color: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    text-align: center;
}

.service-item h3 {
    color: #1e3a8a;
    margin-bottom: 1rem;
}

.location-contact {
    padding: 80px 0;
}

.location-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.location-info h2 {
    color: #1e3a8a;
    margin-bottom: 2rem;
}

.contact-summary {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.contact-item {
    padding: 2rem;
    background-color: #f8fafc;
    border-radius: 10px;
    border-left: 4px solid #1e3a8a;
}

.contact-item strong {
    color: #1e3a8a;
}

/* Enhanced Contact Info Section */
.contact-info-section {
    padding: 100px 0;
    background-color: var(--navy-subtle);
    position: relative;
}

.contact-info-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--navy-border) 50%, transparent 100%);
}

.contact-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-details h2 {
    color: var(--navy-primary);
    margin-bottom: 2rem;
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.contact-item {
    margin-bottom: 2rem;
    padding: 2rem;
    background-color: white;
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--navy-primary);
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    border-left-color: var(--navy-light);
}

.contact-item h3 {
    color: var(--navy-primary);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
    font-weight: 600;
}

.contact-item p {
    color: var(--text-medium);
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.location-map h3 {
    color: var(--navy-primary);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    font-weight: 600;
}

.location-map p {
    color: var(--text-medium);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

/* Enhanced RFQ Section */
.rfq-section {
    padding: 100px 0;
    background-color: white;
    position: relative;
}

.rfq-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--navy-border) 50%, transparent 100%);
}

.rfq-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.rfq-form {
    background-color: white;
    padding: 3rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--navy-border);
}

.rfq-form h3 {
    color: var(--navy-primary);
    margin-bottom: 2rem;
    font-size: 1.75rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.rfq-info {
    background-color: var(--navy-subtle);
    padding: 3rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--navy-border);
}

.rfq-info h3 {
    color: var(--navy-primary);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    font-weight: 600;
}

.rfq-info ul {
    list-style: none;
    margin-bottom: 2rem;
}

.rfq-info li {
    padding: 0.75rem 0;
    position: relative;
    padding-left: 2rem;
    color: var(--text-medium);
    line-height: 1.6;
}

.rfq-info li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: 700;
    font-size: 1.1rem;
    top: 0.75rem;
}

.quote-process h4 {
    color: var(--navy-primary);
    margin-bottom: 1rem;
    font-size: 1.25rem;
    font-weight: 600;
}

.quote-process ol {
    padding-left: 0;
    list-style: none;
}

.quote-process li {
    margin-bottom: 0.75rem;
    padding-left: 2rem;
    position: relative;
    line-height: 1.6;
    color: var(--text-medium);
}

.quote-process li::before {
    content: counter(step-counter);
    counter-increment: step-counter;
    position: absolute;
    left: 0;
    color: var(--navy-primary);
    font-weight: 700;
    font-size: 0.9rem;
    background: var(--navy-subtle);
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 0.1rem;
}

.quote-process {
    counter-reset: step-counter;
}

.certifications-summary {
    padding: 80px 0;
}

.cert-summary {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.cert-item {
    background-color: #f8fafc;
    padding: 2rem;
    border-radius: 10px;
    border-left: 4px solid #1e3a8a;
    text-align: center;
}

.cert-item h3 {
    color: #1e3a8a;
    margin-bottom: 1rem;
}

.cert-note {
    text-align: center;
    font-style: italic;
    color: #64748b;
}

/* Active navigation link */
.nav-link.active {
    color: #1e3a8a;
    font-weight: 600;
}

/* Certifications page specific styles */
.certifications-section.alt {
    background-color: #f8fafc;
}

.government-registration {
    padding: 2rem 0;
}

.registration-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.registration-item {
    background-color: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    border-left: 4px solid #1e3a8a;
}

.registration-item h3 {
    color: #1e3a8a;
    margin-bottom: 1rem;
}

.registration-item ul {
    list-style: none;
    margin-top: 1rem;
}

.registration-item li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.registration-item li::before {
    content: '▶';
    position: absolute;
    left: 0;
    color: #1e3a8a;
    font-weight: 700;
}

.industry-certs {
    padding: 2rem 0;
}

.industry-cert-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.industry-cert-item {
    background-color: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    border-left: 4px solid #1e3a8a;
}

.industry-cert-item h3 {
    color: #1e3a8a;
    margin-bottom: 1rem;
}

.industry-cert-item ul {
    list-style: none;
}

.industry-cert-item li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.industry-cert-item li::before {
    content: '▶';
    position: absolute;
    left: 0;
    color: #1e3a8a;
    font-weight: 700;
}

.compliance-docs {
    padding: 80px 0;
    background-color: #f8fafc;
}

.docs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.doc-item {
    background-color: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    text-align: center;
}

.doc-item h3 {
    color: #1e3a8a;
    margin-bottom: 1rem;
}

.doc-item .btn {
    margin-top: 1rem;
}

/* Enhanced Responsive Design */
@media (max-width: 768px) {
    .capability-content,
    .industry-content,
    .contact-info-grid,
    .rfq-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .capability-section,
    .industry-section,
    .contact-info-section,
    .rfq-section {
        padding: 60px 0;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .about-features,
    .services-grid,
    .materials-grid,
    .certifications-grid,
    .cert-summary,
    .registration-grid,
    .industry-cert-grid,
    .docs-grid {
        grid-template-columns: 1fr;
    }
    
    .capability-text h3,
    .industry-text h3,
    .rfq-form h3 {
        font-size: 1.5rem;
    }
    
    .contact-details h2 {
        font-size: 1.75rem;
    }
    
    .rfq-form,
    .rfq-info {
        padding: 2rem;
    }
    
    .contact-item {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .capability-section,
    .industry-section,
    .contact-info-section,
    .rfq-section {
        padding: 40px 0;
    }
    
    .capability-content,
    .industry-content,
    .contact-info-grid,
    .rfq-content {
        gap: 1.5rem;
    }
    
    .rfq-form,
    .rfq-info {
        padding: 1.5rem;
    }
    
    .contact-item {
        padding: 1.25rem;
    }
    
    .capability-text h3,
    .industry-text h3,
    .rfq-form h3 {
        font-size: 1.25rem;
    }
    
    .contact-details h2 {
        font-size: 1.5rem;
    }
}

/* Print styles */
@media print {
    .navbar,
    .hero-buttons,
    .cta-button,
    .btn,
    .rfq-form {
        display: none;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
    }
    
    h1, h2, h3 {
        page-break-after: avoid;
    }
}
