/* ============================================
   MODERN HOMEPAGE STYLES - Microsoft Inspired
   ============================================ */

:root {
    --primary-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --secondary-gradient: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --success-gradient: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    --dark-gradient: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    --glass-bg: rgba(255, 255, 255, 0.95);
    --glass-border: rgba(0, 0, 0, 0.1);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
    --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.2);
}

/* ============================================
   HERO SECTION - MODERN
   ============================================ */

.hero-modern {
    position: relative;
    padding: 120px 0 100px;
    overflow: hidden;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
}

.hero-gradient-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(102, 126, 234, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(245, 87, 108, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(118, 75, 162, 0.3) 0%, transparent 50%);
    animation: gradientShift 15s ease infinite;
}

@keyframes gradientShift {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-modern-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.hero-modern-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 2.5rem;
    max-width: 90%;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.btn-hero-primary {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    background: #ffffff;
    color: #667eea;
    border: none;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
}

.btn-hero-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
    background: #f8f9fa;
    color: #667eea;
}

.btn-hero-secondary {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
    color: #ffffff;
}

/* Hero Stats Pills */
.hero-stats {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.stat-pill {
    display: flex;
    flex-direction: column;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.stat-pill:hover {
    background: rgba(255, 255, 255, 1);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.stat-value {
    font-size: 1.75rem;
    font-weight: 700;
    color: #667eea;
    line-height: 1;
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.875rem;
    color: #64748b;
}

/* Hero Visual */
.hero-visual {
    position: relative;
}

.hero-image-wrapper {
    position: relative;
    animation: floatAnimation 6s ease-in-out infinite;
}

@keyframes floatAnimation {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.hero-main-image {
    width: 100%;
    height: auto;
    border-radius: 24px;
    box-shadow: var(--shadow-xl);
}

/* Floating Cards */
.floating-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    backdrop-filter: blur(10px);
    font-weight: 600;
    color: #1e293b;
    animation: floatCard 4s ease-in-out infinite;
}

.floating-card i {
    font-size: 1.5rem;
    color: #667eea;
}

.floating-card.card-1 {
    top: 10%;
    right: -10%;
    animation-delay: 0s;
}

.floating-card.card-2 {
    bottom: 30%;
    left: -10%;
    animation-delay: 1s;
}

.floating-card.card-3 {
    bottom: 10%;
    right: 10%;
    animation-delay: 2s;
}

@keyframes floatCard {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(2deg); }
}

/* ============================================
   TABS SECTION - MICROSOFT STYLE
   ============================================ */

.tabs-section {
    padding: 100px 0;
    background: #f8f9fa;
}

.section-modern-title {
    font-size: 2.75rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.section-modern-subtitle {
    font-size: 1.25rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
}

/* Pills Navigation */
.pills-nav-wrapper {
    margin-bottom: 4rem;
}

.nav-pills-modern {
    display: flex;
    gap: 1rem;
    padding: 0.5rem;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    flex-wrap: wrap;
}

.nav-link-modern {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.75rem;
    background: transparent;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    color: #64748b;
    transition: all 0.3s ease;
    cursor: pointer;
}

.nav-link-modern i {
    font-size: 1.25rem;
}

.nav-link-modern:hover {
    background: #f1f5f9;
    color: #667eea;
}

.nav-link-modern.active {
    background: var(--primary-gradient);
    color: #ffffff;
    box-shadow: var(--shadow-md);
}

/* Tab Content */
.tab-content-modern {
    padding: 3rem 0;
}

.tab-pane-modern {
    display: none;
    animation: fadeInUp 0.6s ease;
}

.tab-pane-modern.show {
    display: block;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.tab-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1.5rem;
}

.tab-description {
    font-size: 1.125rem;
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.feature-list-modern {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list-modern li {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 0;
    font-size: 1.05rem;
    color: #475569;
}

.feature-list-modern i {
    color: #10b981;
    font-size: 1.25rem;
}

/* Tab Visual - Glass Card */
.tab-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.glass-card {
    width: 100%;
    max-width: 400px;
    aspect-ratio: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 32px;
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-xl);
    transition: all 0.4s ease;
}

.glass-card:hover {
    transform: scale(1.05) rotate(2deg);
}

.card-icon-large {
    font-size: 8rem;
    color: #667eea;
    animation: pulse 3s ease-in-out infinite;
}

.card-icon-large.text-success {
    color: #10b981;
}

.card-icon-large.text-info {
    color: #06b6d4;
}

.card-icon-large.text-warning {
    color: #f59e0b;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* ============================================
   FEATURES GRID - MODERN CARDS
   ============================================ */

.features-grid-section {
    padding: 100px 0;
    background: #ffffff;
}

.feature-card-modern {
    padding: 2.5rem;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    transition: all 0.3s ease;
    height: 100%;
}

.feature-card-modern:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: #667eea;
}

.feature-icon-modern {
    width: 64px;
    height: 64px;
    margin-bottom: 1.5rem;
}

.feature-icon-modern img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.feature-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
}

.feature-card-text {
    font-size: 1rem;
    color: #64748b;
    line-height: 1.6;
}

/* ============================================
   STEPS - MODERN TIMELINE
   ============================================ */

.steps-modern-section {
    padding: 100px 0;
    background: #f8f9fa;
}

.steps-timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.step-modern {
    position: relative;
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    padding: 2.5rem;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.step-modern:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-md);
}

.step-number-modern {
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.75rem;
    font-weight: 700;
    color: #ffffff;
    background: var(--primary-gradient);
    border-radius: 16px;
    box-shadow: var(--shadow-md);
}

.step-content-modern {
    flex: 1;
}

.step-title-modern {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.75rem;
}

.step-text-modern {
    font-size: 1rem;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

.step-connector {
    position: absolute;
    left: 2.5rem;
    top: 100%;
    width: 3px;
    height: 3rem;
    background: linear-gradient(to bottom, #667eea, transparent);
    transform: translateX(30px);
}

/* Testimonials - Glass Cards */
.testimonials-modern-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    overflow: hidden;
}

.testimonials-modern-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
}

.testimonials-modern-section .section-modern-title,
.testimonials-modern-section .section-modern-subtitle {
    color: #ffffff;
}

.testimonial-card-modern {
    padding: 2.5rem;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 20px;
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
    height: 100%;
}

.testimonial-card-modern:hover {
    background: rgba(255, 255, 255, 1);
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.stars-rating {
    color: #fbbf24;
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
}

.testimonial-text {
    font-size: 1.125rem;
    color: #475569;
    line-height: 1.7;
    margin-bottom: 2rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 48px;
    height: 48px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--primary-gradient);
    border-radius: 50%;
    font-weight: 700;
    color: #ffffff;
}

.author-avatar.bg-success {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.author-avatar.bg-info {
    background: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%);
}

.author-name {
    font-size: 1rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0;
}

.author-role {
    font-size: 0.875rem;
    color: #64748b;
    margin: 0;
}

/* ============================================
   CTA SECTION - MODERN GRADIENT
   ============================================ */

.cta-modern-section {
    padding: 100px 0;
    background: #ffffff;
}

.cta-modern-card {
    position: relative;
    padding: 5rem 3rem;
    background: var(--primary-gradient);
    border-radius: 32px;
    box-shadow: var(--shadow-xl);
    overflow: hidden;
    text-align: center;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-title {
    font-size: 2.75rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
}

.cta-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
}

.cta-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-cta-primary {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    background: #ffffff;
    color: #667eea;
    border: none;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.btn-cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    background: #f8f9fa;
    color: #667eea;
}

.btn-cta-secondary {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    background: transparent;
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.btn-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: #ffffff;
    color: #ffffff;
}

/* CTA Decoration */
.cta-decoration {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.decoration-circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    animation: floatCircle 8s ease-in-out infinite;
}

.decoration-circle.circle-1 {
    width: 200px;
    height: 200px;
    top: -50px;
    right: -50px;
    animation-delay: 0s;
}

.decoration-circle.circle-2 {
    width: 150px;
    height: 150px;
    bottom: -30px;
    left: 10%;
    animation-delay: 2s;
}

.decoration-circle.circle-3 {
    width: 100px;
    height: 100px;
    top: 50%;
    left: -30px;
    animation-delay: 4s;
}

@keyframes floatCircle {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(20px, -20px); }
}

/* ============================================
   FAQS - ACCORDION MODERN
   ============================================ */

.faqs-modern-section {
    padding: 100px 0;
    background: #f8f9fa;
}

.accordion-modern .accordion-item {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.accordion-modern .accordion-item:hover {
    box-shadow: var(--shadow-sm);
}

.accordion-modern .accordion-button {
    padding: 1.5rem 2rem;
    font-size: 1.125rem;
    font-weight: 600;
    color: #1e293b;
    background: #ffffff;
    border: none;
}

.accordion-modern .accordion-button:not(.collapsed) {
    background: #f8f9fa;
    color: #667eea;
}

.accordion-modern .accordion-body {
    padding: 1.5rem 2rem;
    color: #64748b;
    line-height: 1.7;
}

/* ============================================
   BLOG SECTION - MODERN
   ============================================ */

.blog-modern-section {
    padding: 100px 0;
    background: #ffffff;
}

.btn-modern-outline {
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    background: transparent;
    color: #667eea;
    border: 2px solid #667eea;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.btn-modern-outline:hover {
    background: #667eea;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* ============================================
   WITHDRAWAL METHODS
   ============================================ */

.withdrawal-methods-section {
    padding: 100px 0;
    background: #f8f9fa;
}

.brand-logo-modern {
    padding: 1.5rem;
    background: #ffffff;
    border-radius: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
    height: 100px;
}

.brand-logo-modern:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.brand-logo-modern img {
    max-width: 100%;
    max-height: 60px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.3s ease;
}

.brand-logo-modern:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 991px) {
    .hero-modern-title {
        font-size: 2.5rem;
    }
    
    .hero-modern-subtitle {
        font-size: 1.125rem;
        max-width: 100%;
    }
    
    .section-modern-title {
        font-size: 2.25rem;
    }
    
    .tab-title {
        font-size: 1.875rem;
    }
    
    .cta-title {
        font-size: 2.25rem;
    }
    
    .floating-card {
        display: none;
    }
    
    .nav-pills-modern {
        justify-content: flex-start;
        overflow-x: auto;
        flex-wrap: nowrap;
    }
    
    .nav-link-modern {
        white-space: nowrap;
    }
}

@media (max-width: 767px) {
    .hero-modern {
        padding: 80px 0 60px;
    }
    
    .hero-modern-title {
        font-size: 2rem;
    }
    
    .hero-modern-subtitle {
        font-size: 1rem;
    }
    
    .hero-actions {
        flex-direction: column;
    }
    
    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100%;
        text-align: center;
        justify-content: center;
    }
    
    .hero-stats {
        flex-direction: column;
    }
    
    .stat-pill {
        width: 100%;
    }
    
    .section-modern-title {
        font-size: 1.875rem;
    }
    
    .section-modern-subtitle {
        font-size: 1rem;
    }
    
    .tabs-section,
    .features-grid-section,
    .steps-modern-section,
    .testimonials-modern-section,
    .cta-modern-section,
    .faqs-modern-section,
    .blog-modern-section,
    .withdrawal-methods-section {
        padding: 60px 0;
    }
    
    .tab-title {
        font-size: 1.5rem;
    }
    
    .tab-description {
        font-size: 1rem;
    }
    
    .cta-modern-card {
        padding: 3rem 1.5rem;
    }
    
    .cta-title {
        font-size: 1.75rem;
    }
    
    .cta-subtitle {
        font-size: 1rem;
    }
    
    .cta-actions {
        flex-direction: column;
    }
    
    .btn-cta-primary,
    .btn-cta-secondary {
        width: 100%;
    }
    
    .step-modern {
        flex-direction: column;
        padding: 1.5rem;
    }
    
    .step-connector {
        display: none;
    }
}

@media (max-width: 575px) {
    .hero-modern-title {
        font-size: 1.75rem;
    }
    
    .section-modern-title {
        font-size: 1.5rem;
    }
    
    .feature-card-modern {
        padding: 1.5rem;
    }
    
    .testimonial-card-modern {
        padding: 1.5rem;
    }
}

/* ============================================
   UTILITY CLASSES
   ============================================ */

.text-gradient {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bg-primary-gradient {
    background: var(--primary-gradient);
}

.bg-secondary-gradient {
    background: var(--secondary-gradient);
}

.bg-success-gradient {
    background: var(--success-gradient);
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Selection Color */
::selection {
    background: #667eea;
    color: #ffffff;
}

::-moz-selection {
    background: #667eea;
    color: #ffffff;
}
