/* About Us Page Specific Styles */
/* Uses existing brand colors from main style.css */

/* About Hero Section */
.about-hero {
    background: #ffffff;
    padding: 120px 0 60px;
    position: relative;
    border-bottom: 1px solid #e2e8f0;
}

.about-hero-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.breadcrumb a {
    color: var(--brand-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: var(--brand-secondary);
}

.hero-header {
    margin-bottom: 3rem;
}

.section-badge {
    display: inline-block;
    background: rgba(255, 183, 43, 0.1);
    color: var(--brand-primary);
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 183, 43, 0.3);
}

.hero-title {
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 0;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-overview {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
    text-align: left;
}

.company-intro h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.company-intro p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.key-facts {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.fact-item {
    text-align: center;
    padding: 1.5rem 1rem;
    background: #f8fafc;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}

.fact-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--brand-primary);
    margin-bottom: 0.5rem;
    display: block;
}

.fact-label {
    font-size: 0.875rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .about-hero {
        padding: 100px 0 40px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-overview {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .key-facts {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .fact-item {
        padding: 1rem 0.5rem;
    }
    
    .fact-number {
        font-size: 1.5rem;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .key-facts {
        grid-template-columns: 1fr;
    }
}

/* Company Story Section */
.company-story {
    background: var(--bg-primary);
    padding: 6rem 0;
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.story-text {
    max-width: none;
}

.story-narrative {
    margin: 2rem 0;
}

.story-lead {
    font-size: 1.25rem;
    color: var(--text-primary);
    font-weight: 500;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.story-narrative p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.story-highlights {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--brand-white);
    border-radius: 1rem;
    box-shadow: var(--shadow-black);
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.highlight-item:hover {
    transform: translateX(8px);
    border-color: var(--brand-primary);
    box-shadow: var(--shadow-brand);
}

.highlight-icon {
    width: 48px;
    height: 48px;
    background: var(--gradient-primary);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-black);
    flex-shrink: 0;
}

.highlight-content h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.highlight-content p {
    color: var(--text-secondary);
    line-height: 1.5;
    font-size: 0.875rem;
}

/* Experience Showcase */
.story-visual {
    display: flex;
    justify-content: center;
    align-items: start;
}

.experience-showcase {
    background: var(--brand-white);
    border-radius: 1.5rem;
    padding: 2rem;
    box-shadow: var(--shadow-brand-lg);
    border: 1px solid rgba(255, 183, 43, 0.2);
    position: sticky;
    top: 6rem;
    max-width: 400px;
    width: 100%;
}

.experience-header {
    text-align: center;
    margin-bottom: 2rem;
}

.experience-header h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.experience-header p {
    color: var(--text-secondary);
    font-size: 0.875rem;
}

.industry-timeline {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.industry-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--bg-secondary);
    border-radius: 0.75rem;
    border: 1px solid var(--gray-200);
    transition: all 0.3s ease;
    opacity: 1;
    transform: translateX(0);
}

.industry-item:hover {
    transform: translateX(4px);
    border-color: var(--brand-primary);
    background: var(--brand-white);
}

.industry-icon {
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-black);
    flex-shrink: 0;
}

.industry-info {
    flex: 1;
}

.industry-info h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.industry-info p {
    font-size: 0.75rem;
    color: var(--text-secondary);
    line-height: 1.4;
    margin-bottom: 0.25rem;
}

.industry-years {
    font-size: 0.75rem;
    color: var(--brand-primary);
    font-weight: 600;
}

/* Leadership Section */
.leadership-section {
    background: var(--bg-secondary);
    padding: 6rem 0;
}

.leadership-header {
    text-align: center;
    margin-bottom: 4rem;
}

.leadership-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.leader-profile {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 2rem;
    align-items: start;
}

.leader-image-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.leader-image {
    position: relative;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--brand-primary);
    box-shadow: var(--shadow-brand);
}

.leader-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
}

.leader-image:hover .leader-photo {
    transform: scale(1.05);
}

.image-placeholder {
    width: 100%;
    height: 100%;
    background: var(--gradient-gold-black);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-white);
}

.placeholder-icon {
    font-size: 4rem;
}

.leader-badge {
    position: absolute;
    bottom: -10px;
    right: -10px;
    background: var(--gradient-primary);
    color: var(--brand-black);
    padding: 0.5rem 0.75rem;
    border-radius: 0.75rem;
    font-size: 0.875rem;
    font-weight: 700;
    box-shadow: var(--shadow-brand);
}

.leader-credentials {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.credential {
    padding: 0.375rem 0.75rem;
    background: var(--brand-white);
    border: 2px solid var(--brand-primary);
    border-radius: 0.5rem;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--brand-primary);
    animation: credentialFloat 3s ease-in-out infinite;
}

.credential:nth-child(2) { animation-delay: 0.5s; }
.credential:nth-child(3) { animation-delay: 1s; }
.credential:nth-child(4) { animation-delay: 1.5s; }

.leader-info {
    background: var(--brand-white);
    border-radius: 1.5rem;
    padding: 2rem;
    box-shadow: var(--shadow-black);
    border: 1px solid rgba(255, 183, 43, 0.2);
}

.leader-name {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.leader-title {
    font-size: 1.125rem;
    color: var(--brand-primary);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.leader-tagline {
    color: var(--text-secondary);
    font-style: italic;
    margin-bottom: 1.5rem;
}

.leader-summary {
    margin-bottom: 2rem;
}

.leader-summary p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.leader-expertise h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
}

.expertise-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem;
    background: var(--bg-secondary);
    border-radius: 0.5rem;
    font-size: 0.875rem;
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

.expertise-item:hover {
    background: rgba(255, 183, 43, 0.1);
    color: var(--text-primary);
    transform: scale(1.02);
}

.expertise-item i {
    color: var(--brand-primary);
}

/* Leader Experience */
.leader-experience {
    background: var(--brand-white);
    border-radius: 1.5rem;
    padding: 2rem;
    box-shadow: var(--shadow-black);
    border: 1px solid rgba(255, 183, 43, 0.2);
    position: sticky;
    top: 6rem;
}

.experience-section {
    margin-bottom: 2rem;
}

.experience-section h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.experience-intro {
    color: var(--text-secondary);
    font-size: 0.875rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.education-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.education-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: var(--bg-secondary);
    border-radius: 0.75rem;
    transition: all 0.3s ease;
}

.education-item:hover {
    transform: translateX(4px);
    background: rgba(255, 183, 43, 0.1);
}

.education-icon {
    width: 32px;
    height: 32px;
    background: var(--gradient-primary);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-black);
    flex-shrink: 0;
}

.education-details h5 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.education-details p {
    font-size: 0.75rem;
    color: var(--text-secondary);
}

.philosophy-section {
    background: var(--bg-secondary);
    border-radius: 1rem;
    padding: 1.5rem;
    border-left: 4px solid var(--brand-primary);
}

.philosophy-section h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.leadership-quote {
    font-style: italic;
    color: var(--text-primary);
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 0.875rem;
}

.philosophy-section cite {
    color: var(--text-secondary);
    font-size: 0.75rem;
    font-weight: 500;
}

/* Values & Mission Section */
.values-mission {
    background: var(--bg-primary);
    padding: 6rem 0;
}

.values-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.mission-vision {
    max-width: none;
}

.purpose-cards {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.purpose-card {
    background: var(--brand-white);
    border-radius: 1.5rem;
    padding: 2rem;
    box-shadow: var(--shadow-black);
    border: 2px solid transparent;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.purpose-card:hover {
    transform: translateY(-8px);
    border-color: var(--brand-primary);
    box-shadow: var(--shadow-brand-lg);
}

.purpose-icon {
    width: 64px;
    height: 64px;
    background: var(--gradient-gold-black);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-white);
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.purpose-card:hover .purpose-icon {
    transform: scale(1.1) rotate(5deg);
}

.purpose-card h3 {
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.purpose-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Values Showcase */
.values-showcase {
    background: var(--brand-white);
    border-radius: 1.5rem;
    padding: 2rem;
    box-shadow: var(--shadow-brand-lg);
    border: 1px solid rgba(255, 183, 43, 0.2);
    position: sticky;
    top: 6rem;
}

.values-showcase h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    text-align: center;
    margin-bottom: 0.5rem;
}

.values-intro {
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.875rem;
    margin-bottom: 2rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.value-card {
    background: var(--bg-secondary);
    border-radius: 1rem;
    padding: 1.5rem;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
}

.value-card:hover {
    transform: translateY(-8px);
    border-color: var(--brand-primary);
    background: var(--brand-white);
    box-shadow: var(--shadow-brand);
}

.value-letter {
    width: 48px;
    height: 48px;
    background: var(--gradient-primary);
    color: var(--brand-black);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 800;
    margin: 0 auto 1rem;
    transition: all 0.3s ease;
}

.value-card h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

.value-card p {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.values-motto {
    background: var(--bg-secondary);
    border-radius: 1rem;
    padding: 1.5rem;
    text-align: center;
    border: 2px solid var(--brand-primary);
}

.motto-container h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.motto-text {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.motto-acronym {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--brand-primary);
    letter-spacing: 2px;
}

.motto-full {
    font-size: 0.875rem;
    color: var(--text-secondary);
    font-weight: 500;
}

/* Why Choose Section */
.why-choose {
    background: var(--bg-secondary);
    padding: 6rem 0;
}

.why-header {
    text-align: center;
    margin-bottom: 4rem;
}

.differentiators-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.differentiator-card {
    background: var(--brand-white);
    border-radius: 1.5rem;
    padding: 2rem;
    box-shadow: var(--shadow-black);
    border: 2px solid transparent;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.differentiator-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.differentiator-card:hover::before {
    transform: scaleX(1);
}

.differentiator-card:hover {
    transform: translateY(-12px);
    border-color: var(--brand-primary);
    box-shadow: var(--shadow-brand-lg);
}

.diff-number {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 40px;
    height: 40px;
    background: rgba(255, 183, 43, 0.1);
    border: 2px solid var(--brand-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    font-weight: 800;
    color: var(--brand-primary);
}

.diff-icon {
    width: 72px;
    height: 72px;
    background: var(--gradient-gold-black);
    border-radius: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-white);
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.differentiator-card:hover .diff-icon {
    transform: scale(1.1) rotate(5deg);
}

.differentiator-card h3 {
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
    margin-right: 3rem;
}

.differentiator-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.diff-metric {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    background: var(--bg-secondary);
    border-radius: 0.75rem;
    border: 1px solid rgba(255, 183, 43, 0.2);
}

.diff-metric .metric-value {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--brand-primary);
}

.diff-metric .metric-label {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

/* About CTA Section */
.about-cta {
    background: var(--gradient-black-gold);
    padding: 6rem 0;
    color: var(--brand-white);
    position: relative;
    overflow: hidden;
}

.about-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 40%, rgba(255, 183, 43, 0.1) 0%, transparent 70%),
                radial-gradient(circle at 70% 20%, rgba(255, 183, 43, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.about-cta .cta-content {
    display: block;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.cta-text {
    max-width: none;
    margin-bottom: 3rem;
}

.cta-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.cta-description {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

.cta-benefits {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
    align-items: center;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-benefit {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.9);
}

.cta-benefit i {
    color: var(--brand-primary);
    font-size: 1.125rem;
}

.cta-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.cta-trust {
    text-align: center;
    margin-top: 2rem;
}

.cta-trust p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
    font-size: 0.875rem;
}

.trust-indicators {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
}

.trust-item i {
    color: var(--brand-primary);
}

/* Contact Card */
.cta-visual {
    display: none;
}

.contact-card {
    background: var(--brand-white);
    border-radius: 1.5rem;
    padding: 2rem;
    box-shadow: var(--shadow-brand-lg);
    border: 1px solid rgba(255, 183, 43, 0.2);
    max-width: 100%;
    width: 100%;
    color: var(--text-primary);
}

.card-header {
    text-align: center;
    margin-bottom: 2rem;
}

.card-icon {
    width: 64px;
    height: 64px;
    background: var(--gradient-primary);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-black);
    margin: 0 auto 1rem;
}

.card-header h3 {
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.card-header p {
    color: var(--text-secondary);
    font-size: 0.875rem;
}

.contact-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-option {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--bg-secondary);
    border-radius: 0.75rem;
    border: 1px solid var(--gray-200);
    transition: all 0.3s ease;
}

.contact-option:hover {
    transform: translateX(4px);
    border-color: var(--brand-primary);
    background: var(--brand-white);
}

.option-icon {
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-black);
    flex-shrink: 0;
}

.option-content {
    flex: 1;
}

.option-content h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.option-content p {
    font-size: 0.75rem;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.option-link {
    color: var(--brand-primary);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 600;
    transition: color 0.3s ease;
}

.option-link:hover {
    color: var(--brand-secondary);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .about-hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .story-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .experience-showcase {
        position: static;
    }
    
    .leadership-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .leader-profile {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .leader-experience {
        position: static;
    }
    
    .values-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .values-showcase {
        position: static;
    }
    
    .about-cta .cta-content {
        max-width: 100%;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .timeline-container {
        height: 400px;
        padding: 1rem;
    }
    
    .timeline-point {
        flex-direction: column !important;
        text-align: center !important;
    }
    
    .point-content {
        min-width: 140px;
    }
    
    .differentiators-grid {
        grid-template-columns: 1fr;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .expertise-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
    
    .trust-indicators {
        gap: 1rem;
    }
}

@media (max-width: 640px) {
    .hero-stats {
        grid-template-columns: 1fr;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.125rem;
    }
    
    .timeline-container {
        height: 350px;
    }
    
    .point-marker {
        width: 48px;
        height: 48px;
    }
    
    .differentiator-card h3 {
        margin-right: 0;
        font-size: 1.25rem;
    }
    
    .diff-number {
        position: static;
        margin-bottom: 1rem;
    }
    
    .cta-title {
        font-size: 1.75rem;
    }
    
    .cta-description {
        font-size: 1rem;
    }
    
    .trust-indicators {
        flex-direction: column;
        align-items: center;
    }
}

/* Accessibility Improvements */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .purpose-card,
    .value-card,
    .differentiator-card {
        border: 2px solid var(--text-primary);
    }
    
    .timeline-point {
        border: 2px solid var(--brand-primary);
    }
}

/* Focus styles for better accessibility */
.btn:focus,
.option-link:focus {
    outline: 2px solid var(--brand-primary);
    outline-offset: 2px;
}

.timeline-point:focus {
    outline: 2px solid var(--brand-primary);
    outline-offset: 4px;
}

/* Print styles */
@media print {
    .navbar,
    .back-to-top,
    .cta-actions {
        display: none;
    }
    
    .about-hero,
    .company-story,
    .leadership-section,
    .values-mission,
    .why-choose {
        background: var(--white) !important;
        color: var(--black) !important;
    }
    
    .hero-title,
    .section-title {
        color: var(--black) !important;
    }
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--gray-100);
}

::-webkit-scrollbar-thumb {
    background: var(--brand-primary);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--brand-secondary);
}

/* Selection styling */
::selection {
    background: var(--brand-primary);
    color: var(--brand-black);
}

::-moz-selection {
    background: var(--brand-primary);
    color: var(--brand-black);
}