@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;
}

.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-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.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: 2;
}

.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: 0;
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translate(-50%, -20px);
    }
    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 forwards;
    width: 90vw;
    padding: 0 5%;
    box-sizing: border-box;
    pointer-events: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.overlay-text h1 {
    margin-top: 0;
    font-size: 4em;
    margin-bottom: 10px;
    line-height: 1.2;
    transform: translateY(-8px);
}

.overlay-text p {
    margin-top: 0;
    font-size: 1.5em;
    margin: 0 auto;
    max-width: 80%;
}

.overlay-logo {
    max-width: 280px;
    margin-bottom: 15px;
    height: auto;
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.5));
    display: block;
    align-self: center;
    margin-left: auto;
    margin-right: auto;
}

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

.centered-text {
    text-align: center;
    padding: 50px 20px;
    color: #333;
}

.centered-text h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
}

.centered-text p {
    font-size: 1.5em;
}

.text-image-section {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 50px 20px;
    color: #000000;
}

.text-content {
    flex: 1;
    padding-right: 10px;
    max-width: 20%;
    text-align: center;
}

.image-content {
    flex: 1;
    text-align: center;
    max-width: 25%;
}

.image-content img {
    max-width: 80%;
    height: auto;
    border-radius: 10px;
}

.text-content h2 {
    font-size: 1.5em;
    font-weight: bold;
    margin-bottom: 20px;
}

.text-content p {
    font-size: 1.5em;
}

.image-gallery {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 20px;
}

.image-gallery img {
    max-width: 30%;
    height: auto;
    border-radius: 10px;
}

.vip-section {
    padding: 4rem 0;
}

.vip-content {
    display: flex;
    gap: 3rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.vip-image {
    flex: 1;
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.vip-boat-img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.vip-boat-img:hover {
    transform: scale(1.02);
}

.vip-text {
    flex: 1;
    padding-left: 2rem;
}

.vip-text h2 {
    font-size: 2.2rem;
    color: #1a365d;
    margin-bottom: 2rem;
    line-height: 1.3;
}

.highlight-item {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(43, 108, 176, 0.05);
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.highlight-item:hover {
    transform: translateY(-5px);
}

.highlight-item i {
    font-size: 1.8rem;
    color: #2b6cb0;
    margin-bottom: 1rem;
    display: block;
}

.highlight-item h3 {
    color: #1a365d;
    margin-bottom: 0.8rem;
    font-size: 1.4rem;
}

.highlight-item p {
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 0;
}

.process-section {
    padding: 4rem 0;
}

.process-content {
    display: flex;
    gap: 3rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.process-text {
    flex: 1;
    padding-right: 2rem;
}

.process-text h2 {
    font-size: 2.2rem;
    color: #1a365d;
    margin-bottom: 2rem;
    line-height: 1.3;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

.process-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.calendar-animation {
    position: relative;
    width: 320px;
    height: 320px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    padding: 30px;
    text-align: center;
    animation: float 3s ease-in-out infinite;
    overflow: hidden;
}

.calendar-icon {
    width: 80px;
    margin-bottom: 25px;
    filter: drop-shadow(0 3px 6px rgba(13, 110, 253, 0.25));
}

.calendar-days {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin: 25px 0;
}

.calendar-days .day {
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: #f8f9fa;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    position: relative;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
}

.calendar-days .day.active {
    background: #0d6efd;
    color: white;
    transform: scale(1.05);
    box-shadow: 0 6px 15px rgba(13, 110, 253, 0.4);
}

.calendar-days .day:not(.active):hover {
    background: #e9ecef;
}

.calendar-checkmark {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    width: 55px;
    height: 55px;
    background: #198754;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    opacity: 0;
    animation: checkmark-appear 2s ease-in-out infinite 1s;
    box-shadow: 0 6px 15px rgba(25, 135, 84, 0.3);
}

.feature-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(43, 108, 176, 0.05);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateX(-10px);
}

.feature-item i {
    font-size: 1.8rem;
    color: #2b6cb0;
    margin-top: 0.5rem;
}

.feature-item h3 {
    color: #1a365d;
    margin-bottom: 0.8rem;
    font-size: 1.4rem;
}

.feature-item p {
    color: #4a5568;
    line-height: 1.6;
}

.cta-section {
    padding: 5rem 0;
    text-align: center;
}

.cta-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.cta-subtitle {
    color: #4a5568;
    font-size: 1.2rem;
    margin-bottom: 3rem;
}

.cta-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    justify-content: center;
}

.cta-card {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
    position: relative;
    text-align: center;
}

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

.cta-card i:first-child {
    font-size: 2.5rem;
    color: #2b6cb0;
    margin-bottom: 1.5rem;
    display: block;
    margin-right: 0.5rem !important;
}

.cta-card > *:last-child {
    margin-top: 1rem;
}

.cta-card h3 {
    color: #1a365d;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.cta-card p {
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.4rem 1rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    font-size: 0.85rem;
    min-width: 160px;
    margin: 0 auto;
    line-height: 1.2;
}

.cta-btn i {
    display: inline-flex !important;
    align-items: center;
    vertical-align: middle;
}

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

.cta-card.primary .cta-btn {
    background: #1a365d;
}

.cta-btn:hover {
    transform: scale(1.02);
    box-shadow: 0 3px 12px rgba(43, 108, 176, 0.2);
}

@media (max-width: 992px) {
    .vip-content {
        flex-direction: column;
        padding: 0 1.5rem;
    }
    
    .vip-text {
        padding-left: 0;
        padding-top: 2rem;
    }
    
    .vip-boat-img {
        height: 400px;
    }
    .process-content {
        flex-direction: column;
        padding: 0 1.5rem;
    }
    
    .process-text {
        padding-right: 0;
        order: 1;
    }
    
    .process-image {
        display: none !important;
    }
    
    .process-img {
        height: 400px;
    }
    
    .calendar-animation {
        width: 280px;
        height: 280px;
        padding: 25px;
    }
    
    .calendar-icon {
        width: 70px;
    }
    
    .calendar-days .day {
        width: 50px;
        height: 50px;
    }
}

@media (max-width: 768px) {
    .overlay-text h1 {
        font-size: 2.8em;
        margin-bottom: 8px;
    }

    .overlay-logo {
        max-width: 200px;
        margin-bottom: 10px;
    }
    
    .overlay-text p {
        font-size: 1.25em;
    }

    .vip-section {
        background: #f8f9fa;
    }
    
    .vip-text h2 {
        font-size: 1.8rem;
    }
    
    .highlight-item {
        padding: 1rem;
    }
    
    .process-section {
        background: #f8f9fa;
    }
    
    .process-text h2 {
        font-size: 1.8rem;
    }
    
    .feature-item {
        padding: 1rem;
        flex-direction: column;
        align-items: start;
    }

    .cta-section {
        padding: 3rem 0;
    }
    
    .cta-card {
        padding: 2rem;
    }
    .cta-btn {
        min-width: 140px;
        font-size: 0.8rem;
        padding: 0.35rem 0.9rem;
    }
    
    .calendar-animation {
        width: 240px;
        height: 240px;
        padding: 20px;
        animation: float 4s ease-in-out infinite;
    }
    
    .calendar-icon {
        width: 60px;
    }
    
    .calendar-days {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }
    
    .calendar-days .day {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
    
    .calendar-checkmark {
        width: 45px;
        height: 45px;
        font-size: 22px;
    }

    @keyframes float {
        0%, 100% { transform: translateY(0); }
        50% { transform: translateY(-8px); }
    }
}

.notification-container {
    max-width: 90%;
    width: max-content;
    min-width: 240px;
}

.notification-alert {
    padding: 14px 18px;
    font-size: 0.9rem;
}

@media (max-width: 480px) {
    .notification-container {
        top: 65px;
        right: 15px;
        left: auto;
        transform: none;
        max-width: calc(100% - 30px);
    }
    
    .notification-alert {
        width: 100%;
        max-width: 260px;
    }
    
    .notification-alert .btn-close {
        padding: 0.15rem;
    }

    .overlay-text h1 {
        font-size: 2.2em;
    }
    
    .overlay-text p {
        font-size: 1.1em;
    }

    .overlay-logo {
        max-width: 160px;
    }
    
    .swiper-container::after {
        height: 40%;
    }
    
    .calendar-animation {
        width: 90%;
        max-width: 260px;
        height: auto;
        padding: 20px;
        margin: 0 auto;
    }
    
    .calendar-days {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
        margin: 15px 0;
    }
    
    .calendar-days .day {
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
    }
    
    .calendar-checkmark {
        bottom: 20px;
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
}

@media (max-width: 360px) {
    .calendar-animation {
        padding: 15px;
        max-width: 240px;
    }

    .calendar-days {
        gap: 6px;
    }

    .calendar-days .day {
        width: 35px;
        height: 35px;
        font-size: 0.85rem;
    }

    .calendar-checkmark {
        bottom: 15px;
        width: 35px;
        height: 35px;
        font-size: 18px;
    }
}

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

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

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

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

@keyframes checkmark-appear {
    0%, 100% { 
        opacity: 0;
        transform: translateX(-50%) scale(0.5);
    }
    50% { 
        opacity: 1;
        transform: translateX(-50%) scale(1);
    }
}