/* ============ Banner / Carousel ============ */
.banner {
    position: relative;
    margin-top: 130px;
    height: 400px;
    overflow: hidden;
}

.carousel {
    position: relative;
    height: 100%;
}

.carousel-track {
    display: flex;
    height: 100%;
    transition: transform 0.6s ease;
}

.carousel-slide {
    min-width: 100%;
    height: 100%;
    position: relative;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-slide::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(10,10,10,0.3) 0%, rgba(10,10,10,0.7) 100%);
}

.banner-content {
    position: absolute;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    text-align: center;
    width: 90%;
    max-width: 800px;
}

.banner-contact {
    display: inline-flex;
    gap: 30px;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    padding: 15px 40px;
    border-radius: 50px;
    border: 1px solid rgba(255, 0, 102, 0.5);
    box-shadow: 0 0 30px rgba(255, 0, 102, 0.3);
}

.banner-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-white);
}

.banner-contact-item i {
    font-size: 20px;
    color: var(--neon-pink);
}

.banner-contact-item .label {
    font-size: 13px;
    color: var(--text-gray);
}

.banner-contact-item .value {
    font-size: 18px;
    font-weight: bold;
    color: var(--neon-blue);
    text-shadow: 0 0 10px var(--neon-blue);
}

.banner-contact-item .value.purple {
    color: var(--neon-purple);
    text-shadow: 0 0 10px var(--neon-purple);
}

.carousel-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.carousel-dot {
    width: 40px;
    height: 4px;
    background: rgba(255, 255, 255, 0.3);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    border-radius: 2px;
}

.carousel-dot.active {
    background: var(--neon-pink);
    box-shadow: 0 0 10px var(--neon-pink);
    width: 60px;
}

.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 0, 102, 0.5);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--neon-pink);
    font-size: 20px;
    z-index: 10;
    transition: var(--transition);
}

.carousel-arrow:hover {
    background: var(--neon-pink);
    color: var(--text-white);
}

.carousel-prev {
    left: 20px;
}

.carousel-next {
    right: 20px;
}

/* ============ Quick Features ============ */
.quick-features {
    padding: 60px 0;
    background: var(--bg-light);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.feature-item {
    text-align: center;
    padding: 40px 20px;
    background: var(--bg-card);
    border-radius: 15px;
    border: 1px solid rgba(255, 0, 102, 0.2);
    transition: var(--transition);
    cursor: pointer;
}

.feature-item:hover {
    transform: translateY(-10px);
    border-color: var(--neon-pink);
    box-shadow: 0 15px 50px rgba(255, 0, 102, 0.3);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(255,0,102,0.2), rgba(0,212,255,0.2));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 36px;
    color: var(--neon-pink);
    box-shadow: 0 0 30px rgba(255, 0, 102, 0.3);
}

.feature-item:hover .feature-icon {
    color: var(--neon-blue);
    box-shadow: 0 0 40px rgba(0, 212, 255, 0.5);
}

.feature-item h3 {
    font-size: 20px;
    color: var(--text-white);
    margin-bottom: 10px;
}

.feature-item p {
    color: var(--text-gray);
    font-size: 14px;
}

/* ============ About Section ============ */
.about-section {
    padding: 80px 0;
}

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

.about-text h2 {
    font-size: 36px;
    color: var(--text-white);
    margin-bottom: 20px;
}

.about-text h2 .highlight {
    color: var(--neon-pink);
    text-shadow: 0 0 20px var(--neon-pink);
}

.about-text p {
    color: var(--text-gray);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 30px 0;
}

.stat-item {
    text-align: center;
    padding: 20px;
    background: var(--bg-card);
    border-radius: 10px;
    border: 1px solid rgba(255, 0, 102, 0.2);
}

.stat-number {
    font-size: 36px;
    font-weight: bold;
    color: var(--neon-pink);
    text-shadow: 0 0 20px var(--neon-pink);
}

.stat-label {
    font-size: 14px;
    color: var(--text-gray);
    margin-top: 5px;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: 20px;
    border: 2px solid rgba(255, 0, 102, 0.3);
    box-shadow: 0 0 50px rgba(255, 0, 102, 0.3);
}

.about-image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: 20px;
    bottom: 20px;
    border: 2px solid var(--neon-blue);
    border-radius: 20px;
    z-index: -1;
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.3);
}

/* ============ Jobs Section ============ */
.jobs-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.jobs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.job-card {
    background: var(--bg-card);
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid rgba(255, 0, 102, 0.2);
    transition: var(--transition);
}

.job-card:hover {
    transform: translateY(-10px);
    border-color: var(--neon-pink);
    box-shadow: 0 15px 50px rgba(255, 0, 102, 0.4);
}

.job-header {
    height: 180px;
    position: relative;
    overflow: hidden;
}

.job-header img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.job-card:hover .job-header img {
    transform: scale(1.1);
}

.job-tag {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, var(--neon-pink), var(--neon-purple));
    color: var(--text-white);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
}

.job-body {
    padding: 25px;
}

.job-body h3 {
    font-size: 20px;
    color: var(--text-white);
    margin-bottom: 10px;
}

.job-info {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    font-size: 13px;
    color: var(--text-gray);
}

.job-info i {
    color: var(--neon-pink);
    margin-right: 5px;
}

.job-salary {
    font-size: 24px;
    font-weight: bold;
    color: var(--neon-pink);
    text-shadow: 0 0 10px var(--neon-pink);
    margin-bottom: 15px;
}

.job-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.job-company {
    color: var(--text-gray);
    font-size: 13px;
}

.job-apply {
    background: linear-gradient(135deg, var(--neon-pink), var(--neon-purple));
    color: var(--text-white);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 13px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.job-apply:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(255, 0, 102, 0.6);
}

/* ============ News Section ============ */
.news-section {
    padding: 80px 0;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.news-card {
    background: var(--bg-card);
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
    cursor: pointer;
}

.news-card:hover {
    transform: translateY(-5px);
    border-color: var(--neon-blue);
    box-shadow: 0 10px 40px rgba(0, 212, 255, 0.3);
}

.news-img {
    height: 180px;
    overflow: hidden;
}

.news-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.news-body {
    padding: 25px;
}

.news-date {
    color: var(--neon-blue);
    font-size: 13px;
    margin-bottom: 10px;
}

.news-body h3 {
    font-size: 18px;
    color: var(--text-white);
    margin-bottom: 10px;
    line-height: 1.4;
    transition: var(--transition);
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 1;
    word-wrap: break-word;
    display: -webkit-box;
    -webkit-box-orient: vertical;
}

.news-card:hover .news-body h3 {
    color: var(--neon-pink);
}

.news-desc {
    color: var(--text-gray);
    font-size: 14px;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-more {
    text-align: center;
    margin-top: 40px;
}

/* ============ CTA Section ============ */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a0a1a 0%, #0a0a1a 50%, #0a1a1a 100%);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 0, 102, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(0, 212, 255, 0.2) 0%, transparent 50%);
}

.cta-content {
    position: relative;
    text-align: center;
    z-index: 1;
}

.cta-content h2 {
    font-size: 42px;
    color: var(--text-white);
    margin-bottom: 20px;
}

.cta-content h2 .highlight {
    color: var(--neon-pink);
    text-shadow: 0 0 30px var(--neon-pink);
}

.cta-content p {
    color: var(--text-gray);
    font-size: 18px;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* ============ Testimonials ============ */
.testimonials {
    padding: 80px 0;
    background: var(--bg-light);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background: var(--bg-card);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(255, 0, 102, 0.2);
    position: relative;
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: var(--neon-pink);
    box-shadow: 0 10px 40px rgba(255, 0, 102, 0.3);
}

.testimonial-card::before {
    content: '\201C';
    position: absolute;
    top: 20px;
    left: 30px;
    font-size: 60px;
    color: var(--neon-pink);
    opacity: 0.3;
    font-family: Georgia, serif;
}

.testimonial-text {
    color: var(--text-gray);
    font-size: 14px;
    line-height: 1.8;
    margin: 20px 0;
    padding-top: 30px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--neon-pink);
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h4 {
    font-size: 16px;
    color: var(--text-white);
}

.author-info span {
    font-size: 13px;
    color: var(--neon-blue);
}

/* ============ Responsive ============ */
@media (max-width: 992px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    .jobs-grid,
    .news-grid,
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .banner {
        height: 300px;
        margin-top: 60px;
    }

    .banner-contact {
        flex-direction: column;
        gap: 10px;
        padding: 10px 20px;
    }

    .carousel-arrow {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .about-stats {
        grid-template-columns: repeat(3, 1fr);
    }

    .jobs-grid,
    .news-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .cta-content h2 {
        font-size: 28px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}
