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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Kalam', cursive;
    line-height: 1.6;
    background: linear-gradient(135deg, #0a0e27 0%, #1a1a3e 50%, #2d1b4e 100%);
    color: #ffffff;
    overflow-x: hidden;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    padding: 15px;
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

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

.cookie-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.cookie-content p {
    margin: 0;
    flex: 1;
    font-weight: 400;
}

.cookie-content button {
    background: #fff;
    color: #ff6b35;
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
}

.cookie-content button:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 14, 39, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Orbitron', monospace;
    font-weight: 900;
    font-size: 1.5rem;
    color: #00d4ff;
}

.logo img {
    border-radius: 50%;
    width: 40px;
    height: 40px;
    object-fit: contain;
    border: 2px solid #00d4ff;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}


.nav-menu a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 400;
    transition: all 0.3s ease;
    position: relative;
}

.nav-menu a:hover {
    color: #00d4ff;
    transform: translateY(-2px);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background: linear-gradient(90deg, #00d4ff, #ff6b35);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #00d4ff;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}
html{
    overflow-x: hidden;
}



.hero-background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.4) contrast(1.2);
}

.hero-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(0, 212, 255, 0.3), rgba(247, 147, 30, 0.3));
    z-index: -1;
}

.hero-content {
    text-align: center;
    max-width: 800px;
    padding: 0 2rem;
    animation: fadeInUp 1s ease-out;
}

.hero-title {
    font-family: 'Righteous', cursive;
    font-size: 4rem;
    background: linear-gradient(45deg, #00d4ff, #ff6b35);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    text-shadow: 0 0 30px rgba(0, 212, 255, 0.5);
}

.hero-subtitle {
    font-family: 'Audiowide', cursive;
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.7);
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-button {
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    color: white;
    border: none;
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: bold;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
}

.cta-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.6);
}

.hero-stats {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 3rem;
}

.stat {
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 1rem 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-number {
    display: block;
    font-family: 'Orbitron', monospace;
    font-size: 2rem;
    font-weight: 900;
    color: #00d4ff;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Fleet Section */
.fleet {
    padding: 100px 0;
    background: linear-gradient(180deg, #1a1a3e 0%, #2d1b4e 100%);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-family: 'Righteous', cursive;
    font-size: 3rem;
    background: linear-gradient(45deg, #00d4ff, #ff6b35);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.2rem;
    opacity: 0.8;
}

.fleet-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    padding: 0 2rem;
}

.yacht-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.yacht-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 212, 255, 0.2);
}

.yacht-card.luxury {
    border: 2px solid #ffd700;
}

.yacht-card.sport {
    border: 2px solid #ff6b35;
}

.yacht-card.classic {
    border: 2px solid #00d4ff;
}

.yacht-image {
    height: 250px;
    overflow: hidden;
}

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

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

.yacht-info {
    padding: 1.5rem;
}

.yacht-info h3 {
    font-family: 'Audiowide', cursive;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #00d4ff;
}

.yacht-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.yacht-specs span {
    background: rgba(255, 255, 255, 0.1);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.9rem;
}

.yacht-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.service-name {
    font-size: 0.9rem;
    opacity: 0.8;
}

.price {
    font-family: 'Orbitron', monospace;
    font-size: 1.2rem;
    font-weight: bold;
    color: #ff6b35;
}

/* Weather Section */
.weather-section {
    padding: 100px 0;
    background: linear-gradient(45deg, #2d1b4e 0%, #1a1a3e 50%, #0a0e27 100%);
}

.weather-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    padding: 0 2rem;
}

.weather-info h2 {
    font-family: 'Righteous', cursive;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #00d4ff;
}

.weather-display {
    display: flex;
    align-items: center;
    gap: 2rem;
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.weather-icon {
    position: relative;
    width: 120px;
    height: 120px;
}

.sun {
    width: 60px;
    height: 60px;
    background: radial-gradient(circle, #ffd700, #ff8c00);
    border-radius: 50%;
    position: absolute;
    top: 20px;
    left: 30px;
    animation: rotate 20s linear infinite;
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.6);
}

.cloud {
    background: #e0e0e0;
    border-radius: 50px;
    position: absolute;
    opacity: 0.8;
    animation: float 6s ease-in-out infinite;
}

.cloud1 {
    width: 80px;
    height: 30px;
    top: 40px;
    left: 10px;
    animation-delay: -2s;
}

.cloud2 {
    width: 60px;
    height: 25px;
    top: 55px;
    left: 40px;
    animation-delay: -4s;
}

.weather-details {
    flex: 1;
}

.temperature {
    font-family: 'Orbitron', monospace;
    font-size: 3rem;
    font-weight: 900;
    color: #00d4ff;
    margin-bottom: 0.5rem;
}

.condition {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.wind, .waves {
    font-size: 1rem;
    opacity: 0.8;
    margin-bottom: 0.5rem;
}

.marina-map h3 {
    font-family: 'Audiowide', cursive;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #ff6b35;
}

.map-container {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    height: 400px;
}

.map-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: contrast(1.2) brightness(0.7);
}

.boat-markers {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.boat-marker {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
}

.marker-pulse {
    width: 20px;
    height: 20px;
    background: #00d4ff;
    border-radius: 50%;
    position: relative;
    animation: pulse 2s infinite;
}

.marker-pulse::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    width: 30px;
    height: 30px;
    border: 2px solid #00d4ff;
    border-radius: 50%;
    animation: pulse-ring 2s infinite;
}

.boat-name {
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 4px 8px;
    border-radius: 10px;
    font-size: 0.8rem;
    margin-top: 5px;
    white-space: nowrap;
}

/* Booking Section */
.booking-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1a3e 0%, #2d1b4e 100%);
}

.booking-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
}

.booking-container h2 {
    font-family: 'Righteous', cursive;
    font-size: 3rem;
    text-align: center;
    margin-bottom: 3rem;
    background: linear-gradient(45deg, #00d4ff, #ff6b35);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.booking-timeline {
    display: flex;
    justify-content: space-between;
    margin-bottom: 3rem;
    position: relative;
}

.booking-timeline::before {
    content: '';
    position: absolute;
    top: 25px;
    left: 50px;
    right: 50px;
    height: 2px;
    background: rgba(255, 255, 255, 0.2);
    z-index: 1;
}

.timeline-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
    cursor: pointer;
    transition: all 0.3s ease;
}

.timeline-step.active .step-number {
    background: linear-gradient(45deg, #00d4ff, #ff6b35);
    transform: scale(1.2);
}

.timeline-step.active .step-content h3 {
    color: #00d4ff;
}

.step-number {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Orbitron', monospace;
    font-weight: bold;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.step-content {
    text-align: center;
}

.step-content h3 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s ease;
}

.step-content p {
    font-size: 0.8rem;
    opacity: 0.6;
}

.booking-form {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.form-section {
    display: none;
}

.form-section.active {
    display: block;
    animation: fadeInUp 0.5s ease-out;
}

.form-section h3 {
    font-family: 'Audiowide', cursive;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #00d4ff;
}

.yacht-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.yacht-option {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    padding: 1rem;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.yacht-option:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #00d4ff;
}

.yacht-option input[type="radio"] {
    margin-right: 1rem;
    transform: scale(1.2);
    width: auto;
    margin-bottom: 0;
}
.option-checkbox input[type="checkbox"]{
    width: auto;
    margin-bottom: 0;
}

.option-checkbox {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    cursor: pointer;
}

.option-checkbox input[type="checkbox"] {
    margin-right: 1rem;
    transform: scale(1.2);
}

.form-section input, .form-section select, .form-section textarea {
    width: 100%;
    padding: 1rem;
    margin-bottom: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    color: white;
    font-size: 1rem;
}

.form-section input::placeholder, .form-section textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.form-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 2rem;
}

.nav-button {
    padding: 12px 30px;
    border: none;
    border-radius: 25px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.nav-button.prev {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.nav-button.next, .nav-button.submit {
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    color: white;
}

.nav-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.nav-button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Contact Section */
.contact-section {
    padding: 100px 0;
    background: linear-gradient(45deg, #0a0e27 0%, #1a1a3e 100%);
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    padding: 0 2rem;
}

.contact-info h2 {
    font-family: 'Righteous', cursive;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #00d4ff;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-icon {
    font-size: 1.5rem;
    min-width: 40px;
    margin-top: 10px;
}

.contact-text h4 {
    color: #ff6b35;
    margin-bottom: 0.5rem;
    font-family: 'Audiowide', cursive;
}

.contact-text p {
    opacity: 0.8;
    line-height: 1.4;
}

.contact-form {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-form h3 {
    font-family: 'Audiowide', cursive;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #ff6b35;
}

.contact-form input, .contact-form textarea {
    width: 100%;
    padding: 1rem;
    margin-bottom: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    color: white;
    font-size: 1rem;
}

.contact-form input::placeholder, .contact-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.contact-form button {
    background: linear-gradient(45deg, #00d4ff, #0099cc);
    color: white;
    border: none;
    padding: 15px 40px;
    border-radius: 25px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.contact-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 212, 255, 0.4);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #0a0e27 0%, #1a1a3e 100%);
    padding: 60px 0 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    padding: 0 2rem;
}

.footer-section h4 {
    font-family: 'Audiowide', cursive;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #00d4ff;
}

.footer-section p {
    opacity: 0.8;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.footer-section ul {
    list-style: none;
}

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

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #ff6b35;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    padding: 0.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 5px;
    transition: all 0.3s ease;
}

.social-link:hover {
    color: #00d4ff;
    border-color: #00d4ff;
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    margin-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.6;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

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

@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.7; }
    100% { transform: scale(1); opacity: 1; }
}

@keyframes pulse-ring {
    0% { transform: scale(0.8); opacity: 1; }
    100% { transform: scale(2); opacity: 0; }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    .nav-menu.active{
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 70px;
        background: #0a0e27;
        left: 0;
        width: 100%;
        padding: 20px 30px;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.8rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .weather-container,
    .contact-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .booking-timeline {
        flex-direction: column;
        gap: 2rem;
    }
    
    .booking-timeline::before {
        display: none;
    }
    
    .fleet-grid {
        grid-template-columns: 1fr;
    }
    .hero{
        height: 100%;
        flex-direction: column;
        padding-top: 120px;
        padding-bottom: 60px;
    }
    .hero-stats{
        position: static;
        width: 100%;
        transform: none;
        margin-top: 30px;
    }
    
}




.text-wrapper h2, .text-wrapper h3{
    margin-top: 20px;
    margin-bottom: 10px;
}

.text-wrapper h1{
    text-align: center;
    font-size: 2rem;
    margin-bottom: 20px;
}
.text-wrapper h2{
    font-size: 1.5rem;
}

.text-wrapper{
    margin: 30px auto;
    max-width: 1200px;
    padding: 20px;
}
.text-wrapper ul{
    list-style: initial!important;
}

.text-wrapper p{
    margin-bottom: 10px;
}