/* OnTrack Dynamics - Professional Design Match */

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: #1a202c;
    background-color: #ffffff;
    font-weight: 400;
}

/* Header & Navigation */
.header {
    background: #ffffff;
    border-bottom: 1px solid #e2e8f0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.navbar {
    padding: 1rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    display: flex;
    align-items: center;
}

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

.logo-icon {
    background: #0891b2;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.brand-text h1 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a202c;
    line-height: 1.2;
}

.brand-text span {
    font-size: 0.875rem;
    color: #64748b;
    font-weight: 500;
}

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

.nav-link {
    color: #64748b;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.5rem 0;
    border-bottom: 2px solid transparent;
    transition: all 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
    color: #1a202c;
    border-bottom-color: #0891b2;
}

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

.phone-number {
    color: #1a202c;
    font-weight: 500;
    font-size: 0.95rem;
}

.cta-button {
    background: #06b6d4;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: background 0.2s ease;
}

.cta-button:hover {
    background: #0891b2;
}

/* Hero Section with Video Background */
.hero-section {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    color: white;
    padding: 6rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(30, 41, 59, 0.7);
    z-index: 2;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 3;
    width: 100%;
    text-align: center;
}

.hero-badge {
    background: rgba(6, 182, 212, 0.2);
    border: 1px solid #06b6d4;
    color: #06b6d4;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 3rem;
    display: inline-block;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 2rem;
    color: white;
}

.hero-highlight {
    color: #06b6d4;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #cbd5e1;
    max-width: 700px;
    margin: 0 auto 3rem;
    font-weight: 400;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 4rem;
}

.btn {
    padding: 1rem 2rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.2s ease;
    display: inline-block;
}

.btn-primary {
    background: #06b6d4;
    color: white;
}

.btn-primary:hover {
    background: #0891b2;
    transform: translateY(-1px);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid #475569;
}

.btn-secondary:hover {
    border-color: #06b6d4;
    color: #06b6d4;
}

/* Credentials Bar */
.credentials-bar {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 3rem;
}

.credential-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.check-icon {
    background: #06b6d4;
    color: white;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
}

.credential-item span:last-child {
    color: #cbd5e1;
    font-weight: 500;
    font-size: 0.9rem;
}

/* Problem Section */
.problem-section {
    padding: 4rem 2rem;
    background: #f8fafc;
}

.content-container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 1.25rem;
    color: #64748b;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.problems-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.problem-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    border: 1px solid #e2e8f0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.problem-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.problem-card.red-theme {
    background: #fef2f2;
    border-left: 4px solid #ef4444;
}

.problem-card.orange-theme {
    background: #fff7ed;
    border-left: 4px solid #f97316;
}

.problem-card.yellow-theme {
    background: #fefce8;
    border-left: 4px solid #eab308;
}

.problem-icon {
    margin-bottom: 1.5rem;
}

.icon-bg {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto;
    color: white;
}

.red-bg { background: #ef4444; }
.orange-bg { background: #f97316; }
.yellow-bg { background: #eab308; }

.problem-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 1rem;
}

.problem-card p {
    color: #64748b;
    line-height: 1.6;
}

/* Solution Section */
.solution-section {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    color: white;
}

.solution-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.solution-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease, background 0.3s ease;
}

.solution-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.solution-icon {
    margin-bottom: 1.5rem;
}

.teal-bg {
    background: #06b6d4;
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto;
    color: white;
}

.solution-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: white;
    margin-bottom: 1rem;
}

.solution-highlight {
    font-size: 2.5rem;
    font-weight: 700;
    color: #06b6d4;
    margin-bottom: 1rem;
}

.solution-card p {
    color: #cbd5e1;
    line-height: 1.6;
}

/* Deliverables Section */
.deliverables-section {
    padding: 4rem 2rem;
    background: white;
}

.deliverables-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.deliverable-card {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    border: 1px solid #e2e8f0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.deliverable-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.deliverable-icon {
    margin-bottom: 1.5rem;
}

.navy-bg {
    background: #1e293b;
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto;
    color: white;
}

.deliverable-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 1rem;
}

.deliverable-card p {
    color: #64748b;
    line-height: 1.6;
}

/* Timeline Section */
.timeline-section {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    color: white;
}

.timeline-container {
    max-width: 1200px;
    margin: 0 auto;
}

.timeline-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    text-align: center;
    margin-bottom: 3rem;
}

.timeline-flow {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.timeline-step {
    text-align: center;
    position: relative;
}

.step-circle {
    background: #06b6d4;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
    box-shadow: 0 4px 15px rgba(6, 182, 212, 0.3);
}

.step-phase {
    color: #06b6d4;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.step-content h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: white;
    margin-bottom: 1rem;
}

.step-content p {
    color: #cbd5e1;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Federal Credentials Section */
.federal-credentials-section {
    padding: 4rem 2rem;
    background: #f8fafc;
}

.federal-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.credential-box {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    border: 1px solid #e2e8f0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.credential-box.highlighted {
    border: 2px solid #06b6d4;
    box-shadow: 0 4px 15px rgba(6, 182, 212, 0.2);
}

.credential-box:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

.cred-icon {
    margin-bottom: 1rem;
}

.icon-circle {
    background: #1e293b;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto;
}

.credential-box h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 0.5rem;
}

.credential-box p {
    color: #64748b;
    font-size: 0.9rem;
    line-height: 1.4;
}

/* Final CTA Section */
.final-cta-section {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    color: white;
    text-align: center;
}

.cta-container {
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
    line-height: 1.2;
}

.cta-subtitle {
    font-size: 1.2rem;
    color: #cbd5e1;
    margin-bottom: 3rem;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.btn-primary-large {
    background: #06b6d4;
    color: white;
    padding: 1.25rem 2.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.btn-primary-large:hover {
    background: #0891b2;
    transform: translateY(-2px);
}

.btn-secondary-large {
    background: transparent;
    color: white;
    border: 2px solid #475569;
    padding: 1.25rem 2.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.btn-secondary-large:hover {
    border-color: #06b6d4;
    color: #06b6d4;
    transform: translateY(-2px);
}

.cta-guarantees {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.guarantee-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.check-icon-small {
    background: #06b6d4;
    color: white;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
}

.guarantee-badge span:last-child {
    color: #cbd5e1;
    font-weight: 500;
    font-size: 0.9rem;
}

/* Footer */
.footer {
    background: #1e293b;
    color: white;
    padding: 3rem 2rem 1rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.footer-brand-text h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.2rem;
}

.footer-brand-text span {
    font-size: 0.9rem;
    color: #94a3b8;
}

.footer-description {
    color: #cbd5e1;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    background: #374151;
    color: #cbd5e1;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: background 0.2s ease;
}

.social-link:hover {
    background: #06b6d4;
    color: white;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.link-group h4 {
    color: white;
    font-weight: 600;
    margin-bottom: 1rem;
}

.link-group a {
    color: #cbd5e1;
    text-decoration: none;
    display: block;
    margin-bottom: 0.5rem;
    transition: color 0.2s ease;
}

.link-group a:hover {
    color: #06b6d4;
}

.contact-item {
    display: flex;
    flex-direction: column;
    margin-bottom: 0.5rem;
}

.contact-label {
    color: #94a3b8;
    font-size: 0.8rem;
}

.contact-value {
    color: #cbd5e1;
    font-weight: 500;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 2rem;
}

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

.footer-badges {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    color: #94a3b8;
    font-size: 0.85rem;
}

/* Credentials Page Specific Styles */

.credentials-main-section {
    padding: 4rem 2rem;
    background: white;
}

.credentials-block {
    max-width: 1200px;
    margin: 0 auto;
}

.credentials-header {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    color: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    margin-bottom: 3rem;
}

.credentials-title {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin: 0;
}

.credentials-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.credential-card-pro {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-left: 4px solid #06b6d4;
}

.credential-card-pro:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.credential-card-pro.naics-card {
    border-left: 4px solid #f59e0b;
}

.credential-icon-pro {
    margin-bottom: 1.5rem;
}

.icon-circle-pro {
    background: #1e293b;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0;
}

.credential-content-pro h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 1rem;
}

.credential-content-pro p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.credential-status-pro {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.status-code {
    background: #0891b2;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-family: 'Monaco', 'Courier New', monospace;
    font-weight: 600;
    font-size: 0.9rem;
}

.status-active-pro {
    background: #059669;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.9rem;
}

.status-certified-pro {
    background: #059669;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.9rem;
}

.status-clearance-pro {
    background: #7c3aed;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.9rem;
}

.naics-codes {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.naics-code {
    background: #e0f2fe;
    color: #0891b2;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-weight: 500;
    font-size: 0.9rem;
    border: 1px solid #06b6d4;
}

.additional-certs-section {
    padding: 4rem 2rem;
    background: #f8fafc;
}

.additional-certs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.additional-cert-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    border: 1px solid #e2e8f0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.additional-cert-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.cert-icon-circle {
    background: #1e293b;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 1.5rem;
}

.additional-cert-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 1rem;
}

.additional-cert-card p {
    color: #64748b;
    line-height: 1.6;
}

/* Contact Page Specific Styles */

.contact-main-section {
    padding: 4rem 2rem;
    background: white;
}

.contact-layout {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info-section {
    padding-right: 2rem;
}

.contact-info-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 1rem;
}

.contact-description {
    font-size: 1.1rem;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 3rem;
}

.contact-methods {
    margin-bottom: 3rem;
}

.contact-method {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #f8fafc;
    border-radius: 12px;
    border-left: 4px solid #06b6d4;
}

.contact-method-icon {
    background: #06b6d4;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.contact-method-details h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 0.5rem;
}

.contact-method-value {
    font-size: 1.1rem;
    font-weight: 600;
    color: #06b6d4;
    margin-bottom: 0.5rem;
}

.contact-method-hours {
    color: #64748b;
    font-size: 0.95rem;
}

.contact-sidebar {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}

.sidebar-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 1.5rem;
}

.sidebar-points {
    list-style: none;
    padding: 0;
}

.sidebar-points li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding: 0.75rem;
    background: white;
    border-radius: 8px;
    border-left: 3px solid #06b6d4;
}

.sidebar-check {
    background: #06b6d4;
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
    flex-shrink: 0;
}

.sidebar-points span {
    color: #64748b;
    font-weight: 500;
}

.contact-form-section {
    padding-left: 2rem;
}

.contact-form-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 2rem;
}

.contact-form {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: #374151;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 1rem;
    background: white;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #06b6d4;
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #9ca3af;
}

.form-group select {
    cursor: pointer;
}

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

.character-count {
    text-align: right;
    color: #9ca3af;
    font-size: 0.85rem;
    margin-top: 0.25rem;
}

.form-submit {
    background: #06b6d4;
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.form-submit:hover {
    background: #0891b2;
    transform: translateY(-2px);
}

.form-submit:active {
    transform: translateY(0);
}

/* Mobile Responsiveness for Credentials and Contact */
@media (max-width: 968px) {
    .credentials-cards-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .contact-info-section,
    .contact-form-section {
        padding-left: 0;
        padding-right: 0;
    }
}

@media (max-width: 768px) {
    .additional-certs-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-method {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
}

/* About Page Specific Styles */

.about-story-section {
    padding: 4rem 2rem;
    background: white;
}

.about-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.about-text-content {
    padding-right: 2rem;
}

.section-tag {
    background: #e0f2fe;
    color: #0891b2;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 2rem;
    display: inline-block;
}

.about-section-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #1a202c;
    line-height: 1.2;
    margin-bottom: 2rem;
}

.about-paragraph {
    font-size: 1.1rem;
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.about-highlight {
    background: #fef3c7;
    padding: 1rem;
    border-radius: 6px;
    margin: 2rem 0;
    border-left: 4px solid #f59e0b;
}

.about-highlight p {
    color: #92400e;
    font-weight: 600;
    margin: 0;
}

.about-problems-list {
    margin: 2rem 0;
}

.about-decision-highlight {
    background: linear-gradient(135deg, #06b6d4, #0891b2);
    color: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    margin-top: 2rem;
}

.about-decision-highlight h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin: 0;
    color: white;
}

.about-visual-content {
    display: flex;
    justify-content: center;
    align-items: center;
}

.cybersecurity-operations-visual {
    width: 100%;
    height: 400px;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
}

.operations-center-mockup {
    width: 100%;
    height: 100%;
    position: relative;
}

.ops-center-bg {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(6, 182, 212, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(6, 182, 212, 0.2) 0%, transparent 50%),
        linear-gradient(135deg, transparent 0%, rgba(6, 182, 212, 0.1) 100%);
    position: relative;
}

.ops-center-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(90deg, transparent, transparent 98px, rgba(6, 182, 212, 0.1) 100px),
        repeating-linear-gradient(0deg, transparent, transparent 98px, rgba(6, 182, 212, 0.1) 100px);
}

.experience-overlay {
    position: absolute;
    bottom: 20px;
    right: 20px;
}

.experience-badge {
    background: #06b6d4;
    color: white;
    padding: 1.5rem 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(6, 182, 212, 0.4);
}

.experience-number {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
}

.experience-text {
    display: flex;
    flex-direction: column;
    font-size: 0.9rem;
    font-weight: 600;
    margin-top: 0.5rem;
}

.about-mission-section {
    padding: 4rem 2rem;
    background: #f8fafc;
}

.about-mission-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.about-mission-text {
    font-size: 1.2rem;
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.about-mission-pillars {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.mission-pillar {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mission-pillar:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.pillar-icon {
    margin-bottom: 1.5rem;
}

.mission-pillar h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 1rem;
}

.mission-pillar p {
    color: #64748b;
    line-height: 1.6;
}

.about-architect-section {
    padding: 4rem 2rem;
    background: white;
}

.architect-content {
    max-width: 1200px;
    margin: 0 auto;
}

.architect-layout {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: flex-start;
    margin-bottom: 3rem;
}

.architect-image {
    position: sticky;
    top: 2rem;
}

.architect-placeholder {
    width: 100%;
    height: 400px;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
}

.mountain-landscape-bg {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #64748b 0%, #475569 50%, #334155 100%);
    background-image: 
        radial-gradient(ellipse at top, rgba(255,255,255,0.1) 0%, transparent 60%),
        linear-gradient(180deg, transparent 60%, rgba(0,0,0,0.3) 100%);
    position: relative;
}

.mountain-landscape-bg::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40%;
    background: linear-gradient(to top, rgba(0,0,0,0.4), transparent);
}

.architect-details {
    padding-left: 2rem;
}

.architect-name {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 0.5rem;
}

.architect-title {
    color: #06b6d4;
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.architect-bio {
    font-size: 1.1rem;
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.architect-credentials {
    display: grid;
    gap: 1.5rem;
    margin-top: 2rem;
}

.cred-group {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1rem;
    background: #f8fafc;
    border-radius: 8px;
    border-left: 4px solid #06b6d4;
}

.cred-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.cred-info h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #06b6d4;
    margin-bottom: 0.5rem;
}

.cred-info p {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.5;
}

.architect-quote {
    background: linear-gradient(135deg, #1e293b, #0f172a);
    color: white;
    padding: 3rem;
    border-radius: 12px;
    text-align: center;
    position: relative;
    margin-top: 3rem;
}

.architect-quote::before {
    content: '"';
    font-size: 4rem;
    color: #06b6d4;
    position: absolute;
    top: 1rem;
    left: 2rem;
    font-family: Georgia, serif;
}

.quote-content blockquote {
    font-size: 1.3rem;
    font-style: italic;
    line-height: 1.6;
    margin: 0;
    color: #e2e8f0;
    position: relative;
    z-index: 1;
}

.about-ip-section {
    padding: 3rem 2rem;
    background: #fef7cd;
    border-top: 4px solid #f59e0b;
}

.ip-protection-notice {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    background: white;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #f59e0b;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.2);
}

.ip-protection-notice .ip-icon {
    font-size: 3rem;
    flex-shrink: 0;
}

.ip-protection-notice .ip-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #92400e;
    margin-bottom: 1rem;
}

.ip-protection-notice .ip-content p {
    color: #92400e;
    line-height: 1.6;
    font-size: 1rem;
}

/* Responsive Design for About Page */
@media (max-width: 968px) {
    .about-content-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .about-text-content {
        padding-right: 0;
    }
    
    .architect-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .architect-details {
        padding-left: 0;
    }
    
    .architect-image {
        position: relative;
        top: auto;
    }
}

@media (max-width: 768px) {
    .about-mission-pillars {
        grid-template-columns: 1fr;
    }
    
    .architect-credentials {
        gap: 1rem;
    }
    
    .cred-group {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .ip-protection-notice {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 1rem;
        padding: 0 1rem;
    }
    
    .nav-menu {
        order: 3;
        width: 100%;
        justify-content: space-around;
    }
    
    .nav-contact {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .credentials-bar {
        flex-wrap: wrap;
        gap: 1rem;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-guarantees {
        flex-direction: column;
        align-items: center;
    }
    
    .problems-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .solution-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .timeline-flow {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 1.5rem;
    }
    
    .deliverables-grid,
    .federal-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-section {
        padding: 3rem 1rem;
    }
    
    .problem-section,
    .solution-section,
    .deliverables-section,
    .timeline-section,
    .federal-credentials-section,
    .final-cta-section {
        padding: 2rem 1rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .timeline-title {
        font-size: 2rem;
    }
    
    .problems-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    /* Hero video adjustments for mobile */
    .hero-section {
        min-height: 70vh;
        padding: 3rem 1rem;
    }
    
    .hero-video-background {
        object-position: center center;
    }
}
/* =============================================================================
   IMAGE FIXES FOR ONTRACK DYNAMICS ABOUT PAGE
   Add this CSS to your styles.css file
   ============================================================================= */

/* Fix for Tech Operations Image (30+ Years section) */
.ops-center-bg {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;  /* This prevents squeezing */
    object-position: center !important;
    border-radius: 12px !important;
    display: block !important;
}

.operations-center-mockup {
    position: relative !important;
    width: 100% !important;
    height: 400px !important;  /* Fixed height prevents squeezing */
    border-radius: 12px !important;
    overflow: hidden !important;  /* Prevents image overflow */
}

/* Fix for Ronald's Headshot (Chief Architect section) */
.architect-photo {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;  /* This prevents cutting off heads */
    object-position: center top !important;  /* Focuses on face area */
    border-radius: 12px !important;
    display: block !important;
}

.architect-placeholder {
    width: 100% !important;
    height: 500px !important;  /* Fixed height for consistent display */
    border-radius: 12px !important;
    overflow: hidden !important;  /* Prevents image overflow */
    position: relative !important;
}

/* Ensure text doesn't get pushed around */
.architect-layout {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;  /* Equal columns */
    gap: 3rem !important;
    align-items: start !important;  /* Keeps text at top */
}

.architect-details {
    padding: 0 !important;
    margin: 0 !important;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .architect-layout {
        grid-template-columns: 1fr !important;  /* Stack on mobile */
        gap: 2rem !important;
    }
    
    .operations-center-mockup {
        height: 300px !important;  /* Smaller on mobile */
    }
    
    .architect-placeholder {
        height: 400px !important;  /* Smaller on mobile */
    }
}

/* Experience overlay positioning fix */
.experience-overlay {
    position: absolute !important;
    bottom: 20px !important;
    right: 20px !important;
    z-index: 10 !important;
}

.experience-badge {
    background: rgba(20, 184, 166, 0.95) !important;
    backdrop-filter: blur(10px) !important;
    border-radius: 12px !important;
    padding: 1.5rem !important;
    color: white !important;
    text-align: center !important;
}

.experience-number {
    font-size: 3rem !important;
    font-weight: 700 !important;
    line-height: 1 !important;
    margin-bottom: 0.5rem !important;
}

.experience-text {
    font-size: 0.875rem !important;
    font-weight: 500 !important;
}

.experience-text span {
    display: block !important;
    line-height: 1.2 !important;
}

/* Assessment Button Styles */
.assessment-cta {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-size: 0.95em;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    text-transform: none;
    margin-right: 10px;
}

.assessment-cta:hover {
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3);
    text-decoration: none;
    color: white;
}

/* Assessment Hero Button */
.assessment-hero-button {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    padding: 18px 36px;
    border: none;
    border-radius: 12px;
    font-size: 1.1em;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.assessment-hero-button:hover {
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(16, 185, 129, 0.4);
    text-decoration: none;
    color: white;
}

/* Green Translucent Qualification Box */
.qualify-translucent-box {
    background: rgba(16, 185, 129, 0.15);
    border: 2px solid rgba(16, 185, 129, 0.6);
    padding: 20px 30px;
    border-radius: 12px;
    margin: 30px auto;
    text-align: center;
    backdrop-filter: blur(5px);
    max-width: 800px;
}

.qualify-translucent-box h3 {
    color: white;
    margin-bottom: 10px;
    font-size: 1.3em;
    font-weight: 600;
}

.qualify-translucent-box p {
    color: white;
    margin-bottom: 15px;
    font-size: 1.1em;
    line-height: 1.5;
}

.qualify-translucent-box .assessment-badge {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.9em;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.3);
    display: inline-block;
    margin-top: 10px;
}

/* Page Header Buttons */
.page-header-buttons {
    margin-top: 30px;
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .assessment-cta {
        padding: 10px 16px;
        font-size: 0.9em;
        margin-right: 0;
        margin-bottom: 10px;
    }
    
    .assessment-hero-button {
        padding: 16px 28px;
        font-size: 1em;
        width: 100%;
        justify-content: center;
    }
    
    .qualify-translucent-box {
        padding: 15px 20px;
        margin: 20px 15px;
    }
    
    .qualify-translucent-box h3 {
        font-size: 1.1em;
    }
    
    .qualify-translucent-box p {
        font-size: 1em;
    }
    
    .page-header-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .nav-contact {
        flex-direction: column;
        gap: 10px;
        align-items: stretch;
    }
}
