﻿/* Page section styles */

/* Login section */
.login-section {
    position: fixed;
    bottom: -100%;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 20px 20px 0 0;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999;
    max-height: 90vh;
    overflow-y: auto;
}

/* How it works section */
.how-it-works {
    padding: 80px 0;
    background: rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}

    .how-it-works h2 {
        color: #fff;
        font-size: 2.5rem;
        font-weight: bold;
        margin-bottom: 50px;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
        text-align: center;
    }

.stages-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
}

/* Packages section */
.packages-section {
    padding: 60px 0;
    animation: slideIn 0.8s ease forwards;
}

.packages-title, .premium-title {
    text-align: center;
    color: #ffffff;
    font-weight: bold;
    animation: slideIn 0.6s ease forwards;
}

.packages-title {
    font-size: 2.5rem;
    margin-bottom: 40px;
}

.premium-title {
    font-size: 2rem;
    margin: 50px 0 30px;
}

.premium-packages {
    margin-top: 50px;
}

/* Carousel/Slider styles */
.carousel {
    position: relative;
    width: calc(100vw - 40px);
    margin: 0 auto;
    min-height: 300px;
}

.carousel-item {
    transition: transform 0.6s ease-in-out;
}

    .carousel-item img {
        width: 100%;
        height: auto;
        object-fit: cover;
        object-position: center;
    }

.carousel-control-prev,
.carousel-control-next {
    opacity: 0.7;
    width: 10%;
}

    .carousel-control-prev:hover,
    .carousel-control-next:hover {
        opacity: 1;
    }

.carousel-indicators {
    bottom: 20px;
}

    .carousel-indicators button {
        width: 12px;
        height: 12px;
        border-radius: 50%;
        margin: 0 5px;
        background-color: rgba(255, 255, 255, 0.5);
        cursor: pointer;
        transition: background-color 0.3s ease;
    }

        .carousel-indicators button.active {
            background-color: #fff;
        }

.scroll-to-services {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    background-color: #128C7E;
    color: white;
    padding: 20px 40px;
    border-radius: 35px;
    font-size: 22px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

    .scroll-to-services:hover {
        background-color: #0d6b60;
        transform: translateX(-50%) translateY(-2px);
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
        color: white;
    }

.login-section.active {
    bottom: 0;
    background: rgba(0, 0, 0, 0.1);
}

.login-section::-webkit-scrollbar {
    width: 8px;
}

.login-section::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

.login-section::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 4px;
}

    .login-section::-webkit-scrollbar-thumb:hover {
        background: #555;
    }

.login-container {
    background: #ffffff !important;
    padding: 30px !important;
    border-radius: 15px !important;
    box-shadow: 0 8px 32px rgba(31, 38, 135, 0.25) !important;
    backdrop-filter: blur(4px) !important;
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
    margin-bottom: 30px !important;
}

.login-header {
    text-align: center;
}

    .login-header img {
        width: 180px;
        height: 180px;
        margin-bottom: 20px;
        animation: float 3s ease-in-out infinite;
        filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.2));
    }

    .login-header h1 {
        color: #075E54 !important;
        font-size: 2.5rem !important;
        margin-bottom: 10px !important;
        font-weight: bold !important;
        text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1) !important;
    }

    .login-header p {
        color: #333 !important;
        font-size: 1.2rem !important;
        margin-bottom: 30px !important;
        font-weight: 500 !important;
    }

/* Services section */
.services-title {
    color: #ffffff;
    font-size: 3.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease forwards;
}

    .services-title::after {
        content: '';
        display: block;
        width: 100px;
        height: 4px;
        background: linear-gradient(90deg, #128C7E, #25D366);
        margin: 15px auto 0;
        border-radius: 2px;
        opacity: 0;
        transform: scaleX(0);
        animation: expandWidth 0.8s ease forwards 0.5s;
    }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes expandWidth {
    to {
        opacity: 1;
        transform: scaleX(1);
    }
}
