@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300..800&display=swap');

body {
    font-family: 'Outfit', sans-serif;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    height: 100%;
    width: 100%;
    position: relative;
}

.notification-container {
    position: fixed;
    top: 75px;
    right: 20px;
    z-index: 9999;
    max-width: 280px;
    width: auto;
}

.notification-alert {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    opacity: 0;
    transform: translateY(-100%);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border-radius: 12px;
    padding: 16px 20px;
    font-size: 0.925rem;
    display: flex;
    align-items: center;
    gap: 12px;
    line-height: 1.4;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.notification-alert.show {
    opacity: 1;
    transform: translateY(0);
}

.notification-alert.hide {
    opacity: 0;
    transform: translateY(-40px);
}

.notification-alert .btn-close {
    padding: 6px;
    margin-left: 12px;
    font-size: 0.8rem;
}

.main-content {
    position: relative;
    height: auto;
    min-height: 100vh;
}

.auth-overlay, .schedule-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.overlay-content {
    max-width: 600px;
    padding: 2rem;
    color: white;
    position: relative;
}

.overlay-content h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.overlay-content .btn {
    font-size: 1.25rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    transition: transform 0.3s ease;
    z-index: 1001;
}

.overlay-content .btn:hover {
    transform: translateY(-3px);
}

.auth-overlay .btn-primary {
    background: linear-gradient(135deg, #2b6cb0, #4299e1);
    border: none;
    position: relative;
    overflow: hidden;
}

.auth-overlay .btn-primary::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: rgba(255,255,255,0.1);
    transform: rotate(45deg);
    transition: all 0.5s ease;
}

.auth-overlay .btn-primary:hover::after {
    left: 50%;
    top: 50%;
}

.schedule-overlay .btn-success {
    background: linear-gradient(135deg, #48bb78, #38a169);
    border: none;
    box-shadow: 0 4px 15px rgba(72, 187, 120, 0.3);
}

.swiper-container {
    position: relative;
    width: 100%;
    height: 100vh;
    z-index: 0;
    touch-action: pan-y;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch !important;
}

.swiper-wrapper {
    overflow: visible !important;
}

.swiper-container::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.5) 50%, rgba(255, 255, 255, 1) 100%);
    z-index: 1;
}

.swiper-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2;
}

.swiper-slide img {
    display: block;
    width: 100%;
    height: 100vh;
    object-fit: cover;
    z-index: 1;
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translate(-50%, -60%);
    }
    100% {
        opacity: 1;
        transform: translate(-50%, -50%);
    }
}

.overlay-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    z-index: 1000;
    animation: fadeInUp 1s ease-in-out;
    width: 90vw;
    padding: 0 5%;
    box-sizing: border-box;
    pointer-events: auto;
}

.content-wrapper {
    position: relative;
    z-index: 2;
    background: white;
}

.overlay-text h1 {
    font-size: 2.5em;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    word-wrap: break-word;
}

.overlay-text p {
    font-size: 2em;
    margin: 0 auto;
    max-width: 90%;
}

.booking-process {
    padding: 60px 20px;
    background-color: #fff;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 0;
}

.step-card {
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.step-card:hover {
    transform: translateY(-5px);
}

.step-number {
    font-size: 2.5rem;
    color: #2b6cb0;
    font-weight: 700;
    margin-bottom: 15px;
}

.step-title {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 15px;
    font-weight: 600;
}

.step-description {
    color: #666;
    line-height: 1.6;
}

.image-gallery {
    background: #fff;
    padding: 40px 20px;
}

.image-gallery img {
    max-width: 25%;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    border-radius: 10px;
}

.image-gallery img:hover {
    transform: scale(1.05);
}

.glassmorphism-effect {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.display-4 {
    font-size: 3.5rem;
}

.booking-process {
    padding: 80px 20px;
    position: relative;
    overflow: hidden;
}

.booking-process::before {
    content: '';
    position: absolute;
    bottom: -50px;
    left: -10%;
    width: 120%;
    height: 100px;
    background: #fff;
    transform: rotate(3deg);
    z-index: 1;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.step-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(43, 108, 176, 0.1);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 1px solid rgba(43, 108, 176, 0.1);
}

.step-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(43, 108, 176, 0.15);
}

.step-number {
    display: inline-block;
    width: 60px;
    height: 60px;
    background: #2b6cb0;
    color: #fff;
    border-radius: 50%;
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 60px;
    text-align: center;
    margin-bottom: 25px;
    position: relative;
    overflow: hidden;
}

.step-number::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: rgba(255,255,255,0.1);
    transform: rotate(45deg);
    transition: all 0.5s ease;
}

.step-card:hover .step-number::after {
    left: 50%;
    top: 50%;
}

.step-title {
    font-size: 1.8rem;
    color: #1a365d;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
}

.step-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: #2b6cb0;
    border-radius: 2px;
}

.step-description {
    color: #4a5568;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 25px;
}

.important-notice {
    padding: 50px 20px 30px;
    position: relative;
    z-index: 2;
}

.notice-header {
    text-align: center;
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.notice-header i {
    font-size: 2.5rem;
    color: #2b6cb0;
    margin-bottom: 15px;
    background: rgba(43, 108, 176, 0.1);
    padding: 15px;
    border-radius: 50%;
}

.notice-header h2 {
    color: #1a365d;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0;
}

.notice-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 25px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(43, 108, 176, 0.08);
    border: 1px solid rgba(43, 108, 176, 0.1);
}

.notice-content p {
    color: #4a5568;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.partner-guidance {
    position: absolute;
    bottom: -80px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
    font-size: 1.1rem;
    white-space: nowrap;
}

.partner-guidance i {
    font-size: 1.4rem;
    filter: drop-shadow(1px 1px 1px rgba(0,0,0,0.3));
}

@media (max-width: 992px) {
    .process-steps {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 15px;
    }
    
    .step-card {
        padding: 30px 25px;
    }
    
    .step-title {
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    .display-4 {
        font-size: 2.5rem;
    }
    
    .overlay-content {
        padding: 1rem;
    }

    .overlay-text {
        width: 100%;
        padding: 0 15px;
    }

    .overlay-text h1 {
        font-size: 2rem;
        margin-bottom: 15px;
        text-align: center;
    }
    
    .overlay-text p {
        font-size: 1.5em;
    }
    
    .overlay-content .btn {
        font-size: 1rem;
        padding: 0.75rem 1.5rem;
    }

    .button-container {
        gap: 1rem;
        position: relative;
        transform: none;
        left: auto;
        padding: 0 10px;
    }

    .btn-special {
        min-width: 100%;
        padding: 0.75rem 1rem;
        font-size: 1rem;
    }
    
    .auth-overlay, .schedule-overlay {
        padding: 1rem;
    }

    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .image-gallery img {
        max-width: 80%;
        margin: 15px auto;
    }

    .button-container {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .btn-lg {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .booking-process {
        padding: 60px 20px;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        line-height: 50px;
        font-size: 1.5rem;
    }

    .important-notice {
        padding: 40px 15px 20px;
    }
    
    .notice-header h2 {
        font-size: 1.6rem;
    }
    
    .notice-content {
        padding: 20px;
    }
    
    .notice-content p {
        font-size: 1rem;
    }

    .partner-guidance {
        position: relative;
        bottom: auto;
        left: auto;
        transform: none;
        margin: 25px auto 0;
        padding: 15px 0;
        flex-direction: column;
        text-align: center;
        white-space: normal;
        width: 100%;
    }

    .partner-guidance i {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .overlay-text h1 {
        font-size: 2.5em;
    }
    
    .overlay-text p {
        font-size: 1.2em;
    }
    
    .swiper-container::after {
        height: 40%;
    }

    .notice-header i {
        font-size: 2rem;
        padding: 12px;
    }
    
    .notice-header h2 {
        font-size: 1.4rem;
    }
}

/* Button enhancements */
.button-container {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    position: relative;
    width: 100%;
    padding: 0 15px;
}

.btn-special {
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
    border-radius: 6px; 
    transition: all 0.3s ease;
    min-width: 240px;
    position: relative;
    border: 2px solid transparent;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 1rem 1.5rem;
}

.btn-partner {
    background-color: #2b6cb0;
    color: white;
}

.btn-partner:hover {
    background-color: #1e4e8c;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(43, 108, 176, 0.3);
}

.btn-whatsapp {
    background-color: #25D366;
    color: white;
}

.btn-whatsapp:hover {
    background-color: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(18, 140, 126, 0.3);
}

.btn-label {
    display: block;
    font-size: 0.75rem;
    margin-top: 0.3rem;
    opacity: 0.9;
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.25rem;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: #007bff;
    border-color: #007bff;
}

.btn-success {
    background-color: #25D366 !important;
    border-color: #25D366 !important;
}

.btn-primary:hover,
.btn-success:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.navbar-toggler {
    border-color: rgba(0,0,0,0.1) !important;
}

body.modal-open {
    overflow-y: scroll !important;
    padding-right: 0 !important;
}

.modal {
    overflow-y: auto !important;
}

.modal-backdrop {
    position: fixed !important;
}