/* Header & Navigation */

header {
background: rgba(255, 255, 255, 0.95);
box-shadow: 0 2px 10px rgba(0,0,0,0.1);
position: sticky;
top: 0;
z-index: 1000;
}



.logo {
font-size: 1.8rem;
font-weight: bold;
color: #088395;
display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .logo::before {
            content: "🌊";
        }

        

        /* Footer */
        footer {
            background: #05445e;
            color: white;
            text-align: center;
            padding: 2rem;
            margin-top: 3rem;
        }


/* Hero Section */
        .hero {
            color: white;
            padding: 4rem 5%;
            text-align: center;
        }

        .hero h1 {
            font-size: 3rem;
            margin-bottom: 1rem;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }

        .hero p {
            font-size: 1.2rem;
            margin-bottom: 2rem;
            opacity: 0.9;
        }

        .cta-button {
            background: #40e0d0;
            color: #05445e;
            padding: 1rem 2rem;
            border: none;
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: bold;
            cursor: pointer;
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(64, 224, 208, 0.4);
        }

/* Modal Styles */
.modal {
    display: block;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.7);
}

.modal-content {
    background-color: white;
    margin: 10% auto;
    padding: 2rem;
    border-radius: 20px;
    width: 90%;
    max-width: 500px;
    position: relative;
}

.modal-content h2 {
    color: #05445e;
    margin-bottom: 1.5rem;
}

.modal-content input,
.modal-content select {
    width: 100%;
    padding: 0.8rem;
    margin-bottom: 1rem;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 1rem;
}

.modal-content input:focus,
.modal-content select:focus {
    outline: none;
    border-color: #40e0d0;
}

.close {
    position: absolute;
    right: 1.5rem;
    top: 1rem;
    font-size: 2rem;
    font-weight: bold;
    color: #aaa;
    cursor: pointer;
}

.close:hover {
    color: #05445e;
}

.buy-button {
    background: #40e0d0;
    color: #05445e;
    border: none;
    padding: 0.6rem 1.5rem;
    border-radius: 25px;
    font-weight: bold;
    cursor: pointer;
    margin-top: 0.5rem;
    transition: all 0.3s;
}

.buy-button:hover {
    transform: scale(1.05);
    box-shadow: 0 3px 10px rgba(64, 224, 208, 0.4);
}

.footer-modern {
        background: linear-gradient(135deg, #05445e 0%, #088395 100%);
        color: white;
        padding: 60px 20px 0;
        margin-top: 80px;
    }
    
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 40px;
    }
    
    .footer-section h4 {
        font-size: 1.2rem;
        margin-bottom: 20px;
        color: #fff;
        font-weight: 600;
    }
    
    .footer-logo {
        display: flex;
        align-items: center;
        gap: 12px;
        margin-bottom: 15px;
    }
    
    .footer-logo-img {
        width: 50px;
        height: 50px;
        border-radius: 10px;
    }
    
    .footer-logo h3 {
        font-size: 1.8rem;
        color: white;
        margin: 0;
    }
    
    .footer-tagline {
        color: rgba(255, 255, 255, 0.8);
        line-height: 1.6;
        margin-bottom: 20px;
    }
    
    .footer-social {
        display: flex;
        gap: 10px;
    }
    
    .social-icon {
        width: 40px;
        height: 40px;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.3rem;
        text-decoration: none;
        transition: all 0.3s;
    }
    
    .social-icon:hover {
        background: rgba(255, 255, 255, 0.2);
        transform: translateY(-3px);
    }
    
    .footer-links {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    
    .footer-links li {
        margin-bottom: 12px;
    }
    
    .footer-links a {
        color: rgba(255, 255, 255, 0.8);
        text-decoration: none;
        transition: all 0.3s;
        display: inline-block;
    }
    
    .footer-links a:hover {
        color: white;
        transform: translateX(5px);
    }
    
    .footer-contact {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    
    .footer-contact li {
        display: flex;
        align-items: center;
        gap: 10px;
        margin-bottom: 12px;
        color: rgba(255, 255, 255, 0.8);
    }
    
    .contact-icon {
        font-size: 1.2rem;
    }
    
    .footer-contact a {
        color: rgba(255, 255, 255, 0.8);
        text-decoration: none;
        transition: color 0.3s;
    }
    
    .footer-contact a:hover {
        color: white;
    }
    
    .footer-bottom {
        background: rgba(0, 0, 0, 0.2);
        margin-top: 40px;
        padding: 25px 20px;
        text-align: center;
    }
    
    .footer-bottom .footer-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        gap: 20px;
    }
    
    .footer-bottom p {
        margin: 0;
        color: rgba(255, 255, 255, 0.7);
        font-size: 0.9rem;
    }
    
    .footer-bottom-links {
        display: flex;
        gap: 15px;
        align-items: center;
    }
    
    .footer-bottom-links a {
        color: rgba(255, 255, 255, 0.7);
        text-decoration: none;
        font-size: 0.9rem;
        transition: color 0.3s;
    }
    
    .footer-bottom-links a:hover {
        color: white;
    }
    
    .footer-bottom-links span {
        color: rgba(255, 255, 255, 0.5);
    }
    
    @media (max-width: 768px) {
        .footer-container {
            grid-template-columns: 1fr;
            gap: 30px;
        }
        
        .footer-bottom .footer-container {
            flex-direction: column;
            text-align: center;
        }
    }