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

:root {
    --wine-primary: #722f37;
    --wine-secondary: #a0435c;
    --wine-accent: #d4526e;
    --wine-light: #f8e8ec;
    --wine-dark: #3d1219;
    --gold: #d4af37;
    --text-dark: #2d2d2d;
    --text-light: #666;
    --white: #ffffff;
    --shadow: rgba(0, 0, 0, 0.1);
}

body {
    font-family: 'Poppins', 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: 700;
}

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

/* Navigation */
.navbar {
    background: var(--white);
    box-shadow: 0 2px 10px var(--shadow);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--wine-primary);
}

.logo-wine {
    font-size: 2rem;
}

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

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--wine-primary);
}

.btn-nav {
    background: var(--wine-primary);
    color: var(--white);
    padding: 0.6rem 1.5rem;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.btn-nav:hover {
    background: var(--wine-secondary);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px var(--shadow);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--wine-primary);
}

/* Hero Section */
.hero {
    position: relative;
    background: linear-gradient(135deg, var(--wine-primary) 0%, var(--wine-secondary) 100%);
    color: var(--white);
    padding: 150px 0 100px;
    margin-top: 70px;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><circle cx="100" cy="100" r="80" fill="rgba(255,255,255,0.05)"/><circle cx="900" cy="400" r="120" fill="rgba(255,255,255,0.05)"/><circle cx="1100" cy="150" r="60" fill="rgba(255,255,255,0.05)"/></svg>');
    background-size: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.1);
}

.hero-content {
    position: relative;
    text-align: center;
    z-index: 1;
}

.hero-title {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 1rem;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    font-weight: 300;
}

/* Buttons */
.btn-primary {
    background: var(--gold);
    color: var(--wine-dark);
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

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

/* Value Prop Section */
.value-prop {
    padding: 80px 0;
    background: var(--white);
}

.section-title {
    text-align: center;
    font-size: 3rem;
    color: var(--wine-primary);
    margin-bottom: 3rem;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 3rem;
    font-style: italic;
}

.value-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.value-card {
    text-align: center;
    padding: 2rem;
    background: var(--wine-light);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px var(--shadow);
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.value-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 1.5rem;
}

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

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

.value-card h3 {
    color: var(--wine-primary);
    margin-bottom: 1rem;
}

/* How It Works */
.how-it-works {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--wine-light) 0%, var(--white) 100%);
}

.steps {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.step {
    flex: 1;
    min-width: 200px;
    text-align: center;
    padding: 2rem 1rem;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--wine-primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1rem;
}

.step h3 {
    color: var(--wine-primary);
    margin-bottom: 0.5rem;
}

.step-arrow {
    font-size: 2rem;
    color: var(--wine-accent);
    font-weight: 700;
}

/* Opportunity Section */
.opportunity {
    padding: 80px 0;
    background: var(--white);
}

.opportunity-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.opportunity-text h2 {
    font-size: 2.5rem;
    color: var(--wine-primary);
    margin-bottom: 1.5rem;
}

.lead {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.benefits-list {
    list-style: none;
    margin-bottom: 2rem;
}

.benefits-list li {
    padding: 0.8rem 0;
    font-size: 1.1rem;
    color: var(--text-dark);
}

.placeholder-image {
    background: linear-gradient(135deg, var(--wine-accent) 0%, var(--wine-primary) 100%);
    border-radius: 15px;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2rem;
    text-align: center;
    line-height: 1.6;
    box-shadow: 0 20px 40px var(--shadow);
}

.opportunity-photo {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 20px 40px var(--shadow);
    transition: transform 0.3s ease;
}

.opportunity-photo:hover {
    transform: scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

/* Testimonials */
.testimonials {
    padding: 80px 0;
    background: var(--wine-light);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 25px var(--shadow);
}

.testimonial-stars {
    color: var(--gold);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 1rem;
    color: var(--text-dark);
    line-height: 1.8;
}

.testimonial-author {
    font-weight: 600;
    color: var(--wine-primary);
    margin-bottom: 0.25rem;
}

.testimonial-location {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Income Levels */
.income-levels {
    padding: 80px 0;
    background: var(--white);
}

.levels-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.level-card {
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 25px var(--shadow);
    border: 3px solid;
    transition: all 0.3s ease;
}

.level-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px var(--shadow);
}

.level-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.level-subtitle {
    font-size: 0.9rem;
    font-style: italic;
    margin-bottom: 1.5rem;
    opacity: 0.8;
}

.level-card ul {
    list-style: none;
}

.level-card li {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.level-card li:last-child {
    border-bottom: none;
}

.bronze {
    background: linear-gradient(135deg, #cd7f32 0%, #b87333 100%);
    color: var(--white);
    border-color: #cd7f32;
}

.silver {
    background: linear-gradient(135deg, #c0c0c0 0%, #a8a8a8 100%);
    color: var(--text-dark);
    border-color: #c0c0c0;
}

.gold {
    background: linear-gradient(135deg, var(--gold) 0%, #c4a02e 100%);
    color: var(--wine-dark);
    border-color: var(--gold);
}

.platinum {
    background: linear-gradient(135deg, #e5e4e2 0%, #b8b8b8 100%);
    color: var(--text-dark);
    border-color: #e5e4e2;
}

.diamond {
    background: linear-gradient(135deg, #b9f2ff 0%, #7dd3e0 100%);
    color: var(--text-dark);
    border-color: #b9f2ff;
}

/* Diamond Featured Section */
.diamond-featured-container {
    margin-top: 4rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.diamond-badge {
    background: linear-gradient(135deg, var(--gold) 0%, #f0c445 100%);
    color: var(--wine-dark);
    padding: 0.8rem 2rem;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: -1rem;
    z-index: 2;
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.5);
    animation: pulse 2s ease-in-out infinite;
    letter-spacing: 2px;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 5px 20px rgba(212, 175, 55, 0.5);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 8px 30px rgba(212, 175, 55, 0.7);
    }
}

.diamond-featured {
    max-width: 600px;
    width: 100%;
    padding: 3rem 2.5rem;
    transform: scale(1);
    position: relative;
    overflow: hidden;
    border-width: 4px;
    box-shadow: 0 20px 60px rgba(123, 211, 224, 0.4), 
                0 0 0 4px rgba(185, 242, 255, 0.3),
                inset 0 0 40px rgba(255, 255, 255, 0.3);
    animation: diamondGlow 3s ease-in-out infinite;
}

@keyframes diamondGlow {
    0%, 100% {
        box-shadow: 0 20px 60px rgba(123, 211, 224, 0.4), 
                    0 0 0 4px rgba(185, 242, 255, 0.3),
                    inset 0 0 40px rgba(255, 255, 255, 0.3);
    }
    50% {
        box-shadow: 0 25px 70px rgba(123, 211, 224, 0.6), 
                    0 0 0 4px rgba(185, 242, 255, 0.5),
                    inset 0 0 60px rgba(255, 255, 255, 0.4);
    }
}

.diamond-featured::before {
    content: '✨';
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 2rem;
    animation: sparkle 2s ease-in-out infinite;
}

.diamond-featured::after {
    content: '✨';
    position: absolute;
    bottom: 20px;
    left: 20px;
    font-size: 2rem;
    animation: sparkle 2s ease-in-out infinite 1s;
}

@keyframes sparkle {
    0%, 100% {
        opacity: 0.3;
        transform: scale(1) rotate(0deg);
    }
    50% {
        opacity: 1;
        transform: scale(1.2) rotate(180deg);
    }
}

.diamond-featured h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    text-align: center;
}

.diamond-featured .level-subtitle {
    font-size: 1.1rem;
    text-align: center;
    font-weight: 600;
}

.diamond-featured ul {
    margin: 2rem 0;
}

.diamond-featured li {
    font-size: 1.05rem;
    padding: 0.8rem 0;
    font-weight: 500;
}

.diamond-cta {
    margin-top: 2rem;
    text-align: center;
    padding-top: 2rem;
    border-top: 2px solid rgba(0, 0, 0, 0.2);
}

.diamond-exclusive {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--wine-dark);
    font-style: italic;
    margin: 0;
}

/* Income Disclosure */
.income-disclosure {
    padding: 80px 0;
    background: var(--wine-light);
}

.disclosure-intro {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 3rem;
    color: var(--text-dark);
}

.disclosure-table {
    overflow-x: auto;
    margin-bottom: 2rem;
}

table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 25px var(--shadow);
}

thead {
    background: var(--wine-primary);
    color: var(--white);
}

th, td {
    padding: 1rem;
    text-align: left;
}

tbody tr:nth-child(even) {
    background: var(--wine-light);
}

tbody tr:hover {
    background: rgba(160, 67, 92, 0.1);
}

.disclosure-disclaimer {
    font-size: 0.85rem;
    color: var(--text-light);
    font-style: italic;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--wine-primary) 0%, var(--wine-secondary) 100%);
    color: var(--white);
    text-align: center;
}

.cta-section h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.cta-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    font-weight: 300;
}

/* Join Form */
.join-section {
    padding: 80px 0;
    background: var(--white);
}

.join-content {
    max-width: 700px;
    margin: 0 auto;
}

.join-form {
    background: var(--wine-light);
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 10px 25px var(--shadow);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--wine-primary);
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid var(--wine-accent);
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--wine-primary);
}

.checkbox-group label {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-weight: 400;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 0.2rem;
}

/* Footer */
.footer {
    background: var(--wine-dark);
    color: var(--white);
    padding: 60px 0 30px;
}

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

.footer-column h4 {
    color: var(--gold);
    margin-bottom: 1rem;
}

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

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

.footer-column a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: var(--gold);
}

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

.social-link {
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
}

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

.footer-disclaimer {
    margin-top: 1rem;
    font-size: 0.85rem;
    opacity: 0.7;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .opportunity-content {
        grid-template-columns: 1fr;
    }
    
    .steps {
        flex-direction: column;
    }
    
    .step-arrow {
        transform: rotate(90deg);
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .join-form {
        padding: 2rem 1.5rem;
    }
    
    .diamond-badge {
        font-size: 0.9rem;
        padding: 0.6rem 1.5rem;
    }
    
    .diamond-featured {
        padding: 2rem 1.5rem;
    }
    
    .diamond-featured h3 {
        font-size: 1.5rem;
    }
    
    .diamond-exclusive {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .btn-large {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    
    .value-grid {
        grid-template-columns: 1fr;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Form Success Message */
.success-message {
    display: none;
    background: #4caf50;
    color: white;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    text-align: center;
}

.success-message.show {
    display: block;
    animation: slideIn 0.5s ease;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

