/**
 * Enterprise Hero Slider - Infosys Style
 * 
 * Premium fullscreen slider with corporate aesthetics
 * Features: Fade transitions, auto-play, pagination dots, responsive
 * 
 * Design Language: Enterprise • Corporate • Premium Tech
 */

/* =============================================================================
   1. Hero Slider Container - Scrolls with content
   ============================================================================= */

.hero-slider {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    background: #0a0a0a;
    z-index: 1;
}

/* =============================================================================
   Loading Overlay
   ============================================================================= */

.hero-slider__loader {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 100;
    background: #0a0a0a;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.hero-slider__loader.loaded {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.hero-slider__loader-spinner {
    position: relative;
    width: 56px;
    height: 56px;
}

.hero-slider__loader-ring {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 3px solid transparent;
}

.hero-slider__loader-ring:nth-child(1) {
    border-top-color: #ffffff;
    animation: heroLoaderSpin 1s cubic-bezier(0.5, 0, 0.5, 1) infinite;
}

.hero-slider__loader-ring:nth-child(2) {
    border-right-color: rgba(255, 255, 255, 0.4);
    animation: heroLoaderSpin 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite reverse;
}

.hero-slider__loader-ring:nth-child(3) {
    border-bottom-color: rgba(255, 255, 255, 0.15);
    animation: heroLoaderSpin 1.5s cubic-bezier(0.5, 0, 0.5, 1) infinite;
}

@keyframes heroLoaderSpin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}
/* Slides container */
.hero-slider__slides {
    position: absolute;
    top: 0;
        left: 0;
    width: 100%;
    height: 100%;
}

/* =============================================================================
   3. Individual Slide
   ============================================================================= */

.hero-slider__slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s cubic-bezier(0.4, 0, 0.2, 1), visibility 1s;
    z-index: 1;
}

.hero-slider__slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

/* =============================================================================
   4. Slide Background Image
   ============================================================================= */

.hero-slider__background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Dark overlay for text readability */
.hero-slider__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.65) 0%,
        rgba(0, 0, 0, 0.45) 50%,
        rgba(0, 0, 0, 0.55) 100%
    );
    z-index: 1;
}

/* =============================================================================
   5. Slide Content
   ============================================================================= */

.hero-slider__content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    height: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 120px 48px 80px;
}

/* =============================================================================
   6. Typography - Premium Corporate Style
   ============================================================================= */

.hero-slider__headline {
    font-family: 'Inter', 'Helvetica Neue', 'Myriad Pro', Arial, sans-serif;
    font-size: clamp(40px, 5vw, 72px);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: #ffffff;
    margin: 0 0 24px 0;
    max-width: 800px;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease 0.3s, transform 0.8s ease 0.3s;
}

.hero-slider__slide.active .hero-slider__headline {
    opacity: 1;
    transform: translateY(0);
}

/* Headline highlight/accent */
.hero-slider__headline span {
    color: #ffffff;
    position: relative;
    white-space: nowrap;
}

.hero-slider__headline span::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #e60012 0%, #ff3344 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.8s ease 0.6s;
}

.hero-slider__slide.active .hero-slider__headline span::after {
    transform: scaleX(1);
}

/* =============================================================================
   7. Subtext
   ============================================================================= */

.hero-slider__subtext {
    font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
    font-size: clamp(16px, 2vw, 20px);
    font-weight: 400;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    margin: 0 0 40px 0;
    max-width: 600px;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease 0.5s, transform 0.8s ease 0.5s;
}

.hero-slider__slide.active .hero-slider__subtext {
    opacity: 1;
    transform: translateY(0);
}

/* =============================================================================
   8. Call-to-Action Button
   ============================================================================= */

.hero-slider__cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 36px;
    font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: #0a0a0a;
    background: #ffffff;
    border: 2px solid #ffffff;
    border-radius: 0;
    text-decoration: none;
    cursor: pointer;
    opacity: 0;
    transform: translateY(20px);
    transition: 
        opacity 0.8s ease 0.7s, 
        transform 0.8s ease 0.7s,
        background 0.3s ease,
        color 0.3s ease,
        border-color 0.3s ease;
}

.hero-slider__slide.active .hero-slider__cta {
    opacity: 1;
    transform: translateY(0);
}

.hero-slider__cta:hover {
    background: transparent;
    color: #ffffff;
    border-color: #ffffff;
}

.hero-slider__cta svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.hero-slider__cta:hover svg {
    transform: translateX(4px);
}

/* Secondary CTA variant */
.hero-slider__cta--outline {
    background: transparent;
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.6);
}

.hero-slider__cta--outline:hover {
    background: #ffffff;
    color: #0a0a0a;
    border-color: #ffffff;
}

/* =============================================================================
   9. Pagination Dots - Fixed positioning
   ============================================================================= */

.hero-slider__pagination {
    position: absolute;
    bottom: 48px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 10;
}

.hero-slider__dot {
    width: 12px;
    height: 12px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.hero-slider__dot:hover {
    border-color: #ffffff;
    background: rgba(255, 255, 255, 0.3);
}

.hero-slider__dot.active {
    background: #ffffff;
    border-color: #ffffff;
    transform: scale(1.1);
}

/* =============================================================================
   10. Navigation Arrows (Optional)
   ============================================================================= */

.hero-slider__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.hero-slider__nav:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
}

.hero-slider__nav--prev {
    left: 24px;
}

.hero-slider__nav--next {
    right: 24px;
}

.hero-slider__nav svg {
    width: 24px;
    height: 24px;
}

/* =============================================================================
   11. Side Indicator Line (Infosys Style)
   ============================================================================= */

.hero-slider__indicator {
    position: absolute;
    left: 48px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    z-index: 10;
}

.hero-slider__indicator-line {
    width: 2px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

/* Real element for JS-controlled animation restart */
.hero-slider__indicator-fill {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #ffffff;
    transform-origin: top;
    will-change: transform;
    animation: slideProgress 5s linear infinite;
}

@keyframes slideProgress {
    0% { transform: scaleY(0); }
    100% { transform: scaleY(1); }
}

.hero-slider__indicator-text {
    font-family: 'Inter', Arial, sans-serif;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
    writing-mode: vertical-rl;
    text-orientation: mixed;
}

/* =============================================================================
   12. Scroll Indicator
   ============================================================================= */

.hero-slider__scroll {
    position: absolute;
    bottom: 48px;
    right: 48px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 10;
}

.hero-slider__scroll-text {
    font-family: 'Inter', Arial, sans-serif;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
    writing-mode: vertical-rl;
}

.hero-slider__scroll-line {
    width: 1px;
    height: 60px;
    position: relative;
    overflow: visible;
}

/* Real element for JS-controlled bounce animation */
.hero-slider__scroll-fill {
    display: block;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(255,255,255,0.6) 0%, transparent 100%);
    will-change: transform, opacity;
    animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
    0%, 100% { transform: translateY(0); opacity: 1; }
    50% { transform: translateY(10px); opacity: 0.5; }
}

/* =============================================================================
   13. Responsive Design
   ============================================================================= */

@media (max-width: 1024px) {
    .hero-slider {
        min-height: 550px;
        max-height: 800px;
    }
    
    .hero-slider__content {
        padding: 100px 32px 70px;
    }
    
    .hero-slider__headline {
        font-size: clamp(36px, 5vw, 56px);
        max-width: 600px;
    }
    
    .hero-slider__subtext {
        font-size: 17px;
        max-width: 500px;
    }
    
    .hero-slider__nav {
        display: none;
    }
    
    .hero-slider__indicator {
        display: none;
    }
    
    .hero-slider__scroll {
        right: 24px;
        bottom: 100px;
    }
}

@media (max-width: 768px) {
    .hero-slider {
        min-height: 500px;
        max-height: 700px;
    }
    
    .hero-slider__content {
        padding: 100px 24px 60px;
        justify-content: flex-end;
        padding-bottom: 120px;
    }
    
    .hero-slider__headline {
        font-size: clamp(32px, 6vw, 44px);
        margin-bottom: 16px;
    }
    
    .hero-slider__subtext {
        font-size: 15px;
        margin-bottom: 28px;
        max-width: 100%;
    }
    
    .hero-slider__cta {
        padding: 14px 28px;
        font-size: 15px;
    }
    
    .hero-slider__pagination {
        bottom: 32px;
    }
    
    .hero-slider__scroll {
        display: none;
    }
    
    .hero-slider__overlay {
        background: linear-gradient(
            to top,
            rgba(0, 0, 0, 0.85) 0%,
            rgba(0, 0, 0, 0.5) 50%,
            rgba(0, 0, 0, 0.4) 100%
        );
    }
}

@media (max-width: 480px) {
    .hero-slider {
        min-height: 450px;
    }
    
    .hero-slider__content {
        padding: 90px 20px 100px;
    }
    
    .hero-slider__headline {
        font-size: 28px;
    }
    
    .hero-slider__subtext {
        font-size: 14px;
    }
    
    .hero-slider__cta {
        padding: 12px 24px;
        font-size: 14px;
        width: 100%;
        justify-content: center;
    }
    
    .hero-slider__dot {
        width: 10px;
        height: 10px;
    }
}

/* =============================================================================
   14. Reduced Motion
   ============================================================================= */

@media (prefers-reduced-motion: reduce) {
    .hero-slider__slide {
        transition: opacity 0.3s ease;
    }
    
    .hero-slider__background {
        transition: none;
        transform: scale(1) !important;
    }
    
    .hero-slider__headline,
    .hero-slider__subtext,
    .hero-slider__cta {
        transition: none;
        opacity: 1;
        transform: none;
    }
    
    .hero-slider__indicator-fill {
        animation: none;
    }
    
    .hero-slider__scroll-fill {
        animation: none;
    }
}

/* =============================================================================
   15. Page Content Wrapper - Solid background over fixed hero
   ============================================================================= */

.page-content-wrapper {
    position: relative;
    z-index: 10;
    background: #ffffff;
}

.page-content-wrapper .section {
    background: #ffffff;
}

.page-content-wrapper .section:nth-child(even) {
    background: #f8fafc;
}

/* =============================================================================
   15b. Home Page - Normal scroll flow Hero scrolls naturally,
   content sections follow,
   footer at the end.
   ============================================================================= */

/* Hero slider is in normal flow */
body.home-page .hero-slider {
    position: relative;
    z-index: 1;
}

/* Backgrounds scroll with the hero (no fixed/parallax) */
body.home-page .hero-slider__background,
body.home-page .hero-slider__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
        height: 100%;
}

/* Spacer not needed since hero is in normal document flow */
body.home-page .hero-slider-spacer {
    display: none;
}

/* Solid background on main so sections are opaque */
body.home-page .main {
    background: #ffffff;
    position: relative;
    z-index: 5;
}

/* Content wrapper follows hero naturally */
body.home-page .page-content-wrapper {
    position: relative;
    z-index: 10;
    background: #ffffff;
}

body.home-page .page-content-wrapper .section {
    background: #ffffff;
}

body.home-page .page-content-wrapper .section:nth-child(even) {
    background: #f8fafc;
}


/* =============================================================================
   16. Fixed Background for Other Pages (non-home)
   ============================================================================= */

.page-fixed-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.page-fixed-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
            rgba(0, 0, 0, 0.4) 0%,
            rgba(0, 0, 0, 0.2) 50%,
            rgba(0, 0, 0, 0.3) 100%);
}

/* Main content area - ensure it's above fixed backgrounds */
.main {
    position: relative;
    z-index: 5;
    background: #ffffff;
}

/* Products page - show fixed background */
body.products-page .main {
    background: transparent;
}

body.products-page .page-header {
    background: transparent;
    color: #ffffff;
}

body.products-page .page-title {
    color: #ffffff;
}

body.products-page .page-subtitle {
    color: rgba(255, 255, 255, 0.9);
}

body.products-page .section {
    background: transparent;
}

/* Ensure cards remain white on products page */
body.products-page .business-offering-card,
body.products-page .service-modern-card {
    background: #ffffff;
}
/* Service page - show fixed background */
body.service-page .main {
    background: transparent;
}

body.service-page .page-header {
    background: transparent;
    color: #ffffff;
}

body.service-page .page-title {
    color: #ffffff;
}

body.service-page .page-subtitle {
    color: rgba(255, 255, 255, 0.9);
}

body.service-page .section {
    background: transparent;
}

/* Ensure modern cards remain white on service page */
body.service-page .service-modern-card {
    background: #ffffff;
}

body.service-page .breadcrumb {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.85);
}

body.service-page .breadcrumb a {
    color: rgba(255, 255, 255, 0.85);
}

/* Service page - all text white on dark background */
body.service-page .intro-text {
    color: #ffffff;
}

body.service-page .section-title {
    color: #ffffff;
}

body.service-page .section-subtitle {
    color: rgba(255, 255, 255, 0.85);
}

body.service-page .service-detail {
    border-bottom-color: rgba(255, 255, 255, 0.15);
}

body.service-page .service-detail-text h2 {
    color: #ffffff;
}

body.service-page .service-detail-text p {
    color: rgba(255, 255, 255, 0.85);
}

body.service-page .service-features li {
    color: rgba(255, 255, 255, 0.85);
}

body.service-page .service-features li::before {
    background: #e60012;
}

body.service-page .service-detail-icon {
    background: linear-gradient(135deg, rgba(230, 0, 18, 0.2) 0%, rgba(255, 255, 255, 0.1) 100%);
}

body.service-page .service-detail-icon svg {
    color: #ffffff;
}

body.service-page .service-card-title {
    color: #ffffff;
}

body.service-page .service-card-text {
    color: rgba(255, 255, 255, 0.85);
}

body.service-page .service-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

body.service-page .service-card:hover {
    background: rgba(255, 255, 255, 0.12);
}

body.service-page .service-card-icon {
    background: rgba(230, 0, 18, 0.2);
}

body.service-page .service-card-icon svg {
    color: #ffffff;
}

body.service-page .support-card-title {
    color: #ffffff;
}

body.service-page .support-card-text {
    color: rgba(255, 255, 255, 0.85);
}

body.service-page .support-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

body.service-page .support-card:hover {
    background: rgba(255, 255, 255, 0.12);
}

body.service-page .support-card-icon {
    background: rgba(230, 0, 18, 0.2);
}

body.service-page .support-card-icon svg {
    color: #ffffff;
}

body.service-page .faq-item {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

body.service-page .faq-question {
    color: #ffffff;
}

body.service-page .faq-question:hover {
    background: rgba(255, 255, 255, 0.05);
}

body.service-page .faq-question svg {
    color: rgba(255, 255, 255, 0.7);
}

body.service-page .faq-answer {
    color: rgba(255, 255, 255, 0.85);
}

/* About page - show fixed background */
body.about-page .main {
    background: transparent;
}

body.about-page .page-header {
    background: transparent;
    color: #ffffff;
    padding-top: 120px;
    padding-bottom: 40px;
}

body.about-page .page-title {
    color: #ffffff;
}

body.about-page .page-subtitle {
    color: rgba(255, 255, 255, 0.9);
}

body.about-page .section {
    background: transparent;
    padding: 2.5rem 0;
}


body.about-page .section-header {
    margin-bottom: 2rem;
}

body.about-page .service-card,
body.about-page .service-modern-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

body.about-page .service-card:hover,
body.about-page .service-modern-card:hover {
    background: rgba(255, 255, 255, 0.12);
}

body.about-page .breadcrumb {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.85);
}

body.about-page .breadcrumb a {
    color: rgba(255, 255, 255, 0.85);
}

/* About page - white text on dark background */
body.about-page .section-title {
    color: #ffffff;
}

body.about-page .section-subtitle {
    color: rgba(255, 255, 255, 0.85);
}

body.about-page .service-card-title {
    color: #ffffff;
}

body.about-page .service-card-text {
    color: rgba(255, 255, 255, 0.85);
}

body.about-page .service-card-icon {
    background: rgba(230, 0, 18, 0.2);
}

body.about-page .service-card-icon svg {
    color: #ffffff;
}

body.about-page .stat-number {
    color: #ffffff;
}

body.about-page .stat-label {
    color: rgba(255, 255, 255, 0.85);
}

body.about-page .card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

body.about-page .card:hover {
    background: rgba(255, 255, 255, 0.12);
}

body.about-page .card-title {
    color: #ffffff;
}

body.about-page .card-text {
    color: rgba(255, 255, 255, 0.85);
}

body.about-page .cta-banner {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

body.about-page .cta-title {
    color: #ffffff;
}

body.about-page .cta-text {
    color: rgba(255, 255, 255, 0.85);
}

body.about-page .btn-outline {
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.5);
}

body.about-page .btn-outline:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: #ffffff;
    color: #ffffff;
}

/* About page CTA buttons with color & shadow */
.about-cta-btn {
    display: inline-block;
    padding: 12px 28px;
    font-weight: 600;
    border-radius: 8px;
    color: #ffffff !important;
    border: none !important;
    transition: all 0.3s ease;
    letter-spacing: 0.3px;
}

.about-cta-printers {
    background: linear-gradient(135deg, #e4002b, #ff3d5a);
    box-shadow: 0 4px 15px rgba(228, 0, 43, 0.45);
}
.about-cta-printers:hover {
    background: linear-gradient(135deg, #c80025, #e4002b);
    box-shadow: 0 6px 22px rgba(228, 0, 43, 0.6);
    transform: translateY(-2px);
    color: #ffffff !important;
}

.about-cta-service {
    background: linear-gradient(135deg, #0066cc, #3399ff);
    box-shadow: 0 4px 15px rgba(0, 102, 204, 0.45);
}
.about-cta-service:hover {
    background: linear-gradient(135deg, #0052a3, #0066cc);
    box-shadow: 0 6px 22px rgba(0, 102, 204, 0.6);
    transform: translateY(-2px);
    color: #ffffff !important;
}

.about-cta-support {
    background: linear-gradient(135deg, #00875a, #00c97b);
    box-shadow: 0 4px 15px rgba(0, 135, 90, 0.45);
}
.about-cta-support:hover {
    background: linear-gradient(135deg, #006b47, #00875a);
    box-shadow: 0 6px 22px rgba(0, 135, 90, 0.6);
    transform: translateY(-2px);
    color: #ffffff !important;
}

body.about-page .stats-grid {
    border-color: rgba(255, 255, 255, 0.15);
}

/* Careers page - show fixed background with glassmorphism */
body.careers-page .main {
    background: transparent;
}

body.careers-page .page-header {
    background: transparent;
    color: #ffffff;
    padding: 120px 0 36px;
}

body.careers-page .page-title {
    color: #ffffff;
}

body.careers-page .page-subtitle {
    color: rgba(255, 255, 255, 0.9);
}

body.careers-page .section {
    background: transparent;
    position: relative;
    z-index: 5;
    padding: 48px 0;
}

body.careers-page .section-header {
    margin-bottom: 32px;
}

body.careers-page .section-title {
    color: #ffffff;
}

body.careers-page .section-subtitle {
    color: rgba(255, 255, 255, 0.85);
}

body.careers-page .benefit-card,
body.careers-page .service-card,
body.careers-page .service-modern-card {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    color: #ffffff;
}

body.careers-page .benefit-card:hover,
body.careers-page .service-card:hover,
body.careers-page .service-modern-card:hover {
    background: rgba(255, 255, 255, 0.18);
    border-color: rgba(255, 255, 255, 0.25);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
}

body.careers-page .service-card-title {
    color: #ffffff;
}

body.careers-page .service-card-text {
    color: rgba(255, 255, 255, 0.85);
}

body.careers-page .service-card-icon {
    background: rgba(230, 0, 18, 0.2);
}

/* Better styled benefit icons for careers page */
body.careers-page .benefit-icon {
    width: 70px;
    height: 70px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(230, 0, 18, 0.15) 0%, rgba(230, 0, 18, 0.25) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    border: 1px solid rgba(230, 0, 18, 0.3);
    box-shadow: 0 4px 20px rgba(230, 0, 18, 0.15);
    transition: all 0.3s ease;
}

body.careers-page .benefit-icon svg {
    width: 32px;
    height: 32px;
    color: #ffffff;
    stroke: #ffffff;
}

body.careers-page .benefit-card:hover .benefit-icon {
    background: linear-gradient(135deg, rgba(230, 0, 18, 0.25) 0%, rgba(230, 0, 18, 0.4) 100%);
    transform: scale(1.05);
    box-shadow: 0 6px 24px rgba(230, 0, 18, 0.25);
}

body.careers-page .benefit-card h3 {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 10px;
}

body.careers-page .benefit-card p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    line-height: 1.5;
}
body.careers-page .service-card-icon svg {
    color: #ffffff;
}

body.careers-page .breadcrumb {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.85);
}

body.careers-page .breadcrumb a {
    color: rgba(255, 255, 255, 0.85);
}

/* Contact page - show fixed background */
body.contact-page .main {
    background: transparent;
}

body.contact-page .page-header {
    background: transparent;
    color: #ffffff;
    padding: 120px 0 36px;
}

body.contact-page .page-title {
    color: #ffffff;
}

body.contact-page .page-subtitle {
    color: rgba(255, 255, 255, 0.9);
}

body.contact-page .section {
    background: transparent;
    position: relative;
    z-index: 5;
    padding: 48px 0;
}

body.contact-page .contact-info-card,
body.contact-page .contact-form-card,
body.contact-page .service-card {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    color: #ffffff;
}

body.contact-page .contact-info-title,
body.contact-page .contact-form-title {
    color: #ffffff;
}

body.contact-page .contact-info-content h4 {
    color: #ffffff;
}

body.contact-page .contact-info-content p,
body.contact-page .contact-info-content p a {
    color: rgba(255, 255, 255, 0.85);
}

body.contact-page .contact-info-description {
    color: rgba(255, 255, 255, 0.8);
}

body.contact-page .contact-info-icon {
    background: rgba(230, 0, 18, 0.25);
}

body.contact-page .contact-info-icon svg {
    color: #ff6b7a;
}

body.contact-page .form-label {
    color: rgba(255, 255, 255, 0.9);
}

body.contact-page .form-input,
body.contact-page .form-select,
body.contact-page .form-textarea {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    color: #ffffff;
}

body.contact-page .form-input::placeholder,
body.contact-page .form-textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

body.contact-page .form-input:focus,
body.contact-page .form-select:focus,
body.contact-page .form-textarea:focus {
    border-color: rgba(230, 0, 18, 0.6);
    box-shadow: 0 0 0 3px rgba(230, 0, 18, 0.15);
    background: rgba(255, 255, 255, 0.15);
}

body.contact-page .form-select option {
    background: #1e293b;
    color: #ffffff;
}

/* Map placeholder section */
body.contact-page .contact-map-placeholder {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: rgba(255, 255, 255, 0.7);
}

body.contact-page .breadcrumb {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.85);
}

body.contact-page .breadcrumb a {
    color: rgba(255, 255, 255, 0.85);
}

/* News page - transparent background like other pages */
body.news-page .main {
    background: transparent;
}

body.news-page .page-header,
body.news-page .ff-page-header {
    background: transparent;
    color: #ffffff;
    padding: 120px 0 36px;
    text-align: center;
}

body.news-page .page-title,
body.news-page .ff-page-title {
    color: #ffffff;
}

body.news-page .page-subtitle,
body.news-page .ff-page-subtitle {
    color: rgba(255, 255, 255, 0.9);
}

body.news-page .section {
    background: transparent;
    position: relative;
    z-index: 5;
    padding: 48px 0;
}

body.news-page .ff-news-card {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

body.news-page .ff-news-card:hover {
    background: rgba(255, 255, 255, 0.18);
    border-color: rgba(255, 255, 255, 0.25);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
}

body.news-page .ff-news-card__body {
    color: #ffffff;
}

body.news-page .ff-news-category {
    color: rgba(255, 255, 255, 0.7);
}

body.news-page .ff-news-title {
    color: #ffffff;
}

body.news-page .ff-news-excerpt {
    color: rgba(255, 255, 255, 0.85);
}

body.news-page .ff-news-link {
    color: #90b8f8;
}

body.news-page .ff-press-item {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

body.news-page .ff-press-item:hover {
    background: rgba(255, 255, 255, 0.18);
    border-color: rgba(255, 255, 255, 0.25);
}

body.news-page .ff-press-content h3 {
    color: #ffffff;
}

body.news-page .ff-press-excerpt {
    color: rgba(255, 255, 255, 0.85);
}

body.news-page .ff-press-day {
    color: #90b8f8;
}

body.news-page .ff-press-month {
    color: rgba(255, 255, 255, 0.7);
}

body.news-page .ff-press-date {
    border-right-color: rgba(255, 255, 255, 0.15);
}

body.news-page .ff-press-link {
    color: #90b8f8;
}

body.news-page .news-highlights {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

body.news-page .news-highlights__title {
    color: #ffffff;
}

body.news-page .news-highlight-item {
    border-top-color: rgba(255, 255, 255, 0.12);
}

body.news-page .news-highlight-item:hover {
    background: rgba(255, 255, 255, 0.08);
}

body.news-page .news-highlight-item__label {
    color: rgba(255, 255, 255, 0.6);
}

body.news-page .news-highlight-item__title {
    color: #ffffff;
}

body.news-page .news-highlights__footer {
    border-top-color: rgba(255, 255, 255, 0.12);
}

body.news-page .news-highlights__footer a {
    color: #90b8f8;
}

body.news-page .news-tabs-bar {
    background: rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

body.news-page .news-tabs-bar__inner a {
    color: rgba(255, 255, 255, 0.65);
}

body.news-page .news-tabs-bar__inner a:hover {
    color: #ffffff;
}

body.news-page .news-tabs-bar__inner a.active {
    color: #ffffff;
}

body.news-page .news-hero-image {
    background: transparent;
}

body.news-page .news-content-section h2 {
    color: #ffffff;
    border-left-color: #e60012;
}

body.news-page .ff-news-tabs,
body.news-page .ff-news-section {
    background: transparent;
    position: relative;
    z-index: 5;
}

body.news-page .ff-breadcrumb a,
body.news-page .ff-breadcrumb-current {
    color: rgba(255, 255, 255, 0.85);
}

body.news-page .ff-breadcrumb-sep {
    color: rgba(255, 255, 255, 0.5);
}
/* Responsive spacer */
@media (max-width: 768px) {
    .hero-slider-spacer {
        height: 100vh;
        min-height: 500px;
    }
}

@media (max-width: 480px) {
    .hero-slider-spacer {
        height: 100vh;
        min-height: 450px;
    }
}

