/* ===========================
   TechTrades365 Elite Design
   Based on TradeElite Academy Style
   =========================== */

:root {
    /* Colors matching the reference design */
    --primary: #2563eb;
    --primary-light: #3b82f6;
    --orange: #f59e0b;
    --orange-dark: #d97706;
    --success: #22c55e;
    --danger: #ef4444;
    --warning: #f59e0b;

    /* Background colors */
    --bg-dark: #1e293b;
    --bg-darker: #0f172a;
    --bg-navy: #1e3a8a;
    --bg-card: #ffffff;
    --bg-card-dark: #334155;
    --bg-light: #f8fafc;

    /* Text colors */
    --text-dark: #1e293b;
    --text-light: #f8fafc;
    --text-gray: #64748b;
    --text-muted: #94a3b8;

    /* Gradients */
    --gradient-hero: linear-gradient(135deg, #1e293b 0%, #334155 50%, #475569 100%);
    --gradient-orange: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    --gradient-blue: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    --gradient-success: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);

    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.2);
    --shadow-xl: 0 16px 40px rgba(0, 0, 0, 0.25);

    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Spacing */
    --border-radius: 16px;
    --border-radius-sm: 8px;
    --border-radius-lg: 24px;
}

/* ===========================
   Base Styles
   =========================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--bg-light);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.text-orange {
    color: var(--orange) !important;
}

/* ===========================
   Navigation
   =========================== */

.elite-nav {
    background: rgba(248, 250, 252, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.elite-nav.scrolled {
    background: rgba(248, 250, 252, 0.98);
    box-shadow: var(--shadow-md);
}

.elite-brand {
    display: flex;
    align-items: center;
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.5rem;
    font-family: var(--font-display);
}

.elite-brand:hover {
    color: var(--text-dark);
}

.brand-accent {
    color: var(--orange);
}

.navbar-nav .nav-link {
    color: var(--text-dark);
    font-weight: 500;
    padding: 0.75rem 1rem;
    border-radius: var(--border-radius-sm);
    transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: var(--primary);
    background: rgba(59, 130, 246, 0.1);
}

.elite-btn-primary {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(245, 158, 11, 0.3);
    font-size: 1.1rem;
}

.elite-btn-primary:hover {
    background: linear-gradient(135deg, #ea580c 0%, #c2410c 100%);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 30px rgba(245, 158, 11, 0.4);
    color: white;
}

.elite-btn-outline {
    background: transparent;
    color: var(--text-light);
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.elite-btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-light);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

/* ===========================
   Hero Section
   =========================== */

.hero-section {
    background: var(--gradient-hero);
    color: var(--text-light);
    position: relative;
    overflow: hidden;
    padding: 8rem 0 4rem;
}

/* Hero Background Elements */
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.bg-laptop {
    position: absolute;
    top: 15%;
    right: 5%;
    width: 350px;
    height: 220px;
    border: 3px solid rgba(255, 255, 255, 0.25);
    border-radius: 15px;
    transform: rotate(-12deg);
    opacity: 0.9;
    animation: float-laptop 6s ease-in-out infinite;
    background: rgba(255, 255, 255, 0.05);
}

@keyframes float-laptop {
    0%, 100% { transform: rotate(-12deg) translateY(0px); }
    50% { transform: rotate(-12deg) translateY(-10px); }
}

.bg-laptop::before {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 10px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 0 0 10px 10px;
}

.bg-laptop::after {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    bottom: 30px;
    border: 2px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
}

.bg-phone {
    position: absolute;
    top: 65%;
    left: 2%;
    width: 100px;
    height: 180px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 25px;
    transform: rotate(20deg);
    opacity: 0.8;
    animation: float-phone 4s ease-in-out infinite;
    background: rgba(255, 255, 255, 0.05);
}

@keyframes float-phone {
    0%, 100% { transform: rotate(20deg) translateY(0px); }
    50% { transform: rotate(20deg) translateY(-8px); }
}

.bg-phone::before {
    content: '';
    position: absolute;
    top: 15px;
    left: 8px;
    right: 8px;
    bottom: 25px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.03);
}

.bg-phone::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 3px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
}

.bg-tablet {
    position: absolute;
    bottom: 20%;
    right: 15%;
    width: 280px;
    height: 200px;
    border: 2px solid rgba(255, 255, 255, 0.12);
    border-radius: 18px;
    transform: rotate(8deg);
    opacity: 0.6;
    animation: float-tablet 5s ease-in-out infinite;
}

@keyframes float-tablet {
    0%, 100% { transform: rotate(8deg) translateY(0px); }
    50% { transform: rotate(8deg) translateY(-6px); }
}

.bg-tablet::before {
    content: '';
    position: absolute;
    top: 12px;
    left: 12px;
    right: 12px;
    bottom: 12px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.02);
}

.hero-badge {
    display: inline-block;
    background: rgba(245, 158, 11, 0.2);
    border: 1px solid rgba(245, 158, 11, 0.3);
    color: var(--orange);
    padding: 0.75rem 1.5rem;
    border-radius: 2rem;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 2rem;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 2rem;
}

.hero-description {
    font-size: 1.2rem;
    line-height: 1.6;
    color: var(--text-muted);
    margin-bottom: 3rem;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    padding: 1.5rem 1rem;
    min-width: 120px;
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: var(--shadow-md);
}

.stat-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.stat-number {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text-light);
    font-family: var(--font-display);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* ===========================
   Portfolio Card (Hero Visual)
   =========================== */

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.community-message-card {
    background: linear-gradient(135deg, #334155 0%, #1e293b 100%);
    border: 1px solid #475569;
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    max-width: 450px;
    width: 100%;
    color: white;
    text-align: center;
}

.community-header {
    margin-bottom: 2rem;
}

.community-icon {
    color: #f59e0b;
    font-size: 3rem;
    margin-bottom: 1rem;
}

.community-title {
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0;
}

.community-content {
    margin-bottom: 2rem;
}

.community-text {
    color: #e2e8f0;
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.6;
    letter-spacing: 0.5px;
    margin: 0;
}

.community-highlight {
    display: flex;
    justify-content: space-around;
    gap: 1rem;
}

.highlight-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: #94a3b8;
    font-size: 0.9rem;
}

.highlight-item i {
    color: #f59e0b;
    font-size: 1.5rem;
}

@keyframes pulse-glow {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

.portfolio-card {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-xl);
    max-width: 400px;
    width: 100%;
}

.portfolio-card .card-header {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
}

.live-indicator {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(34, 197, 94, 0.2);
    border: 1px solid rgba(34, 197, 94, 0.3);
    color: var(--success);
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-weight: 600;
    font-size: 0.8rem;
}

.live-dot {
    width: 8px;
    height: 8px;
    background: var(--success);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.portfolio-stats {
    margin-bottom: 2rem;
}

.portfolio-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.portfolio-item .label {
    color: var(--text-muted);
    font-weight: 500;
}

.portfolio-item .value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--success);
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 2rem;
}

.progress-fill {
    height: 100%;
    background: var(--gradient-success);
    border-radius: 4px;
    transition: width 2s ease;
}

.portfolio-metrics {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
}

.metric {
    text-align: center;
    flex: 1;
}

.metric-label {
    display: block;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 0.25rem;
}

.metric-value {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-light);
}

/* ===========================
   Section Styles
   =========================== */

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.section-description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-gray);
    max-width: 700px;
    margin: 0 auto;
}

/* ===========================
   Courses Section
   =========================== */

.courses-section {
    padding: 6rem 0;
    background: var(--bg-light);
}

.course-card {
    border-radius: var(--border-radius-lg);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
    padding: 0;
    background: white;
}

/* Course Header Section - Full Gradient Background */
.course-header-section {
    padding: 1.5rem;
    position: relative;
    border-radius: var(--border-radius-lg) var(--border-radius-lg) 0 0;
}

.course-header-blue {
    background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
    color: white;
}

.course-header-orange {
    background: linear-gradient(135deg, #f59e0b 0%, #b45309 100%);
    color: white;
}

.course-header-section .course-title,
.course-header-section .course-description,
.course-header-section .course-price .price,
.course-header-section .course-meta {
    color: white;
}

.course-header-section .course-duration {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 1rem;
    font-size: 0.85rem;
    font-weight: 600;
}

.course-header-section .course-rating {
    color: #fbbf24;
}

.course-header-section .course-price .original-price {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
}

.course-header-section .course-price .price {
    font-size: 2.5rem;
    font-weight: 700;
}

.course-header-section .course-description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

/* Course Content Section - White Background */
.course-content-section {
    background: white;
    padding: 1.5rem;
    border-radius: 0 0 var(--border-radius-lg) var(--border-radius-lg);
}

.course-content-section .feature-item {
    color: #64748b;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
}

/* Enhanced hover effects matching React design */
.course-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.course-card:hover .course-header-blue {
    background: linear-gradient(135deg, #2563eb 0%, #1e3a8a 100%);
}

.course-card:hover .course-header-orange {
    background: linear-gradient(135deg, #ea580c 0%, #9a3412 100%);
}

.course-card.featured {
    position: relative;
    box-shadow: 0 0 0 4px #fbbf24, 0 20px 40px rgba(0, 0, 0, 0.1);
}

.course-card.featured::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-orange);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #f59e0b 0%, #b45309 100%);
    color: #1e293b;
    padding: 0.5rem 1.5rem;
    border-radius: 2rem;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    z-index: 10;
}

.course-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.course-duration {
    background: var(--gradient-blue);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.8rem;
    font-weight: 600;
}

.course-rating {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    color: var(--orange);
    font-weight: 600;
}

.course-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.course-description {
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.course-price {
    margin-bottom: 2rem;
}

.course-price .price {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-dark);
    font-family: var(--font-display);
}

.course-price .original-price {
    color: var(--text-muted);
    text-decoration: line-through;
    margin-left: 1rem;
    font-size: 1rem;
}

.course-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    color: var(--text-gray);
    font-size: 0.9rem;
}

.course-includes {
    margin-bottom: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
    color: var(--text-gray);
    line-height: 1.5;
}

.guarantee-text {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-top: 1rem;
}

/* ===========================
   Social Proof Section
   =========================== */

.social-proof-section {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border: 2px solid var(--primary);
    border-radius: var(--border-radius-lg);
    padding: 3rem 2rem;
    text-align: center;
    margin-top: 3rem;
    position: relative;
    overflow: hidden;
}

.social-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.social-stat-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: white;
    padding: 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.social-stat-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.social-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
}

.social-icon.telegram { background: #0088cc; }
.social-icon.twitter { background: #1da1f2; }
.social-icon.whatsapp { background: #25d366; }

.social-content {
    flex: 1;
    text-align: left;
}

.social-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    font-family: var(--font-display);
    margin-bottom: 0.25rem;
}

.social-label {
    font-size: 0.9rem;
    color: var(--text-gray);
    margin-bottom: 0.5rem;
}

.social-link {
    font-size: 0.8rem;
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.social-link:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

.trust-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.2);
    color: var(--primary);
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-weight: 600;
    font-size: 0.9rem;
}

/* ===========================
   About Section
   =========================== */

.about-section {
    padding: 6rem 0;
    background: var(--bg-light);
}

.about-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 2rem;
}

.about-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-gray);
    margin-bottom: 2rem;
}

.credentials {
    margin-top: 3rem;
}

.credential-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(59, 130, 246, 0.05);
    border-radius: var(--border-radius);
    border-left: 4px solid var(--primary);
    transition: all 0.3s ease;
}

.credential-item:hover {
    transform: translateX(5px);
    background: rgba(59, 130, 246, 0.1);
}

.credential-icon {
    font-size: 2rem;
}

.credential-content h5 {
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.credential-content p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.5;
}

/* Stats Card */
.stats-card {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    border: 1px solid #334155;
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
    color: white;
}

.stats-badge {
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid rgba(245, 158, 11, 0.2);
    color: var(--orange);
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-weight: 600;
    font-size: 0.9rem;
    text-align: center;
    margin-bottom: 2rem;
}

.current-stats {
    text-align: center;
    margin-bottom: 2rem;
}

.current-stats .stat-label {
    color: var(--text-gray);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.current-stats .stat-value {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary);
    font-family: var(--font-display);
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.achievement-item {
    text-align: center;
    padding: 1.5rem;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: var(--border-radius-sm);
    transition: all 0.3s ease;
}

.achievement-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.achievement-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.achievement-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    font-family: var(--font-display);
    margin-bottom: 0.25rem;
}

.achievement-label {
    font-size: 0.8rem;
    color: var(--text-gray);
    font-weight: 500;
}

/* ===========================
   Success Stories Section
   =========================== */

.success-stories-section {
    padding: 6rem 0;
    background: #0f172a;
    color: var(--text-light);
}

.success-card {
    background: #1e293b;
    border: 1px solid #334155;
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    transition: all 0.3s ease;
    height: 100%;
}

.success-card:hover {
    transform: translateY(-5px) scale(1.02);
    border-color: #f59e0b;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.testimonial-content {
    margin-bottom: 2rem;
}

.quote-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #f59e0b;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-muted);
    font-style: italic;
    margin-bottom: 1.5rem;
}

.profit-badge {
    display: inline-block;
    background: var(--gradient-success);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.profit-period {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: var(--gradient-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: white;
    font-size: 1.2rem;
}

.author-info h6 {
    margin: 0;
    font-weight: 600;
    color: var(--text-light);
}

.author-info p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.rating {
    color: var(--orange);
}

/* Success CTA */
.success-cta {
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid rgba(245, 158, 11, 0.2);
    border-radius: var(--border-radius-lg);
    padding: 3rem 2rem;
    text-align: center;
    margin-top: 4rem;
}

.cta-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.cta-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: var(--text-muted);
}

/* ===========================
   Contact Section
   =========================== */

.contact-section {
    padding: 6rem 0;
    background: var(--bg-light);
}

.contact-info {
    padding: 2rem;
}

.contact-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.contact-description {
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.contact-methods {
    margin-bottom: 2rem;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(59, 130, 246, 0.05);
    border-radius: var(--border-radius);
    transition: all 0.3s ease;
}

.contact-method:hover {
    background: rgba(59, 130, 246, 0.1);
    transform: translateX(5px);
}

.method-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
}

.method-icon.phone { background: var(--primary); }
.method-icon.whatsapp { background: #25d366; }
.method-icon.email { background: var(--orange); }
.method-icon.telegram { background: #0088cc; }
.method-icon.time { background: var(--text-gray); }

.method-info h6 {
    margin: 0 0 0.25rem 0;
    font-weight: 600;
    color: var(--text-dark);
}

.method-info p {
    margin: 0;
    color: var(--text-gray);
}

.guarantees {
    background: rgba(34, 197, 94, 0.05);
    border-radius: var(--border-radius);
    padding: 1.5rem;
}

.guarantee-item {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
    color: var(--text-gray);
}

/* Enrollment Form */
.enrollment-form {
    background: var(--bg-card);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-md);
}

.form-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

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

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

.form-control {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: var(--border-radius-sm);
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--bg-light);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.form-disclaimer {
    text-align: center;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 1rem;
    line-height: 1.4;
}

/* ===========================
   Footer
   =========================== */

.elite-footer {
    background: var(--bg-darker);
    color: var(--text-muted);
    padding: 3rem 0 1rem;
}

.footer-brand {
    margin-bottom: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    color: var(--text-light);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.5rem;
    font-family: var(--font-display);
    margin-bottom: 1rem;
}

.footer-logo:hover {
    color: var(--text-light);
}

.footer-description {
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.footer-contact p {
    margin-bottom: 0.5rem;
    color: var(--text-muted);
}

.footer-title {
    color: var(--text-light);
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

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

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

.risk-warning {
    font-size: 0.9rem;
    line-height: 1.5;
    color: var(--text-muted);
}

.footer-divider {
    border-color: rgba(255, 255, 255, 0.1);
    margin: 2rem 0 1rem;
}

.copyright {
    color: var(--text-muted);
    margin: 0;
}

.social-links {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
}

.social-link {
    width: 40px;
    height: 40px;
    background: var(--bg-card-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link {
    width: 40px;
    height: 40px;
    background: var(--bg-card-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.social-link:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
}

.social-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--orange);
    color: white;
    font-size: 0.6rem;
    padding: 2px 4px;
    border-radius: 4px;
    font-weight: 600;
}

.navbar-actions .btn {
    font-size: 0.85rem;
    padding: 0.5rem 1rem;
}

.navbar-actions .btn-outline-primary {
    border-color: var(--primary);
    color: var(--primary);
}

.navbar-actions .btn-outline-primary:hover {
    background: var(--primary);
    color: white;
}

/* ===========================
   WhatsApp Widget
   =========================== */

.whatsapp-widget {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 1000;
}

.whatsapp-btn {
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    text-decoration: none;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
    animation: whatsapp-bounce 3s infinite;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    color: white;
    box-shadow: var(--shadow-xl);
}

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

/* ===========================
   Responsive Design
   =========================== */

@media (max-width: 992px) {
    .hero-buttons {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .achievements-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .social-links {
        justify-content: center;
    }

    /* Adjust background elements for tablet */
    .bg-laptop {
        width: 300px;
        height: 210px;
        right: -10%;
    }

    .bg-phone {
        width: 100px;
        height: 180px;
        left: -5%;
    }

    .bg-tablet {
        width: 220px;
        height: 160px;
        right: 10%;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 6rem 0 3rem;
    }

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

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-stats {
        flex-direction: column;
        align-items: center;
    }

    /* Hide background elements on mobile for better readability */
    .bg-laptop,
    .bg-phone,
    .bg-tablet {
        display: none;
    }

    .courses-section,
    .about-section,
    .success-stories-section,
    .contact-section {
        padding: 4rem 0;
    }

    .course-card {
        margin-bottom: 2rem;
    }

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

    .about-title {
        text-align: center;
    }

    .credentials {
        margin-top: 2rem;
    }

    .credential-item {
        flex-direction: column;
        text-align: center;
    }

    .contact-methods {
        margin-bottom: 1rem;
    }

    .whatsapp-widget {
        bottom: 1rem;
        right: 1rem;
    }

    .whatsapp-btn {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .elite-btn-primary,
    .elite-btn-outline {
        width: 100%;
        text-align: center;
        justify-content: center;
        display: flex;
        align-items: center;
    }

    .social-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .social-stat-item {
        flex-direction: column;
        text-align: center;
    }

    .social-content {
        text-align: center;
    }

    .navbar-actions {
        flex-direction: column;
        width: 100%;
    }

    .navbar-actions .btn {
        width: 100%;
        margin-bottom: 0.5rem;
    }
}

/* ===========================
   Trading Psychology Section
   =========================== */

.psychology-visual {
    padding: 1.5rem 0;
}

.psychology-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.psychology-description {
    text-align: center;
    margin-top: 1.5rem;
}

.psychology-description h4 {
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 0.75rem;
    font-family: var(--font-display);
    font-size: 1.3rem;
}

.psychology-description p {
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.6;
}