/*
 * DarkBlue Media - Index Page Styles
 * Clean White Edition
 */

/* ========================================
   Hero Section - With Background Image
   ======================================== */
.hero {
    min-height: 100vh;
    background: url('/assets/images/image2.png') center center / cover no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.6) 0%, rgba(10, 22, 40, 0.7) 100%);
    z-index: 1;
}

.hero-overlay {
    display: none;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero-content {
    animation: fadeInUp 1s ease forwards;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 107, 0, 0.9);
    color: #ffffff;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-text {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 540px;
    margin-bottom: 2rem;
    line-height: 1.8;
}

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

.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.hero-scroll a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    color: #ffffff;
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}

/* ========================================
   Services Section - White Background
   ======================================== */
.btn-link {
    color: #000000;
    font-weight: 600;
    font-size: 0.875rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition-fast);
}

.btn-link:hover {
    color: #666666;
    gap: 0.75rem;
}

.card-cta {
    background: #000000;
    border-radius: 12px;
    padding: 2rem;
    min-height: 280px;
}

.card-cta h4 {
    color: #ffffff;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.card-cta p {
    color: #999999;
    margin-bottom: 1.5rem;
}

/* ========================================
   Interactive Services Section
   ======================================== */
.services-interactive {
    overflow: hidden;
}

.services-cards-wrapper {
    background: #f8f9fa;
    padding: 5rem 4rem;
    position: relative;
    min-height: 600px;
}

.services-header {
    margin-bottom: 3rem;
}

.services-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #0a1628;
    margin-bottom: 0.5rem;
}

.services-header p {
    color: #666666;
    font-size: 1.1rem;
}

.services-slider {
    position: relative;
    height: 400px;
}

.service-card {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    gap: 2rem;
    background: #ffffff;
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 2px solid #e5e5e5;
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.4s ease;
    pointer-events: none;
}

.service-card.active {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
}

.service-card.slide-out {
    opacity: 0;
    transform: translateX(-50px);
}

.service-card-icon {
    flex-shrink: 0;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #ff6b00 0%, #ff8c00 100%);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(255, 107, 0, 0.3);
}

.service-card-icon i {
    font-size: 2.5rem;
    color: #ffffff;
}

.service-card-content h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #0a1628;
    margin-bottom: 1rem;
}

.service-card-content p {
    color: #666666;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.service-features li {
    color: #333333;
    font-weight: 500;
}

.service-features li i {
    color: #ff6b00;
    margin-right: 0.5rem;
}

/* Right Menu - Premium Design */
.services-menu-wrapper {
    background:
        linear-gradient(135deg, rgba(255, 107, 0, 0.03) 0%, transparent 50%),
        linear-gradient(225deg, rgba(10, 22, 40, 0.05) 0%, transparent 50%),
        linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
    padding: 5rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.services-menu-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 107, 0, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(30%, -30%);
}

.services-menu-wrapper::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(10, 22, 40, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-30%, 30%);
}

.services-menu {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    position: relative;
    z-index: 1;
}

.menu-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.25rem 1.5rem;
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(0, 0, 0, 0.05);
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
}

.menu-item:hover {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transform: translateX(8px) scale(1.02);
    border-color: rgba(255, 107, 0, 0.2);
}

.menu-item.active {
    background: #ffffff;
    border-color: #ff6b00;
    box-shadow: 0 15px 40px rgba(255, 107, 0, 0.2);
    transform: translateX(10px);
}

.menu-number {
    font-size: 0.875rem;
    font-weight: 700;
    color: #ff6b00;
    min-width: 30px;
}

.menu-title {
    flex: 1;
    font-size: 1.1rem;
    font-weight: 600;
    color: #0a1628;
}

.menu-arrow {
    color: #ff6b00;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.menu-item.active .menu-arrow,
.menu-item:hover .menu-arrow {
    opacity: 1;
    transform: translateX(0);
}

.services-cta {
    margin-top: 3rem;
    text-align: center;
}

.services-cta p {
    color: #666666;
    margin-bottom: 1rem;
}

.services-cta .btn-outline-light {
    border-color: #0a1628;
    color: #0a1628;
}

.services-cta .btn-outline-light:hover {
    background: #0a1628;
    color: #ffffff;
}

/* Responsive */
@media (max-width: 991.98px) {
    .services-cards-wrapper {
        padding: 3rem 1.5rem;
        min-height: auto;
    }

    .services-slider {
        height: auto;
    }

    .service-card {
        position: relative;
        flex-direction: column;
        gap: 1.5rem;
        padding: 2rem;
        display: none;
    }

    .service-card.active {
        display: flex;
    }

    .service-card-icon {
        width: 80px;
        height: 80px;
    }

    .services-menu-wrapper {
        padding: 2rem 1.5rem;
    }

    .menu-item {
        padding: 1rem;
    }

    .service-features {
        flex-direction: column;
        gap: 0.5rem;
    }
}

/* ========================================
   Stats Section - Light Gray
   ======================================== */
.stats-section {
    padding: 4rem 0;
    background: #f5f5f5;
}

.stat-item {
    padding: 1rem;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: #000000;
    display: inline;
}

.stat-suffix {
    font-size: 1.5rem;
    font-weight: 700;
    color: #000000;
}

.stat-label {
    font-size: 1rem;
    color: #666666;
    margin-top: 0.5rem;
    margin-bottom: 0;
}

/* ========================================
   Why Us Section - White
   ======================================== */
.why-image {
    position: relative;
}

.image-placeholder {
    background: #f5f5f5;
    border-radius: 16px;
    height: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #666666;
    cursor: pointer;
    transition: var(--transition-normal);
    border: 2px dashed #e0e0e0;
}

.image-placeholder:hover {
    background: #ebebeb;
    border-color: #cccccc;
}

.image-placeholder i {
    font-size: 4rem;
    color: #999999;
    margin-bottom: 1rem;
}

.image-placeholder span {
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.feature-list {
    margin-top: 2rem;
}

.feature-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.feature-icon {
    width: 32px;
    height: 32px;
    background: #000000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon i {
    color: #ffffff;
    font-size: 0.875rem;
}

.feature-item h5 {
    color: #000000;
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.feature-item p {
    color: #666666;
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* ========================================
   Testimonials Section - Light Gray BG
   ======================================== */
.testimonial-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    height: 100%;
    position: relative;
    border: 1px solid #f0f0f0;
}

.testimonial-quote {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    color: #e0e0e0;
    font-size: 2rem;
}

.testimonial-text {
    color: #666666;
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: #f5f5f5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.author-avatar i {
    color: #999999;
}

.testimonial-author h5 {
    color: #000000;
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.testimonial-author span {
    color: #666666;
    font-size: 0.875rem;
}

/* ========================================
   CTA Section - Blends with Footer
   ======================================== */
.cta-section {
    background: linear-gradient(180deg, #0a1628 0%, #0d1e35 100%);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    display: none;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    color: #ffffff;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content p {
    color: #999999;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

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

.btn-outline-light {
    border: 2px solid #ffffff;
    color: #ffffff;
    background: transparent;
}

.btn-outline-light:hover {
    background: #ffffff;
    color: #000000;
}

/* ========================================
   Responsive
   ======================================== */
@media (max-width: 991.98px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-text {
        font-size: 1rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }
}

@media (max-width: 767.98px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .btn {
        width: 100%;
        text-align: center;
    }

    .image-placeholder {
        height: 300px;
    }

    .cta-content h2 {
        font-size: 1.75rem;
    }
}