/* Wealth Builder Portfolios Page Styles */

/* Hero Section */
.wealth-hero {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.wealth-hero .hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.wealth-hero .gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.6;
    animation: float 6s ease-in-out infinite;
}

.wealth-hero .gradient-orb-1 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(30, 64, 175, 0.4) 0%, transparent 70%);
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.wealth-hero .gradient-orb-2 {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(5, 150, 105, 0.4) 0%, transparent 70%);
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.wealth-hero .gradient-orb-3 {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(217, 119, 6, 0.4) 0%, transparent 70%);
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
}

.wealth-hero .floating-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.wealth-hero .particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    animation: particleFloat 8s linear infinite;
}

.wealth-hero .particle:nth-child(1) { top: 20%; left: 20%; animation-delay: 0s; }
.wealth-hero .particle:nth-child(2) { top: 40%; right: 30%; animation-delay: 1s; }
.wealth-hero .particle:nth-child(3) { top: 60%; left: 40%; animation-delay: 2s; }
.wealth-hero .particle:nth-child(4) { top: 80%; right: 20%; animation-delay: 3s; }
.wealth-hero .particle:nth-child(5) { top: 30%; left: 60%; animation-delay: 4s; }
.wealth-hero .particle:nth-child(6) { top: 70%; right: 50%; animation-delay: 5s; }

.wealth-hero .hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.wealth-hero .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    padding: 12px 24px;
    margin-bottom: 32px;
    backdrop-filter: blur(20px);
    color: white;
    font-size: 0.9rem;
    font-weight: 500;
}

.wealth-hero .hero-badge i {
    color: #10b981;
    font-size: 1rem;
}

.wealth-hero .hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 24px;
    line-height: 1.2;
}

.wealth-hero .gradient-text {
    background: linear-gradient(135deg, #3b82f6 0%, #10b981 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.wealth-hero .hero-description {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.wealth-hero .hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Portfolio Categories Section */
.portfolio-categories {
    padding: 100px 0;
    background: #f8fafc;
}

.portfolio-categories .section-header {
    text-align: center;
    margin-bottom: 80px;
}

.portfolio-categories .section-title {
    color: #1e293b;
    margin-bottom: 20px;
    font-size: 2.5rem;
    font-weight: 700;
}

.portfolio-categories .section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #3b82f6 0%, #10b981 100%);
    margin: 20px auto 0;
    border-radius: 2px;
}

.portfolio-categories .section-subtitle {
    color: #64748b;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.category-card {
    background: white;
    border-radius: 20px;
    padding: 32px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(30, 64, 175, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #3b82f6 0%, #10b981 100%);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.category-card:hover::before {
    transform: scaleX(1);
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
    border-color: rgba(30, 64, 175, 0.2);
}

.category-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: white;
    font-size: 1.8rem;
}

.category-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: #1e293b;
}

.category-content p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.category-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.feature-tag {
    background: rgba(30, 64, 175, 0.1);
    color: #1e40af;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Package Includes Section */
.package-includes {
    padding: 100px 0;
    background: white;
}

.package-includes .section-header {
    text-align: center;
    margin-bottom: 80px;
}

.package-includes .section-title {
    color: #1e293b;
    margin-bottom: 20px;
    font-size: 2.5rem;
    font-weight: 700;
}

.package-includes .section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #3b82f6 0%, #10b981 100%);
    margin: 20px auto 0;
    border-radius: 2px;
}

.package-includes .section-subtitle {
    color: #64748b;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.includes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.include-card {
    background: #f8fafc;
    border-radius: 16px;
    padding: 32px;
    border: 1px solid rgba(30, 64, 175, 0.1);
    transition: all 0.3s ease;
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.include-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
    background: white;
}

.include-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.include-content h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: #1e293b;
}

.include-content p {
    color: #64748b;
    line-height: 1.6;
    font-size: 0.9rem;
    margin: 0;
}

/* Pricing Section */
.pricing-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

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

.pricing-section .section-title {
    color: #1e293b;
    margin-bottom: 20px;
    font-size: 2.5rem;
    font-weight: 700;
}

.pricing-section .section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #3b82f6 0%, #10b981 100%);
    margin: 20px auto 0;
    border-radius: 2px;
}

.pricing-section .section-subtitle {
    color: #64748b;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.pricing-card {
    background: white;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(30, 64, 175, 0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.pricing-card.featured {
    border: 2px solid #3b82f6;
    transform: scale(1.05);
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-8px);
}

.pricing-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pricing-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: #1e293b;
}

.pricing-description {
    color: #64748b;
    margin-bottom: 24px;
    font-size: 0.95rem;
}

.pricing-amount {
    text-align: center;
    margin-bottom: 32px;
}

.original-price {
    font-size: 1.1rem;
    color: #94a3b8;
    text-decoration: line-through;
    margin-bottom: 8px;
}

.discounted-price {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 12px;
}

.discount-badge {
    background: #10b981;
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-block;
}

.pricing-features h4 {
    color: #1e293b;
    font-weight: 600;
    margin-bottom: 16px;
    font-size: 1rem;
}

.pricing-features ul {
    list-style: none;
    padding: 0;
    margin-bottom: 32px;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    color: #475569;
    font-size: 0.9rem;
}

.pricing-features i {
    color: #10b981;
    font-size: 1rem;
}

.pricing-btn {
    width: 100%;
    background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
    color: white;
    border: none;
    padding: 16px 32px;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.pricing-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}

.pricing-btn.featured {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.pricing-btn.featured:hover {
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3);
}

/* Rebalancing Options */
.rebalancing-options {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 32px;
}

.rebalancing-option {
    background: #f8fafc;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.rebalancing-option.recommended {
    background: #3b82f6;
    border-color: #3b82f6;
    color: white;
}

.rebalancing-option:hover {
    transform: translateY(-2px);
    border-color: #3b82f6;
}

.option-period {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.option-price {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.option-description {
    font-size: 0.8rem;
    opacity: 0.8;
    margin-bottom: 8px;
}

.recommendation-badge {
    background: #fbbf24;
    color: #1e293b;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 4px 8px;
    border-radius: 12px;
    display: inline-block;
}

.save-badge {
    background: #10b981;
    color: white;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 4px 8px;
    border-radius: 12px;
    display: inline-block;
}

/* Contact Section */
.contact-section {
    padding: 100px 0;
    background: white;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.contact-info h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 24px;
}

.contact-info p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 40px;
    font-size: 1.1rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: #f8fafc;
    border-radius: 16px;
    border: 1px solid rgba(30, 64, 175, 0.1);
}

.contact-item i {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.contact-item h4 {
    color: #1e293b;
    font-weight: 600;
    margin-bottom: 4px;
}

.contact-item p {
    color: #64748b;
    margin: 0;
}

.contact-form {
    background: #f8fafc;
    padding: 40px;
    border-radius: 24px;
    border: 1px solid rgba(30, 64, 175, 0.1);
}

.form-group {
    margin-bottom: 24px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 16px 20px;
    border: 1px solid rgba(30, 64, 175, 0.2);
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Animations */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

@keyframes particleFloat {
    0% { transform: translateY(0px) translateX(0px); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translateY(-100px) translateX(20px); opacity: 0; }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .categories-grid,
    .includes-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 25px;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-8px);
    }
}

@media (max-width: 768px) {
    .wealth-hero {
        padding: 100px 0 60px;
    }
    
    .wealth-hero .hero-title {
        font-size: 2.5rem;
    }
    
    .wealth-hero .hero-description {
        font-size: 1.1rem;
    }
    
    .wealth-hero .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .portfolio-categories,
    .package-includes,
    .pricing-section,
    .contact-section {
        padding: 60px 0;
    }
    
    .portfolio-categories .section-title,
    .package-includes .section-title,
    .pricing-section .section-title {
        font-size: 2rem;
    }
    
    .categories-grid,
    .includes-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-form {
        padding: 30px;
    }
}

@media (max-width: 480px) {
    .wealth-hero .hero-title {
        font-size: 2rem;
    }
    
    .wealth-hero .hero-badge {
        padding: 10px 20px;
        font-size: 0.8rem;
    }
    
    .category-card,
    .include-card {
        padding: 24px 20px;
    }
    
    .pricing-card {
        padding: 30px 20px;
    }
    
    .contact-form {
        padding: 20px;
    }
} 