/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #e2e8f0;
    background-color: #0f172a;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(148, 163, 184, 0.1);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-logo h2 {
    color: #60a5fa;
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #60a5fa, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.crypto-accent {
    color: #10b981;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #94a3b8;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: #60a5fa;
    background-color: rgba(96, 165, 250, 0.1);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #60a5fa, #3b82f6);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 80%;
}

/* Theme Toggle */
.theme-toggle {
    background: transparent;
    border: 2px solid rgba(148, 163, 184, 0.3);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #94a3b8;
    font-size: 1.2rem;
}

.theme-toggle:hover {
    border-color: #60a5fa;
    background: rgba(96, 165, 250, 0.1);
    transform: scale(1.1);
}

.theme-toggle:active {
    transform: scale(0.95);
}

.theme-icon {
    transition: transform 0.3s ease;
}

.theme-toggle:hover .theme-icon {
    transform: rotate(20deg);
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: linear-gradient(90deg, #60a5fa, #3b82f6);
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

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

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

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

/* Sidebar Overlay */
.sidebar-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.sidebar-overlay.active {
    opacity: 1;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
    position: relative;
    color: white;
    padding: 140px 0 80px;
    text-align: center;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(96, 165, 250, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(16, 185, 129, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

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

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    background: linear-gradient(135deg, #ffffff, #e2e8f0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #cbd5e1;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #60a5fa;
    border-color: #60a5fa;
}

.btn-secondary:hover {
    background: rgba(96, 165, 250, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(96, 165, 250, 0.2);
}

/* Page Headers */
.page-header {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    padding: 120px 0 60px;
    text-align: center;
    margin-top: 70px;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 70%, rgba(96, 165, 250, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.page-header h1 {
    font-size: 2.5rem;
    color: #f1f5f9;
    margin-bottom: 1rem;
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.page-header p {
    font-size: 1.125rem;
    color: #cbd5e1;
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Sections */
.services,
.stats,
.analysis-section,
.portfolio-services,
.education-content,
.advisory-services,
.contact-section {
    padding: 80px 0;
    background-color: #0f172a;
}

.section-title {
    text-align: center;
    font-size: 2.25rem;
    color: #f1f5f9;
    margin-bottom: 3rem;
    font-weight: 700;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #60a5fa, #3b82f6);
    transform: translateX(-50%);
    border-radius: 2px;
}

/* Service Cards */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.service-card {
    background: linear-gradient(135deg, #1e293b, #334155);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid rgba(148, 163, 184, 0.1);
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(96, 165, 250, 0.05), rgba(16, 185, 129, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover::before {
    opacity: 1;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(96, 165, 250, 0.3);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.service-card h3 {
    color: #f1f5f9;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 600;
    position: relative;
    z-index: 1;
}

.service-card p {
    color: #cbd5e1;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

.card-link {
    color: #60a5fa;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
    position: relative;
    z-index: 1;
}

.card-link:hover {
    color: #3b82f6;
}

/* Stats Section */
.stats {
    background: linear-gradient(135deg, #1e293b, #334155);
    position: relative;
}

.stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 70% 30%, rgba(96, 165, 250, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 30% 70%, rgba(16, 185, 129, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    position: relative;
    z-index: 1;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(135deg, #60a5fa, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #cbd5e1;
    font-size: 1.125rem;
    font-weight: 500;
}

/* Analysis Page Styles */
.analysis-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 3rem;
    margin-bottom: 4rem;
}

.analysis-category h2 {
    color: #f1f5f9;
    margin-bottom: 2rem;
    font-size: 1.75rem;
    font-weight: 600;
}

.metrics-card {
    background: linear-gradient(135deg, #1e293b, #334155);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid rgba(148, 163, 184, 0.1);
    margin-bottom: 2rem;
    transition: all 0.3s ease;
}

.metrics-card:hover {
    border-color: rgba(96, 165, 250, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.metrics-card h3 {
    color: #f1f5f9;
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    font-weight: 600;
}

.metric-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(148, 163, 184, 0.1);
}

.metric-row:last-child {
    border-bottom: none;
}

.metric-label {
    color: #94a3b8;
    font-weight: 500;
}

.metric-value {
    font-weight: 600;
    color: #e2e8f0;
}

.metric-value.positive {
    color: #10b981;
}

.metric-value.negative {
    color: #ef4444;
}

.performance-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.performance-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: rgba(30, 41, 59, 0.5);
    border-radius: 8px;
    border: 1px solid rgba(148, 163, 184, 0.1);
    transition: all 0.3s ease;
}

.performance-item:hover {
    background: rgba(30, 41, 59, 0.8);
    border-color: rgba(96, 165, 250, 0.2);
}

.stock-symbol {
    font-weight: 700;
    color: #f1f5f9;
    font-size: 1.125rem;
}

.stock-price {
    color: #94a3b8;
    font-weight: 500;
}

.stock-change {
    font-weight: 600;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.875rem;
}

.stock-change.positive {
    color: #10b981;
    background-color: rgba(16, 185, 129, 0.1);
}

.stock-change.negative {
    color: #ef4444;
    background-color: rgba(239, 68, 68, 0.1);
}

.insights-section {
    margin-top: 4rem;
}

.insights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.insight-card {
    background: linear-gradient(135deg, #1e293b, #334155);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid rgba(148, 163, 184, 0.1);
    transition: all 0.3s ease;
}

.insight-card:hover {
    border-color: rgba(96, 165, 250, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.insight-card h3 {
    color: #f1f5f9;
    margin-bottom: 1rem;
    font-size: 1.25rem;
    font-weight: 600;
}

.insight-card p {
    color: #cbd5e1;
    line-height: 1.6;
}

/* Portfolio Page Styles */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.portfolio-service {
    background: linear-gradient(135deg, #1e293b, #334155);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid rgba(148, 163, 184, 0.1);
    transition: all 0.3s ease;
}

.portfolio-service:hover {
    border-color: rgba(96, 165, 250, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.service-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.service-header .service-icon {
    font-size: 2rem;
    margin-bottom: 0;
}

.service-header h3 {
    color: #f1f5f9;
    font-size: 1.5rem;
    font-weight: 600;
}

.service-features ul {
    list-style: none;
    padding: 0;
}

.service-features li {
    padding: 0.5rem 0;
    color: #cbd5e1;
    position: relative;
    padding-left: 1.5rem;
}

.service-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: 700;
}

.strategies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.strategy-card {
    background: linear-gradient(135deg, #1e293b, #334155);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid rgba(148, 163, 184, 0.1);
    transition: all 0.3s ease;
}

.strategy-card:hover {
    border-color: rgba(96, 165, 250, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.strategy-card h3 {
    color: #f1f5f9;
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    font-weight: 600;
}

.allocation-chart {
    margin-bottom: 1.5rem;
}

.allocation-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(148, 163, 184, 0.1);
}

.allocation-item:last-child {
    border-bottom: none;
}

.allocation-label {
    color: #e2e8f0;
    font-weight: 500;
}

.allocation-percentage {
    color: #60a5fa;
    font-weight: 700;
}

.strategy-description {
    color: #94a3b8;
    font-size: 0.9rem;
    line-height: 1.5;
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.tool-card {
    background: linear-gradient(135deg, #1e293b, #334155);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid rgba(148, 163, 184, 0.1);
    transition: all 0.3s ease;
}

.tool-card:hover {
    border-color: rgba(96, 165, 250, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.tool-card h3 {
    color: #f1f5f9;
    margin-bottom: 1rem;
    font-size: 1.25rem;
    font-weight: 600;
}

.tool-card p {
    color: #cbd5e1;
    line-height: 1.6;
}

/* Education Page Styles */
.paths-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.path-card {
    background: linear-gradient(135deg, #1e293b, #334155);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid rgba(148, 163, 184, 0.1);
    position: relative;
    transition: all 0.3s ease;
}

.path-card:hover {
    border-color: rgba(96, 165, 250, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.path-level {
    position: absolute;
    top: -10px;
    left: 2rem;
    padding: 0.25rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    color: #ffffff;
}

.beginner .path-level {
    background: linear-gradient(135deg, #10b981, #059669);
}

.intermediate .path-level {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
}

.advanced .path-level {
    background: linear-gradient(135deg, #ef4444, #dc2626);
}

.path-card h3 {
    color: #f1f5f9;
    margin: 1rem 0 1.5rem 0;
    font-size: 1.5rem;
    font-weight: 600;
}

.path-topics h4 {
    color: #e2e8f0;
    margin-bottom: 1rem;
    font-size: 1.125rem;
    font-weight: 600;
}

.path-topics ul {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.path-topics li {
    padding: 0.5rem 0;
    color: #cbd5e1;
    position: relative;
    padding-left: 1.5rem;
}

.path-topics li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #60a5fa;
    font-weight: 700;
}

.path-duration {
    color: #94a3b8;
    font-weight: 500;
    font-style: italic;
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.tip-card {
    background: linear-gradient(135deg, #1e293b, #334155);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid rgba(148, 163, 184, 0.1);
    transition: all 0.3s ease;
}

.tip-card:hover {
    border-color: rgba(96, 165, 250, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

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

.tip-category {
    background: rgba(96, 165, 250, 0.1);
    color: #60a5fa;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.tip-date {
    color: #94a3b8;
    font-size: 0.875rem;
}

.tip-card h3 {
    color: #f1f5f9;
    margin-bottom: 1rem;
    font-size: 1.25rem;
    font-weight: 600;
}

.tip-card p {
    color: #cbd5e1;
    line-height: 1.6;
}

.literacy-sections {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-bottom: 4rem;
}

.literacy-section {
    background: linear-gradient(135deg, #1e293b, #334155);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid rgba(148, 163, 184, 0.1);
    transition: all 0.3s ease;
}

.literacy-section:hover {
    border-color: rgba(96, 165, 250, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.literacy-section h3 {
    color: #f1f5f9;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    font-weight: 600;
}

.section-content h4 {
    color: #e2e8f0;
    margin: 1.5rem 0 0.5rem 0;
    font-size: 1.125rem;
    font-weight: 600;
}

.section-content h4:first-child {
    margin-top: 0;
}

.section-content p {
    color: #cbd5e1;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.insights-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.insight-item {
    background: linear-gradient(135deg, #1e293b, #334155);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid rgba(148, 163, 184, 0.1);
    position: relative;
    transition: all 0.3s ease;
}

.insight-item:hover {
    border-color: rgba(96, 165, 250, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.insight-item h3 {
    color: #f1f5f9;
    margin-bottom: 1rem;
    font-size: 1.25rem;
    font-weight: 600;
}

.insight-item p {
    color: #cbd5e1;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.insight-tag {
    position: absolute;
    top: -10px;
    right: 2rem;
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    color: #ffffff;
    padding: 0.25rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

/* Advisory Page Styles */
.advisors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.advisor-card {
    background: linear-gradient(135deg, #1e293b, #334155);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid rgba(148, 163, 184, 0.1);
    text-align: center;
    transition: all 0.3s ease;
}

.advisor-card:hover {
    border-color: rgba(96, 165, 250, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.advisor-photo {
    width: 100px;
    height: 100px;
    margin: 0 auto 1.5rem auto;
    border-radius: 50%;
    overflow: hidden;
}

.photo-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
}

.advisor-info h3 {
    color: #f1f5f9;
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
    font-weight: 600;
}

.advisor-title {
    color: #94a3b8;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.advisor-experience {
    color: #e2e8f0;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.advisor-specialties {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.specialty {
    background: rgba(96, 165, 250, 0.1);
    color: #60a5fa;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
}

.advisor-bio {
    color: #cbd5e1;
    line-height: 1.6;
    text-align: left;
}

.consultation-services {
    margin-bottom: 4rem;
}

.consultation-type {
    background: linear-gradient(135deg, #1e293b, #334155);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid rgba(148, 163, 184, 0.1);
    position: relative;
    text-align: center;
    transition: all 0.3s ease;
}

.consultation-type:hover {
    border-color: rgba(96, 165, 250, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.consultation-type.featured {
    border-color: #3b82f6;
    transform: scale(1.05);
}

.consultation-type.featured::before {
    content: "Most Popular";
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    color: #ffffff;
    padding: 0.25rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.consultation-type h3 {
    color: #f1f5f9;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 600;
}

.service-price {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #60a5fa, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
}

.service-features {
    text-align: left;
    margin-bottom: 1.5rem;
}

.service-features ul {
    list-style: none;
    padding: 0;
}

.service-features li {
    padding: 0.5rem 0;
    color: #cbd5e1;
    position: relative;
    padding-left: 1.5rem;
}

.service-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: 700;
}

.service-duration {
    color: #94a3b8;
    font-weight: 500;
    font-style: italic;
}

/* Contact Section */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info h2 {
    color: #f1f5f9;
    margin-bottom: 1.5rem;
    font-size: 2rem;
    font-weight: 600;
}

.contact-info > p {
    color: #cbd5e1;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.contact-details {
    margin-bottom: 3rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.contact-item strong {
    color: #e2e8f0;
    min-width: 120px;
}

.contact-item span {
    color: #94a3b8;
}

.consultation-process h3 {
    color: #f1f5f9;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    font-weight: 600;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.process-step {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.step-number {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h4 {
    color: #e2e8f0;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.step-content p {
    color: #cbd5e1;
    line-height: 1.5;
}

/* Contact Form */
.contact-form-container {
    background: linear-gradient(135deg, #1e293b, #334155);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid rgba(148, 163, 184, 0.1);
}

.contact-form h3 {
    color: #f1f5f9;
    margin-bottom: 2rem;
    font-size: 1.5rem;
    font-weight: 600;
    text-align: center;
}

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

.form-group label {
    display: block;
    color: #e2e8f0;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid rgba(148, 163, 184, 0.2);
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    background-color: rgba(15, 23, 42, 0.5);
    color: #e2e8f0;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #60a5fa;
    box-shadow: 0 0 0 3px rgba(96, 165, 250, 0.1);
}

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

.contact-form .btn {
    width: 100%;
    margin-top: 1rem;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #0f172a, #1e293b);
    color: #94a3b8;
    padding: 2rem 0;
    text-align: center;
    margin-top: 4rem;
    border-top: 1px solid rgba(148, 163, 184, 0.1);
}

.footer p {
    margin: 0;
}

/* Light Theme Styles */
body.light-theme {
    color: #1e293b;
    background-color: #f8fafc;
}

.light-theme .navbar {
    background: rgba(248, 250, 252, 0.95);
    border-bottom: 1px solid rgba(148, 163, 184, 0.2);
}

.light-theme .nav-logo h2 {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.light-theme .nav-link {
    color: #64748b;
}

.light-theme .nav-link:hover,
.light-theme .nav-link.active {
    color: #3b82f6;
    background-color: rgba(59, 130, 246, 0.1);
}

.light-theme .theme-toggle {
    border-color: rgba(148, 163, 184, 0.3);
    color: #64748b;
}

.light-theme .theme-toggle:hover {
    border-color: #3b82f6;
    background: rgba(59, 130, 246, 0.1);
}

.light-theme .hero {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 50%, #cbd5e1 100%);
    color: #1e293b;
}

.light-theme .hero-content h1 {
    background: linear-gradient(135deg, #1e293b, #334155);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.light-theme .hero-subtitle {
    color: #475569;
}

.light-theme .page-header {
    background: linear-gradient(135deg, #e2e8f0 0%, #cbd5e1 100%);
    color: #1e293b;
}

.light-theme .page-header h1 {
    color: #1e293b;
}

.light-theme .page-header p {
    color: #475569;
}

.light-theme .services,
.light-theme .stats,
.light-theme .analysis-section,
.light-theme .portfolio-services,
.light-theme .education-content,
.light-theme .advisory-services,
.light-theme .contact-section {
    background-color: #f8fafc;
}

.light-theme .section-title {
    color: #1e293b;
}

.light-theme .service-card,
.light-theme .metrics-card,
.light-theme .portfolio-service,
.light-theme .path-card,
.light-theme .tip-card,
.light-theme .tool-card,
.light-theme .advisor-card,
.light-theme .consultation-type,
.light-theme .insight-card,
.light-theme .strategy-card,
.light-theme .literacy-section,
.light-theme .insight-item,
.light-theme .contact-form-container {
    background: linear-gradient(135deg, #ffffff, #f1f5f9);
    border: 1px solid rgba(148, 163, 184, 0.2);
    color: #1e293b;
}

.light-theme .service-card:hover,
.light-theme .metrics-card:hover,
.light-theme .portfolio-service:hover,
.light-theme .path-card:hover,
.light-theme .tip-card:hover,
.light-theme .tool-card:hover,
.light-theme .advisor-card:hover,
.light-theme .consultation-type:hover,
.light-theme .insight-card:hover,
.light-theme .strategy-card:hover,
.light-theme .literacy-section:hover,
.light-theme .insight-item:hover {
    border-color: rgba(59, 130, 246, 0.4);
    box-shadow: 0 20px 40px rgba(59, 130, 246, 0.1);
}

.light-theme .service-card h3,
.light-theme .metrics-card h3,
.light-theme .portfolio-service h3,
.light-theme .path-card h3,
.light-theme .tip-card h3,
.light-theme .tool-card h3,
.light-theme .advisor-card h3,
.light-theme .consultation-type h3,
.light-theme .insight-card h3,
.light-theme .strategy-card h3,
.light-theme .literacy-section h3,
.light-theme .insight-item h3,
.light-theme .contact-form h3 {
    color: #1e293b;
}

.light-theme .service-card p,
.light-theme .metrics-card p,
.light-theme .portfolio-service p,
.light-theme .path-card p,
.light-theme .tip-card p,
.light-theme .tool-card p,
.light-theme .advisor-card p,
.light-theme .consultation-type p,
.light-theme .insight-card p,
.light-theme .strategy-card p,
.light-theme .literacy-section p,
.light-theme .insight-item p {
    color: #475569;
}

.light-theme .stats {
    background: linear-gradient(135deg, #e2e8f0, #cbd5e1);
}

.light-theme .metric-label,
.light-theme .allocation-label {
    color: #64748b;
}

.light-theme .metric-value,
.light-theme .allocation-percentage {
    color: #1e293b;
}

.light-theme .performance-item {
    background: rgba(248, 250, 252, 0.8);
    border: 1px solid rgba(148, 163, 184, 0.2);
}

.light-theme .performance-item:hover {
    background: rgba(248, 250, 252, 1);
    border-color: rgba(59, 130, 246, 0.3);
}

.light-theme .stock-symbol {
    color: #1e293b;
}

.light-theme .stock-price {
    color: #64748b;
}

.light-theme .footer {
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    color: #64748b;
    border-top: 1px solid rgba(148, 163, 184, 0.2);
}

.light-theme .form-group input,
.light-theme .form-group select,
.light-theme .form-group textarea {
    background-color: rgba(248, 250, 252, 0.8);
    border: 1px solid rgba(148, 163, 184, 0.3);
    color: #1e293b;
}

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

.light-theme .form-group label {
    color: #1e293b;
}

.light-theme .contact-info h2,
.light-theme .contact-info h3 {
    color: #1e293b;
}

.light-theme .contact-info > p {
    color: #475569;
}

.light-theme .contact-item strong {
    color: #1e293b;
}

.light-theme .contact-item span {
    color: #64748b;
}

.light-theme .step-content h4 {
    color: #1e293b;
}

.light-theme .step-content p {
    color: #475569;
}

.light-theme .nav-menu {
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
}

.light-theme .nav-link {
    border-bottom: 1px solid rgba(148, 163, 184, 0.2);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 280px;
        height: 100vh;
        background: linear-gradient(135deg, #0f172a, #1e293b);
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        padding: 80px 0 20px 0;
        box-shadow: 2px 0 20px rgba(0, 0, 0, 0.3);
        transition: left 0.3s ease;
        z-index: 1000;
        overflow-y: auto;
        border-right: 1px solid rgba(148, 163, 184, 0.1);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-item {
        width: 100%;
        margin: 0;
    }

    .nav-link {
        display: block;
        width: 100%;
        padding: 1rem 2rem;
        border-radius: 0;
        border-bottom: 1px solid rgba(148, 163, 184, 0.1);
        font-size: 1.125rem;
    }

    .nav-link:hover,
    .nav-link.active {
        background: rgba(96, 165, 250, 0.1);
        color: #60a5fa;
    }

    .nav-link::after {
        display: none;
    }

    .sidebar-overlay {
        display: block;
    }

    .nav-container {
        height: auto;
        padding: 1rem 20px;
    }

    .hero {
        padding: 180px 0 60px;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

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

    .page-header {
        padding: 160px 0 40px;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .services,
    .stats,
    .analysis-section,
    .portfolio-services,
    .education-content,
    .advisory-services,
    .contact-section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 1.875rem;
    }

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

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .consultation-type.featured {
        transform: none;
    }

    .process-steps {
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .nav-container {
        padding: 1rem 15px;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.125rem;
    }

    .service-card,
    .metrics-card,
    .portfolio-service,
    .path-card,
    .tip-card,
    .tool-card,
    .advisor-card,
    .consultation-type {
        padding: 1.5rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .services-grid,
    .analysis-grid,
    .portfolio-grid,
    .strategies-grid,
    .tools-grid,
    .paths-grid,
    .tips-grid,
    .advisors-grid,
    .services-grid {
        grid-template-columns: 1fr;
    }
}