/* =========================================
   Global Variables & Reset
   ========================================= */
:root {
    /* Color Palette - Sleek Dark Mode with Vibrant Accents */
    --bg-dark: #0a0a0f;           /* Very deep charcoal/almost black */
    --bg-surface: #14141e;        /* Slightly lighter surface for cards */
    --accent-blue: #00f0ff;       /* Electric blue accent */
    --accent-purple: #8a2be2;     /* Neon purple accent */
    --text-primary: #ffffff;
    --text-muted: #a0a0b0;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--accent-blue), var(--accent-purple));

    /* Effects */
    --glass-bg: rgba(20, 20, 30, 0.6);
    --glass-border: rgba(255, 255, 255, 0.1);
    --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);

    /* Typography */
    --font-main: 'Inter', sans-serif;
    
    /* Spacing */
    --section-padding: 100px 5%;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

/* =========================================
   Typography
   ========================================= */
h1, h2, h3, h4 {
    font-weight: 800;
    line-height: 1.2;
}

p {
    color: var(--text-muted);
}

.text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* =========================================
   Components & Utilities
   ========================================= */
.btn-primary {
    display: inline-block;
    padding: 15px 35px;
    background: var(--gradient-primary);
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 600;
    border-radius: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 240, 255, 0.2);
}

.btn-primary-sm {
    display: inline-block;
    padding: 10px 25px;
    background: transparent;
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 600;
    border-radius: 30px;
    border: 2px solid var(--accent-blue);
    transition: all 0.3s ease;
}

.btn-primary-sm:hover {
    background: var(--accent-blue);
    color: var(--bg-dark);
    box-shadow: 0 5px 15px rgba(0, 240, 255, 0.3);
}

/* =========================================
   Navigation
   ========================================= */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(10, 10, 15, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid var(--glass-border);
}

.logo {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text-primary);
    cursor: pointer;
}

.logo span {
    color: var(--accent-blue);
}

.nav-links {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 30px;
}

.nav-links a:not(.btn-primary-sm) {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:not(.btn-primary-sm):hover {
    color: var(--accent-blue);
}

.hamburger {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-primary);
}

/* Responsive Nav */
@media (max-width: 768px) {
    .nav-links {
        display: none; /* Will implement mobile menu in JS later */
    }
    .hamburger {
        display: block;
    }
}

/* =========================================
   Hero Section
   ========================================= */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 5%;
    overflow: hidden; /* Hide glowing orbs if they spill out */
}

.hero-content {
    max-width: 800px;
    z-index: 2;
    animation: fadeUp 1s ease-out forwards;
}

.hero-title {
    font-size: clamp(3rem, 6vw, 5rem);
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 600px;
    margin-inline: auto;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.btn-secondary {
    display: inline-block;
    padding: 15px 35px;
    background: var(--glass-bg);
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 600;
    border-radius: 30px;
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

/* Abstract Glow Effects */
.glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    z-index: 1;
    opacity: 0.5;
    animation: drift 10s infinite alternate ease-in-out;
}

.glow-1 {
    width: 400px;
    height: 400px;
    background: var(--accent-blue);
    top: -100px;
    left: -100px;
}

.glow-2 {
    width: 300px;
    height: 300px;
    background: var(--accent-purple);
    bottom: 10%;
    right: -50px;
    animation-delay: -5s;
}

/* Animations */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes drift {
    from {
        transform: translate(0, 0) scale(1);
    }
    to {
        transform: translate(50px, 30px) scale(1.1);
    }
}

@media (max-width: 600px) {
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }
}

/* =========================================
   General Section Styling
   ========================================= */
section {
    padding: var(--section-padding);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 10px;
}

.section-header p {
    font-size: 1.1rem;
}

/* =========================================
   Services Section
   ========================================= */
.services {
    background-color: var(--bg-surface);
    position: relative;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    box-shadow: var(--glass-shadow);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 240, 255, 0.15);
    border-color: rgba(0, 240, 255, 0.3);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: inline-block;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.service-card p {
    font-size: 1rem;
    line-height: 1.6;
}

/* =========================================
   About Section
   ========================================= */
.about {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.about-content {
    flex: 1;
}

.about-content h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 20px;
}

.about-content p {
    font-size: 1.1rem;
    margin-bottom: 30px;
}

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

.about-features li {
    margin-bottom: 15px;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 15px;
}

.about-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.image-placeholder {
    width: 100%;
    max-width: 400px;
    aspect-ratio: 1;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 50px rgba(138, 43, 226, 0.2);
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

@media (max-width: 900px) {
    .about {
        flex-direction: column;
        text-align: center;
    }
    .about-features li {
        justify-content: center;
    }
}

/* =========================================
   Web Development Section
   ========================================= */
.web-dev {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    flex-direction: row-reverse;
}

.web-dev-content {
    flex: 1;
}

.web-dev-content h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 20px;
}

.web-dev-content p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    line-height: 1.8;
}

.web-dev-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

@media (max-width: 900px) {
    .web-dev {
        flex-direction: column;
        text-align: center;
    }
}

/* =========================================
   Pricing Section
   ========================================= */
.pricing {
    background-color: var(--bg-dark);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    box-shadow: var(--glass-shadow);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(138, 43, 226, 0.15);
}

.pricing-card.popular {
    border-color: rgba(138, 43, 226, 0.4);
    box-shadow: 0 0 30px rgba(138, 43, 226, 0.1);
}

.popular-badge {
    position: absolute;
    top: 20px;
    right: -35px;
    background: var(--gradient-primary);
    color: white;
    padding: 5px 40px;
    font-size: 0.8rem;
    font-weight: 600;
    transform: rotate(45deg);
}

.pricing-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--text-muted);
}

.pricing-card .price {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.pricing-card .price span {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 400;
}

.plan-desc {
    margin-bottom: 30px;
    min-height: 50px;
}

.pricing-features {
    list-style: none;
    margin-bottom: 40px;
    text-align: left;
    flex-grow: 1;
}

.pricing-features li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-primary);
}

.pricing-features li.disabled {
    color: var(--text-muted);
    text-decoration: line-through;
}

.pricing-features li.disabled i {
    color: var(--text-muted);
}

.pricing-card .btn-primary,
.pricing-card .btn-secondary {
    width: 100%;
    margin-top: auto;
}

/* TikTok Specific Styling */
.pricing-card.tiktok {
    border-color: rgba(0, 240, 255, 0.4);
}

.tiktok-badge {
    position: absolute;
    top: 20px;
    left: -35px;
    background: #ff0050; /* TikTok brand color accent */
    color: white;
    padding: 5px 40px;
    font-size: 0.8rem;
    font-weight: 600;
    transform: rotate(-45deg);
}

/* Pricing Extras (Add-On and Info) */
.pricing-extras {
    max-width: 1200px;
    margin: 60px auto 0;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 30px;
}

.addon-card, .tiktok-info {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 30px;
    backdrop-filter: blur(10px);
}

.addon-card h4, .tiktok-info h4 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--accent-blue);
}

.addon-price {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.tiktok-info p {
    font-size: 1rem;
    line-height: 1.6;
}

@media (max-width: 900px) {
    .pricing-extras {
        grid-template-columns: 1fr;
    }
}

/* =========================================
   Package Builder Section
   ========================================= */
.package-builder {
    background-color: var(--bg-dark);
}

.builder-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.builder-selections, .builder-results {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--glass-shadow);
    backdrop-filter: blur(10px);
}

.builder-selections h3, .builder-results h3 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: var(--text-primary);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 15px;
}

/* Form Groups & Inputs */
.form-group {
    margin-bottom: 30px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: var(--text-primary);
}

.help-text {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 400;
}

.form-group input[type="number"] {
    width: 100px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: white;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.3s;
}

.form-group input[type="number"]:focus {
    border-color: var(--accent-blue);
}

/* Platform Grid Selection */
.platform-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 15px;
    margin-top: 15px;
}

.platform-card {
    cursor: pointer;
    position: relative;
}

.platform-card input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.platform-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 240, 255, 0.5);
    box-shadow: 0 5px 15px rgba(0, 240, 255, 0.1);
}

.platform-content {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px; /* Changed from 10px */
    transition: all 0.3s ease;
    color: var(--text-muted);
}

.platform-content i {
    font-size: 2.5rem; /* Changed from 1.8rem */
    color: var(--text-muted); /* Added */
    transition: color 0.3s ease; /* Changed from transform */
}

.platform-content span {
    font-size: 1.1rem; /* Changed from 0.85rem */
    font-weight: 500;
}

.platform-card:hover .platform-content {
    border-color: rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.08);
}

.platform-card input:checked + .platform-content {
    background: rgba(0, 240, 255, 0.1);
    border-color: var(--accent-blue);
    color: var(--text-primary);
    box-shadow: 0 0 15px rgba(0, 240, 255, 0.2);
}

.platform-card input:checked + .platform-content i {
    color: var(--accent-blue);
    transform: scale(1.1);
}

.mb-3 { margin-bottom: 15px; }

/* Posts Per Week Controls */
.ppw-control {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    margin-top: 5px;
    gap: 15px;
    background: transparent;
    border-radius: 12px;
    padding: 6px 10px;
    width: 100%;
}

.ppw-btn {
    background: transparent;
    border: none;
    color: #8a2be2;
    cursor: pointer;
    font-size: 0.8rem;
    padding: 2px 5px;
    transition: color 0.3s ease, transform 0.1s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ppw-btn i {
    font-size: 0.8rem;
}

.ppw-btn:hover {
    color: #a855f7;
    transform: scale(1.2);
}

.ppw-val {
    font-weight: 700;
    font-size: 1.2rem;
    width: 25px;
    text-align: center;
}

.ppw-label {
    width: 100%;
    font-size: 0.75rem;
    color: var(--text-muted);
    text-align: center;
}

/* Custom Radios & Checkboxes */
.radio-group {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.custom-radio {
    position: relative;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
}

.custom-radio input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.radio-label {
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 30px;
    color: var(--text-muted);
    transition: all 0.3s ease;
    user-select: none;
}

.custom-radio input:checked ~ .radio-label {
    background: var(--accent-blue);
    color: var(--bg-dark);
    border-color: var(--accent-blue);
    font-weight: 600;
    box-shadow: 0 0 15px rgba(0, 240, 255, 0.3);
}

.custom-checkbox {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-weight: 400 !important;
    color: var(--text-muted) !important;
    position: relative;
    user-select: none;
    margin-bottom: 0 !important;
}

.mt-2 { margin-top: 15px; }
.mt-4 { margin-top: 30px; }
.w-100 { width: 100%; }
.text-center { text-align: center; }

.custom-checkbox input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkbox-box {
    height: 22px;
    width: 22px;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 5px;
    margin-right: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.custom-checkbox input:checked ~ .checkbox-box {
    background-color: var(--accent-purple);
    border-color: var(--accent-purple);
    box-shadow: 0 0 10px rgba(138, 43, 226, 0.4);
}

.custom-checkbox input:checked ~ .checkbox-box:after {
    content: '\f00c';
    font-family: 'FontAwesome';
    color: white;
    font-size: 12px;
}

.custom-checkbox input:checked ~ span:last-child {
    color: var(--text-primary);
}

/* Results Panel Styling */
.price-estimate {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 30px;
    border: 1px solid rgba(0, 240, 255, 0.2);
}

.estimate-label {
    display: block;
    color: var(--text-muted);
    margin-bottom: 5px;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.total-price {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--accent-blue);
    line-height: 1;
}

.score-container {
    margin-bottom: 30px;
}

.score-label {
    display: block;
    color: var(--text-primary);
    margin-bottom: 10px;
    font-weight: 600;
}

.strength-score {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 10px;
}

#score-value {
    color: var(--accent-purple);
}

.score-max {
    font-size: 1.2rem;
    color: var(--text-muted);
    font-weight: 400;
}

.progress-bar {
    width: 100%;
    height: 10px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: var(--gradient-primary);
    border-radius: 5px;
    transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Feedback Styling */
.consultant-feedback h4 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.feedback-list {
    list-style: none;
    margin-bottom: 25px;
}

.feedback-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.feedback-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-purple);
}

.feedback-text {
    background: rgba(255, 255, 255, 0.05);
    padding: 15px;
    border-left: 4px solid var(--accent-blue);
    border-radius: 0 8px 8px 0;
    font-size: 0.95rem;
    color: var(--text-primary);
}

@media (max-width: 900px) {
    .builder-container {
        grid-template-columns: 1fr;
    }
}

/* =========================================
   TikTok Info Banner
   ========================================= */
.tiktok-info-section {
    padding-top: 0;
    background-color: var(--bg-dark);
}

.tiktok-info-container {
    max-width: 1200px;
    margin: 0 auto;
    background: var(--glass-bg);
    border: 1px solid rgba(0, 240, 255, 0.3);
    border-radius: 20px;
    padding: 30px 40px;
    display: flex;
    align-items: center;
    gap: 30px;
    box-shadow: 0 10px 30px rgba(0, 240, 255, 0.1);
}

.tiktok-large-icon {
    font-size: 4rem;
    flex-shrink: 0;
}

.tiktok-info-text h4 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.tiktok-info-text p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-muted);
    margin: 0;
}

@media (max-width: 768px) {
    .tiktok-info-container {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
    }
}

/* =========================================
   Contact Form Section
   ========================================= */
.contact {
    background-color: var(--bg-surface);
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    background: var(--glass-bg);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
    backdrop-filter: blur(10px);
}

.input-group {
    position: relative;
    margin-bottom: 30px;
}

.input-group input, 
.input-group textarea,
.input-group select {
    width: 100%;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: var(--text-primary);
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    outline: none;
}

.input-group input:focus, 
.input-group textarea:focus,
.input-group select:focus {
    border-color: var(--accent-blue);
    background: rgba(255, 255, 255, 0.1);
}

/* Floating Label Animation */
.input-group label {
    position: absolute;
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
    color: var(--text-muted);
    transition: all 0.3s ease;
    pointer-events: none;
}

.input-group textarea ~ label {
    top: 20px;
    transform: none;
}

.input-group input:focus ~ label,
.input-group input:not(:placeholder-shown) ~ label,
.input-group textarea:focus ~ label,
.input-group textarea:not(:placeholder-shown) ~ label {
    top: -10px;
    left: 15px;
    font-size: 0.8rem;
    color: var(--accent-blue);
    background: var(--bg-surface);
    padding: 0 5px;
    transform: none;
}

.input-group select {
    appearance: none;
    background-color: rgba(255, 255, 255, 0.05); /* Ensure it's dark by default */
}

/* Style the dropdown options so they aren't white when clicked */
.input-group select option {
    background-color: var(--bg-surface);
    color: var(--text-primary);
}

/* =========================================
   Footer
   ========================================= */
footer {
    padding: 40px 5%;
    background: #050508;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    color: var(--text-muted);
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: var(--accent-purple);
}



@media (max-width: 600px) {
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
}

/* =========================================
   JS Animation Classes
   ========================================= */
.fade-in-section {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in-section.visible {
    opacity: 1;
    transform: none;
}

/* =========================================
   Mobile Navigation Active State
   ========================================= */
@media (max-width: 768px) {
    .nav-links.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(10, 10, 15, 0.95);
        backdrop-filter: blur(10px);
        padding: 20px 0;
        border-bottom: 1px solid var(--glass-border);
    }
}

