/* =========================================
   1. HOME HERO SLIDER
   ========================================= */

#hero-slider {
    position: relative;
    width: 100%;
    height: 100vh;
    margin-top: 0;
    top: 0;
    overflow: hidden;
    background-color: #000;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 30vh;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    z-index: 1;
}

.slide.active {
    opacity: 1;
}

/* Dots Navigation */
.slider-dots {
    position: absolute;
    top: 50%;
    right: 30px;
    left: auto;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.3s;
}

.dot:hover,
.dot.active {
    background-color: #fff;
    transform: scale(1.2);
}

/* Scroll Down Arrow */
.scroll-down {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    cursor: pointer;
    opacity: 0.8;
    transition: opacity 0.3s ease;
    animation: arrowBounce 2s infinite ease-in-out;
}

.scroll-down:hover {
    opacity: 1;
}

@keyframes arrowBounce {

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

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

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

/* Hero Overlay Text */
.hero-overlay {
    position: relative;
    z-index: 5;
    color: #fff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.9), 0 0 30px rgba(0, 0, 0, 0.8);
    max-width: 800px;
    text-align: center;
    pointer-events: none;
}

.hero-overlay p {
    margin-top: 20px;
    font-size: 1.2rem;
    position: relative;
    width: 100%;
}

/* =========================================
   2. MAIN SECTIONS
   ========================================= */

.home-main {
    margin-top: 100px !important;
    display: flex;
    flex-direction: column;
    gap: 100px;
    margin-bottom: 80px;
}

.section {
    width: 100%;
}

/* =========================================
   3. ABOUT SECTION
   ========================================= */

.content-wrapper {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    gap: 60px;
}

.about-text {
    flex: 1;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    height: 100%;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.accent-line {
    width: 60px;
    height: 4px;
    background-color: #fff;
    margin-bottom: 25px;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #ccc;
    margin-bottom: 30px;
}

.btn-link {
    color: #fff;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s;
    display: inline-block;
}

.btn-link:hover {
    opacity: 0.7;
}

.about-image {
    flex: 1;
    height: auto;
    background-color: #222;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* =========================================
   4. CTA SECTION
   ========================================= */

.cta-section {
    background-color: #1a1a1a;
    padding: 60px;
    border-radius: 20px;
    text-align: center;
}

.cta-content h2 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.cta-content p {
    color: #aaa;
    margin-bottom: 30px;
}

.cta-btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: #fff;
    color: #000;
    text-decoration: none;
    font-weight: bold;
    border-radius: 50px;
    transition: transform 0.2s;
}

.cta-btn:hover {
    transform: scale(1.05);
}

/* =========================================
   5. RESPONSIVENESS
   ========================================= */

@media (max-width: 768px) {
    .content-wrapper {
        flex-direction: column;
    }

    .about-image {
        width: 100%;
        height: 300px;
    }

    .section-title {
        font-size: 2rem;
    }
}