/* CSS Variables */
:root {
    --primary-color: #0d1b2a;
    --secondary-color: #1b263b;
    --accent-color: #415a77;
    --light-accent: #778da9;
    --light-bg: #e0e1dd;
    --gradient-ocean: linear-gradient(135deg, #0d1b2a 0%, #415a77 100%);
    --gradient-sunset: linear-gradient(135deg, #415a77 0%, #778da9 100%);
    --gradient-light: linear-gradient(135deg, #778da9 0%, #e0e1dd 100%);
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Maitree', serif;
    line-height: 1.6;
    color: var(--primary-color);
    overflow-x: hidden;
    scroll-behavior: smooth;
}

/* Typography Classes */
.font-rajdhani {
    font-family: 'Rajdhani', sans-serif;
}

.font-leckerli {
    font-family: 'Leckerli One', cursive;
}

.font-maitree {
    font-family: 'Maitree', serif;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-color);
    color: #e0e1dd;
    padding: 1rem 0;
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-banner a {
    color: var(--light-accent);
}

/* Navigation Styles */
.navbar-custom {
    background: rgba(13, 27, 42, 0.95);
    backdrop-filter: blur(15px);
    transition: all 0.3s ease;
    padding: 1rem 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.navbar-custom.scrolled {
    background: rgba(13, 27, 42, 0.98);
    padding: 0.5rem 0;
}

.navbar-brand {
    font-family: 'Leckerli One', cursive;
    font-size: 2rem;
    color: #e0e1dd !important;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
}

.navbar-brand:hover {
    transform: scale(1.05);
}

.navbar-nav .nav-link {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 500;
    color: #e0e1dd !important;
    margin: 0 0.5rem;
    transition: all 0.3s ease;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.navbar-nav .nav-link:hover {
    color: #778da9 !important;
    transform: translateY(-2px);
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 50%;
    background: var(--light-accent);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 100%;
}

/* Hero Section */
.hero-section {
    height: 100vh;
    background: linear-gradient(rgba(13, 27, 42, 0.6), rgba(65, 90, 119, 0.4)),
                url('images/banner.jpg') center/cover;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-waves {
    position: absolute;
    bottom: -50px;
    left: 0;
    width: 100%;
    height: 200px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120'%3E%3Cpath d='M985.66,92.83C906.67,72,823.78,31,743.84,14.19c-82.26-17.34-168.06-16.33-250.45.39-57.84,11.73-114,31.07-172,41.86A600.21,600.21,0,0,1,0,27.35V120H1200V95.8C1132.19,118.92,1055.71,111.31,985.66,92.83Z' fill='%23e0e1dd'%3E%3C/path%3E%3C/svg%3E") repeat-x;
    /* animation: wave 15s infinite linear; */
}

@keyframes wave {
    0% { background-position-x: 0; }
    100% { background-position-x: 1200px; }
}

.hero-content h1 {
    font-family: 'Leckerli One', cursive;
    font-size: 4rem;
    color: #e0e1dd;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.5);
    margin-bottom: 1rem;
}

.hero-content p {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.5rem;
    color: #e0e1dd;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
}

/* Custom Buttons */
.btn-custom {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 600;
    padding: 15px 30px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: none;
    text-decoration: none;
    display: inline-block;
}

.btn-primary-custom {
    background: var(--gradient-ocean);
    color: #e0e1dd;
    box-shadow: 0 8px 25px rgba(65, 90, 119, 0.3);
}

.btn-primary-custom:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(65, 90, 119, 0.4);
    color: #e0e1dd;
}

.btn-outline-custom {
    background: transparent;
    color: #e0e1dd;
    border: 2px solid #e0e1dd;
}

.btn-outline-custom:hover {
    background: #e0e1dd;
    color: var(--primary-color);
    transform: translateY(-3px);
}

/* Section Styling */
.section-padding {
    padding: 100px 0;
}

.section-title {
    font-family: 'Leckerli One', cursive;
    font-size: 3rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-color);
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--gradient-ocean);
    border-radius: 2px;
}

/* Yacht Cards */
.yacht-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(13, 27, 42, 0.1);
    transition: all 0.3s ease;
    margin-bottom: 2rem;
    height: 100%;
}

.yacht-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(13, 27, 42, 0.2);
}

.yacht-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.yacht-card:hover img {
    transform: scale(1.05);
}

.yacht-card-body {
    padding: 2rem;
}

.yacht-card h5 {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}


.navbar-brand img{
    max-width: 200px;
    width: 200px;
    object-fit: contain;
}

html{
    overflow-x: hidden;
}

.yacht-price {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-color);
}

/* Experience Cards */
.experience-card {
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
    border-radius: 25px;
    padding: 3rem 2rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(65, 90, 119, 0.1);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.experience-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(65, 90, 119, 0.03) 0%, transparent 70%);
    transform: scale(0);
    transition: transform 0.6s ease;
}

.experience-card:hover::before {
    transform: scale(1);
}

.experience-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(65, 90, 119, 0.15);
}

.experience-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-ocean);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 2rem;
    color: #e0e1dd;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.experience-card:hover .experience-icon {
    transform: rotateY(360deg);
}

/* Testimonials */
.testimonial-card {
    background: #fff;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(13, 27, 42, 0.1);
    text-align: center;
    margin: 1rem;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(13, 27, 42, 0.15);
}

.testimonial-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    object-fit: cover;
    border: 4px solid var(--light-accent);
    transition: all 0.3s ease;
}

.testimonial-card:hover .testimonial-avatar {
    transform: scale(1.1);
    border-color: var(--accent-color);
}

/* Swiper Testimonials */
.testimonial-swiper {
    padding: 2rem 0;
}

.swiper-pagination-bullet {
    background: var(--accent-color);
    opacity: 0.5;
}

.swiper-pagination-bullet-active {
    opacity: 1;
    background: var(--primary-color);
}

/* Interactive Map */
.map-section {
    background: var(--gradient-sunset);
    position: relative;
}

.map-container {
    height: 500px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
    font-size: 0;
    margin-bottom: 0;
    padding-bottom: 0;
}
.map-container img{
    height: 100%;
}
.destination-item {
    display: flex;
    align-items: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.destination-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateX(10px);
}

/* Special Offers */
.offer-card {
    background: var(--gradient-ocean);
    color: #e0e1dd;
    border-radius: 25px;
    padding: 3rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    height: 100%;
}

.offer-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(224, 225, 221, 0.1) 0%, transparent 70%);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.offer-mini-card {
    background: #fff;
    color: var(--primary-color);
    padding: 2rem;
    border-radius: 15px;
    height: 100%;
    transition: all 0.3s ease;
}

.offer-mini-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.countdown {
    font-family: 'Rajdhani', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    margin: 1.5rem 0;
    position: relative;
    z-index: 2;
}

/* Feature Cards */
.feature-card {
    padding: 2rem;
    transition: all 0.3s ease;
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-ocean);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: #e0e1dd;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotateY(180deg);
}

/* Contact Form */
.contact-form {
    background: #fff;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 15px 35px rgba(13, 27, 42, 0.1);
}

.form-control {
    border: 2px solid #e0e1dd;
    border-radius: 10px;
    padding: 12px 15px;
    font-family: 'Maitree', serif;
    transition: all 0.3s ease;
    margin-bottom: 1rem;
}

.form-control:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 0.2rem rgba(65, 90, 119, 0.25);
    outline: none;
}

.form-label {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 500;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

/* Footer */
.footer {
    background: var(--primary-color);
    color: #e0e1dd;
    padding: 4rem 0 2rem;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120'%3E%3Cpath d='M0,0V46.29c47.79,22.2,103.59,32.17,158,28,70.36-5.37,136.33-33.31,206.8-37.5C438.64,32.43,512.34,53.67,583,72.05c69.27,18,138.3,24.88,209.4,13.08,36.15-6,69.85-17.84,104.45-29.34C989.49,25,1113-14.29,1200,52.47V0Z' opacity='.25' fill='%23e0e1dd'%3E%3C/path%3E%3C/svg%3E") repeat-x;
}

.footer h5 {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--light-accent);
}

.footer a {
    color: #e0e1dd;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer a:hover {
    color: var(--light-accent);
    transform: translateX(5px);
}

.footer ul li {
    margin-bottom: 0.5rem;
}

.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: rgba(224, 225, 221, 0.1);
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--light-accent);
    transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content p {
        font-size: 1.2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-padding {
        padding: 60px 0;
    }
    
    .experience-card,
    .feature-card {
        margin-bottom: 2rem;
    }
    
    .yacht-card {
        margin-bottom: 2rem;
    }
}

@media (max-width: 576px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .btn-custom {
        padding: 12px 24px;
        font-size: 0.9rem;
    }
    
    .contact-form {
        padding: 2rem 1.5rem;
    }
    
    .experience-card {
        padding: 2rem 1.5rem;
    }

    .navbar-collapse{
        margin-top: 40px;
    }
    .hero-waves{
        display: none;
    }
}

/* Animation Classes */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Loading Animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(224, 225, 221, 0.3);
    border-radius: 50%;
    border-top-color: #e0e1dd;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--accent-color);
    border-radius: 4px;
}


        .legal-page {
            padding-top: 120px;
            padding-bottom: 80px;
            background: #f8f9fa;
            min-height: 100vh;
        }

        .legal-content {
            background: #fff;
            padding: 3rem;
            border-radius: 20px;
            box-shadow: 0 15px 35px rgba(13, 27, 42, 0.1);
        }

        .legal-title {
            font-family: 'Leckerli One', cursive;
            font-size: 2.5rem;
            color: var(--primary-color);
            text-align: center;
            margin-bottom: 1rem;
        }

        .legal-subtitle {
            text-align: center;
            color: #666;
            margin-bottom: 3rem;
            font-style: italic;
        }

        .legal-section {
            margin-bottom: 2.5rem;
        }

        .legal-section h2 {
            font-family: 'Rajdhani', sans-serif;
            font-size: 1.8rem;
            color: var(--primary-color);
            margin-bottom: 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid var(--light-bg);
        }

        .legal-section h3 {
            font-family: 'Rajdhani', sans-serif;
            font-size: 1.3rem;
            color: var(--accent-color);
            margin-top: 1.5rem;
            margin-bottom: 0.75rem;
        }

        .legal-section p {
            line-height: 1.7;
            margin-bottom: 1rem;
            text-align: justify;
        }

        .legal-section ul {
            margin-bottom: 1rem;
        }

        .legal-section li {
            margin-bottom: 0.5rem;
            line-height: 1.6;
        }

        .legal-footer {
            background: var(--light-bg);
            padding: 2rem;
            border-radius: 15px;
            margin-top: 3rem;
            text-align: center;
        }

        .legal-content a {
            color: var(--accent-color);
            text-decoration: none;
        }

        .legal-content a:hover {
            color: var(--primary-color);
            text-decoration: underline;
        }

        @media (max-width: 768px) {
            .legal-content {
                padding: 2rem 1.5rem;
            }
            
            .legal-title {
                font-size: 2rem;
            }
            
            .legal-section h2 {
                font-size: 1.5rem;
            }
        }