/* ==========================================================================
   BuuyTheDip - Trading Education Platform
   Modern White/Red/Green Theme
   ========================================================================== */

/* CSS Variables - Professional Business Theme */
:root {
    /* Sophisticated Color Palette */
    --color-primary: #1E293B;        /* Navy/Slate */
    --color-secondary: #0F172A;      /* Darker Navy */
    --color-accent: #3B82F6;         /* Professional Blue */
    --color-accent-dark: #2563EB;    /* Deep Blue */
    --color-success: #059669;        /* Subdued Green */
    --color-text: #334155;           /* Charcoal */
    --color-text-light: #64748B;     /* Medium Gray */
    
    --color-white: #FFFFFF;
    --color-black: #000000;
    --color-bg: #F8FAFC;
    --color-bg-alt: #F1F5F9;
    --color-border: #E2E8F0;
    --color-border-light: #CBD5E1;
    
    /* Subtle Shadows */
    --shadow-xs: 0 1px 2px 0 rgb(0 0 0 / 0.03);
    --shadow-sm: 0 1px 3px 0 rgb(0 0 0 / 0.08);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.06);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.08);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.08);
    
    /* Professional Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-heading: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    
    /* Refined Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2.5rem;
    --spacing-xl: 4rem;
    --spacing-2xl: 5rem;
    --spacing-3xl: 7rem;
    
    /* Minimal Border Radius */
    --radius-sm: 0.25rem;
    --radius-md: 0.375rem;
    --radius-lg: 0.5rem;
    --radius-xl: 0.75rem;
    
    /* Smooth Transitions */
    --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 250ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 350ms cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Z-index Layers */
    --z-preloader: 10000;
    --z-header: 1000;
    --z-dropdown: 900;
    --z-modal: 800;
    --z-back-to-top: 700;
}

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

html {
    font-size: 18px;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-primary);
    font-size: 1.125rem;
    line-height: 1.75;
    color: var(--color-text);
    background-color: var(--color-bg);
    overflow-x: hidden;
    font-weight: 400;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.3;
    color: var(--color-primary);
    margin-bottom: var(--spacing-sm);
    letter-spacing: -0.025em;
}

h1 { font-size: clamp(2.75rem, 5vw, 4.25rem); font-weight: 800; }
h2 { font-size: clamp(2.25rem, 4vw, 3.25rem); font-weight: 700; }
h3 { font-size: clamp(1.75rem, 3vw, 2.5rem); font-weight: 600; }
h4 { font-size: clamp(1.5rem, 2.5vw, 1.875rem); font-weight: 600; }

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-base);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button {
    font-family: inherit;
    border: none;
    background: none;
    cursor: pointer;
    transition: var(--transition-base);
}

ul, ol {
    list-style: none;
}

input, textarea, select {
    font-family: inherit;
    font-size: inherit;
    outline: none;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-2xl);
}

.section-header.centered {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.section-badge {
    display: inline-block;
    padding: 0.625rem 1.125rem;
    background: var(--color-bg-alt);
    color: var(--color-accent);
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: var(--radius-sm);
    border: 1px solid var(--color-border);
    margin-bottom: var(--spacing-md);
}

.section-title {
    font-size: clamp(1.875rem, 4vw, 2.75rem);
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: var(--spacing-sm);
    letter-spacing: -0.02em;
}

.title-line {
    width: 60px;
    height: 3px;
    background: var(--color-accent);
    border-radius: var(--radius-sm);
    margin: var(--spacing-sm) auto;
}

.section-description {
    max-width: 650px;
    margin: var(--spacing-md) auto 0;
    font-size: 1.25rem;
    color: var(--color-text-light);
    line-height: 1.8;
    font-weight: 400;
}

.gradient-text {
    color: var(--color-accent);
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1.125rem 2.25rem;
    font-size: 1.125rem;
    font-weight: 600;
    border-radius: var(--radius-md);
    transition: var(--transition-base);
    text-align: center;
    cursor: pointer;
    white-space: nowrap;
    letter-spacing: 0.01em;
}

.btn-large {
    padding: 1.375rem 2.75rem;
    font-size: 1.25rem;
}

.btn-block {
    width: 100%;
    justify-content: center;
}

.btn-primary {
    background: var(--color-accent);
    color: var(--color-white);
    box-shadow: var(--shadow-sm);
    border: 1px solid transparent;
}

.btn-primary:hover {
    background: var(--color-accent-dark);
    box-shadow: var(--shadow-md);
}

.btn-outline {
    background: var(--color-white);
    color: var(--color-primary);
    border: 1.5px solid var(--color-border);
    box-shadow: var(--shadow-xs);
}

.btn-outline:hover {
    background: var(--color-bg);
    border-color: var(--color-accent);
    color: var(--color-accent);
}

.btn-outline-white {
    background: transparent;
    color: var(--color-white);
    border: 1.5px solid rgba(255, 255, 255, 0.3);
}

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

.btn-primary-nav {
    background: var(--color-primary);
    color: var(--color-white);
    padding: 0.625rem 1.25rem;
    font-size: 0.875rem;
    box-shadow: var(--shadow-xs);
    border: 1px solid transparent;
}

.btn-primary-nav:hover {
    background: var(--color-secondary);
    box-shadow: var(--shadow-sm);
}

#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: var(--z-preloader);
    transition: opacity 0.3s ease-out;
}

#preloader.fade-out {
    opacity: 0;
    pointer-events: none;
}

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

.loader {
    width: 48px;
    height: 48px;
    border: 3px solid var(--color-border);
    border-top-color: var(--color-accent);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    margin: 0 auto var(--spacing-md);
}

.preloader-content p {
    color: var(--color-text-light);
    font-weight: 500;
    font-size: 0.9375rem;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 48px;
    height: 48px;
    background: var(--color-primary);
    color: var(--color-white);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.125rem;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition-base);
    z-index: var(--z-back-to-top);
}

/* Sticky Contact Button (Mobile Only) */
.sticky-contact-btn {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent) 100%);
    color: var(--color-white);
    padding: 1rem 1.5rem;
    text-align: center;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    font-weight: 600;
    font-size: 1rem;
    box-shadow: 0 -4px 20px rgba(30, 41, 59, 0.2);
    z-index: 998;
    text-decoration: none;
    transition: all var(--transition-base);
}

.sticky-contact-btn:hover {
    background: linear-gradient(135deg, #162133 0%, #2563eb 100%);
    box-shadow: 0 -6px 25px rgba(30, 41, 59, 0.3);
}

.sticky-contact-btn i {
    font-size: 1.25rem;
}

.sticky-contact-btn span {
    font-family: 'Poppins', sans-serif;
    letter-spacing: 0.5px;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--color-secondary);
    box-shadow: var(--shadow-xl);
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--color-white);
    box-shadow: var(--shadow-md);
    z-index: var(--z-header);
    transition: var(--transition-base);
    border-bottom: 2px solid var(--color-border);
}

.header.scrolled {
    box-shadow: var(--shadow-lg);
}

.navbar {
    padding: 1.25rem 0;
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.625rem;
}

.logo-img {
    height: 85px;
    width: auto;
    display: block;
}

.logo-icon {
    width: 36px;
    height: 36px;
    background: var(--color-accent);
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: var(--spacing-lg);
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1rem;
    color: var(--color-text);
    font-weight: 500;
    font-size: 1.125rem;
    border-radius: var(--radius-md);
    transition: var(--transition-base);
}

.nav-link:hover,
.nav-link.active {
    color: var(--color-accent);
    background: var(--color-bg);
}

.nav-link i {
    font-size: 0.875rem;
    display: none;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
}

.btn-desktop {
    display: none;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 35px;
    height: 35px;
    padding: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1000;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 3px;
    background: var(--color-primary);
    border-radius: var(--radius-full);
    transition: var(--transition-base);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

.nav-cta-mobile {
    display: none;
}

.hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    padding: 8rem 0 5rem;
    background: linear-gradient(180deg, var(--color-white) 0%, var(--color-bg) 100%);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    opacity: 0.03;
}

.hero-pattern {
    position: absolute;
    top: -10%;
    right: -10%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, var(--color-accent) 0%, transparent 70%);
    border-radius: 50%;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: var(--spacing-2xl);
    align-items: center;
}

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

.hero-image {
    position: relative;
    z-index: 1;
}

.hero-image-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--color-border);
    background: var(--color-white);
    max-height: 400px;
    height: 400px;
}

.hero-image-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(2px);
    z-index: 1;
    pointer-events: none;
}

.trading-img {
    width: 100%;
    height: 400px;
    max-height: 400px;
    object-fit: cover;
    object-position: center;
    display: block;
}

.trading-placeholder {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-3xl);
    background: linear-gradient(135deg, var(--color-bg-alt), var(--color-bg));
    height: 400px;
}

.trading-placeholder i {
    font-size: 4rem;
    color: var(--color-accent);
    margin-bottom: var(--spacing-md);
}

.trading-placeholder p {
    font-size: 1.125rem;
    color: var(--color-text-light);
    font-weight: 500;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--color-bg-alt);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    font-weight: 500;
    font-size: 0.875rem;
    color: var(--color-text);
    box-shadow: var(--shadow-xs);
    margin-bottom: var(--spacing-lg);
}

.hero-badge i {
    color: var(--color-accent);
    font-size: 0.875rem;
}

.hero-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: var(--spacing-md);
    letter-spacing: -0.03em;
    color: var(--color-primary);
}

.hero-subtitle {
    font-size: clamp(1.125rem, 2vw, 1.375rem);
    color: var(--color-text-light);
    line-height: 1.75;
    max-width: 580px;
    margin: 0 0 var(--spacing-xl);
    font-weight: 400;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-lg);
}

.stat-card {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-sm) var(--spacing-md);
    background: var(--color-white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--color-border);
    transition: var(--transition-base);
}

.stat-card:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--color-accent);
}

.stat-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
    font-size: 1.375rem;
    flex-shrink: 0;
}

.stat-icon.green {
    background: var(--color-bg-alt);
    color: var(--color-success);
}

.stat-icon.red {
    background: var(--color-bg-alt);
    color: var(--color-accent);
}

.stat-content {
    text-align: left;
}

.stat-number {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-primary);
    line-height: 1;
    margin-bottom: 0.25rem;
}

.stat-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-primary);
    line-height: 1;
    margin-bottom: 0.25rem;
}

.stat-content p {
    font-size: 1rem;
    color: var(--color-text-light);
    margin: 0;
    font-weight: 500;
}

.stat-card-clickable {
    transition: all var(--transition-base);
    position: relative;
}

.stat-card-clickable:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.stat-card-clickable:hover .stat-icon {
    transform: scale(1.1);
}

.stat-card-clickable:active {
    transform: translateY(-2px);
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-md);
    align-items: center;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.125rem;
    color: var(--color-text-light);
    font-weight: 500;
}

.feature-item i {
    color: var(--color-success);
    font-size: 1rem;
}

.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    opacity: 0.5;
}

.mouse {
    width: 22px;
    height: 36px;
    border: 2px solid var(--color-border-light);
    border-radius: 12px;
    position: relative;
    margin: 0 auto 0.5rem;
}

.wheel {
    width: 3px;
    height: 6px;
    background: var(--color-accent);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 1.5s infinite;
}

@keyframes scroll {
    0% { top: 8px; opacity: 1; }
    100% { top: 18px; opacity: 0; }
}

.hero-scroll p {
    font-size: 0.8125rem;
    color: var(--color-text-light);
    font-weight: 500;
}

.features-section {
    padding: var(--spacing-3xl) 0;
    background: var(--color-white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
}

.feature-box {
    padding: var(--spacing-xl);
    border-radius: var(--radius-lg);
    text-align: center;
    transition: var(--transition-base);
    box-shadow: var(--shadow-sm);
    background: var(--color-white);
    border: 1px solid var(--color-border);
    position: relative;
    overflow: hidden;
    min-height: 320px;
}

.feature-box::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 140px;
    opacity: 0.08;
    z-index: 0;
    transition: opacity 0.3s ease;
}

/* Chart patterns for Learn box */
.green-box:nth-child(1)::before {
    background: 
        linear-gradient(to right, transparent 48%, rgba(5, 150, 105, 0.3) 49%, rgba(5, 150, 105, 0.3) 51%, transparent 52%),
        linear-gradient(to top, transparent 48%, rgba(5, 150, 105, 0.2) 49%, rgba(5, 150, 105, 0.2) 51%, transparent 52%),
        url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 100"><path d="M0,80 L30,70 L50,75 L80,50 L110,55 L140,30 L170,40 L200,20" fill="none" stroke="rgb(5,150,105)" stroke-width="3" opacity="0.6"/><circle cx="30" cy="70" r="4" fill="rgb(5,150,105)"/><circle cx="80" cy="50" r="4" fill="rgb(5,150,105)"/><circle cx="140" cy="30" r="4" fill="rgb(5,150,105)"/></svg>');
    background-size: 20px 20px, 20px 20px, 100% 100%;
    background-position: 0 0, 0 0, center bottom;
    background-repeat: repeat, repeat, no-repeat;
}

/* Chart patterns for Grow box */
.red-box:nth-child(2)::before {
    background: 
        linear-gradient(to right, transparent 48%, rgba(59, 130, 246, 0.3) 49%, rgba(59, 130, 246, 0.3) 51%, transparent 52%),
        linear-gradient(to top, transparent 48%, rgba(59, 130, 246, 0.2) 49%, rgba(59, 130, 246, 0.2) 51%, transparent 52%),
        url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 100"><path d="M0,90 L25,85 L45,75 L70,65 L95,50 L120,45 L145,30 L170,20 L200,10" fill="none" stroke="rgb(59,130,246)" stroke-width="3" opacity="0.6"/><polygon points="0,90 25,85 45,75 70,65 95,50 120,45 145,30 170,20 200,10 200,100 0,100" fill="rgb(59,130,246)" opacity="0.1"/></svg>');
    background-size: 20px 20px, 20px 20px, 100% 100%;
    background-position: 0 0, 0 0, center bottom;
    background-repeat: repeat, repeat, no-repeat;
}

/* Chart patterns for Invest box */
.green-box:nth-child(3)::before {
    background: 
        linear-gradient(to right, transparent 48%, rgba(5, 150, 105, 0.3) 49%, rgba(5, 150, 105, 0.3) 51%, transparent 52%),
        linear-gradient(to top, transparent 48%, rgba(5, 150, 105, 0.2) 49%, rgba(5, 150, 105, 0.2) 51%, transparent 52%),
        url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 100"><rect x="20" y="60" width="15" height="40" fill="rgb(5,150,105)" opacity="0.5"/><rect x="50" y="45" width="15" height="55" fill="rgb(5,150,105)" opacity="0.6"/><rect x="80" y="30" width="15" height="70" fill="rgb(5,150,105)" opacity="0.7"/><rect x="110" y="50" width="15" height="50" fill="rgb(5,150,105)" opacity="0.6"/><rect x="140" y="35" width="15" height="65" fill="rgb(5,150,105)" opacity="0.7"/><rect x="170" y="20" width="15" height="80" fill="rgb(5,150,105)" opacity="0.8"/></svg>');
    background-size: 20px 20px, 20px 20px, 100% 100%;
    background-position: 0 0, 0 0, center bottom;
    background-repeat: repeat, repeat, no-repeat;
}

.feature-box:hover::before {
    opacity: 0.15;
}

/* Add decorative trading elements */
.feature-box::after {
    content: '';
    position: absolute;
    top: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    opacity: 0.04;
    z-index: 0;
    transition: all 0.3s ease;
}

.green-box:nth-child(1)::after {
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3 13h2v8H3zm4-6h2v14H7zm4-4h2v18h-2zm4 9h2v9h-2zm4-5h2v14h-2z" fill="rgb(5,150,105)"/></svg>');
    background-size: contain;
}

.red-box:nth-child(2)::after {
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M16 6l2.29 2.29-4.88 4.88-4-4L2 16.59 3.41 18l6-6 4 4 6.3-6.29L22 12V6z" fill="rgb(59,130,246)"/></svg>');
    background-size: contain;
}

.green-box:nth-child(3)::after {
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 2L2 7v10c0 5.55 3.84 10.74 9 12 5.16-1.26 9-6.45 9-12V7l-10-5zm0 18.5c-4.06-1.11-7-5.43-7-9.5V8.3l7-3.11V20.5z" fill="rgb(5,150,105)"/></svg>');
    background-size: contain;
}

.feature-box:hover::after {
    opacity: 0.08;
    transform: scale(1.1) rotate(5deg);
}

.feature-box > * {
    position: relative;
    z-index: 1;
}

.feature-box:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--color-accent);
}

.green-box {
    background: var(--color-white);
}

.red-box {
    background: var(--color-white);
}

.feature-box-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto var(--spacing-md);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-lg);
    font-size: 1.875rem;
}

.green-box .feature-box-icon {
    background: var(--color-bg-alt);
    color: var(--color-success);
}

.red-box .feature-box-icon {
    background: var(--color-bg-alt);
    color: var(--color-accent);
}

.feature-box h3 {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-sm);
    font-weight: 600;
}

.feature-box p {
    color: var(--color-text-light);
    line-height: 1.75;
    font-weight: 400;
    font-size: 1.125rem;
}

.about-section {
    padding: var(--spacing-3xl) 0;
    background: var(--color-bg);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-2xl);
    align-items: center;
    margin-top: var(--spacing-2xl);
}

.about-image-wrapper {
    position: relative;
}

.image-frame {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--color-border);
    min-height: 650px;
}

.image-frame img {
    width: 100%;
    height: 100%;
    min-height: 650px;
    object-fit: cover;
    display: block;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.05), rgba(5, 150, 105, 0.05));
}

.floating-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 0.625rem;
    padding: 0.875rem 1.25rem;
    background: var(--color-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--color-border);
    font-weight: 600;
    font-size: 0.9375rem;
}

.floating-card i {
    font-size: 1.25rem;
}

.floating-card.card-1 {
    top: 10%;
    right: -10%;
    color: var(--color-success);
}

.floating-card.card-1 i {
    color: var(--color-success);
}

.floating-card.card-2 {
    bottom: 10%;
    left: -10%;
    color: var(--color-accent);
}

.floating-card.card-2 i {
    color: var(--color-accent);
}

.about-heading {
    font-size: 1.875rem;
    font-weight: 700;
    margin-bottom: var(--spacing-md);
    color: var(--color-primary);
}

.about-paragraph {
    font-size: 1.1875rem;
    line-height: 1.8;
    color: var(--color-text-light);
    margin-bottom: var(--spacing-md);
    font-weight: 400;
}

.about-highlights {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    margin: var(--spacing-xl) 0;
}

.highlight-item {
    display: flex;
    gap: var(--spacing-md);
    align-items: flex-start;
}

.highlight-icon {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
    font-size: 1.125rem;
    color: var(--color-white);
}

.highlight-icon.green {
    background: var(--color-success);
}

.highlight-icon.red {
    background: var(--color-accent);
}

.highlight-icon.special {
    background: linear-gradient(135deg, #3B82F6, #059669, #EF4444);
    background-size: 200% 200%;
    animation: gradient-shift 3s ease infinite, pulse-special 2s infinite, icon-glow 2s ease-in-out infinite;
    position: relative;
}

.highlight-icon.special::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #3B82F6, #059669, #EF4444, #F59E0B);
    border-radius: var(--radius-md);
    z-index: -1;
    opacity: 0;
    animation: flame-border 2s ease-in-out infinite;
}

@keyframes gradient-shift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes pulse-special {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(59, 130, 246, 0.7),
                    0 0 20px rgba(5, 150, 105, 0.3);
    }
    50% {
        box-shadow: 0 0 0 12px rgba(59, 130, 246, 0),
                    0 0 30px rgba(5, 150, 105, 0.5);
    }
}

@keyframes icon-glow {
    0%, 100% {
        filter: brightness(1) drop-shadow(0 0 8px rgba(59, 130, 246, 0.6));
    }
    50% {
        filter: brightness(1.2) drop-shadow(0 0 15px rgba(5, 150, 105, 0.8));
    }
}

@keyframes flame-border {
    0%, 100% {
        opacity: 0.3;
        transform: scale(1);
    }
    50% {
        opacity: 0.6;
        transform: scale(1.05);
    }
}

/* Special Highlight Item */
.special-highlight {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.08), rgba(5, 150, 105, 0.08), rgba(239, 68, 68, 0.05));
    background-size: 200% 200%;
    border: 2px solid transparent;
    border-radius: var(--radius-md);
    padding: var(--spacing-md);
    position: relative;
    overflow: hidden;
    animation: shimmer-bg 4s ease infinite;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.1);
}

.special-highlight::before {
    content: "⭐ LIVE";
    position: absolute;
    top: 8px;
    right: 8px;
    background: linear-gradient(135deg, #3B82F6, #059669);
    color: white;
    font-size: 0.625rem;
    font-weight: 700;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    letter-spacing: 0.5px;
    animation: badge-pulse 2s ease-in-out infinite;
    box-shadow: 0 2px 10px rgba(59, 130, 246, 0.4);
}

.special-highlight::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent,
        rgba(59, 130, 246, 0.1),
        transparent
    );
    animation: spotlight 3s linear infinite;
}

@keyframes shimmer-bg {
    0% { 
        background-position: 0% 50%;
        border-color: rgba(59, 130, 246, 0.3);
    }
    50% { 
        background-position: 100% 50%;
        border-color: rgba(5, 150, 105, 0.4);
    }
    100% { 
        background-position: 0% 50%;
        border-color: rgba(59, 130, 246, 0.3);
    }
}

@keyframes badge-pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 2px 10px rgba(59, 130, 246, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 4px 20px rgba(59, 130, 246, 0.6);
    }
}

@keyframes spotlight {
    0% { transform: rotate(0deg) translate(-50%, -50%); }
    100% { transform: rotate(360deg) translate(-50%, -50%); }
}

.special-highlight:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 12px 35px rgba(59, 130, 246, 0.25),
                0 0 40px rgba(5, 150, 105, 0.15);
    border-color: var(--color-accent);
}

.special-highlight:hover .highlight-icon.special {
    animation: gradient-shift 3s ease infinite, pulse-special 1s infinite, icon-glow 1s ease-in-out infinite, bounce-icon 0.6s ease;
}

@keyframes bounce-icon {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-8px) rotate(-5deg); }
    75% { transform: translateY(-4px) rotate(5deg); }
}

.special-highlight .highlight-text h4 {
    background: linear-gradient(135deg, #1E293B, #3B82F6, #059669);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: text-shine 3s linear infinite;
}

@keyframes text-shine {
    0% { background-position: 0% center; }
    100% { background-position: 200% center; }
}

.highlight-text h4 {
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
    font-weight: 600;
}

.highlight-text p {
    color: var(--color-text-light);
    margin: 0;
    font-weight: 400;
    font-size: 1rem;
}

.about-conclusion {
    font-size: 1.125rem;
    line-height: 1.75;
    color: var(--color-text-light);
    font-weight: 400;
}

.services-section {
    padding: var(--spacing-3xl) 0;
    background: var(--color-white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-2xl);
}

.service-card {
    position: relative;
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition-base);
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--color-accent);
}

.service-card.featured {
    border-color: var(--color-accent);
    box-shadow: var(--shadow-sm);
}

.featured-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    display: flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.375rem 0.75rem;
    background: var(--color-accent);
    color: var(--color-white);
    font-size: 0.8125rem;
    font-weight: 600;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-sm);
    z-index: 10;
}

.service-card-header {
    padding: var(--spacing-xl) var(--spacing-lg);
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Trading banner backgrounds for each package */
.service-card-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.12;
    z-index: 0;
}

/* Package 1: Trading & Investing Combo - Candlestick Chart */
.service-card:nth-child(1) .service-card-header::before {
    background: 
        linear-gradient(to right, transparent 45%, rgba(5, 150, 105, 0.15) 50%, transparent 55%),
        url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 120"><rect x="30" y="40" width="2" height="60" fill="rgb(5,150,105)"/><rect x="20" y="50" width="22" height="35" fill="rgb(5,150,105)" opacity="0.8"/><rect x="80" y="30" width="2" height="70" fill="rgb(239,68,68)"/><rect x="70" y="45" width="22" height="25" fill="rgb(239,68,68)" opacity="0.8"/><rect x="130" y="35" width="2" height="65" fill="rgb(5,150,105)"/><rect x="120" y="45" width="22" height="40" fill="rgb(5,150,105)" opacity="0.8"/><rect x="180" y="45" width="2" height="50" fill="rgb(5,150,105)"/><rect x="170" y="55" width="22" height="30" fill="rgb(5,150,105)" opacity="0.8"/><rect x="230" y="25" width="2" height="75" fill="rgb(239,68,68)"/><rect x="220" y="40" width="22" height="35" fill="rgb(239,68,68)" opacity="0.8"/><rect x="280" y="30" width="2" height="60" fill="rgb(5,150,105)"/><rect x="270" y="40" width="22" height="40" fill="rgb(5,150,105)" opacity="0.8"/><rect x="330" y="20" width="2" height="70" fill="rgb(5,150,105)"/><rect x="320" y="30" width="22" height="50" fill="rgb(5,150,105)" opacity="0.8"/></svg>');
    background-size: 50px 50px, 100% 100%;
    background-position: 0 0, center center;
    background-repeat: repeat, no-repeat;
}

/* Package 2: Pro Trading & Investing Combo (Featured) - Trend Lines */
.service-card:nth-child(2) .service-card-header::before {
    background: 
        linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(239, 68, 68, 0.1) 100%),
        url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 120"><defs><linearGradient id="grad1" x1="0%25" y1="0%25" x2="100%25" y2="0%25"><stop offset="0%25" style="stop-color:rgb(59,130,246);stop-opacity:0.6" /><stop offset="100%25" style="stop-color:rgb(239,68,68);stop-opacity:0.6" /></linearGradient></defs><path d="M0,90 L50,80 L100,65 L150,70 L200,50 L250,55 L300,35 L350,30 L400,15" fill="none" stroke="url(%23grad1)" stroke-width="4"/><circle cx="50" cy="80" r="5" fill="rgb(59,130,246)"/><circle cx="100" cy="65" r="5" fill="rgb(59,130,246)"/><circle cx="200" cy="50" r="6" fill="rgb(239,68,68)"/><circle cx="300" cy="35" r="6" fill="rgb(239,68,68)"/><circle cx="350" cy="30" r="5" fill="rgb(5,150,105)"/><path d="M0,100 L400,20" stroke="rgb(5,150,105)" stroke-width="2" stroke-dasharray="5,5" opacity="0.3"/></svg>');
    background-size: auto, 100% 100%;
    background-position: center, center center;
    background-repeat: no-repeat, no-repeat;
}

/* Package 3: Elite Trading & Investing Combo - Market Depth */
.service-card:nth-child(3) .service-card-header::before {
    background: 
        radial-gradient(circle at 30% 50%, rgba(5, 150, 105, 0.15), transparent 50%),
        radial-gradient(circle at 70% 50%, rgba(59, 130, 246, 0.15), transparent 50%),
        url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 120"><rect x="20" y="30" width="35" height="80" fill="rgb(5,150,105)" opacity="0.7"/><text x="37" y="25" font-size="10" fill="rgb(5,150,105)" text-anchor="middle">↑15%25</text><rect x="70" y="40" width="35" height="70" fill="rgb(5,150,105)" opacity="0.6"/><rect x="120" y="50" width="35" height="60" fill="rgb(5,150,105)" opacity="0.5"/><rect x="170" y="45" width="35" height="65" fill="rgb(59,130,246)" opacity="0.6"/><rect x="220" y="35" width="35" height="75" fill="rgb(5,150,105)" opacity="0.7"/><text x="237" y="30" font-size="10" fill="rgb(5,150,105)" text-anchor="middle">↑22%25</text><rect x="270" y="25" width="35" height="85" fill="rgb(5,150,105)" opacity="0.8"/><rect x="320" y="20" width="35" height="90" fill="rgb(5,150,105)" opacity="0.9"/><text x="337" y="15" font-size="12" fill="rgb(5,150,105)" text-anchor="middle" font-weight="bold">↑35%25</text><path d="M20,105 L60,95 L110,90 L170,92 L230,85 L280,75 L340,65" fill="none" stroke="rgb(5,150,105)" stroke-width="3" opacity="0.4"/></svg>');
    background-size: auto, auto, 100% 100%;
    background-position: center, center, center center;
    background-repeat: no-repeat, no-repeat, no-repeat;
}

/* Animated elements on hover */
.service-card:hover .service-card-header::before {
    opacity: 0.18;
    animation: banner-pulse 2s ease-in-out infinite;
}

@keyframes banner-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* Additional decorative corner elements */
.service-card-header::after {
    content: '';
    position: absolute;
    top: 10px;
    left: 10px;
    width: 40px;
    height: 40px;
    opacity: 0.06;
    z-index: 0;
}

.service-card:nth-child(1) .service-card-header::after {
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3.5 18.49l6-6.01 4 4L22 6.92l-1.41-1.41-7.09 7.97-4-4L2 16.99z" fill="rgb(5,150,105)"/></svg>');
    background-size: contain;
}

.service-card:nth-child(2) .service-card-header::after {
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 2L2 7v10c0 5.55 3.84 10.74 9 12 5.16-1.26 9-6.45 9-12V7l-10-5z" fill="rgb(59,130,246)"/></svg>');
    background-size: contain;
    width: 45px;
    height: 45px;
}

.service-card:nth-child(3) .service-card-header::after {
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm-2 15l-5-5 1.41-1.41L10 14.17l7.59-7.59L19 8l-9 9z" fill="rgb(5,150,105)"/></svg>');
    background-size: contain;
    top: 10px;
    right: 10px;
    left: auto;
}

.green-gradient {
    background: var(--color-bg-alt);
}

.red-gradient {
    background: var(--color-bg-alt);
}

.service-icon {
    width: 68px;
    height: 68px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-white);
    border-radius: var(--radius-lg);
    font-size: 1.75rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--color-border);
    position: relative;
    z-index: 1;
}

.green-gradient .service-icon {
    color: var(--color-success);
}

.red-gradient .service-icon {
    color: var(--color-accent);
}

.service-card-body {
    padding: var(--spacing-lg);
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.service-card-body h3 {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-sm);
    font-weight: 600;
    text-align: center;
}

.service-card-body > p {
    color: var(--color-text-light);
    line-height: 1.7;
    margin-bottom: var(--spacing-md);
    font-weight: 400;
    font-size: 1.0625rem;
    text-align: center;
}

.package-info {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: var(--spacing-md);
    justify-content: center;
}

.package-label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.875rem;
    background: var(--color-bg-alt);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--color-accent);
}

.package-label i {
    font-size: 0.9375rem;
}

.package-duration {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.875rem;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(5, 150, 105, 0.1));
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: var(--radius-md);
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--color-success);
}

.package-duration i {
    font-size: 0.9375rem;
    color: var(--color-accent);
}

.service-features {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    width: 100%;
    align-items: flex-start;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.0625rem;
    color: var(--color-text-light);
    font-weight: 500;
    text-align: left;
    width: 100%;
}

.service-features i {
    color: var(--color-success);
    font-size: 1rem;
    flex-shrink: 0;
}

.service-card-footer {
    padding: 0 var(--spacing-lg) var(--spacing-lg);
}

.service-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 0.875rem;
    background: var(--color-accent);
    color: var(--color-white);
    font-weight: 600;
    font-size: 0.9375rem;
    border-radius: var(--radius-md);
    transition: var(--transition-base);
}

.service-btn:hover {
    background: var(--color-accent-dark);
    box-shadow: var(--shadow-sm);
}

.services-cta-section {
    margin-top: var(--spacing-3xl);
}

.cta-box {
    background: var(--color-primary);
    padding: var(--spacing-2xl);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--spacing-xl);
    flex-wrap: wrap;
}

.cta-content h3 {
    font-size: clamp(1.375rem, 3vw, 1.875rem);
    color: var(--color-white);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    font-weight: 400;
}

.cta-buttons {
    display: flex;
    gap: var(--spacing-md);
    flex-wrap: wrap;
}

.reviews-section {
    padding: var(--spacing-3xl) 0;
    background: var(--color-bg);
}

.reviews-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.reviews-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
}

.review-card {
    background: var(--color-white);
    padding: var(--spacing-xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--color-border);
    display: none;
    animation: fadeIn 0.3s ease-in-out;
}

.review-card.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.review-header {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-md);
}

.reviewer-avatar {
    width: 60px;
    height: 60px;
    background: var(--color-bg-alt);
    color: var(--color-accent);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
    font-weight: 600;
}

.reviewer-info h4 {
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
    font-weight: 600;
}

.reviewer-info p {
    color: var(--color-text-light);
    font-size: 0.9375rem;
    margin-bottom: 0.5rem;
}

.rating {
    display: flex;
    gap: 0.25rem;
}

.rating i {
    color: #FFC107;
    font-size: 0.9375rem;
}

.review-body {
    position: relative;
    padding: var(--spacing-lg);
    background: var(--color-bg);
    border-radius: var(--radius-md);
    margin-bottom: var(--spacing-md);
}

.quote-icon {
    position: absolute;
    top: -12px;
    left: var(--spacing-md);
    width: 36px;
    height: 36px;
    background: var(--color-accent);
    color: var(--color-white);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.125rem;
}

.review-text {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: var(--color-text);
    font-style: normal;
    margin: 0;
    padding-top: var(--spacing-md);
    font-weight: 400;
}

.review-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--spacing-sm);
    font-size: 0.875rem;
    color: var(--color-text-light);
}

.review-date,
.verified {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.verified i {
    color: var(--color-success);
}

.reviews-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-md);
    margin-top: var(--spacing-xl);
}

.review-btn {
    width: 44px;
    height: 44px;
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text);
    font-size: 1.125rem;
    transition: var(--transition-base);
    cursor: pointer;
}

.review-btn:hover {
    background: var(--color-accent);
    color: var(--color-white);
    border-color: var(--color-accent);
}

.reviews-dots {
    display: flex;
    gap: 0.5rem;
}

.dot {
    width: 10px;
    height: 10px;
    background: var(--color-border-light);
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition-base);
}

.dot.active {
    background: var(--color-accent);
    width: 28px;
    border-radius: var(--radius-sm);
}

.cta-section {
    padding: var(--spacing-3xl) 0;
    background: var(--color-primary);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-inner {
    position: relative;
    text-align: center;
    z-index: 1;
}

.cta-icon-large {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--spacing-md);
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.25rem;
    color: var(--color-white);
}

.cta-inner h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    color: var(--color-white);
    margin-bottom: var(--spacing-sm);
    font-weight: 700;
}

.cta-inner p {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: var(--spacing-xl);
    font-weight: 400;
}

.cta-inner .btn {
    background: var(--color-white);
    color: var(--color-primary);
}

.cta-inner .btn:hover {
    background: var(--color-bg);
}

.contact-section {
    padding: var(--spacing-3xl) 0;
    background: var(--color-white);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: var(--spacing-2xl);
    margin-top: var(--spacing-2xl);
}

.contact-info-side h3 {
    font-size: 1.875rem;
    margin-bottom: var(--spacing-md);
    font-weight: 700;
}

.contact-info-side > p {
    color: var(--color-text-light);
    line-height: 1.7;
    margin-bottom: var(--spacing-xl);
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-xl);
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-md);
    padding: var(--spacing-md);
    background: var(--color-bg);
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border);
    transition: var(--transition-base);
}

.contact-method:hover {
    background: var(--color-white);
    box-shadow: var(--shadow-sm);
    border-color: var(--color-accent);
}

.method-icon {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
    font-size: 1.125rem;
    color: var(--color-white);
}

.method-icon.green {
    background: var(--color-success);
}

.method-icon.red {
    background: var(--color-accent);
}

.method-content h4 {
    font-size: 1.0625rem;
    margin-bottom: 0.25rem;
    font-weight: 600;
    text-align: left;
}

.method-content a {
    color: var(--color-text-light);
    transition: var(--transition-base);
    text-align: left;
    display: block;
}

.method-content a:hover {
    color: var(--color-accent);
}

.method-content p {
    color: var(--color-text-light);
    margin: 0;
    text-align: left;
}

.social-connect {
    padding: var(--spacing-lg);
    background: var(--color-bg);
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border);
}

.social-connect h4 {
    margin-bottom: var(--spacing-md);
    font-weight: 600;
}

.social-links {
    display: flex;
    gap: var(--spacing-sm);
}

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
    background: var(--color-white);
    color: var(--color-text);
    font-size: 1rem;
    border: 1px solid var(--color-border);
    transition: var(--transition-base);
}

.social-link:hover {
    box-shadow: var(--shadow-sm);
}

.social-link.facebook:hover {
    background: #1877F2;
    color: var(--color-white);
    border-color: #1877F2;
}

.social-link.twitter:hover {
    background: #1DA1F2;
    color: var(--color-white);
    border-color: #1DA1F2;
}

.social-link.linkedin:hover {
    background: #0A66C2;
    color: var(--color-white);
    border-color: #0A66C2;
}

.social-link.instagram:hover {
    background: #E4405F;
    color: var(--color-white);
    border-color: #E4405F;
}

.contact-form-side {
    background: var(--color-bg);
    padding: var(--spacing-xl);
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-md);
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 0.5rem;
    font-size: 0.9375rem;
}

.form-group label i {
    color: var(--color-accent);
    font-size: 0.875rem;
}

.form-group input,
.form-group textarea {
    padding: 0.875rem 1rem;
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    font-size: 0.9375rem;
    color: var(--color-text);
    transition: var(--transition-base);
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--color-accent);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.form-group input.error,
.form-group textarea.error {
    border-color: #DC2626;
}

.form-group input.error:focus,
.form-group textarea.error:focus {
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}

.error-message {
    color: #DC2626;
    font-size: 0.8125rem;
    margin-top: 0.5rem;
    display: none;
}

.form-group.has-error .error-message {
    display: block;
}

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

.footer {
    background: var(--color-secondary);
    color: rgba(255, 255, 255, 0.7);
    padding: var(--spacing-3xl) 0 var(--spacing-lg);
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: var(--spacing-xl);
    padding-bottom: var(--spacing-xl);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: var(--spacing-lg);
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: var(--spacing-md);
}

.footer-logo-img {
    height: 100px;
    width: auto;
    display: block;
}

.footer-desc {
    line-height: 1.7;
    margin-bottom: var(--spacing-md);
}

.footer-social {
    display: flex;
    gap: var(--spacing-sm);
}

.footer-social a {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition-base);
}

.footer-social a:hover {
    background: var(--color-accent);
    color: var(--color-white);
}

.footer-col h4 {
    color: var(--color-white);
    font-size: 1.0625rem;
    margin-bottom: var(--spacing-md);
    font-weight: 600;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition-base);
    font-size: 0.9375rem;
}

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

.footer-links i {
    font-size: 0.625rem;
    display: none;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    text-align: left;
}

.footer-contact i {
    color: var(--color-accent);
    margin-top: 0.25rem;
    font-size: 0.9375rem;
    flex-shrink: 0;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition-base);
    text-align: left;
}

.footer-contact a:hover {
    color: var(--color-white);
}

.footer-contact span {
    color: rgba(255, 255, 255, 0.7);
    text-align: left;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--spacing-md);
    padding-top: var(--spacing-lg);
}

.copyright {
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
    font-size: 0.875rem;
}

.footer-bottom-links {
    display: flex;
    gap: var(--spacing-md);
    align-items: center;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition-base);
    font-size: 0.875rem;
}

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

@media (max-width: 1024px) {
    .hero .container {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
    }
    
    .hero-image {
        order: -1;
    }
    
    .hero-content {
        text-align: center;
    }
    
    .hero-subtitle {
        max-width: 100%;
    }
    
    .hero-stats {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .hero-cta,
    .hero-features {
        justify-content: center;
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .about-image-side {
        order: -1;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .footer-top {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    html {
        font-size: 16px;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    /* Header Adjustments */
    .navbar {
        padding: 1rem 0;
    }
    
    .logo-img {
        height: 65px;
    }
    
    .footer-logo-img {
        height: 75px;
    }
    
    .btn-desktop {
        display: none;
    }
    
    .hamburger {
        display: flex !important;
        position: relative;
    }
    
    .nav-right {
        display: flex;
        align-items: center;
        gap: var(--spacing-sm);
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        max-height: calc(100vh - 80px);
        overflow-y: auto;
        background: var(--color-white);
        box-shadow: var(--shadow-lg);
        flex-direction: column;
        padding: var(--spacing-lg);
        transform: translateX(-100%);
        transition: var(--transition-base);
        z-index: 999;
    }
    
    .nav-menu.active {
        transform: translateX(0);
    }
    
    .nav-list {
        flex-direction: column;
        width: 100%;
        gap: 0;
    }
    
    .nav-link {
        width: 100%;
        padding: 1.125rem 1.25rem;
        border-radius: 0;
        border-bottom: 1px solid var(--color-gray-100);
        font-size: 1rem;
        transition: all 0.3s ease;
        position: relative;
    }
    
    .nav-link:hover {
        background: linear-gradient(90deg, rgba(59, 130, 246, 0.08) 0%, transparent 100%);
        color: var(--color-accent);
        padding-left: 1.5rem;
    }
    
    .nav-link::before {
        content: '';
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
        width: 0;
        height: 50%;
        background: var(--color-accent);
        transition: width 0.3s ease;
        border-radius: 0 4px 4px 0;
    }
    
    .nav-link:hover::before {
        width: 4px;
    }
    
    .nav-cta-mobile {
        display: block;
        margin-top: var(--spacing-md);
    }
    
    .nav-cta-mobile .btn {
        width: 100%;
        justify-content: center;
        background: linear-gradient(135deg, var(--color-accent) 0%, #2563eb 100%);
        padding: 1rem 1.5rem;
        font-size: 1.0625rem;
        font-weight: 600;
        border-radius: var(--radius-lg);
        box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
        transition: all 0.3s ease;
    }
    
    .nav-cta-mobile .btn:hover {
        background: linear-gradient(135deg, #2563eb 0%, var(--color-accent) 100%);
        box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
        transform: translateY(-2px);
    }
    
    .nav-cta-mobile .btn i {
        font-size: 1.125rem;
    }
    
    /* Show Sticky Contact Button on Mobile */
    .sticky-contact-btn {
        display: flex;
    }
    
    /* Hero Section Mobile */
    .hero {
        padding: 5rem 0 3rem;
    }
    
    .hero-content {
        text-align: center;
    }
    
    .hero-badge {
        justify-content: center;
        margin: 0 auto var(--spacing-lg);
        font-size: 0.9375rem;
    }
    
    .hero-title {
        font-size: clamp(2rem, 8vw, 2.75rem) !important;
        line-height: 1.3;
        text-align: center;
        margin-bottom: var(--spacing-lg);
    }
    
    .hero-subtitle {
        font-size: 1.125rem;
        margin-bottom: var(--spacing-xl);
        text-align: center;
        line-height: 1.6;
    }
    
    .hero-image-wrapper {
        max-height: 300px;
        height: 300px;
        margin-bottom: var(--spacing-lg);
    }
    
    .trading-img {
        height: 300px;
        max-height: 300px;
    }
    
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-md);
        margin-bottom: var(--spacing-xl);
    }
    
    .stat-card {
        padding: var(--spacing-lg);
        text-align: center;
    }
    
    .stat-icon {
        margin: 0 auto var(--spacing-sm);
        width: 56px;
        height: 56px;
        font-size: 1.5rem;
    }
    
    .stat-number,
    .stat-title {
        text-align: center;
        font-size: 1.875rem;
    }
    
    .stat-content p {
        font-size: 1rem;
    }
    
    .hero-cta {
        flex-direction: column;
        gap: var(--spacing-md);
        align-items: stretch;
    }
    
    .hero-cta .btn {
        width: 100%;
        justify-content: center;
        padding: 1.125rem 1.75rem;
        font-size: 1.0625rem;
    }
    
    .hero-features {
        flex-wrap: wrap;
        gap: var(--spacing-md);
        justify-content: center;
    }
    
    .feature-item {
        font-size: 1rem;
        text-align: center;
    }
    
    /* Section Spacing */
    section {
        padding: 3rem 0;
    }
    
    .section-header {
        text-align: center;
        margin-bottom: var(--spacing-xl);
    }
    
    .section-title {
        font-size: 2rem;
        text-align: center;
        margin-bottom: var(--spacing-md);
    }
    
    .section-description {
        font-size: 1.0625rem;
        text-align: center;
        line-height: 1.6;
    }
    
    .section-badge {
        font-size: 0.9375rem;
    }
    
    /* Features Grid */
    .features-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
    
    .feature-box {
        padding: var(--spacing-xl);
        text-align: center;
    }
    
    .feature-icon {
        margin: 0 auto var(--spacing-md);
    }
    
    .feature-box h3 {
        font-size: 1.5rem;
        text-align: center;
        margin-bottom: var(--spacing-md);
    }
    
    .feature-box p {
        text-align: center;
        line-height: 1.6;
        font-size: 1.0625rem;
    }
    
    /* About Section */
    .about-heading {
        font-size: 1.75rem;
        text-align: center;
    }
    
    .about-text-side {
        text-align: center;
    }
    
    .about-text-side p {
        text-align: center;
        line-height: 1.6;
        margin-bottom: var(--spacing-md);
        font-size: 1.0625rem;
    }
    
    .image-frame {
        min-height: 350px;
        margin-bottom: var(--spacing-lg);
    }
    
    .image-frame img {
        min-height: 350px;
    }
    
    .highlight-item {
        padding: var(--spacing-md);
        text-align: center;
    }
    
    .highlight-item i {
        margin: 0 auto var(--spacing-sm);
    }
    
    .highlight-item h4 {
        text-align: center;
        margin-bottom: var(--spacing-xs);
    }
    
    .highlight-item p {
        text-align: center;
        line-height: 1.5;
    }
    
    /* Services Grid */
    .services-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
    
    .service-card {
        margin: 0;
        text-align: center;
    }
    
    .service-card-body {
        text-align: center;
        padding: var(--spacing-lg);
        align-items: center;
    }
    
    .service-icon {
        margin: 0 auto var(--spacing-md);
    }
    
    .service-card h3 {
        text-align: center;
        margin-bottom: var(--spacing-md);
        font-size: 1.5rem;
    }
    
    .service-card p {
        text-align: center;
        line-height: 1.6;
        margin-bottom: var(--spacing-md);
        font-size: 1.0625rem;
    }
    
    .service-features {
        align-items: center;
        text-align: center;
    }
    
    .service-features li {
        justify-content: center;
        text-align: center;
        font-size: 1rem;
    }
    
    .package-info {
        justify-content: center;
    }
    
    .service-card .btn {
        margin: 0 auto;
    }
    
    /* CTA Section */
    .cta-inner h2 {
        font-size: 2rem;
        text-align: center;
        line-height: 1.3;
    }
    
    .cta-inner p {
        text-align: center;
        line-height: 1.6;
        font-size: 1.0625rem;
    }
    
    .cta-box {
        flex-direction: column;
        text-align: center;
        padding: var(--spacing-xl);
        align-items: center;
    }
    
    .cta-buttons {
        width: 100%;
        flex-direction: column;
        gap: var(--spacing-md);
    }
    
    .cta-buttons .btn {
        width: 100%;
        justify-content: center;
        padding: 1.125rem 1.75rem;
        font-size: 1.0625rem;
    }
    
    /* Contact Section */
    .form-row {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
    
    .form-group label {
        text-align: left;
    }
    
    .form-group input,
    .form-group textarea {
        width: 100%;
    }
    
    .contact-method {
        flex-direction: row;
        text-align: left;
        align-items: flex-start;
    }
    
    .contact-icon {
        flex-shrink: 0;
    }
    
    .method-content {
        text-align: left;
    }
    
    .contact-method h3 {
        text-align: left;
        margin-bottom: var(--spacing-sm);
    }
    
    .contact-method p,
    .contact-method a {
        text-align: left;
    }
    
    /* Footer */
    .footer-top {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
    }
    
    .footer-col {
        text-align: left;
    }
    
    .footer-col h4 {
        text-align: left;
    }
    
    .footer-logo {
        justify-content: flex-start;
        margin-bottom: var(--spacing-md);
    }
    
    .footer-desc {
        text-align: left;
    }
    
    .footer-links {
        text-align: left;
        align-items: flex-start;
    }
    
    .footer-link {
        text-align: left;
    }
    
    .footer-contact {
        align-items: flex-start;
    }
    
    .footer-contact li {
        justify-content: flex-start;
        text-align: left;
        flex-direction: row;
        gap: 0.75rem;
        align-items: flex-start;
    }
    
    .footer-contact i {
        margin-top: 0.25rem;
        flex-shrink: 0;
    }
    
    .footer-contact a,
    .footer-contact span {
        text-align: left;
    }
    
    .footer-social {
        justify-content: flex-start;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: var(--spacing-sm);
    }
    
    .footer-bottom-links {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-bottom p {
        text-align: center;
    }
}

@media (max-width: 480px) {
    html {
        font-size: 15px;
    }
    
    .container {
        padding: 0 0.875rem;
    }
    
    /* Extra small mobile adjustments */
    .logo-img {
        height: 50px;
    }
    
    .hero {
        padding: 4rem 0 2rem;
    }
    
    .hero-title {
        font-size: 1.875rem !important;
        line-height: 1.3;
    }
    
    .hero-badge {
        font-size: 0.875rem;
        padding: 0.5rem 0.875rem;
    }
    
    .hero-subtitle {
        font-size: 1.0625rem;
        line-height: 1.6;
    }
    
    .hero-image-wrapper {
        max-height: 250px;
        height: 250px;
    }
    
    .trading-img {
        height: 250px;
        max-height: 250px;
    }
    
    .stat-card {
        flex-direction: column;
        text-align: center;
        gap: var(--spacing-sm);
        padding: var(--spacing-md);
    }
    
    .stat-icon {
        margin: 0 auto var(--spacing-xs);
    }
    
    .stat-content {
        text-align: center;
    }
    
    .stat-number,
    .stat-title {
        font-size: 1.5rem;
        text-align: center;
    }
    
    .section-title {
        font-size: 1.75rem;
        text-align: center;
        line-height: 1.3;
    }
    
    .section-description {
        font-size: 1rem;
        text-align: center;
    }
    
    .section-badge {
        font-size: 0.875rem;
    }
    
    .feature-box {
        padding: var(--spacing-lg);
        text-align: center;
    }
    
    .feature-box-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        margin: 0 auto var(--spacing-md);
    }
    
    .feature-box h3 {
        font-size: 1.25rem;
        text-align: center;
        margin-bottom: var(--spacing-sm);
    }
    
    .feature-box p {
        font-size: 1rem;
        text-align: center;
        line-height: 1.5;
    }
    
    .image-frame {
        min-height: 300px;
    }
    
    .image-frame img {
        min-height: 300px;
    }
    
    .floating-card {
        display: none;
    }
    
    .service-card-header {
        padding: var(--spacing-lg);
    }
    
    .service-card-body {
        text-align: center;
    }
    
    .service-icon {
        margin: 0 auto var(--spacing-md);
    }
    
    .service-card h3 {
        font-size: 1.25rem;
        text-align: center;
    }
    
    .service-card p {
        font-size: 1rem;
        text-align: center;
        line-height: 1.5;
    }
    
    .service-features {
        align-items: center;
    }
    
    .service-features li {
        font-size: 0.9375rem;
        justify-content: center;
        text-align: center;
    }
    
    .package-info {
        justify-content: center;
    }
    
    .cta-icon-large {
        width: 60px;
        height: 60px;
        font-size: 1.75rem;
    }
    
    .btn {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
    
    .btn-large {
        padding: 1.125rem 1.75rem;
        font-size: 1.0625rem;
    }
    
    .back-to-top {
        width: 45px;
        height: 45px;
        bottom: 5.5rem;
        right: 1.5rem;
        font-size: 1.125rem;
    }
    
    .cta-icon-large {
        width: 60px;
        height: 60px;
        font-size: 1.75rem;
    }
}

@media print {
    .header,
    .back-to-top,
    .hamburger,
    #preloader {
        display: none !important;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .container {
        max-width: 100%;
    }
}
