@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600&display=swap');

.hero-slider {
    --primary-color: #ffffff;
    --accent-color: #8dafae;
    --text-color: #ffffff;
    --bg-overlay: rgba(0, 0, 0, 0.2);
    --font-main: 'Outfit', sans-serif;
    --transition-smooth: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-slider {
    width: 100%;
    height: 100vh;
    position: relative;
    overflow: hidden;
    font-family: var(--font-main);
}

.hero-swiper {
    width: 100%;
    height: 100%;
}

.hero-swiper .swiper-slide {
    position: relative;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    padding: 0 8%;
}

.hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0) 60%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    color: var(--text-color);
}

.hero-content h1 {
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 40px;
    letter-spacing: -0.02em;
}

.hero-cta a {
    text-decoration: none !important;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    padding: 8px 8px 8px 30px;
    background: #ffffff;
    color: #333;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    transition: var(--transition-smooth);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-cta span {
    margin-right: 20px;
}

.hero-cta-icon {
    width: 45px;
    height: 45px;
    min-width: 45px;
    min-height: 45px;
    flex-shrink: 0;
    background: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: var(--transition-smooth);
}

.hero-cta:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
}

.hero-cta:hover .hero-cta-icon {
    transform: rotate(-45deg);
}

.hero-social-links {
    position: absolute;
    bottom: 40px;
    left: 8%;
    z-index: 10;
    display: flex;
    gap: 15px;
}

.hero-social-icon {
    width: 45px;
    height: 45px;
    min-width: 45px;
    min-height: 45px;
    flex-shrink: 0;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.hero-social-icon:hover {
    background: var(--accent-color);
    color: white;
    transform: translateY(-5px);
}

.hero-slider-nav {
    position: absolute;
    bottom: 40px;
    right: 8%;
    z-index: 10;
    display: flex;
    gap: 15px;
}

.hero-nav-btn {
    width: 45px;
    height: 45px;
    min-width: 45px;
    min-height: 45px;
    flex-shrink: 0;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: none;
}

.hero-nav-btn:hover {
    background: var(--accent-color);
    color: white;
}