/* Modernized Home Page Enhancements */
.hero__slide-content {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    right: 0;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--gutter);
    z-index: 10;
    text-align: left !important;
    display: flex;
    flex-direction: column;
    align-items: flex-start !important;
    color: #fff;
    padding-bottom: 0;
}

.hero__slide-content * {
    text-align: left !important;
    margin-left: 0 !important;
}

/* Override h1 size in hero */
.hero__slide-content h1 {
    font-size: clamp(36px, 4vw, 64px) !important;
    max-width: 800px;
    line-height: 1.15;
    margin-bottom: 24px;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.hero__slide-content .hero__sub {
    max-width: 600px;
    font-size: 1.125rem;
    line-height: 1.6;
    margin-bottom: 32px;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

/* Animations for slide content */
.hero__slide-content .animate__animated {
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.hero__slide.is-active .hero__slide-content .animate__animated {
    opacity: 1;
    transform: translateX(0);
}

.hero__slide.is-active .hero__slide-content .eyebrow { transition-delay: 0.1s; }
.hero__slide.is-active .hero__slide-content h1 { transition-delay: 0.3s; }
.hero__slide.is-active .hero__slide-content .hero__sub { transition-delay: 0.5s; }
.hero__slide.is-active .hero__slide-content .hero__actions { transition-delay: 0.7s; }

/* Modernize Stats */
.stats {
    background: #0b0c10 !important;
    border: none !important;
    color: #c5c6c7;
}
.stat .num { color: #fff !important; }
.stat::before { background: #f2a900 !important; }
.stat .lbl { color: #f2a900 !important; }

/* Modernize About Section */
.about-prev__card {
    background: rgba(11, 12, 16, 0.85) !important;
    border-left: 3px solid #f2a900 !important;
    backdrop-filter: blur(12px) !important;
}
.about-prev__card p { color: rgba(255,255,255,0.8) !important; }
.about-prev__card .y { color: #f2a900 !important; }

/* Modernize Services Grid */
.services__grid {
    border-color: rgba(255,255,255,0.1) !important;
}
.service {
    background: rgba(255,255,255,0.02) !important;
    border-color: rgba(255,255,255,0.05) !important;
    backdrop-filter: blur(10px);
}
.service:hover {
    background: rgba(255,255,255,0.05) !important;
    transform: translateY(-5px);
}
.service::before { display: none !important; }

/* Projects Overlay Modernization */
.proj__overlay {
    background: linear-gradient(0deg, #0b0c10 0%, transparent 60%) !important;
}
.proj__arrow {
    background: rgba(242, 169, 0, 0.2) !important;
    border-color: #f2a900 !important;
    color: #f2a900 !important;
    border-radius: 50%;
}
.proj:hover .proj__arrow {
    background: #f2a900 !important;
    color: #000 !important;
}

/* Process Section Modernization */
.process__step {
    border-color: rgba(255,255,255,0.05) !important;
}
.process__step:hover {
    background: rgba(255,255,255,0.02) !important;
}
.process__line .dot {
    border-color: #f2a900 !important;
    background: #0b0c10 !important;
    box-shadow: 0 0 10px rgba(242,169,0,0.5);
}
.process__line .seg {
    background: rgba(255,255,255,0.1) !important;
}

/* CTA Strip Modernization */
.cta-strip {
    background: linear-gradient(135deg, #0b0c10, #1F2329) !important;
}
.cta-strip::before {
    background: linear-gradient(90deg, transparent, #f2a900, transparent) !important;
}
