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

html {
    scroll-behavior: smooth;
}

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

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Header */
.header {
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

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

.nav-brand .logo {
    height: 60px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #374151;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: #DC2626;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 2px;
    background: #DC2626;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.hamburger-line {
    width: 25px;
    height: 3px;
    background: #374151;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    margin-top: 80px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -2;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(220, 38, 38, 0.3));
    z-index: -1;
}

.hero-content {
    z-index: 1;
    max-width: 800px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
}

.btn-primary {
    background: #DC2626;
    color: white;
    border-color: #DC2626;
}

.btn-primary:hover {
    background: #B91C1C;
    border-color: #B91C1C;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3);
}

.btn-secondary {
    background: #FF9900;
    color: white;
    border-color: #FF9900;
}

.btn-secondary:hover {
    background: #E68A00;
    border-color: #E68A00;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 153, 0, 0.3);
}

.btn-outline {
    background: transparent;
    color: #DC2626;
    border-color: #DC2626;
}

.btn-outline:hover {
    background: #DC2626;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.2);
}

.btn-large {
    padding: 1.125rem 2rem;
    font-size: 1.125rem;
}

/* Section Styles */
section {
    padding: 4rem 0;
}

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

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #1F2937 0%, #374151 100%);
    color: white;
    text-align: center;
    padding: 6rem 0 4rem;
    margin-top: 80px;
}

.page-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.page-subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
}

.careers-header {
    background: linear-gradient(135deg, #DC2626 0%, #B91C1C 100%);
}

/* Values Section */
.values {
    background: #F9FAFB;
}

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

.value-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.value-icon {
    color: #DC2626;
    margin-bottom: 1rem;
}

.value-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 1rem;
}

.value-description {
    color: #6B7280;
    line-height: 1.7;
}

/* About Preview */
.about-preview {
    background: white;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-description {
    font-size: 1.125rem;
    color: #6B7280;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.team-image, .fleet-image, .operations-image, .professional-image, .driver-image, .leadership-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* Company Story */
.company-story {
    background: #F9FAFB;
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.story-paragraphs p {
    font-size: 1.125rem;
    color: #6B7280;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

/* Mission & Values */
.mission-values {
    background: white;
}

.mission-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.mission-card, .values-card {
    background: #F9FAFB;
    padding: 2.5rem;
    border-radius: 12px;
    border-left: 4px solid #DC2626;
}

.card-title {
    font-size: 1.75rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 1.5rem;
}

.card-description {
    font-size: 1.125rem;
    color: #6B7280;
    line-height: 1.8;
}

.values-list {
    list-style: none;
}

.values-list li {
    font-size: 1.125rem;
    color: #6B7280;
    line-height: 1.8;
    margin-bottom: 1rem;
    padding-left: 1rem;
    position: relative;
}

.values-list li::before {
    content: '•';
    color: #DC2626;
    font-size: 1.5rem;
    position: absolute;
    left: 0;
}

/* Service Area */
.service-area {
    background: #F9FAFB;
}

.area-description {
    font-size: 1.125rem;
    color: #6B7280;
    line-height: 1.8;
    margin-bottom: 2rem;
    text-align: center;
}

.coverage-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #DC2626;
}

.stat-label {
    font-size: 0.875rem;
    color: #6B7280;
    font-weight: 500;
}

/* Amazon Partnership */
.amazon-partnership {
    background: white;
}

.partnership-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.partnership-description {
    font-size: 1.125rem;
    color: #6B7280;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.partnership-benefits h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 1rem;
}

.partnership-benefits ul {
    list-style: none;
}

.partnership-benefits li {
    font-size: 1rem;
    color: #6B7280;
    line-height: 1.7;
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
}

.partnership-benefits li::before {
    content: '✓';
    color: #FF9900;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Leader Profile */
.leader-profile {
    background: #F9FAFB;
}

.profile-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: start;
}

.ceo-headshot {
    width: 100%;
    max-width: 300px;
    height: 300px;
    object-fit: cover;
    border-radius: 50%;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    border: 4px solid #ffffff;
}

.image-placeholder {
    text-align: center;
    padding: 2rem;
    background: #F3F4F6;
    border-radius: 12px;
    border: 2px dashed #D1D5DB;
}

.placeholder-text {
    margin-top: 1rem;
    color: #6B7280;
    font-size: 0.875rem;
}

.profile-name {
    font-size: 2.5rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 0.5rem;
}

.profile-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #DC2626;
    margin-bottom: 0.5rem;
}

.profile-credentials {
    font-size: 1.125rem;
    color: #6B7280;
    font-style: italic;
    margin-bottom: 2rem;
}

.profile-description p {
    font-size: 1.125rem;
    color: #6B7280;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

/* Leadership Philosophy */
.leadership-philosophy {
    background: white;
}

.philosophy-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.philosophy-card {
    background: #F9FAFB;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
}

.philosophy-icon {
    color: #DC2626;
    margin-bottom: 1rem;
}

.philosophy-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 1rem;
}

.philosophy-description {
    color: #6B7280;
    line-height: 1.7;
    font-style: italic;
}

/* Vision & Goals */
.vision-goals {
    background: #F9FAFB;
}

.vision-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.vision-description p {
    font-size: 1.125rem;
    color: #6B7280;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.goals-list h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 1rem;
}

.goals-list ul {
    list-style: none;
}

.goals-list li {
    font-size: 1rem;
    color: #6B7280;
    line-height: 1.7;
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
}

.goals-list li::before {
    content: '→';
    color: #DC2626;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Personal Touch */
.personal-touch {
    background: white;
}

.personal-info p {
    font-size: 1.125rem;
    color: #6B7280;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.leadership-quote {
    background: #F9FAFB;
    border-left: 4px solid #DC2626;
    padding: 2rem;
    margin: 2rem 0;
    font-size: 1.25rem;
    font-style: italic;
    color: #374151;
    line-height: 1.8;
}

.leadership-quote cite {
    display: block;
    margin-top: 1rem;
    font-style: normal;
    font-weight: 600;
    color: #DC2626;
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.benefit-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.benefit-icon {
    color: #DC2626;
    margin-bottom: 1rem;
}

.benefit-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 1rem;
}

.benefit-description {
    color: #6B7280;
    line-height: 1.7;
}

/* Driver Spotlight */
.driver-spotlight {
    background: #F9FAFB;
}

.spotlight-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: center;
}

.driver-quote {
    font-size: 1.25rem;
    font-style: italic;
    color: #374151;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.quote-attribution {
    font-weight: 600;
    color: #DC2626;
    margin-bottom: 2rem;
}

.driver-stats {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

/* Requirements */
.requirements {
    background: white;
}

.requirements-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.requirement-category {
    margin-bottom: 2rem;
}

.requirement-category h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 1rem;
}

.requirements-list {
    list-style: none;
}

.requirements-list li {
    font-size: 1rem;
    color: #6B7280;
    line-height: 1.7;
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
}

.requirements-list li::before {
    content: '✓';
    color: #10B981;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Training Program */
.training-program {
    background: #F9FAFB;
}

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

.training-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.training-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #DC2626;
    margin-bottom: 1rem;
}

.training-list {
    list-style: none;
}

.training-list li {
    font-size: 0.875rem;
    color: #6B7280;
    line-height: 1.6;
    margin-bottom: 0.5rem;
    padding-left: 1rem;
    position: relative;
}

.training-list li::before {
    content: '•';
    color: #DC2626;
    position: absolute;
    left: 0;
}

/* Application Process */
.application-process {
    background: white;
}

.process-steps {
    max-width: 800px;
    margin: 0 auto;
}

.step {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    align-items: start;
}

.step-number {
    background: #DC2626;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 0.5rem;
}

.step-content p {
    color: #6B7280;
    line-height: 1.7;
}

/* Apply CTA */
.apply-cta {
    background: linear-gradient(135deg, #DC2626 0%, #B91C1C 100%);
    color: white;
    text-align: center;
}

.apply-note {
    margin-top: 1rem;
    opacity: 0.9;
    font-size: 0.875rem;
}

/* Contact Options */
.contact-options {
    background: #F9FAFB;
}

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

.contact-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.contact-icon {
    color: #DC2626;
    margin-bottom: 1rem;
}

.contact-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 1rem;
}

.contact-description {
    color: #6B7280;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.contact-link {
    color: #DC2626;
    font-weight: 600;
    text-decoration: none;
}

.contact-link:hover {
    text-decoration: underline;
}

/* Contact Form */
.contact-form-section {
    background: white;
}

.form-content {
    max-width: 700px;
    margin: 0 auto;
}

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

.form-description {
    font-size: 1.125rem;
    color: #6B7280;
    margin-bottom: 0;
}

.contact-form {
    background: #F9FAFB;
    padding: 2rem;
    border-radius: 12px;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

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

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

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 0.875rem;
    border: 1px solid #D1D5DB;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: #DC2626;
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}

.form-textarea {
    resize: vertical;
}

/* Contact Info */
.contact-info {
    background: #F9FAFB;
}

.info-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.info-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
}

.info-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 1rem;
}

.info-details p {
    color: #6B7280;
    margin-bottom: 0.5rem;
}

/* FAQ Preview */
.faq-preview {
    background: white;
}

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

.faq-item {
    background: #F9FAFB;
    padding: 2rem;
    border-radius: 12px;
}

.faq-question {
    font-size: 1.125rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 1rem;
}

.faq-answer {
    color: #6B7280;
    line-height: 1.7;
}

/* CTA Section */
.cta {
    background: linear-gradient(135deg, #1F2937 0%, #374151 100%);
    color: white;
    text-align: center;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.cta-description {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Footer */
.footer {
    background: #111827;
    color: #D1D5DB;
    padding: 3rem 0 1rem;
}

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

.footer-logo {
    height: 50px;
    width: auto;
    margin-bottom: 1rem;
}

.footer-tagline {
    color: #9CA3AF;
    font-style: italic;
}

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

.footer-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: white;
    margin-bottom: 1rem;
}

.footer-list {
    list-style: none;
}

.footer-list li {
    margin-bottom: 0.5rem;
}

.footer-link {
    color: #9CA3AF;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #DC2626;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-copyright {
    color: #9CA3AF;
    font-size: 0.875rem;
}

.footer-credit {
    color: #9CA3AF;
    font-size: 0.875rem;
}

.heart {
    color: #DC2626;
}

/* Mobile Navigation */
@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: white;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding-top: 2rem;
        gap: 2rem;
        transition: left 0.3s ease;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-item {
        width: 100%;
        text-align: center;
    }
    
    .nav-link {
        display: block;
        padding: 1rem;
        font-size: 1.125rem;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.125rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .page-title {
        font-size: 2.25rem;
    }
    
    .about-content,
    .story-content,
    .partnership-content,
    .profile-content,
    .vision-content,
    .spotlight-content,
    .requirements-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .mission-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .coverage-stats {
        gap: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 0.75rem;
    }
    
    section {
        padding: 2.5rem 0;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .page-title {
        font-size: 1.875rem;
    }
    
    .values-grid,
    .benefits-grid,
    .contact-grid,
    .info-content,
    .faq-grid,
    .operations-content {
        grid-template-columns: 1fr;
    }
    
    .operations-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .step {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
}

/* Operations Showcase */
.operations-showcase {
    padding: 4rem 0;
    background: var(--gray-50);
}

.operations-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.operations-image .showcase-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
}

.operations-text {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.operations-description {
    font-size: 1.125rem;
    line-height: 1.6;
    color: var(--gray-600);
}

.operations-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 1rem;
}

.operations-stats .stat {
    text-align: center;
    padding: 1rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.operations-stats .stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--red-600);
    margin-bottom: 0.25rem;
}

.operations-stats .stat-label {
    font-size: 0.875rem;
    color: var(--gray-600);
    font-weight: 500;
}

/* Image lazy loading fade-in effect */
img {
    transition: opacity 0.3s ease;
}

img[loading="lazy"] {
    opacity: 0;
}

img[loading="lazy"].loaded {
    opacity: 1;
}

/* Accessibility improvements */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
}

/* Focus styles for keyboard navigation */
.btn:focus,
.nav-link:focus,
.contact-link:focus,
.footer-link:focus {
    outline: 2px solid #DC2626;
    outline-offset: 2px;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: 2px solid #DC2626;
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .hero-overlay {
        background: rgba(0, 0, 0, 0.8);
    }
    
    .btn-outline {
        border-width: 3px;
    }
    
    .value-card,
    .benefit-card,
    .contact-card {
        border: 2px solid #374151;
    }
}
