/* Slider Only Styles - Extracted from style.css */

:root {
    --primary-color: #9B4E9B;
    --secondary-color: #E39FB7;
    --accent-color: #B03355;
    --dark-color: #2c3e50;
    --white: #ffffff;
    --gray: #6c757d;
    --light-gray: #f1f3f4;
    --border-radius: 12px;
    --transition: all 0.3s ease;
    --shadow: 0 4px 20px rgba(155, 78, 155, 0.1);
    --shadow-hover: 0 8px 30px rgba(155, 78, 155, 0.2);
}

.hero-slider-section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    overflow: hidden;
    background: linear-gradient(135deg, #ffffff 0%, rgba(227, 159, 183, 0.2) 100%);
    padding-top: 130px;
    font-family: 'Poppins', sans-serif;
}

.hero-slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slider {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.645, 0.045, 0.355, 1);
    height: 100%;
}

.hero-slide {
    flex: 0 0 100%;
    width: 100%;
    min-height: calc(100vh - 130px);
    display: flex;
    align-items: center;
    opacity: 0;
    transition: opacity 0.8s ease;
    visibility: hidden;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
}

.animate-manual {
    opacity: 0;
    transform: translate3d(0, 30px, 0);
    transition: all 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-slide.active .animate-manual {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
}

.hero-slide.active .animate-manual:nth-child(1) {
    transition-delay: 0.2s;
}

.hero-slide.active .animate-manual:nth-child(2) {
    transition-delay: 0.3s;
}

.hero-slide.active .animate-manual:nth-child(3) {
    transition-delay: 0.4s;
}

.hero-slide.active .animate-manual:nth-child(4) {
    transition-delay: 0.5s;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 20px;
    text-align: left;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    color: var(--dark-color);
    margin-bottom: 1rem;
    line-height: 1.1;
    font-weight: 800;
}

.hero-subtitle {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.hero-description {
    font-size: 1.3rem;
    color: var(--gray);
    margin-bottom: 2rem;
}

.brand-text {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

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

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: var(--border-radius);
    font-weight: 500;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    box-shadow: var(--shadow);
}

.btn-secondary {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    color: var(--white);
    box-shadow: var(--shadow);
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.benefits {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    color: var(--primary-color);
    font-weight: 500;
}

.hero-card {
    background: var(--white);
    padding: 3rem 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-hover);
    text-align: center;
    position: relative;
}

.hero-card::before {
    content: '';
    position: absolute;
    inset: 0;
    padding: 2px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: var(--border-radius);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: xor;
    -webkit-mask-composite: xor;
}

.hero-card i {
    font-size: 4rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Recruitment Slide Specifics */
.recruitment-slide {
    background: radial-gradient(circle at 70% 30%, rgba(155, 78, 155, 0.1), transparent 50%),
        radial-gradient(circle at 20% 70%, rgba(227, 159, 183, 0.1), transparent 50%);
}

.hero-recruitment-tag {
    display: inline-block;
    background: var(--accent-color);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(176, 51, 85, 0.3);
}

.recruitment-perks {
    display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
}

.perk-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(5px);
    padding: 10px 18px;
    border-radius: 50px;
    border: 1px solid rgba(155, 78, 155, 0.1);
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.95rem;
}

.hero-recruitment-visual {
    position: relative;
    width: 100%;
    max-width: 450px;
    aspect-ratio: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.main-visual-circle {
    width: clamp(250px, 30vw, 400px);
    height: clamp(250px, 30vw, 400px);
    /* background: linear-gradient(135deg, var(--primary-color), var(--secondary-color)); */
    background: transparent;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 6rem;
    color: var(--white);
    /* box-shadow: 0 20px 50px rgba(155, 78, 155, 0.3); */
    box-shadow: none;
    position: relative;
    z-index: 2;
    /* overflow: hidden; */
}

.main-visual-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* border-radius: 50%; */
}

.floating-icon-card {
    position: absolute;
    top: 10%;
    left: 0;
    background: var(--white);
    padding: 15px 25px;
    border-radius: 15px;
    box-shadow: var(--shadow-hover);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    z-index: 3;
    animation: floating 3s ease-in-out infinite;
}

.floating-icon-card.bottom {
    top: auto;
    bottom: 10%;
    left: auto;
    right: 0;
    animation-delay: 1.5s;
}

.floating-icon-card i {
    font-size: 2rem;
    color: var(--primary-color);
}

.floating-icon-card span {
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--dark-color);
}

@keyframes floating {

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

    50% {
        transform: translateY(-15px);
    }
}

/* Slider Controls */
.slider-nav {
    position: absolute;
    bottom: 30px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    z-index: 10;
}

.slider-dots {
    display: flex;
    gap: 12px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(155, 78, 155, 0.2);
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background: var(--primary-color);
    transform: scale(1.3);
    box-shadow: 0 0 10px rgba(155, 78, 155, 0.4);
}

.slider-arrow {
    background: rgba(255, 255, 255, 0.8);
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    color: var(--primary-color);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.slider-arrow:hover {
    background: var(--primary-color);
    color: var(--white);
}

/* Eye-Catching Button */
.btn-cta-shiny {
    background: linear-gradient(135deg, #FF6B6B, #FFD93D) !important;
    color: #1a1a1a !important;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    padding: 18px 35px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(255, 107, 107, 0.4);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-cta-shiny::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: 0.5s;
}

.btn-cta-shiny:hover::before {
    left: 100%;
}

.btn-cta-shiny:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 35px rgba(255, 107, 107, 0.6);
    color: #000 !important;
}

.pulse-animation {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 107, 107, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(255, 107, 107, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 107, 107, 0);
    }
}

.btn-outline-white {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 16px 33px;
    font-weight: 700;
}

.btn-outline-white:hover {
    background: var(--primary-color);
    color: var(--white);
}

/* Responsive */
@media (max-width: 992px) {
    .hero-slider-section {
        padding-top: 150px;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .recruitment-perks {
        justify-content: center;
        flex-wrap: wrap;
    }

    .hero-image {
        order: -1;
    }

    .hero-recruitment-visual {
        margin: 0 auto;
    }
}

@media (max-width: 768px) {

    /* Form Page Fix: Ensure slider isn't cut off */
    /* This targets the inline style in form/index.html via !important or specific selector if possible, 
       but since it's inline, we might need to target the container's min-height */
    .hero-slider-section {
        min-height: auto;
        /* Allow it to grow */
        padding-bottom: 80px;
        /* Space for nav */
    }

    .hero-slide {
        min-height: auto;
        padding-bottom: 50px;
    }

    /* Home Page Fix: Move nav down so it doesn't overlap text */
    .slider-nav {
        bottom: 20px;
        flex-direction: row;
        gap: 1.5rem;
    }

    .slider-arrow {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }

    /* Adjust image size for mobile so it fits better */
    .main-visual-circle {
        width: 280px;
        height: 280px;
        font-size: 3rem;
    }

    .floating-icon-card {
        padding: 10px 15px;
    }
}