/* Language Services Pricing Page Styles */

:root {
    --primary-blue: #0D6EFD;
    --action-orange: #FF7A00;
    --background: #F8F9FA;
    --surface: #FFFFFF;
    --text-primary: #18191B;
    --text-secondary: #646A73;
    --border: #E4E7EB;
    --success: #198754;
    --shadow-default: 0 4px 8px rgba(0, 0, 0, 0.04), 0 8px 24px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 6px 12px rgba(0, 0, 0, 0.06), 0 12px 32px rgba(0, 0, 0, 0.1);
    
    /* New Color Scheme for Content Areas */
    --content-black: #1a1a1a;
    --content-white: #ffffff;
    --content-orange: #FF7A00;
    --content-gray: #f5f5f5;
    --content-dark-gray: #2c2c2c;
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: var(--background);
    color: var(--text-primary);
    line-height: 1.7;
    font-size: 16px;
}

/* Typography System */
h1 {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -1px;
    color: var(--text-primary);
}

h2 {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: -0.5px;
    color: var(--text-primary);
}

h3 {
    font-size: 24px;
    font-weight: 600;
    line-height: 1.4;
    color: var(--text-primary);
}

p {
    font-size: 16px;
    line-height: 1.7;
}

.text-large {
    font-size: 18px;
    line-height: 1.6;
}

.text-secondary {
    color: var(--text-secondary);
}

/* Layout */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
}

.section {
    padding: 96px 0;
}

.section-compact {
    padding: 64px 0;
}

/* Hero Section */
.hero {
    min-height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: var(--background);
}

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

.hero-content h1 {
    margin-bottom: 24px;
}

.hero-content p {
    margin-bottom: 48px;
    color: var(--text-secondary);
}

/* Trust Indicators */
.trust-indicators {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 48px;
    margin-top: 48px;
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 500;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Section Titles */
.section-title {
    text-align: center;
    margin-bottom: 64px;
}

.section-title h2 {
    margin-bottom: 16px;
}

.section-title p {
    margin: 0 auto;
    color: var(--text-secondary);
}

/* Pricing Grid */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Pricing Cards */
.pricing-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 32px;
    box-shadow: var(--shadow-default);
    transition: all 250ms cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.pricing-card.featured {
    border: 2px solid var(--primary-blue);
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-4px);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--action-orange);
    color: white;
    padding: 8px 24px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
}

/* Card Content */
.card-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 8px;
}

.card-subtitle {
    color: var(--text-secondary);
    margin-bottom: 32px;
    font-size: 14px;
}

.price {
    margin-bottom: 32px;
}

.price-amount {
    font-size: 48px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 4px;
}

.price-period {
    color: var(--text-secondary);
    font-size: 16px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 52px;
    padding: 0 24px;
    border: none;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 250ms ease-out;
    text-decoration: none;
}

.btn-primary {
    background: var(--action-orange);
    color: white;
    width: 100%;
    margin-bottom: 24px;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 122, 0, 0.25);
}

.btn-secondary {
    background: white;
    color: var(--text-primary);
    border: 1px solid var(--border);
    width: 100%;
    margin-bottom: 32px;
}

.btn-secondary:hover {
    background: var(--background);
    border-color: var(--primary-blue);
}

.btn-large {
    padding: 16px 32px;
    font-size: 16px;
    height: auto;
    width: auto;
}

.btn-large.btn-primary {
    background: var(--primary-blue);
}

.btn-large.btn-primary:hover {
    background: #0B5ED7;
}

/* Divider */
.divider {
    height: 1px;
    background: var(--border);
    margin: 32px 0;
}

/* Features List */
.features-list {
    list-style: none;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 16px;
}

.feature-icon {
    width: 20px;
    height: 20px;
    color: var(--primary-blue);
    margin-top: 2px;
    flex-shrink: 0;
}

.feature-text {
    color: var(--text-primary);
}

.feature-text.unavailable {
    color: var(--text-secondary);
    text-decoration: line-through;
}

/* Contact Section */
.contact-section {
    background: var(--surface);
    text-align: center;
}

.contact-section h2 {
    margin-bottom: 16px;
}

.contact-section p {
    margin-bottom: 32px;
    margin-left: auto;
    margin-right: auto;
    color: var(--text-secondary);
}

/* Icons (SVG) */
.icon {
    width: 16px;
    height: 16px;
    stroke-width: 2;
    fill: none;
    stroke: currentColor;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .pricing-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 24px;
    }

    .section {
        padding: 64px 0;
    }

    .hero {
        padding: 64px 0;
        min-height: 350px;
    }

    h1 {
        font-size: 36px;
    }

    h2 {
        font-size: 28px;
    }

    .hero-content p,
    .section-title p {
        font-size: 16px;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .pricing-card.featured {
        transform: none;
    }

    .pricing-card.featured:hover {
        transform: translateY(-4px);
    }

    .trust-indicators {
        flex-direction: column;
        gap: 16px;
    }

    .price-amount {
        font-size: 36px;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 28px;
    }

    .pricing-card {
        padding: 24px;
    }

    .price-amount {
        font-size: 32px;
    }

    .btn {
        height: 48px;
        padding: 0 20px;
    }
}

/* Touch Device Optimizations */
@media (hover: none) {
    .pricing-card:hover {
        transform: none;
    }

    .btn:hover {
        transform: none;
    }
}

/* Focus States for Accessibility */
.btn:focus,
.pricing-card:focus {
    outline: 2px solid var(--primary-blue);
    outline-offset: 2px;
}

/* Print Styles */
@media print {
    .pricing-card:hover {
        transform: none;
        box-shadow: var(--shadow-default);
    }
    
    .hero {
        min-height: auto;
        padding: 32px 0;
    }
    
    .section {
        padding: 32px 0;
    }
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
    :root {
        --border: #000000;
        --text-secondary: #000000;
    }
    
    .pricing-card {
        border-width: 2px;
    }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Navigation Styles */
.navbar {
    background: var(--primary-blue);
    border-bottom: 1px solid var(--primary-blue);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

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

.brand-link {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--content-white);
    transition: opacity 0.2s ease;
}

.brand-link:hover {
    opacity: 0.8;
}

.brand-logo {
    flex-shrink: 0;
}

.brand-name {
    font-size: 24px;
    font-weight: 700;
    color: var(--content-white);
    white-space: nowrap;
}

/* Mobile responsive brand name */
@media (max-width: 768px) {
    .brand-name {
        font-size: 16px;
        line-height: 1.2;
    }
    
    .brand-link {
        gap: 8px;
    }
    
    .brand-logo img {
        width: 32px;
        height: 32px;
    }
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    text-decoration: none;
    color: var(--content-white);
    font-weight: 500;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 8px 0;
    border-bottom: 2px solid transparent;
    transition: all 0.2s ease;
}

.nav-link:hover {
    color: var(--content-orange);
}

.nav-link.active {
    color: var(--content-orange);
    border-bottom-color: var(--content-orange);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--content-white);
    transition: all 0.3s ease;
}

/* Service Links */
.service-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin: 48px 0;
}

.service-link {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 24px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 12px;
    text-decoration: none;
    color: var(--text-primary);
    transition: all 0.2s ease;
}

.service-link:hover {
    border-color: var(--primary-blue);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.service-icon {
    width: 48px;
    height: 48px;
    background: rgba(13, 110, 253, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-blue);
    flex-shrink: 0;
}

.service-content h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.service-content p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* Footer Styles */
.footer {
    background: var(--text-primary);
    color: var(--surface);
    padding: 64px 0 32px;
}

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

.footer-section h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--surface);
}

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

.footer-section li {
    margin-bottom: 12px;
}

.footer-section a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s ease;
}

.footer-section a:hover {
    color: var(--surface);
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.footer-description {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 24px;
    max-width: 400px;
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: var(--surface);
    text-decoration: none;
    transition: all 0.2s ease;
}

.social-link:hover {
    background: var(--primary-blue);
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 32px;
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    color: var(--text-secondary);
}

/* Mobile Navigation */
@media (max-width: 768px) {
    .nav-menu {
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--primary-blue);
        border-top: 1px solid var(--border);
        padding: 24px 32px;
        flex-direction: column;
        gap: 16px;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        box-shadow: var(--shadow-default);
    }
    
    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .service-links {
        grid-template-columns: 1fr;
    }
}

/* Training Page Styles */
.training-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 32px;
    margin-top: 48px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-blue);
    line-height: 1;
}

.stat-label {
    font-size: 14px;
    color: var(--text-secondary);
    margin-top: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.training-program {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 32px;
    box-shadow: var(--shadow-default);
    transition: all 0.3s ease;
    position: relative;
}

.training-program:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.training-program.featured {
    border: 2px solid var(--primary-blue);
    transform: scale(1.05);
}

.training-program.featured:hover {
    transform: scale(1.05) translateY(-4px);
}

.program-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--action-orange);
    color: white;
    padding: 8px 24px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
}

.program-header {
    text-align: center;
    margin-bottom: 32px;
}

.program-icon {
    width: 64px;
    height: 64px;
    background: rgba(13, 110, 253, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-blue);
    margin: 0 auto 16px;
}

.program-header h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.program-subtitle {
    color: var(--text-secondary);
    margin-bottom: 24px;
    font-size: 16px;
}

.program-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
}

.price-amount {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-blue);
}

.price-period {
    color: var(--text-secondary);
    font-size: 16px;
}

.program-highlights h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.program-highlights ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.program-highlights li {
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border);
}

.program-highlights li:last-child {
    border-bottom: none;
}

.program-highlights li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: 600;
}

.learning-points {
    display: grid;
    gap: 12px;
}

.learning-point {
    display: flex;
    align-items: center;
    gap: 12px;
}

.learning-point svg {
    color: var(--success);
    flex-shrink: 0;
}

.format-options {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.format-badge {
    background: var(--background);
    color: var(--text-secondary);
    padding: 4px 12px;
    border-radius: 16px;
    font-size: 12px;
    font-weight: 500;
}

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

.benefit-item {
    text-align: center;
    padding: 24px;
}

.benefit-icon {
    width: 64px;
    height: 64px;
    background: rgba(13, 110, 253, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-blue);
    margin: 0 auto 24px;
}

.benefit-item h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.benefit-item p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Translation Page Styles */
.service-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 32px;
    margin-top: 48px;
}

.language-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 32px;
}

.service-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 32px;
    box-shadow: var(--shadow-default);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.service-header {
    text-align: center;
    margin-bottom: 32px;
}

.service-icon {
    width: 64px;
    height: 64px;
    background: rgba(13, 110, 253, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-blue);
    margin: 0 auto 16px;
}

.service-header h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.service-subtitle {
    color: var(--text-secondary);
    margin-bottom: 24px;
    font-size: 16px;
}

.service-features h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.service-features ul {
    list-style: none;
    padding: 0;
    margin: 0 0 24px 0;
}

.service-features li {
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border);
}

.service-features li:last-child {
    border-bottom: none;
}

.service-features li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary-blue);
    font-weight: 600;
}

.service-specs {
    background: var(--background);
    border-radius: 8px;
    padding: 16px;
    margin-bottom: 24px;
}

.spec-item {
    padding: 8px 0;
    color: var(--text-secondary);
    font-size: 14px;
}

.spec-item strong {
    color: var(--text-primary);
}

.service-pricing {
    text-align: center;
    margin-bottom: 24px;
}

.pricing-info {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
}

.price-from {
    color: var(--text-secondary);
    font-size: 14px;
}

.price-amount {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-blue);
}

.price-unit {
    color: var(--text-secondary);
    font-size: 16px;
}

/* Industries Grid */
.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
}

.industry-item {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 24px;
    text-align: center;
    transition: all 0.2s ease;
}

.industry-item:hover {
    border-color: var(--primary-blue);
    transform: translateY(-2px);
}

.industry-icon {
    width: 48px;
    height: 48px;
    background: rgba(13, 110, 253, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-blue);
    margin: 0 auto 16px;
}

.industry-item h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.industry-item p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* Quality Process */
.quality-process {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
}

.process-step {
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.step-number {
    width: 48px;
    height: 48px;
    background: var(--primary-blue);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 18px;
    flex-shrink: 0;
}

.step-content h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.step-content p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Sample Work */
.samples-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
}

.sample-item {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.sample-language {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border);
}

.sample-language strong {
    color: var(--text-primary);
}

.sample-type {
    background: var(--primary-blue);
    color: white;
    padding: 4px 12px;
    border-radius: 16px;
    font-size: 12px;
    font-weight: 500;
}

.sample-content {
    display: grid;
    gap: 16px;
}

.sample-original h5,
.sample-translation h5 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.sample-original p {
    font-style: italic;
    color: var(--text-secondary);
    line-height: 1.6;
}

.sample-translation p {
    color: var(--text-primary);
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    margin-bottom: 24px;
    color: var(--text-primary);
}

.cta-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-top: 32px;
}

/* Background Light */
.bg-light {
    background-color: var(--background);
}

/* Mobile Responsive for New Components */
@media (max-width: 768px) {
    .training-grid,
    .language-services-grid {
        grid-template-columns: 1fr;
    }
    
    .training-program.featured {
        transform: none;
    }
    
    .training-program.featured:hover {
        transform: translateY(-4px);
    }
    
    .training-stats,
    .service-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .industries-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .quality-process {
        grid-template-columns: 1fr;
    }
    
    .process-step {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }
    
    .samples-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-large {
        width: 100%;
        max-width: 300px;
    }
}

/* ================================
   HOME PAGE SPECIFIC STYLES
   ================================ */

/* Hero Section with Background */
.hero {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    overflow: hidden;
}

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

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(13, 110, 253, 0.8), rgba(255, 122, 0, 0.6));
    z-index: -1;
}

.hero-content {
    max-width: 900px;
    position: relative;
    z-index: 1;
}

.hero-content h1 {
    color: white;
    margin-bottom: 24px;
    font-size: 56px;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-content p {
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 24px;
    font-size: 18px;
    line-height: 1.6;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.hero-actions {
    margin-top: 48px;
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Section Light Background */
.section-light {
    background: var(--background);
}

/* Section Orange Background */
.section-orange {
    background: linear-gradient(135deg, var(--action-orange) 0%, #e66a00 100%);
}

/* Section Dark Background */
.section-dark {
    background: linear-gradient(135deg, var(--text-primary) 0%, #1a1a1a 100%);
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
    margin-top: 64px;
}

.benefit-card {
    background: var(--surface);
    padding: 32px;
    border-radius: 16px;
    box-shadow: var(--shadow-default);
    transition: all 250ms cubic-bezier(0.25, 0.8, 0.25, 1);
    text-align: center;
}

.benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.benefit-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 24px;
}

.benefit-card h3 {
    color: var(--text-primary);
    margin-bottom: 16px;
    font-size: 24px;
}

.benefit-card p {
    color: var(--text-secondary);
    margin-bottom: 24px;
    line-height: 1.6;
}

.benefit-list {
    list-style: none;
    text-align: left;
    margin-top: 16px;
}

.benefit-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
    color: var(--text-secondary);
    font-size: 14px;
}

/* Dark background styling for benefit cards */
.section-dark .benefit-card {
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid rgba(255, 122, 0, 0.2);
}

.section-dark .benefit-card h3 {
    color: var(--text-primary);
}

.section-dark .benefit-card p {
    color: var(--text-secondary);
}

.section-dark .benefit-list li {
    color: var(--text-secondary);
}

/* Training Page Specific Styles */
.training-category {
    margin-bottom: 64px;
}

.category-header {
    text-align: center;
    margin-bottom: 48px;
}

.category-header h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 16px;
}

.category-header p {
    font-size: 18px;
    margin-bottom: 0;
}

.training-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 32px;
    margin-top: 32px;
}

/* Pricing Card Styling for Training */
.pricing-card {
    background: white;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.pricing-card.featured {
    border: 2px solid var(--action-orange);
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-5px);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--action-orange);
    color: white;
    padding: 8px 24px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.card-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.card-subtitle {
    color: var(--text-secondary);
    margin-bottom: 24px;
    font-size: 16px;
}

.price {
    text-align: center;
    margin-bottom: 32px;
}

.price-amount {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-blue);
    line-height: 1;
}

.price-period {
    color: var(--text-secondary);
    font-size: 14px;
    margin-top: 4px;
}

.divider {
    height: 1px;
    background: var(--border);
    margin: 24px 0;
}

.features-list {
    list-style: none;
    margin: 24px 0;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
}

.feature-icon {
    width: 16px;
    height: 16px;
    color: var(--action-orange);
    margin-top: 2px;
    flex-shrink: 0;
}

.feature-text {
    color: var(--text-primary);
    font-size: 14px;
    line-height: 1.5;
}

.benefit-list li::before {
    content: "✓";
    color: var(--primary-blue);
    font-weight: bold;
    font-size: 16px;
}

/* Services Grid */
.services-grid {
    display: grid;
    gap: 48px;
    margin-top: 64px;
}

.service-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    background: var(--surface);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-default);
    transition: all 250ms cubic-bezier(0.25, 0.8, 0.25, 1);
}

.service-card:hover {
    box-shadow: var(--shadow-hover);
}

.service-card:nth-child(even) {
    direction: rtl;
}

.service-card:nth-child(even) .service-content {
    direction: ltr;
}

.service-image {
    height: 300px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 250ms ease;
}

.service-card:hover .service-image img {
    transform: scale(1.05);
}

.service-content {
    padding: 48px;
}

.service-content h3 {
    margin-bottom: 16px;
    font-size: 28px;
    color: var(--text-primary);
}

.service-content > p {
    color: var(--text-secondary);
    margin-bottom: 24px;
    line-height: 1.6;
}

.service-features {
    list-style: none;
    margin-bottom: 32px;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    color: var(--text-secondary);
}

.service-features li::before {
    content: "●";
    color: var(--primary-blue);
    font-size: 12px;
}

.services-cta {
    text-align: center;
    margin-top: 64px;
}

/* Specialization Grid */
.specialization-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 32px;
    margin-top: 64px;
}

.specialization-card {
    background: var(--surface);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-default);
    transition: all 250ms cubic-bezier(0.25, 0.8, 0.25, 1);
}

.specialization-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.specialization-image {
    height: 250px;
    overflow: hidden;
}

.specialization-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 250ms ease;
}

.specialization-card:hover .specialization-image img {
    transform: scale(1.05);
}

.specialization-content {
    padding: 32px;
}

.specialization-content h3 {
    margin-bottom: 16px;
    font-size: 24px;
    color: var(--text-primary);
}

.specialization-content > p {
    color: var(--text-secondary);
    margin-bottom: 24px;
    line-height: 1.6;
}

.specialization-content ul {
    list-style: none;
}

.specialization-content ul li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
    color: var(--text-secondary);
    font-size: 14px;
}

.specialization-content ul li::before {
    content: "→";
    color: var(--primary-blue);
    font-weight: bold;
}

/* About Section */
.about-section {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.about-content h2 {
    margin-bottom: 24px;
}

.about-content > p {
    color: var(--text-secondary);
    margin-bottom: 24px;
    line-height: 1.7;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 32px;
    margin: 48px 0;
    padding: 32px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.stat {
    text-align: center;
}

.stat h3 {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 8px;
    line-height: 1;
}

.stat p {
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Team Carousel */
.team-carousel-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
}

.team-carousel {
    overflow: hidden;
    border-radius: 16px;
}

.team-track {
    display: flex;
    transition: transform 300ms ease-in-out;
    gap: 32px;
    padding: 32px;
}

.team-member {
    flex: 0 0 calc(33.333% - 21.333px);
    background: var(--surface);
    padding: 32px;
    border-radius: 16px;
    box-shadow: var(--shadow-default);
    text-align: center;
    transition: all 250ms cubic-bezier(0.25, 0.8, 0.25, 1);
}

.team-member:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.member-photo {
    margin-bottom: 24px;
}

.placeholder-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-blue), var(--action-orange));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin: 0 auto;
}

.member-title {
    color: var(--primary-blue);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.member-bio {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.5;
}

.carousel-controls {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 16px;
    pointer-events: none;
}

.carousel-btn {
    width: 48px;
    height: 48px;
    border: none;
    border-radius: 50%;
    background: var(--surface);
    color: var(--text-primary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-default);
    transition: all 250ms ease;
    pointer-events: all;
}

.carousel-btn:hover {
    background: var(--primary-blue);
    color: white;
    transform: scale(1.1);
}

.carousel-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Logo Styles */
.logo-img, .footer-logo {
    height: 40px;
    width: auto;
}

/* Responsive Design for New Sections */
@media (max-width: 1024px) {
    .team-member {
        flex: 0 0 calc(50% - 16px);
    }
    
    .service-card {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .service-image {
        height: 250px;
    }
    
    .service-content {
        padding: 32px;
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 36px;
    }
    
    .benefits-grid,
    .specialization-grid {
        grid-template-columns: 1fr;
    }
    
    .team-member {
        flex: 0 0 100%;
    }
    
    .team-track {
        padding: 16px;
        gap: 16px;
    }
    
    .carousel-controls {
        position: relative;
        top: auto;
        transform: none;
        justify-content: center;
        margin-top: 24px;
        gap: 16px;
    }
    
    .about-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stat h3 {
        font-size: 36px;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-large {
        width: 100%;
        max-width: 300px;
    }
}

/* ================================
   SERVICES PAGE SPECIFIC STYLES
   ================================ */

/* Services Hero Section */
.services-hero {
    background: linear-gradient(135deg, var(--primary-blue), var(--content-orange));
    animation: heroGradient 8s ease-in-out infinite alternate;
}

@keyframes heroGradient {
    0% { background: linear-gradient(135deg, var(--primary-blue), var(--content-orange)); }
    100% { background: linear-gradient(135deg, var(--content-orange), var(--primary-blue)); }
}

/* Service Detail Sections */
.service-detail {
    padding: 48px 0;
}

.service-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    margin-bottom: 48px;
}

.service-detail-image {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-default);
    transition: transform 0.3s ease;
}

.service-detail-image:hover {
    transform: scale(1.02);
}

.service-detail-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-detail-image:hover img {
    transform: scale(1.05);
}

.service-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--content-orange);
    color: var(--content-white);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-detail-content h2 {
    color: var(--content-black);
    margin-bottom: 16px;
    font-size: 32px;
}

.service-intro {
    color: var(--text-secondary);
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 32px;
}

.service-detail-content h3 {
    color: var(--content-black);
    margin: 32px 0 16px 0;
    font-size: 20px;
    border-left: 4px solid var(--content-orange);
    padding-left: 16px;
}

.service-features {
    list-style: none;
    margin-bottom: 24px;
}

.service-features li {
    color: var(--text-secondary);
    margin-bottom: 12px;
    padding-left: 24px;
    position: relative;
    line-height: 1.6;
}

.service-features li::before {
    content: "●";
    color: var(--content-orange);
    font-weight: bold;
    position: absolute;
    left: 0;
}

.service-features li strong {
    color: var(--content-black);
}

.service-cta {
    display: flex;
    gap: 16px;
    margin-top: 32px;
}

/* Language Grid */
.language-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 12px;
    margin: 16px 0;
}

.language-grid span {
    background: var(--content-gray);
    color: var(--content-black);
    padding: 8px 12px;
    border-radius: 8px;
    text-align: center;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s ease;
}

.language-grid span:hover {
    background: var(--content-orange);
    color: var(--content-white);
}

/* Animated Hero Enhancements */
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -2;
    animation: backgroundMove 20s ease-in-out infinite;
}

@keyframes backgroundMove {
    0%, 100% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.05) rotate(1deg); }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(13, 110, 253, 0.8), rgba(255, 122, 0, 0.6));
    z-index: -1;
    animation: overlayPulse 6s ease-in-out infinite;
}

@keyframes overlayPulse {
    0%, 100% { opacity: 0.8; }
    50% { opacity: 0.9; }
}

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Enhanced Button Styles */
.btn-primary {
    background: var(--content-orange);
    color: var(--content-white);
    border: 2px solid var(--content-orange);
}

.btn-primary:hover {
    background: transparent;
    color: var(--content-orange);
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(255, 122, 0, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--content-orange);
    border: 2px solid var(--content-orange);
}

.btn-secondary:hover {
    background: var(--content-orange);
    color: var(--content-white);
    transform: translateY(-2px);
}

/* Section Light Background */
.section-light {
    background: var(--content-gray);
}

/* Responsive Design for Services Page */
@media (max-width: 1024px) {
    .service-detail-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .service-detail-image img {
        height: 300px;
    }
    
    .service-cta {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .service-detail-content h2 {
        font-size: 24px;
    }
    
    .service-detail-content h3 {
        font-size: 18px;
    }
    
    .service-detail-image img {
        height: 250px;
    }
    
    .language-grid {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    }
}

/* Additional Animations */
.service-detail-image {
    animation: fadeInUp 0.8s ease-out;
}

.service-detail-content {
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Training Page Responsive Styles */
@media (max-width: 1024px) {
    .training-grid {
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 24px;
    }
    
    .category-header h3 {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .training-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .pricing-card {
        padding: 24px;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-5px);
    }
    
    .price-amount {
        font-size: 36px;
    }
    
    .card-title {
        font-size: 20px;
    }
    
    .category-header h3 {
        font-size: 24px;
    }
    
    .category-header p {
        font-size: 16px;
    }
}

/* Careers Page Styles */
.search-container {
    background: white;
    border-radius: 16px;
    padding: 32px;
    margin-bottom: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.search-box {
    margin-bottom: 32px;
}

.search-input-group {
    display: flex;
    align-items: center;
    background: var(--text-light);
    border: 2px solid transparent;
    border-radius: 12px;
    padding: 0 8px 0 16px;
    transition: all 0.3s ease;
}

.search-input-group:focus-within {
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(13, 110, 253, 0.1);
}

.search-icon {
    width: 20px;
    height: 20px;
    color: var(--text-secondary);
    margin-right: 12px;
    flex-shrink: 0;
}

.search-input {
    flex: 1;
    border: none;
    background: none;
    padding: 16px 8px;
    font-size: 16px;
    color: var(--text-primary);
    outline: none;
}

.search-input::placeholder {
    color: var(--text-secondary);
}

.search-btn {
    margin-left: 8px;
    padding: 16px 24px;
    white-space: nowrap;
}

.filters-container {
    background: var(--section-light);
    border-radius: 12px;
    padding: 24px;
}

.filters-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
    margin-bottom: 24px;
}

.filter-group {
    display: flex;
    flex-direction: column;
}

.filter-label {
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
    font-size: 14px;
}

.filter-select {
    padding: 12px 16px;
    border: 2px solid var(--border-light);
    border-radius: 8px;
    background: white;
    color: var(--text-primary);
    font-size: 14px;
    outline: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.filter-select:focus {
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(13, 110, 253, 0.1);
}

.filter-select:hover {
    border-color: var(--primary-blue);
}

.filter-actions {
    display: flex;
    gap: 16px;
    justify-content: flex-end;
    flex-wrap: wrap;
}

.filter-actions .btn {
    min-width: 120px;
}

.job-results {
    margin-top: 40px;
}

.results-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
    flex-wrap: wrap;
    gap: 16px;
}

.results-header h3 {
    font-size: 24px;
    font-weight: 600;
    margin: 0;
}

.results-count {
    font-size: 14px;
}

.job-listings {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.job-card {
    background: white;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.job-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-blue);
}

.job-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
    gap: 16px;
}

.job-title-section {
    flex: 1;
}

.job-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0 0 8px 0;
}

.job-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}

.job-type,
.job-location,
.experience-level {
    background: var(--primary-blue);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    white-space: nowrap;
}

.job-location {
    background: var(--primary-orange);
}

.experience-level {
    background: var(--text-secondary);
}

.job-salary {
    text-align: right;
    white-space: nowrap;
}

.salary-range {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-green);
}

.job-content {
    margin-bottom: 24px;
}

.job-description {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 20px;
}

.job-requirements {
    background: var(--section-light);
    padding: 16px;
    border-radius: 8px;
}

.job-requirements strong {
    color: var(--text-primary);
    display: block;
    margin-bottom: 8px;
}

.job-requirements ul {
    margin: 0;
    padding-left: 16px;
    color: var(--text-secondary);
}

.job-requirements li {
    margin-bottom: 4px;
}

.job-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.job-actions .btn {
    min-width: 120px;
    flex: 1;
    max-width: 200px;
}

/* Dark section styling for careers page */
.section-dark {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.section-dark::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(13, 110, 253, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(255, 193, 7, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

/* Career page responsive design */
@media (max-width: 1024px) {
    .filters-row {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 16px;
    }
    
    .job-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    
    .job-salary {
        text-align: left;
    }
}

@media (max-width: 768px) {
    .search-container {
        padding: 24px;
    }
    
    .filters-container {
        padding: 20px;
    }
    
    .filters-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .filter-actions {
        flex-direction: column;
    }
    
    .filter-actions .btn {
        width: 100%;
        min-width: auto;
    }
    
    .job-card {
        padding: 24px;
    }
    
    .job-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .job-actions {
        flex-direction: column;
    }
    
    .job-actions .btn {
        max-width: none;
    }
    
    .results-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
}

/* About Page Mobile & Tablet Responsive Fixes */
@media (max-width: 1024px) {
    /* Ensure content stacks properly on tablet */
    .service-detail-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-bottom: 32px;
    }
    
    /* Move images below content on tablet */
    .service-detail-grid .service-detail-image {
        order: 2;
    }
    
    .service-detail-grid .service-detail-content {
        order: 1;
    }
    
    /* Ensure hero section is fully visible */
    .hero {
        min-height: 400px;
    }
    
    /* Adjust hero actions */
    .hero-actions {
        gap: 16px;
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    /* Mobile specific adjustments */
    .service-detail-grid {
        grid-template-columns: 1fr;
        gap: 32px;
        margin-bottom: 24px;
    }
    
    /* Ensure consistent stacking order on mobile */
    .service-detail-grid .service-detail-image {
        order: 2;
        margin-top: 16px;
    }
    
    .service-detail-grid .service-detail-content {
        order: 1;
    }
    
    /* Hero section mobile adjustments */
    .hero {
        min-height: 350px;
        padding: 48px 0;
    }
    
    .hero-content h1 {
        font-size: 32px;
        margin-bottom: 16px;
    }
    
    .hero-content p {
        font-size: 16px;
        margin-bottom: 32px;
    }
    
    /* Mobile hero actions */
    .hero-actions {
        flex-direction: column;
        align-items: center;
        gap: 12px;
        width: 100%;
    }
    
    .hero-actions .btn {
        width: 100%;
        max-width: 280px;
        text-align: center;
    }
    
    /* Adjust service detail content for mobile */
    .service-detail-content h2 {
        font-size: 24px;
        margin-bottom: 16px;
    }
    
    .service-detail-content h3 {
        font-size: 20px;
        margin-bottom: 12px;
    }
    
    .service-detail-content p {
        font-size: 15px;
        line-height: 1.6;
    }
    
    /* Benefits grid mobile stacking */
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    /* Service features mobile adjustments */
    .service-features {
        padding-left: 0;
    }
    
    .service-features li {
        margin-bottom: 12px;
        padding-left: 8px;
    }
    
    /* CTA buttons mobile layout */
    .service-cta {
        flex-direction: column;
        gap: 12px;
        align-items: stretch;
    }
    
    .service-cta .btn {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    /* Extra small mobile devices */
    .service-detail-grid {
        gap: 24px;
        margin-bottom: 20px;
    }
    
    .hero {
        min-height: 300px;
        padding: 32px 0;
    }
    
    .hero-content h1 {
        font-size: 28px;
    }
    
    .hero-content p {
        font-size: 15px;
    }
    
    /* Image adjustments for small screens */
    .service-detail-image img {
        height: 200px;
        object-fit: cover;
    }
    
    /* Text size adjustments */
    .service-detail-content h2 {
        font-size: 22px;
    }
    
    .service-detail-content h3 {
        font-size: 18px;
    }
}