/* ==========================================
   PREMIUM THEME STYLES - TheMigrantShow
   Modern SaaS/Fintech Design
   ========================================== */

/* ===== ROOT VARIABLES ===== */
:root {
    /* Colors - Logo Theme */
    --primary-color: #1a472a;
    --primary-light: #2d6a40;
    --primary-dark: #0f2818;
    --secondary-color: #10b981;
    --accent-color: #34d399;
    
    --bg-dark: #0a0a0f;
    --bg-darker: #050508;
    --text-light: #f8fafc;
    --text-gray: #94a3b8;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #1a472a 0%, #2d6a40 50%, #10b981 100%);
    --gradient-dark: linear-gradient(180deg, #0a0a0f 0%, #1a1a2e 100%);
    --gradient-glass: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0.05));
    
    /* Glass effect */
    --glass-bg: rgba(26, 71, 42, 0.1);
    --glass-border: rgba(16, 185, 129, 0.2);
    
    /* Spacing */
    --section-padding: 120px 0;
    --card-padding: 40px;
    
    /* Border radius */
    --radius-sm: 12px;
    --radius-md: 18px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    
    /* Shadows */
    --shadow-sm: 0 4px 20px rgba(0,0,0,0.1);
    --shadow-md: 0 8px 40px rgba(0,0,0,0.2);
    --shadow-lg: 0 16px 60px rgba(0,0,0,0.3);
    --shadow-glow: 0 0 40px rgba(26, 71, 42, 0.4);
}

/* ===== GLOBAL STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
    background: var(--bg-dark);
    color: var(--text-light);
    overflow-x: hidden;
    line-height: 1.7;
}

body.theme-light {
    --bg-dark: #f8fafc;
    --bg-darker: #eef2ff;
    --text-light: #0f172a;
    --text-gray: #6b7280;
    --glass-bg: rgba(255, 255, 255, 0.8);
    --glass-border: rgba(15, 23, 42, 0.08);
    --gradient-dark: linear-gradient(135deg, #f8fafc 0%, #eef2ff 100%);
    --shadow-sm: 0 6px 16px rgba(15, 23, 42, 0.08);
    --shadow-md: 0 12px 32px rgba(15, 23, 42, 0.12);
    --shadow-lg: 0 18px 48px rgba(15, 23, 42, 0.16);
    --shadow-glow: 0 0 30px rgba(26, 71, 42, 0.18);
    background: var(--bg-dark);
    color: var(--text-light);
}

body.theme-light .animated-background {
    background: linear-gradient(135deg, #ffffff 0%, #f1f5f9 100%);
}

body.theme-light .header-glass {
    background: #ffffff;
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

body.theme-light .navbar-brand,
body.theme-light .nav-link:hover {
    color: #0f172a !important;
}

body.theme-light .nav-link {
    color: #475569 !important;
}

body.theme-light .language-switcher {
    background: rgba(15, 23, 42, 0.05);
}

body.theme-light .lang-btn {
    color: #475569;
}

body.theme-light .btn-outline-light {
    border-color: rgba(15, 23, 42, 0.12);
    color: #0f172a;
    background: rgba(255, 255, 255, 0.7);
}

body.theme-light .btn-outline-light:hover {
    background: #ffffff;
    border-color: rgba(15, 23, 42, 0.2);
    color: #0f172a;
}

body.theme-light .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(15, 23, 42, 0.8)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ===== ANIMATED BACKGROUND ===== */
.animated-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: var(--gradient-dark);
    overflow: hidden;
}

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.5;
    animation: float 20s infinite ease-in-out;
}

.blob-1 {
    width: 500px;
    height: 500px;
    background: linear-gradient(180deg, #1a472a, #2d6a40);
    top: -250px;
    left: -250px;
    animation-delay: 0s;
}

.blob-2 {
    width: 600px;
    height: 600px;
    background: linear-gradient(180deg, #10b981, #34d399);
    bottom: -300px;
    right: -300px;
    animation-delay: 7s;
}

.blob-3 {
    width: 400px;
    height: 400px;
    background: linear-gradient(180deg, #2d6a40, #10b981);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 14s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(100px, -100px) scale(1.1); }
    50% { transform: translate(-50px, 100px) scale(0.9); }
    75% { transform: translate(150px, 50px) scale(1.05); }
}

/* ===== GLASS CARD ===== */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: var(--card-padding);
    box-shadow: var(--shadow-md);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.glass-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(16, 185, 129, 0.5);
}

/* ===== HEADER ===== */
.header-glass {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    padding: 16px 0;
    z-index: 1000;
}

.navbar-brand {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-light) !important;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.navbar-logo {
    height: 45px;
    width: auto;
    max-width: 45px;
    object-fit: contain;
    filter: brightness(1.1) drop-shadow(0 0 8px rgba(99, 102, 241, 0.5));
    transition: all 0.3s ease;
}

.navbar-brand:hover .navbar-logo {
    filter: brightness(1.3) drop-shadow(0 0 12px rgba(99, 102, 241, 0.8));
    transform: scale(1.05);
}

.navbar-brand i {
    font-size: 28px;
    color: var(--primary-color);
}

.navbar-brand:hover {
    transform: scale(1.05);
}

.nav-link {
    color: var(--text-gray) !important;
    font-weight: 500;
    padding: 8px 16px !important;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 16px;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--text-light) !important;
}

.nav-link:hover::after {
    width: calc(100% - 32px);
}

/* Language Switcher */
.language-switcher {
    display: flex;
    gap: 8px;
    background: rgba(255,255,255,0.05);
    padding: 4px;
    border-radius: var(--radius-sm);
}

.lang-btn {
    background: transparent;
    border: none;
    color: var(--text-gray);
    padding: 6px 12px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.lang-btn.active {
    background: var(--gradient-primary);
    color: var(--text-light);
}

.lang-btn:hover {
    color: var(--text-light);
}

/* CTA Button */
.btn-cta {
    background: var(--gradient-primary);
    border: none;
    padding: 10px 24px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(99, 102, 241, 0.3);
}

.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(99, 102, 241, 0.5);
}

/* Navbar Toggler */
.navbar-toggler {
    border-color: var(--glass-border);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 0.8)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ===== HERO SECTION ===== */
.hero-section {
    padding: 180px 0 120px;
    position: relative;
    overflow: hidden;
}

.hero-content {
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    font-size: clamp(36px, 6vw, 64px);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 24px;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(16px, 2vw, 20px);
    color: var(--text-gray);
    margin-bottom: 40px;
    max-width: 600px;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.hero-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.btn-primary {
    background: var(--gradient-primary);
    border: none;
    padding: 14px 32px;
    border-radius: var(--radius-md);
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-glow);
}

.btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(16, 185, 129, 0.6);
}

.btn-outline-light {
    border: 2px solid var(--glass-border);
    color: var(--text-light);
    padding: 14px 32px;
    border-radius: var(--radius-md);
    font-weight: 600;
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.btn-outline-light:hover {
    background: rgba(255,255,255,0.1);
    border-color: var(--primary-color);
    color: var(--text-light);
    transform: translateY(-4px);
}

/* Floating Cards */
.floating-cards {
    position: relative;
    height: 500px;
}

.float-card {
    position: absolute;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: var(--shadow-md);
    animation: floatCard 6s ease-in-out infinite;
}

.float-card .icon-wrapper {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: white;
}

.float-card h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 4px;
}

.float-card p {
    font-size: 14px;
    color: var(--text-gray);
    margin: 0;
}

.card-1 {
    top: 0;
    left: 0;
    animation-delay: 0s;
}

.card-2 {
    top: 150px;
    right: 50px;
    animation-delay: 2s;
}

.card-3 {
    bottom: 50px;
    left: 50px;
    animation-delay: 4s;
}

@keyframes floatCard {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

/* ===== SECTIONS ===== */
.trust-stats,
.how-it-works,
.pricing-section,
.bonus-section,
.testimonials-section,
.faq-section,
.contact-section {
    padding: var(--section-padding);
    position: relative;
}

.section-header {
    margin-bottom: 60px;
}

.section-title {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 800;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-gray);
    max-width: 700px;
    margin: 0 auto;
}

/* ===== STATS CARDS ===== */
.stat-card {
    text-align: center;
    padding: 48px 32px;
}

.stat-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: var(--gradient-primary);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: white;
    box-shadow: var(--shadow-glow);
}

.stat-number {
    font-size: 48px;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 16px;
    color: var(--text-gray);
    margin: 0;
}

/* ===== HOW IT WORKS ===== */
.step-card {
    position: relative;
    padding: 48px 32px;
    text-align: center;
}

.step-number {
    position: absolute;
    top: -20px;
    right: 30px;
    font-size: 80px;
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 0.3;
}

.step-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: rgba(99, 102, 241, 0.1);
    border: 2px solid var(--primary-color);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.step-card:hover .step-icon {
    background: var(--gradient-primary);
    color: white;
    transform: scale(1.1) rotate(5deg);
}

.step-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
}

.step-desc {
    color: var(--text-gray);
    font-size: 16px;
    margin: 0;
}

/* ===== PRICING ===== */
.pricing-card {
    position: relative;
    padding: 48px 32px;
    text-align: center;
    transition: all 0.4s ease;
}

.pricing-card.featured {
    transform: scale(1.05);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-glow);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-primary);
    color: white;
    padding: 8px 24px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    box-shadow: var(--shadow-md);
}

.pricing-header {
    margin-bottom: 32px;
}

.plan-name {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
}

.plan-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
}

.currency {
    font-size: 24px;
    color: var(--text-gray);
}

.amount {
    font-size: 64px;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.period {
    font-size: 18px;
    color: var(--text-gray);
}

.plan-features {
    list-style: none;
    padding: 0;
    margin: 32px 0;
    text-align: left;
}

.plan-features li {
    padding: 12px 0;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid var(--glass-border);
}

.plan-features li:last-child {
    border-bottom: none;
}

.plan-features i {
    color: var(--primary-color);
    font-size: 20px;
    flex-shrink: 0;
}

/* ===== BONUS SECTION ===== */
.bonus-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.bonus-card {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    padding: 60px;
    animation: pulse 3s ease-in-out infinite;
}

.bonus-card i {
    font-size: 80px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
}

.bonus-card h3 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 8px;
}

.bonus-card p {
    color: var(--text-gray);
    margin: 0;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.bonus-features {
    margin-top: 40px;
}

.bonus-item {
    display: flex;
    gap: 20px;
    margin-bottom: 32px;
}

.bonus-icon {
    width: 60px;
    height: 60px;
    background: rgba(99, 102, 241, 0.1);
    border: 2px solid var(--primary-color);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--primary-color);
    flex-shrink: 0;
}

.bonus-content h5 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
}

.bonus-content p {
    color: var(--text-gray);
    margin: 0;
}

/* ===== TESTIMONIALS ===== */
.testimonial-card {
    padding: 60px;
}

.testimonial-rating i {
    color: var(--accent-color);
    font-size: 24px;
}

.testimonial-text {
    font-size: 20px;
    font-style: italic;
    color: var(--text-light);
    margin: 32px 0;
    line-height: 1.8;
}

.testimonial-author h5 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 4px;
}

.testimonial-author p {
    color: var(--text-gray);
    margin: 0;
}

.carousel-control-prev,
.carousel-control-next {
    width: 60px;
    height: 60px;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 1;
}

.carousel-control-prev {
    left: -80px;
}

.carousel-control-next {
    right: -80px;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    background: var(--primary-color);
}

/* ===== FAQ ===== */
.accordion-item {
    background: transparent;
    border: none;
    margin-bottom: 16px;
}

.accordion-button {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    color: var(--text-light);
    border: none;
    border-radius: var(--radius-md) !important;
    padding: 24px 28px;
    font-size: 18px;
    font-weight: 600;
    box-shadow: none;
}

.accordion-button:not(.collapsed) {
    background: var(--gradient-primary);
    color: white;
    box-shadow: var(--shadow-glow);
}

.accordion-button:focus {
    box-shadow: none;
}

.accordion-button::after {
    filter: brightness(0) invert(1);
}

.accordion-body {
    background: var(--glass-bg);
    color: var(--text-gray);
    padding: 24px 28px;
    border-radius: 0 0 var(--radius-md) var(--radius-md);
    line-height: 1.8;
}

/* ===== CONTACT ===== */
.contact-info {
    margin-top: 40px;
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 32px;
}

.contact-item i {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
    flex-shrink: 0;
}

.contact-item h5 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 4px;
}

.contact-item p {
    color: var(--text-gray);
    margin: 0;
}

.social-links {
    display: flex;
    gap: 16px;
    margin-top: 32px;
}

.social-link {
    width: 50px;
    height: 50px;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--text-light);
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--gradient-primary);
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
}

.contact-form .form-control {
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    color: var(--text-light);
    padding: 14px 20px;
    transition: all 0.3s ease;
}

.contact-form .form-control:focus {
    background: rgba(255,255,255,0.08);
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.1);
    color: var(--text-light);
}

.contact-form .form-control::placeholder {
    color: var(--text-gray);
}

/* ===== FOOTER ===== */
.footer {
    background: var(--bg-darker);
    border-top: 1px solid var(--glass-border);
    padding: 80px 0 32px;
    margin-top: 120px;
}

.footer-brand h4 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
}

.footer-brand p {
    color: var(--text-gray);
    line-height: 1.8;
}

.footer h5 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 24px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--text-gray);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 8px;
}

.newsletter-form {
    display: flex;
    gap: 8px;
    margin-top: 16px;
}

.newsletter-form .form-control {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    color: var(--text-light);
    padding: 12px 16px;
}

.newsletter-form .btn {
    padding: 12px 20px;
}

.footer-divider {
    border-color: var(--glass-border);
    margin: 48px 0 32px;
}

.footer-bottom {
    text-align: center;
    color: var(--text-gray);
}

/* ===== SCROLL REVEAL ===== */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-on-scroll.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
    :root {
        --section-padding: 80px 0;
        --card-padding: 32px;
    }
    
    .hero-section {
        padding: 140px 0 80px;
    }
    
    .floating-cards {
        display: none;
    }
    
    .navbar-collapse {
        background: var(--glass-bg);
        backdrop-filter: blur(20px);
        border: 1px solid var(--glass-border);
        border-radius: var(--radius-md);
        padding: 20px;
        margin-top: 16px;
    }
    
    .carousel-control-prev,
    .carousel-control-next {
        display: none;
    }
    
    .pricing-card.featured {
        transform: none;
    }
}

@media (max-width: 575px) {
    .hero-cta {
        flex-direction: column;
    }
    
    .hero-cta .btn {
        width: 100%;
    }
    
    .language-switcher {
        width: 100%;
        justify-content: center;
    }
    
    .btn-cta {
        width: 100%;
        margin-top: 12px;
    }
}

/* ===== ABOUT SECTION ===== */
.about-section {
    padding: var(--section-padding);
    background: var(--gradient-dark);
    position: relative;
    overflow: hidden;
}

.about-card {
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid var(--glass-border);
}

.about-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 40px rgba(99, 102, 241, 0.2);
}

.about-icon {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 20px;
    display: inline-block;
}

.about-card h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-light);
}

.about-card p {
    color: var(--text-gray);
    line-height: 1.6;
    font-size: 14px;
}

/* ===== PARTICIPATION CARD ===== */
.participation-card {
    padding: 40px;
    border: 1px solid var(--glass-border);
}

.participation-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 12px;
}

.participation-card i {
    color: var(--primary-color);
    font-size: 26px;
}

.participation-list {
    list-style: none;
    padding: 0;
}

.participation-list li {
    padding: 12px 0;
    color: var(--text-gray);
    line-height: 1.8;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.participation-list li:last-child {
    border-bottom: none;
}

.participation-list strong {
    color: var(--primary-color);
    font-weight: 600;
}

/* ===== CONTACT LINKS SECTION ===== */
.contact-links-section {
    padding: var(--section-padding);
    background: var(--gradient-dark);
}

.contact-box {
    padding: 30px;
    text-align: center;
    border: 1px solid var(--glass-border);
    transition: all 0.3s ease;
}

.contact-box:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 8px 30px rgba(99, 102, 241, 0.15);
}

.contact-icon {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 15px;
    display: inline-block;
}

.contact-box h5 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-light);
}

.contact-link {
    color: var(--primary-light);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
}

.contact-link:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

/* ===== SOCIAL SECTION ===== */
.social-section {
    padding: 50px 40px;
    border: 1px solid var(--glass-border);
}

.social-links-large {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.social-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    border: 2px solid var(--primary-color);
    border-radius: var(--radius-md);
    color: var(--primary-light);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 14px;
}

.social-btn:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(99, 102, 241, 0.3);
}

.social-btn i {
    font-size: 20px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .participation-card {
        padding: 30px;
    }

    .social-links-large {
        gap: 12px;
    }

    .social-btn {
        padding: 10px 18px;
        font-size: 13px;
    }
}

/* ===== HERO BADGE ===== */
.hero-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid var(--primary-color);
    border-radius: 20px;
    color: var(--primary-light);
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 20px;
}

/* ===== HERO STATS BOX ===== */
.hero-stats {
    display: flex;
    gap: 20px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.stat-box {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-md);
}

.stat-box .stat-icon {
    font-size: 28px;
    color: var(--primary-color);
}

.stat-number {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-light);
}

.stat-label {
    font-size: 12px;
    color: var(--text-gray);
}

/* ===== HERO IMAGE ===== */
.hero-image {
    position: relative;
}

.video-card {
    padding: 60px 40px;
    text-align: center;
    border: 2px solid var(--primary-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 300px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.video-card:hover {
    border-color: var(--secondary-color);
    box-shadow: 0 0 40px rgba(99, 102, 241, 0.3);
}

.video-card i {
    font-size: 60px;
    color: var(--primary-color);
    margin-bottom: 20px;
    animation: pulse-icon 2s ease-in-out infinite;
}

@keyframes pulse-icon {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.video-card p {
    color: var(--text-gray);
    font-size: 16px;
    font-weight: 500;
}

/* ===== PRIZE CARDS ===== */
.prize-card {
    padding: 40px;
    text-align: center;
    border: 1px solid var(--glass-border);
    position: relative;
    transition: all 0.3s ease;
}

.prize-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 15px 50px rgba(99, 102, 241, 0.2);
}

.prize-card.featured {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(236, 72, 153, 0.1));
    border: 2px solid var(--primary-color);
}

.prize-card.featured .prize-icon {
    font-size: 64px;
}

.prize-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: var(--primary-color);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
}

.prize-icon {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 20px;
    display: inline-block;
}

.prize-card h4 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-light);
}

.prize-card p {
    color: var(--text-gray);
    line-height: 1.6;
}

/* ===== PARTICIPATE CARDS ===== */
.participate-card {
    padding: 40px;
    border: 1px solid var(--glass-border);
}

.participate-card .card-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid rgba(255,255,255,0.1);
}

.card-header i {
    font-size: 32px;
    color: var(--primary-color);
}

.card-header h3 {
    font-size: 24px;
    font-weight: 700;
    margin: 0;
    color: var(--text-light);
}

.participation-list {
    list-style: none;
    padding: 0;
}

.participation-list li {
    padding: 18px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.participation-list li:last-child {
    border-bottom: none;
}

.participation-list strong {
    color: var(--primary-light);
    font-weight: 600;
    display: block;
    margin-bottom: 8px;
}

.participation-list .text-muted {
    color: var(--text-gray);
    font-size: 14px;
    display: block;
}

/* ===== CHECK LIST ===== */
.check-list {
    list-style: none;
    padding: 0;
}

.check-list li {
    padding: 12px 0;
    color: var(--text-gray);
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.check-list i {
    color: var(--primary-color);
    margin-top: 2px;
    flex-shrink: 0;
}

/* ===== ABOUT DESCRIPTION ===== */
.about-description {
    padding: 50px 40px;
    border: 1px solid var(--glass-border);
}

.about-description h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-light);
}

/* ===== RESPONSIVE PRIZE CARDS ===== */
@media (max-width: 768px) {
    .prize-card {
        padding: 30px;
    }
    
    .participate-card {
        padding: 30px;
        margin-bottom: 20px;
    }

    .hero-stats {
        flex-direction: column;
    }

    .stat-box {
        width: 100%;
    }
}

/* ===== FOOTER LOGO ===== */
.footer-logo-section {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-logo {
    height: 50px;
    width: auto;
    max-width: 50px;
    object-fit: contain;
    filter: brightness(1.1);
    transition: all 0.3s ease;
}

.footer-logo-section:hover .footer-logo {
    filter: brightness(1.3) drop-shadow(0 0 10px rgba(99, 102, 241, 0.6));
    transform: scale(1.05);
}

/* Gmail Login Button */
.gmail-login-container {
    margin-top: 16px;
    width: 100%;
}

.gmail-login-btn {
    width: 100%;
    padding: 12px 20px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    background: linear-gradient(135deg, rgba(234, 67, 53, 0.15), rgba(251, 188, 4, 0.1));
    color: #fff;
    border-radius: 12px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.35s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.gmail-login-btn i {
    font-size: 20px;
    color: #EA4335;
}

.gmail-login-btn:hover {
    background: linear-gradient(135deg, rgba(234, 67, 53, 0.25), rgba(251, 188, 4, 0.18));
    border-color: rgba(234, 67, 53, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(234, 67, 53, 0.3);
}

.gmail-login-btn:active {
    transform: translateY(0);
}

        transition-duration: 0.01ms !important;
    }
}
