/* Dark Blue & Black Theme for RoadMap */

:root {
    --wt-primary-color: #00bcd4;
    /* Cyan primary */
    --wt-primary-light: #4dd0e1;
    --wt-primary-dark: #0097a7;
    --wt-secondary-color: #070b14;
    /* Deep dark navy/black */
    --wt-accent-color: #00e5ff;
    /* Bright cyan accent */

    --wt-light-gray: #121826;
    /* Dark gray blue for panels */
    --wt-gray: #8a9bb3;
    /* Muted blue gray for subtext */
    --wt-dark-gray: #e2e8f0;
    /* Light gray for general text */
    --wt-white: #ffffff;
    /* Pure white */

    /* Force dark glass variables locally */
    --glass-bg: rgba(15, 23, 42, 0.7);
    --glass-border: rgba(255, 255, 255, 0.1);
    --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.4);
}

body {
    background: #020617 !important; /* Dark slate base */
    color: var(--wt-dark-gray);
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(0, 188, 212, 0.05) 0%, transparent 70%);
    pointer-events: none;
    z-index: -1;
}

.navbar {
    background: transparent;
    border-bottom: 1px solid rgba(0, 188, 212, 0.3);
}

.navbar.scrolled {
    background: rgba(7, 11, 20, 0.4);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    box-shadow: 0 4px 15px rgba(0, 188, 212, 0.1);
    border-bottom: 1px solid rgba(0, 188, 212, 0.3);
}

.nav-logo span {
    color: var(--wt-primary-color);
}

.nav-link {
    color: var(--wt-dark-gray);
}

.nav-link::after {
    background: var(--wt-primary-color);
}

.nav-link:hover,
.nav-link.active {
    color: var(--wt-accent-color);
}

.btn-primary {
    background: linear-gradient(135deg, var(--wt-primary-dark), var(--wt-primary-color));
    color: var(--wt-white);
    box-shadow: 0 4px 15px rgba(0, 188, 212, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--wt-primary-color);
    border: 2px solid var(--wt-primary-color);
}

.btn-secondary:hover {
    background: var(--wt-primary-color);
    color: var(--wt-white);
    box-shadow: 0 4px 15px rgba(0, 188, 212, 0.3);
}

.hero {
    background: transparent;
}

.hero-name span {
    color: var(--wt-white);
}

.hero-subtitle {
    color: var(--wt-accent-color);
}

.hero-description {
    color: var(--wt-gray);
}

.section-title {
    color: #fff !important;
}

.section-title::after {
    background: linear-gradient(90deg, var(--wt-primary-color), var(--wt-accent-color));
}

.hero-title span span {
    color: #fff !important;
}

.hero-description {
    color: rgba(255, 255, 255, 0.7) !important;
}

.roadmap-why-section {
    background: transparent;
    padding: 3rem 0;
}

.why-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.why-intro .section-subtitle {
    color: var(--wt-gray);
    font-size: 1.1rem;
    line-height: 1.7;
}

.section-title {
    color: #fff !important;
}

.section-subtitle {
    color: rgba(255, 255, 255, 0.7) !important;
}

.why-cards-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.why-card {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    text-align: center;
    box-shadow: var(--glass-shadow);
    transition: all var(--transition-normal);
    border: 1px solid var(--glass-border);
}

.why-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 188, 212, 0.15);
    border-color: var(--wt-primary-color);
}

.why-card-icon {
    font-size: 3rem;
    color: var(--wt-primary-color);
    margin-bottom: 1.5rem;
    display: inline-block;
    background: rgba(0, 188, 212, 0.1);
    width: 80px;
    height: 80px;
    line-height: 80px;
    border-radius: 50%;
}

.why-card-title {
    color: var(--wt-white);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.why-card-description {
    color: var(--wt-gray);
    font-size: 1rem;
    line-height: 1.6;
}

.why-card-description a {
    color: var(--wt-primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease, text-decoration 0.3s ease;
}

.why-card-description a:hover {
    color: var(--wt-accent-color);
    text-decoration: underline;
}

/* FOOTER */
.main-footer {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    color: var(--wt-gray);
    border-top: 1px solid var(--glass-border);
}

.main-footer::before {
    background: linear-gradient(90deg, var(--wt-primary-dark), var(--wt-primary-color), var(--wt-accent-color));
}

.footer-col h4 {
    color: var(--wt-white);
}

.footer-col h4::after {
    background: var(--wt-primary-color);
}

.footer-links a {
    color: var(--wt-gray);
}

.footer-links a:hover {
    color: var(--wt-primary-light);
}

.footer-links a i {
    color: var(--wt-primary-color);
}

.social-link {
    color: var(--wt-dark-gray);
    background: var(--wt-light-gray);
}

.social-link:hover {
    background: var(--wt-primary-color);
    color: var(--wt-white);
    box-shadow: 0 5px 15px rgba(0, 188, 212, 0.3);
}

.hamburger .bar {
    background-color: var(--wt-white);
}

.navbar.scrolled {
    background: rgba(7, 11, 20, 0.98);
    box-shadow: 0 4px 15px rgba(0, 188, 212, 0.1);
    border-bottom: 1px solid rgba(0, 188, 212, 0.3);
}