/* ===== RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


:root {
    --primary-color: #0a2540;
    --secondary-color: #1a5490;
    --accent-gold: #d4af37;
    --accent-blue: #4a90e2;
    --text-dark: #1a1a1a;
    --text-light: #ffffff;
    --text-gray: #666666;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.15);
}


body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}


h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.2;
}


.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}


/* ===== NAVIGATION ===== */
nav.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background: rgba(10, 37, 64, 0.95);
    backdrop-filter: blur(10px);
    z-index: 9999;
    padding: 1rem 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}


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


.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-light);
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 1px;
}


.logo i {
    font-size: 1.8rem;
    color: var(--accent-gold);
}


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


.nav-menu a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s;
    letter-spacing: 0.5px;
}


.nav-menu a:hover {
    color: var(--accent-gold);
}


.btn-join {
    background: linear-gradient(135deg, var(--accent-gold) 0%, #f4d03f 100%);
    color: var(--primary-color) !important;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 4px 15px rgba(212, 175, 55, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}


.btn-join::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}


.btn-join:hover::before {
    left: 100%;
}


.btn-join::after {
    content: '→';
    position: absolute;
    right: 1rem;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}


.btn-join:hover::after {
    opacity: 1;
    transform: translateX(0);
}


.btn-join:hover {
    background: linear-gradient(135deg, #f4d03f 0%, var(--accent-gold) 100%);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 
        0 8px 25px rgba(212, 175, 55, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
    padding-right: 2.5rem;
}


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


.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-light);
    border-radius: 3px;
    transition: 0.3s;
}


/* ===== HERO SECTION ===== */
.hero {
   position: relative;
    height: 100vh;
    background: linear-gradient(135deg, #0a2540 0%, #1a5490 100%);
    background-image: url('https://images.unsplash.com/photo-1540946485063-a40da27545f8?w=1920');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--text-light);
}


.hero::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('https://images.pexels.com/photos/163236/luxury-yacht-boat-speed-water-163236.jpeg?auto=compress&cs=tinysrgb&w=1920');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
}


.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(4, 99, 194, 0.4) 0%, rgba(26, 84, 144, 0.3) 100%);
    z-index: 1;
}


.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 2rem;
    animation: fadeInUp 1s ease-out;
}


.wave-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    animation: wave 2s ease-in-out infinite;
}


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


.hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: 3px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
}


.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 2rem;
    letter-spacing: 2px;
    color: var(--accent-gold);
}


.hero-tagline {
    font-size: 1.8rem;
    font-weight: 400;
    margin-bottom: 2.5rem;
    line-height: 1.4;
}


.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}


.scroll-indicator i {
    font-size: 2rem;
    color: var(--accent-gold);
}


@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}


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


/* ===== BUTTONS ===== */
.btn-primary, .btn-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    letter-spacing: 1px;
    border: 2px solid transparent;
}


.btn-primary {
    background: var(--accent-gold);
    color: var(--primary-color);
}


.btn-primary:hover {
    background: #c19b2e;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}


.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}


.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--text-light);
}


.btn-large {
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
}


/* ===== INTRO SECTION ===== */
.intro-section {
    padding: 6rem 0;
    background: var(--bg-white);
}


.intro-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}


.intro-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 1.5rem;
}


.intro-text strong {
    color: var(--primary-color);
    font-weight: 600;
}


/* ===== SECTION TITLES ===== */
.section-title {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--primary-color);
    letter-spacing: 2px;
}


.section-subtitle {
    text-align: center;
    font-size: 1.3rem;
    color: var(--text-gray);
    margin-bottom: 3rem;
}


/* ===== MEMBERSHIP SECTION ===== */
.membership-section {
    padding: 6rem 0;
    background: var(--bg-light);
}


.membership-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}


.membership-card {
    background: var(--bg-white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}


.membership-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}


.membership-card.featured {
    border: 3px solid var(--accent-gold);
}


.featured-badge {
    position: absolute;
    top: 20px;
    right: -35px;
    background: var(--accent-gold);
    color: var(--primary-color);
    padding: 8px 50px;
    transform: rotate(45deg);
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 1px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}


.card-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--text-light);
    padding: 2.5rem 2rem;
    text-align: center;
}


.card-header i {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--accent-gold);
}


.card-header h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}


.card-subtitle {
    font-size: 1rem;
    opacity: 0.9;
    font-weight: 300;
}


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


.card-intro {
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}


.price-box {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    margin-bottom: 2rem;
    border: 2px solid var(--accent-gold);
}


.price {
    display: block;
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary-color);
    font-family: 'Playfair Display', serif;
}


.price-label {
    display: block;
    font-size: 1rem;
    color: var(--text-gray);
    margin-top: 0.5rem;
}


.price-note {
    font-size: 0.9rem;
    color: var(--text-gray);
    margin-top: 1rem;
    font-style: italic;
}


.benefits-list {
    list-style: none;
}


.benefits-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e9ecef;
}


.benefits-list li:last-child {
    border-bottom: none;
}


.benefits-list i {
    color: var(--accent-gold);
    font-size: 1.2rem;
    margin-top: 3px;
    flex-shrink: 0;
}


.benefits-list.premium li {
    align-items: flex-start;
}


.benefits-list.premium i {
    font-size: 1.5rem;
    margin-top: 5px;
}


.benefits-list.premium strong {
    display: block;
    color: var(--primary-color);
    margin-bottom: 0.3rem;
    font-size: 1.05rem;
}


.benefits-list.premium p {
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.5;
}


.card-note {
    background: #e7f3ff;
    padding: 1rem;
    border-radius: 10px;
    margin-top: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--secondary-color);
}


.card-note i {
    font-size: 1.2rem;
}


.card-footer {
    padding: 0 2rem 2.5rem;
    text-align: center;
}


/* ===== FINANCING SECTION ===== */
.financing-section {
    padding: 6rem 0;
    background: var(--primary-color);
    color: var(--text-light);
}


.financing-section .section-title {
    color: var(--text-light);
}


.financing-section .section-subtitle {
    color: rgba(255, 255, 255, 0.8);
}


.financing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin: 3rem 0;
}


.financing-option {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    border: 2px solid rgba(212, 175, 55, 0.3);
    transition: all 0.3s ease;
}


.financing-option:hover {
    transform: translateY(-10px);
    border-color: var(--accent-gold);
    background: rgba(255, 255, 255, 0.15);
}


.financing-icon {
    font-size: 3rem;
    color: var(--accent-gold);
    margin-bottom: 1.5rem;
}


.financing-option h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}


.financing-price {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-gold);
    margin: 1rem 0;
    font-family: 'Playfair Display', serif;
}


.financing-price span {
    font-size: 1.2rem;
    font-weight: 400;
}


.financing-note {
    text-align: center;
    font-size: 1.1rem;
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}


.financing-note i {
    color: var(--accent-gold);
    font-size: 1.5rem;
}


/* ===== AMENITIES SECTION ===== */
.amenities-section {
    padding: 6rem 0;
    background: var(--bg-white);
}


.amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}


.amenity-card {
    background: var(--bg-light);
    padding: 2.5rem 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}


.amenity-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-gold);
    box-shadow: var(--shadow);
}


.amenity-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}


.amenity-icon i {
    font-size: 2rem;
    color: var(--accent-gold);
}


.amenity-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}


.amenity-card p {
    color: var(--text-gray);
    line-height: 1.6;
}


/* ===== COMMITMENT SECTION ===== */
.commitment-section {
    padding: 6rem 0;
    background: var(--bg-light);
}


.commitment-content {
    max-width: 900px;
    margin: 0 auto;
}


.commitment-box {
    background: var(--bg-white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
    border-left: 5px solid var(--accent-gold);
    margin-top: 2rem;
}


.commitment-box p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 1.5rem;
}


.commitment-box p:last-child {
    margin-bottom: 0;
}


.commitment-box strong {
    color: var(--primary-color);
    font-weight: 600;
}


/* ===== CTA SECTION ===== */
.cta-section {
    position: relative;
    padding: 8rem 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    background-image: url('https://images.unsplash.com/photo-1567899378494-47b22a2ae96a?w=1920');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    text-align: center;
    color: var(--text-light);
}


.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(10, 37, 64, 0.9) 0%, rgba(26, 84, 144, 0.85) 100%);
}


.cta-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}


.cta-content h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
}


.cta-content p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}


/* ===== FOOTER ===== */
.footer {
    background: var(--primary-color);
    color: var(--text-light);
    padding: 4rem 0 2rem;
}


.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}


.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}


.footer-logo i {
    font-size: 2rem;
    color: var(--accent-gold);
}


.footer-col p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
}


.footer-col h4 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: var(--accent-gold);
}


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


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


.footer-col ul li a,
.footer-col ul li {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}


.footer-col ul li a:hover {
    color: var(--accent-gold);
}


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


.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    transition: all 0.3s;
}


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


.newsletter-form {
    display: flex;
    gap: 0.5rem;
}


.newsletter-form input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: none;
    border-radius: 25px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-light);
    outline: none;
}


.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}


.newsletter-form button {
    padding: 0.75rem 1.5rem;
    background: var(--accent-gold);
    border: none;
    border-radius: 25px;
    color: var(--primary-color);
    cursor: pointer;
    transition: all 0.3s;
}


.newsletter-form button:hover {
    background: #c19b2e;
    transform: translateY(-2px);
}


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


/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 968px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: var(--primary-color);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 2rem 0;
    }


    .nav-menu.active {
        left: 0;
    }


    .hamburger {
        display: flex;
    }


    .hero-title {
        font-size: 2.5rem;
    }


    .hero-tagline {
        font-size: 1.3rem;
    }


    .section-title {
        font-size: 2rem;
    }


    .membership-grid {
        grid-template-columns: 1fr;
    }


    .cta-content h2 {
        font-size: 2rem;
    }
}


@media (max-width: 600px) {
    .hero-title {
        font-size: 2rem;
    }


    .hero-subtitle {
        font-size: 1.2rem;
    }


    .hero-tagline {
        font-size: 1.1rem;
    }


    .financing-grid,
    .amenities-grid {
        grid-template-columns: 1fr;
    }
}