/* ============================================
   CSS VARIABLES - THEME COLORS
   ============================================ */

:root {
    --midnight-navy: #0a1628;
    --deep-navy: #0f1d35;
    --dark-navy: #162339;
    --silver: #c0c0c0;
    --platinum: #e5e4e2;
    --emerald-green: #10b981;
    --crimson-red: #ef4444;
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.1);
    --glow-primary: rgba(16, 185, 129, 0.3);
    --glow-danger: rgba(239, 68, 68, 0.3);
    --text-primary: #e5e4e2;
    --text-secondary: rgba(255, 255, 255, 0.8);
    --text-muted: rgba(255, 255, 255, 0.6);
    --text-faded: rgba(255, 255, 255, 0.5);
    --text-light: rgba(255, 255, 255, 0.7);
    --text-placeholder: rgba(255, 255, 255, 0.4);
    --nav-bg: rgba(10, 22, 40, 0.8);
    --nav-bg-scrolled: rgba(10, 22, 40, 0.95);
    --glass-hover-bg: rgba(255, 255, 255, 0.05);
    --glass-hover-border: rgba(255, 255, 255, 0.15);
    --btn-outline-border: rgba(255, 255, 255, 0.3);
    --btn-outline-text: #ffffff;
    --btn-outline-hover-bg: rgba(255, 255, 255, 0.1);
    --nav-link-active: #10b981;
}

.light-theme {
    --midnight-navy: #f9fafb;
    --deep-navy: #ffffff;
    --dark-navy: #f3f4f6;
    --silver: #4b5563;
    --platinum: #1f2937;
    --emerald-green: #059669;
    --crimson-red: #dc2626;
    --glass-bg: rgba(0, 0, 0, 0.02);
    --glass-border: rgba(0, 0, 0, 0.08);
    --glow-primary: rgba(5, 150, 105, 0.2);
    --glow-danger: rgba(220, 38, 38, 0.2);
    --text-primary: #1f2937;
    --text-secondary: rgba(0, 0, 0, 0.8);
    --text-muted: rgba(0, 0, 0, 0.6);
    --text-faded: rgba(0, 0, 0, 0.5);
    --text-light: rgba(0, 0, 0, 0.7);
    --text-placeholder: rgba(0, 0, 0, 0.4);
    --nav-bg: rgba(249, 250, 251, 0.8);
    --nav-bg-scrolled: rgba(255, 255, 255, 0.95);
    --glass-hover-bg: rgba(0, 0, 0, 0.05);
    --glass-hover-border: rgba(0, 0, 0, 0.15);
    --btn-outline-border: rgba(0, 0, 0, 0.3);
    --btn-outline-text: #1f2937;
    --btn-outline-hover-bg: rgba(0, 0, 0, 0.1);
    --nav-link-active: #047857;
}

.dark-theme {
    --midnight-navy: #0a1628;
    --deep-navy: #0f1d35;
    --dark-navy: #162339;
    --silver: #c0c0c0;
    --platinum: #e5e4e2;
    --emerald-green: #10b981;
    --crimson-red: #ef4444;
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.1);
    --glow-primary: rgba(16, 185, 129, 0.3);
    --glow-danger: rgba(239, 68, 68, 0.3);
    --text-primary: #e5e4e2;
    --text-secondary: rgba(255, 255, 255, 0.8);
    --text-muted: rgba(255, 255, 255, 0.6);
    --text-faded: rgba(255, 255, 255, 0.5);
    --text-light: rgba(255, 255, 255, 0.7);
    --text-placeholder: rgba(255, 255, 255, 0.4);
    --nav-bg: rgba(10, 22, 40, 0.8);
    --nav-bg-scrolled: rgba(10, 22, 40, 0.95);
    --glass-hover-bg: rgba(255, 255, 255, 0.05);
    --glass-hover-border: rgba(255, 255, 255, 0.15);
    --btn-outline-border: rgba(255, 255, 255, 0.3);
    --btn-outline-text: #ffffff;
    --btn-outline-hover-bg: rgba(255, 255, 255, 0.1);
    --nav-link-active: #10b981;
}

/* ============================================
   GLOBAL STYLES
   ============================================ */

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

body {
    font-family: 'Inter', sans-serif;
    background: var(--midnight-navy);
    color: var(--platinum);
    overflow-x: hidden;
    line-height: 1.6;
    transition: background 0.3s ease, color 0.3s ease;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

/* ============================================
   NAVBAR START
   ============================================ */

.glass-nav {
    background: var(--nav-bg);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    padding: 0.4rem 0;
    transition: all 0.3s ease;
}

.glass-nav.scrolled {
    background: var(--nav-bg-scrolled);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Logo Styling */
.navbar-logo {
    height: 40px;
    width: auto;
    transition: opacity 0.3s ease;
}

.logo-light {
    display: none;
}

.logo-dark {
    display: inline-block;
}

.light-theme .logo-light {
    display: inline-block;
}

.light-theme .logo-dark {
    display: none;
}

.navbar-brand {
    display: flex;
    align-items: center;
}

.navbar-brand .logo-text {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--platinum) 0%, var(--silver) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-dot {
    color: var(--emerald-green);
    text-shadow: 0 0 20px var(--glow-primary);
}

/* Nav Links */
.nav-link {
    color: var(--text-secondary);
    font-weight: 500;
    padding: 0.5rem 1rem;
    position: relative;
    transition: all 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--nav-link-active) !important;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 80%;
    height: 2px;
    background: var(--nav-link-active);
    transition: transform 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    transform: translateX(-50%) scaleX(1);
}

/* Mobile Navbar Toggle */
.navbar-toggler {
    border-color: var(--text-secondary);
    /*padding: 0.5rem 0.75rem;*/
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 0.25rem rgba(16, 185, 129, 0.25);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 0.95)' stroke-linecap='round' stroke-width='2.5' d='M6 8h18M6 15h18M6 22h18'/%3e%3c/svg%3e");
}

.light-theme .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(0, 0, 0, 0.85)' stroke-linecap='round' stroke-width='2.5' d='M6 8h18M6 15h18M6 22h18'/%3e%3c/svg%3e");
}

.light-theme .navbar-toggler {
    border-color: rgba(0, 0, 0, 0.3);
}

/* ============================================
   NAVBAR END
   ============================================ */

/* ============================================
   BUTTONS START
   ============================================ */

.btn {
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary-glow {
    background: linear-gradient(135deg, var(--emerald-green) 0%, #059669 100%);
    color: white;
    /*box-shadow: 0 0 20px var(--glow-primary);*/
    border: 1px solid var(--emerald-green);
}

.btn-primary-glow:hover {
    transform: translateY(-2px);
    /*box-shadow: 0 5px 30px var(--glow-primary);*/
    color: white;
}

.btn-outline-light {
    border: 1px solid var(--btn-outline-border);
    color: var(--btn-outline-text);
    background: transparent;
}

.btn-outline-light:hover {
    background: var(--btn-outline-hover-bg);
    border-color: var(--emerald-green);
    color: var(--emerald-green);
    /*box-shadow: 0 0 20px var(--glow-primary);*/
}

/* ============================================
   BUTTONS END
   ============================================ */

/* ============================================
   GLASS CARDS START
   ============================================ */

.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.4s ease;
}

.glass-card:hover {
    background: var(--glass-hover-bg);
    border-color: var(--glass-hover-border);
    transform: translateY(-5px);
    /*box-shadow: 0 20px 60px rgba(16, 185, 129, 0.1);*/
}

/* ============================================
   GLASS CARDS END
   ============================================ */

/* ============================================
   HERO SECTION - Styles in hero.php
   ============================================ */

/* ============================================
   TICKER SECTION START
   ============================================ */

.ticker-container {
    padding: 1.5rem;
    overflow: hidden;
}

.ticker-wrapper {
    display: flex;
    gap: 3rem;
    animation: ticker 30s linear infinite;
}

@keyframes ticker {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.ticker-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    white-space: nowrap;
}

.ticker-symbol {
    font-weight: 700;
    font-size: 1rem;
}

.ticker-price {
    font-weight: 600;
}

.ticker-change {
    font-size: 0.875rem;
}

/* ============================================
   TICKER SECTION END
   ============================================ */

/* ============================================
   SECTION HEADERS START
   ============================================ */

.section-header {
    margin-bottom: 3rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-muted);
}

/* ============================================
   SECTION HEADERS END
   ============================================ */

/* ============================================
   FEATURE CARDS START
   ============================================ */

.feature-card {
    text-align: center;
    padding: 2.5rem 1.5rem;
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(16, 185, 129, 0.05) 100%);
    border: 1px solid var(--emerald-green);
    border-radius: 16px;
    font-size: 2rem;
    color: var(--emerald-green);
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.feature-text {
    color: var(--text-light);
    font-size: 0.95rem;
}

.chart-feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 1rem;
}

/* ============================================
   FEATURE CARDS END
   ============================================ */

/* ============================================
   CHART MOCKUP START
   ============================================ */

.chart-mockup {
    padding: 2rem;
}

.chart-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 1rem;
}

.chart-placeholder {
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 2rem 0;
}

.chart-controls {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
}

/* ============================================
   CHART MOCKUP END
   ============================================ */

/* ============================================
   ACCOUNT CARDS START
   ============================================ */

.account-card {
    padding: 2.5rem;
    text-align: center;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.account-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: linear-gradient(135deg, var(--emerald-green) 0%, #059669 100%);
    color: white;
    padding: 0.375rem 0.875rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
}

.account-name {
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.account-price {
    margin: 2rem 0;
}

.price-amount {
    font-size: 3rem;
    font-weight: 800;
    color: var(--emerald-green);
}

.price-label {
    font-size: 0.875rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.account-features {
    list-style: none;
    text-align: left;
    margin: 2rem 0;
}

.account-features li {
    display: flex;
    align-items: center;
    margin-bottom: 0.875rem;
    font-size: 0.95rem;
}

.account-features i {
    margin-right: 0.75rem;
    font-size: 1.25rem;
}

.account-featured {
    border: 2px solid var(--emerald-green);
    box-shadow: 0 0 40px rgba(16, 185, 129, 0.2);
    transform: scale(1.05);
}

/* ============================================
   ACCOUNT CARDS END
   ============================================ */

/* ============================================
   TESTIMONIALS START
   ============================================ */

.testimonial-card {
    padding: 2rem;
    height: 100%;
}

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

.testimonial-text {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

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

.author-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--emerald-green) 0%, #059669 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: white;
}

.author-name {
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.author-role {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-bottom: 0;
}

/* ============================================
   TESTIMONIALS END
   ============================================ */

/* ============================================
   CTA SECTION START
   ============================================ */

.cta-container {
    padding: 3rem;
    text-align: center;
}

.cta-title {
    font-size: 2rem;
    font-weight: 800;
}

.cta-text {
    font-size: 1.125rem;
    color: var(--text-light);
}

/* ============================================
   CTA SECTION END
   ============================================ */

/* ============================================
   PAGE HERO START
   ============================================ */

.page-hero {
    padding: 150px 0 80px;
    text-align: center;
}

.page-title {
    font-size: 3.5rem;
    font-weight: 800;
}

.page-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
}

/* ============================================
   PAGE HERO END
   ============================================ */

/* ============================================
   MARKET CARDS START
   ============================================ */

.market-card {
    padding: 1.5rem;
}

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

.market-symbol {
    font-size: 1.5rem;
    font-weight: 700;
}

.market-name {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.market-price {
    text-align: right;
}

.price-value {
    font-size: 1.75rem;
    font-weight: 700;
}

.price-change {
    font-size: 0.875rem;
}

.market-details {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.detail-label {
    display: block;
    font-size: 0.75rem;
    color: var(--text-faded);
    margin-bottom: 0.25rem;
}

.detail-value {
    display: block;
    font-weight: 700;
    color: var(--text-primary);
}

/* ============================================
   MARKET CARDS END
   ============================================ */

/* ============================================
   CATEGORY SECTION START
   ============================================ */

.category-icon {
    width: 60px;
    height: 60px;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid var(--emerald-green);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: var(--emerald-green);
}

.category-title {
    font-size: 2rem;
    font-weight: 700;
}

.category-subtitle {
    color: var(--text-muted);
}

/* ============================================
   CATEGORY SECTION END
   ============================================ */

/* ============================================
   ACCOUNT TYPE DETAILED CARDS START
   ============================================ */

.account-card-detailed {
    padding: 2.5rem;
    position: relative;
    display: flex;
    flex-direction: column;
}

.account-header-detailed {
    margin-bottom: 2rem;
}

.account-name-detailed {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.account-description {
    color: var(--text-light);
}

.account-pricing {
    text-align: center;
    padding: 2rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.price-tag {
    margin-bottom: 0.5rem;
}

.currency {
    font-size: 1.5rem;
    color: var(--emerald-green);
}

.amount {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--emerald-green);
}

.account-specs {
    padding: 2rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.spec-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
}

.spec-label {
    color: var(--text-muted);
}

.spec-value {
    font-weight: 700;
}

.account-features-detailed {
    padding: 2rem 0;
    flex-grow: 1;
}

.features-title {
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.features-list {
    list-style: none;
}

.features-list li {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.features-list i {
    margin-right: 0.75rem;
    font-size: 1.25rem;
}

.account-footer {
    padding-top: 1.5rem;
}

.account-featured-detailed {
    border: 2px solid var(--emerald-green);
    box-shadow: 0 0 40px rgba(16, 185, 129, 0.2);
}

.featured-badge {
    position: absolute;
    top: -1rem;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--emerald-green) 0%, #059669 100%);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 700;
    white-space: nowrap;
}

/* ============================================
   ACCOUNT TYPE DETAILED CARDS END
   ============================================ */

/* ============================================
   COMPARISON TABLE START
   ============================================ */

.comparison-table-section {
    margin-top: 5rem;
}

.comparison-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    overflow: hidden;
}

.comparison-table thead tr {
    background: rgba(16, 185, 129, 0.1);
}

.comparison-table th {
    padding: 1.25rem;
    font-weight: 700;
    text-align: center;
    border-bottom: 1px solid var(--glass-border);
}

.comparison-table td {
    padding: 1.25rem;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.comparison-table tbody tr:hover {
    background: rgba(255, 255, 255, 0.02);
}

.featured-column {
    background: rgba(16, 185, 129, 0.05);
}

/* ============================================
   COMPARISON TABLE END
   ============================================ */

/* ============================================
   PLATFORM MOCKUP START
   ============================================ */

.platform-visual {
    padding: 2rem;
}

.platform-mockup {
    background: rgba(10, 22, 40, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    overflow: hidden;
}

.mockup-header {
    background: rgba(255, 255, 255, 0.05);
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.mockup-controls {
    display: flex;
    gap: 0.5rem;
}

.mockup-controls span {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
}

.mockup-content {
    padding: 2rem;
}

.mock-chart {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 1rem;
}

.mock-toolbar {
    display: flex;
    gap: 0.5rem;
}

.tool-item {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
}

.tool-item.active {
    background: rgba(16, 185, 129, 0.2);
    border: 1px solid var(--emerald-green);
}

.web-trader-layout {
    display: flex;
    gap: 1rem;
}

.web-sidebar {
    width: 60px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 6px;
}

.web-main {
    flex: 1;
}

/* ============================================
   PLATFORM MOCKUP END
   ============================================ */

/* ============================================
   PLATFORM DETAILS START
   ============================================ */

.platform-badge {
    display: inline-block;
    background: rgba(16, 185, 129, 0.1);
    color: var(--emerald-green);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
}

.platform-title {
    font-size: 2.5rem;
    font-weight: 800;
}

.platform-description {
    font-size: 1.125rem;
    color: var(--text-light);
}

.feature-row {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.platform-image-container {
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    overflow: hidden;
}

.light-theme .platform-image-container {
    background: rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.platform-screenshot {
    border-radius: 8px;
    width: 100%;
    height: auto;
    display: block;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.light-theme .platform-screenshot {
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

/* ============================================
   PLATFORM DETAILS END
   ============================================ */

/* ============================================
   MOBILE APP SECTION START
   ============================================ */

.mobile-app-card {
    padding: 2.5rem;
    text-align: center;
}

.app-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(16, 185, 129, 0.05) 100%);
    border: 1px solid var(--emerald-green);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--emerald-green);
}

.app-title {
    font-size: 1.75rem;
    font-weight: 700;
}

.app-description {
    color: var(--text-light);
}

.app-features {
    list-style: none;
    text-align: left;
}

.app-features li {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
}

.app-features i {
    margin-right: 0.75rem;
    font-size: 1.25rem;
}

/* ============================================
   MOBILE APP SECTION END
   ============================================ */

/* ============================================
   INFO CARDS START
   ============================================ */

.info-card {
    padding: 2.5rem;
}

.info-icon {
    font-size: 3rem;
}

.info-title {
    font-size: 1.5rem;
    font-weight: 700;
}

.info-text {
    color: var(--text-light);
}

/* ============================================
   INFO CARDS END
   ============================================ */

/* ============================================
   PAYMENT METHODS START
   ============================================ */

.method-category-title {
    font-size: 1.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
}

.payment-method-card {
    padding: 2rem;
}

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

.method-icon {
    width: 60px;
    height: 60px;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid var(--emerald-green);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--emerald-green);
}

.method-name {
    font-size: 1.25rem;
    font-weight: 700;
}

.method-details {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

/* ============================================
   PAYMENT METHODS END
   ============================================ */

/* ============================================
   PROCESS STEPS START
   ============================================ */

.process-step {
    padding: 2rem;
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--emerald-green) 0%, #059669 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
}

.step-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.step-text {
    color: var(--text-light);
}

/* ============================================
   PROCESS STEPS END
   ============================================ */

/* ============================================
   CONTACT PAGE START
   ============================================ */

.contact-info-title {
    font-size: 2rem;
    font-weight: 800;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--glow-primary);
    border: 1px solid var(--emerald-green);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--emerald-green);
    flex-shrink: 0;
}

.contact-item-title {
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.contact-item-text {
    color: var(--text-light);
    margin-bottom: 0;
}

.contact-item-text a {
    color: var(--emerald-green);
}

.contact-item-text a:hover {
    text-decoration: underline;
}

.contact-hours {
    background: var(--glow-primary);
}

.hours-item {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--glass-border);
    color: var(--text-secondary);
}

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

.hours-item span:first-child {
    color: var(--text-secondary);
}

.dark-theme .hours-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.light-theme .hours-item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

/* ============================================
   CONTACT PAGE END
   ============================================ */

/* ============================================
   CONTACT FORM START
   ============================================ */

.contact-form-container {
    padding: 2.5rem;
}

.form-title {
    font-size: 2rem;
    font-weight: 800;
}

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

.form-control {
    width: 100%;
    padding: 0.875rem 1.25rem;
    background: var(--glass-bg);
    border: 1px solid var(--emerald-green);
    border-radius: 8px;
    color: var(--text-primary);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.dark-theme .form-control {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid #10b981;
    color: white;
}

.light-theme .form-control {
    background: rgba(0, 0, 0, 0.03);
    border: 1px solid #059669;
    color: #1f2937;
}

.form-control:focus {
    outline: none;
    border-color: var(--emerald-green);
    box-shadow: 0 0 0 3px var(--glow-primary);
}

.dark-theme .form-control:focus {
    background: rgba(255, 255, 255, 0.08);
}

.light-theme .form-control:focus {
    background: rgba(0, 0, 0, 0.05);
}

.form-control::placeholder {
    color: var(--text-placeholder);
    opacity: 0.7;
}

.dark-theme .form-control::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.light-theme .form-control::placeholder {
    color: rgba(0, 0, 0, 0.5);
}

.form-control option {
    background: var(--deep-navy);
    color: var(--text-primary);
    padding: 0.5rem;
}

.light-theme .form-control option {
    background: #ffffff;
    color: #1f2937;
}

.dark-theme .form-control option {
    background: #0f1d35;
    color: #e5e4e2;
}

.form-check-input {
    width: 1.25rem;
    height: 1.25rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    cursor: pointer;
}

.dark-theme .form-check-input {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.light-theme .form-check-input {
    background: rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.2);
}

.form-check-input:checked {
    background-color: var(--emerald-green);
    border-color: var(--emerald-green);
}

.form-check-input:focus {
    box-shadow: 0 0 0 3px var(--glow-primary);
}

.form-check-label {
    color: var(--text-secondary);
}

.form-check-label a {
    color: var(--emerald-green);
    text-decoration: none;
    font-weight: 600;
}

.form-check-label a:hover {
    text-decoration: underline;
}

/* ============================================
   CONTACT FORM END
   ============================================ */

/* ============================================
   ACCORDIONS START
   ============================================ */

.custom-accordion .accordion-item {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
}

.custom-accordion .accordion-button {
    background: transparent;
    color: white;
    font-weight: 600;
    font-size: 1.125rem;
    border: none;
    padding: 1.5rem;
}

.custom-accordion .accordion-button:not(.collapsed) {
    background: rgba(16, 185, 129, 0.1);
    color: var(--emerald-green);
}

.custom-accordion .accordion-button.collapsed {
    color: var(--emerald-green);
}

.custom-accordion .accordion-button:focus {
    box-shadow: none;
}

.custom-accordion .accordion-button::after {
    filter: brightness(0) invert(1);
}

.custom-accordion .accordion-body {
    background: transparent;
    color: var(--text-secondary);
    padding: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* FAQ Accordion */
.faq-accordion .accordion-item {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
}

.faq-accordion .accordion-button {
    background: transparent;
    color: white;
    font-weight: 600;
    font-size: 1.125rem;
    border: none;
    padding: 1.5rem;
}

.faq-accordion .accordion-button:not(.collapsed) {
    background: rgba(16, 185, 129, 0.1);
    color: var(--emerald-green);
}

.faq-accordion .accordion-button.collapsed {
    color: var(--emerald-green);
}

.faq-accordion .accordion-button:focus {
    box-shadow: none;
}

.faq-accordion .accordion-button::after {
    filter: brightness(0) invert(1);
}

.faq-accordion .accordion-body {
    background: transparent;
    color: var(--text-secondary);
    padding: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.light-theme .faq-accordion .accordion-button {
    color: #1f2937;
}

.light-theme .faq-accordion .accordion-button.collapsed {
    color: #059669;
}

.light-theme .faq-accordion .accordion-button:not(.collapsed) {
    background: rgba(5, 150, 105, 0.1);
    color: #047857;
}

.light-theme .faq-accordion .accordion-button::after {
    filter: brightness(0) saturate(100%) invert(38%) sepia(96%) saturate(500%) hue-rotate(120deg) brightness(95%) contrast(95%);
}

.dark-theme .faq-accordion .accordion-button {
    color: white;
}

.dark-theme .faq-accordion .accordion-button.collapsed {
    color: #10b981;
}

.dark-theme .faq-accordion .accordion-button:not(.collapsed) {
    color: #10b981;
}

.dark-theme .faq-accordion .accordion-button::after {
    filter: brightness(0) invert(1);
}

.dark-theme .faq-accordion .accordion-button.collapsed::after {
    filter: brightness(0) saturate(100%) invert(69%) sepia(56%) saturate(428%) hue-rotate(101deg) brightness(95%) contrast(87%);
}

/* ============================================
   ACCORDIONS END
   ============================================ */

/* ============================================
   FOOTER START
   ============================================ */

.footer-dark {
    background: var(--deep-navy);
    padding: 4rem 0 2rem;
    margin-top: 5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand .logo-text-large {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--platinum) 0%, var(--silver) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-title {
    font-weight: 700;
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
}

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

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

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

.footer-links a:hover {
    color: var(--emerald-green);
    padding-left: 5px;
}

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

.social-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: var(--emerald-green);
    border-color: var(--emerald-green);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 20px var(--glow-primary);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.text-light-muted {
    color: var(--text-muted);
}

.risk-warning {
    background: rgba(239, 68, 68, 0.05);
    border-top: 1px solid rgba(239, 68, 68, 0.2);
    padding: 1.5rem 0;
}

/* ============================================
   FOOTER END
   ============================================ */

/* ============================================
   RESPONSIVE MEDIA QUERIES
   ============================================ */

/* Mobile Navbar Height - max-width: 991px */
@media (max-width: 991px) {
    .section-title {
        font-size: 2rem;
    }

    .page-title {
        font-size: 2.5rem;
    }

    .account-featured {
        transform: scale(1);
    }

    /* Navbar mobile adjustments */
    .navbar-logo {
        height: 35px;
    }

    .navbar-brand .logo-text {
        font-size: 1.5rem;
    }
}

/* Mobile Navbar Height - max-width: 767px */
@media (max-width: 767px) {
    .section-title {
        font-size: 1.75rem;
    }

    .market-details {
        grid-template-columns: 1fr;
    }

    /* Navbar mobile adjustments */
    .glass-nav {
        padding: 0.75rem 0;
    }

    .navbar-logo {
        height: 32px;
    }

    .navbar-brand .logo-text {
        font-size: 1.35rem;
    }
}
