/* ====================================
   ELSA Bilisim Sistemleri - Tech Dark Theme
   ==================================== */

/* Tech Color Palette - Deep Blue & Black */
:root {
    /* Primary - Electric Blue */
    --primary-color: #0078d4;
    --primary-light: #2b9bea;
    --primary-dark: #005a9e;
    --accent-cyan: #00bcf2;
    --accent-glow: rgba(0, 120, 212, 0.35);

    /* Background Shades - Deep Navy Black */
    --bg-darker: #050a14;
    --bg-dark: #070e1c;
    --bg-medium: #0d1628;
    --bg-light: #132035;
    --bg-card: #0f1b2e;

    /* Text Colors */
    --text-primary: #e8f0fe;
    --text-secondary: #8899bb;
    --text-muted: #4a5a75;

    /* Accent Colors */
    --accent-success: #4ade80;
    --accent-info: #38bdf8;
    --accent-warning: #fbbf24;
    --accent-danger: #f87171;

    /* Borders & Shadows */
    --border-color: rgba(0, 120, 212, 0.18);
    --border-subtle: rgba(255, 255, 255, 0.05);
    --shadow-glow: 0 0 50px rgba(0, 120, 212, 0.2);
    --shadow-card: 0 4px 30px rgba(0, 0, 0, 0.6);

    /* Typography */
    --font-display: 'Space Grotesk', 'Inter', -apple-system, sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* Base Styles */
html {
    font-size: 14px;
    position: relative;
    min-height: 100%;
    scroll-behavior: smooth;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

body {
    font-family: var(--font-body);
    margin-bottom: 0;
    color: var(--text-primary);
    background-color: var(--bg-darker);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Selection */
::selection {
    background: var(--primary-color);
    color: #fff;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 6px;
}
::-webkit-scrollbar-track {
    background: var(--bg-dark);
}
::-webkit-scrollbar-thumb {
    background: var(--primary-dark);
    border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--primary-color);
}

/* ====================================
   Navbar - Glass Effect
   ==================================== */
.navbar {
    background: rgba(5, 10, 20, 0.88) !important;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-subtle);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0.85rem 0;
}

.navbar.scrolled {
    background: rgba(5, 10, 20, 0.97) !important;
    border-bottom-color: var(--border-color);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.navbar-brand {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--text-primary) !important;
    letter-spacing: -0.02em;
}

.navbar-brand img {
    filter: brightness(1.1);
}

.navbar-brand span {
    color: var(--primary-light);
}

.nav-link {
    color: var(--text-secondary) !important;
    font-weight: 500;
    font-size: 0.9rem;
    padding: 0.5rem 0.9rem !important;
    letter-spacing: 0.01em;
    transition: color 0.2s ease;
    position: relative;
}

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

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0.9rem;
    right: 0.9rem;
    height: 2px;
    background: var(--primary-color);
    transform: scaleX(0);
    transition: transform 0.25s ease;
    border-radius: 2px;
}

.nav-link:hover::after {
    transform: scaleX(1);
}

/* Dropdown */
.dropdown-menu {
    background: var(--bg-medium) !important;
    border: 1px solid var(--border-color) !important;
    border-radius: 10px;
    box-shadow: var(--shadow-card);
    padding: 0.5rem;
    min-width: 220px;
}

.dropdown-item {
    color: var(--text-secondary) !important;
    border-radius: 6px;
    padding: 0.55rem 1rem;
    font-size: 0.875rem;
    transition: all 0.2s;
}

.dropdown-item:hover {
    background: rgba(0, 120, 212, 0.12) !important;
    color: var(--text-primary) !important;
}

.dropdown-item.text-danger:hover {
    background: rgba(248, 113, 113, 0.1) !important;
}

.dropdown-divider {
    border-color: var(--border-subtle) !important;
    margin: 0.35rem 0;
}

/* Notification Bell */
.notification-bell-link {
    color: var(--text-secondary) !important;
    position: relative;
    padding: 0.5rem 0.7rem !important;
    font-size: 1.1rem;
}

.notification-bell-link:hover {
    color: var(--primary-light) !important;
}

/* ====================================
   Buttons
   ==================================== */
.btn-primary {
    background: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
    color: #fff !important;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.25s ease;
    box-shadow: 0 2px 12px rgba(0, 120, 212, 0.3);
}

.btn-primary:hover {
    background: var(--primary-light) !important;
    border-color: var(--primary-light) !important;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(0, 120, 212, 0.45);
}

.btn-outline-primary {
    color: var(--primary-light) !important;
    border-color: var(--primary-color) !important;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.25s ease;
}

.btn-outline-primary:hover {
    background: var(--primary-color) !important;
    color: #fff !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(0, 120, 212, 0.35);
}

.btn-outline-secondary {
    color: var(--text-secondary) !important;
    border-color: var(--border-color) !important;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.25s ease;
}

.btn-outline-secondary:hover {
    background: var(--bg-light) !important;
    color: var(--text-primary) !important;
    border-color: var(--primary-color) !important;
}

/* ====================================
   Cards
   ==================================== */
.card {
    background: var(--bg-card) !important;
    border: 1px solid var(--border-subtle) !important;
    border-radius: 12px;
    color: var(--text-primary);
}

.card-title {
    color: var(--text-primary);
    font-family: var(--font-display);
}

.card-text {
    color: var(--text-secondary);
}

.hover-card {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.hover-card:hover {
    transform: translateY(-4px);
    border-color: var(--border-color) !important;
    box-shadow: 0 12px 40px rgba(0, 120, 212, 0.15), var(--shadow-card);
}

/* Feature Icon */
.feature-icon {
    width: 56px;
    height: 56px;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #fff;
    border-radius: 12px !important;
}

.feature-icon.bg-primary {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-color)) !important;
    box-shadow: 0 4px 15px rgba(0, 120, 212, 0.4);
}

.feature-icon.bg-success {
    background: linear-gradient(135deg, #16a34a, #22c55e) !important;
    box-shadow: 0 4px 15px rgba(74, 222, 128, 0.3);
}

.feature-icon.bg-warning {
    background: linear-gradient(135deg, #d97706, #fbbf24) !important;
    box-shadow: 0 4px 15px rgba(251, 191, 36, 0.3);
}

.feature-icon.bg-info {
    background: linear-gradient(135deg, #0284c7, #38bdf8) !important;
    box-shadow: 0 4px 15px rgba(56, 189, 248, 0.3);
}

.feature-icon.bg-danger {
    background: linear-gradient(135deg, #b91c1c, #f87171) !important;
    box-shadow: 0 4px 15px rgba(248, 113, 113, 0.3);
}

.feature-icon.bg-secondary {
    background: linear-gradient(135deg, #374151, #6b7280) !important;
}

.feature-icon.bg-cyan {
    background: linear-gradient(135deg, #0369a1, #00bcf2) !important;
    box-shadow: 0 4px 15px rgba(0, 188, 242, 0.3);
}

/* ====================================
   Text Gradients
   ==================================== */
.text-gradient-blue {
    background: linear-gradient(135deg, var(--primary-light), var(--accent-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Keep backward compat alias */
.text-gradient-gold {
    background: linear-gradient(135deg, var(--primary-light), var(--accent-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ====================================
   Animations
   ==================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 28px, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

@keyframes float {
    0%, 100% { transform: translate3d(0, 0, 0); }
    50% { transform: translate3d(0, -12px, 0); }
}

@keyframes pulseGlow {
    0%, 100% { box-shadow: 0 0 15px rgba(0, 120, 212, 0.35); }
    50% { box-shadow: 0 0 35px rgba(0, 120, 212, 0.65), 0 0 60px rgba(0, 188, 242, 0.2); }
}

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

@keyframes scanLine {
    0% { transform: translateY(-100%); opacity: 0; }
    50% { opacity: 1; }
    100% { transform: translateY(500%); opacity: 0; }
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

.animate-fade-in-up {
    animation: fadeInUp 0.7s cubic-bezier(0.4, 0, 0.2, 1) both;
    will-change: transform, opacity;
}

.animate-float {
    animation: float 5s ease-in-out infinite;
    will-change: transform;
}

.animate-pulse-glow {
    animation: pulseGlow 2.5s ease-in-out infinite;
}

.animate-shimmer {
    background: linear-gradient(90deg, var(--primary-light) 0%, var(--accent-cyan) 30%, #fff 50%, var(--accent-cyan) 70%, var(--primary-light) 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 4s linear infinite;
}

/* Scroll-triggered animations */
.animate-on-scroll {
    opacity: 0;
    transform: translate3d(0, 24px, 0);
    transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform, opacity;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

/* ====================================
   Sections
   ==================================== */
.section-dark {
    background-color: var(--bg-dark);
}

.section-medium {
    background-color: var(--bg-medium);
}

.section-card {
    background-color: var(--bg-card);
}

/* ====================================
   Hero Section
   ==================================== */
.hero-section {
    background: var(--bg-darker);
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -30%;
    left: -10%;
    width: 60%;
    height: 80%;
    background: radial-gradient(ellipse at center, rgba(0, 120, 212, 0.12) 0%, transparent 65%);
    pointer-events: none;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: -20%;
    right: -5%;
    width: 50%;
    height: 60%;
    background: radial-gradient(ellipse at center, rgba(0, 188, 242, 0.07) 0%, transparent 65%);
    pointer-events: none;
}

/* Grid overlay subtle */
.hero-grid-overlay {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(0, 120, 212, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 120, 212, 0.04) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
}

.hero-placeholder {
    background: var(--bg-medium);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

/* ====================================
   Stats Section
   ==================================== */
.stats-section {
    background: var(--bg-card);
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
}

.stat-item h2 {
    font-family: var(--font-display);
    color: var(--primary-light);
    font-size: 2.5rem;
    font-weight: 700;
}

/* ====================================
   Step Numbers
   ==================================== */
.step-number {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
    box-shadow: 0 4px 20px rgba(0, 120, 212, 0.4);
    font-family: var(--font-display);
}

/* ====================================
   Badge
   ==================================== */
.badge.bg-primary {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-color)) !important;
    font-weight: 500;
    letter-spacing: 0.03em;
    border-radius: 6px;
}

/* ====================================
   Pricing Cards
   ==================================== */
.pricing-card {
    transition: all 0.3s ease;
}

.pricing-card.featured {
    border-color: var(--primary-color) !important;
    box-shadow: 0 0 0 1px var(--primary-color), 0 20px 60px rgba(0, 120, 212, 0.2);
}

.pricing-card .display-4 {
    font-family: var(--font-display);
}

/* ====================================
   CTA Section
   ==================================== */
.cta-section {
    background: var(--bg-dark);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 50%, rgba(0, 120, 212, 0.15) 0%, transparent 60%);
    pointer-events: none;
}

/* ====================================
   Service Card
   ==================================== */
.service-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 14px;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-cyan));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s ease;
}

.service-card:hover {
    border-color: var(--border-color);
    transform: translateY(-5px);
    box-shadow: 0 16px 48px rgba(0, 120, 212, 0.15);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card .service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--bg-medium), var(--bg-light));
    border: 1px solid var(--border-color);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: var(--primary-light);
    margin-bottom: 1.25rem;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
    border-color: transparent;
    color: #fff;
    box-shadow: 0 4px 20px rgba(0, 120, 212, 0.4);
}

.service-card h5 {
    font-family: var(--font-display);
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.service-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.65;
    margin: 0;
}

/* ====================================
   Tech Visual Elements
   ==================================== */
.tech-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(0, 120, 212, 0.1);
    border: 1px solid rgba(0, 120, 212, 0.25);
    color: var(--primary-light);
    padding: 0.35rem 0.85rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.02em;
}

.tech-badge i {
    font-size: 0.85rem;
    color: var(--accent-cyan);
}

/* Glowing border card */
.glow-card {
    position: relative;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    overflow: hidden;
}

.glow-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 0%, rgba(0, 120, 212, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

/* Separator with glow */
.section-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-color), transparent);
    border: none;
    margin: 0;
}

/* ====================================
   Blog Card
   ==================================== */
.blog-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 14px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.blog-card:hover {
    border-color: var(--border-color);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 120, 212, 0.12);
}

.blog-card-img {
    height: 200px;
    background: linear-gradient(135deg, var(--bg-medium), var(--bg-light));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--primary-light);
    border-bottom: 1px solid var(--border-subtle);
}

.blog-card-body {
    padding: 1.5rem;
}

.blog-category {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--accent-cyan);
    margin-bottom: 0.5rem;
}

.blog-card-title {
    font-family: var(--font-display);
    font-weight: 600;
    color: var(--text-primary);
    font-size: 1.05rem;
    line-height: 1.45;
    margin-bottom: 0.75rem;
}

.blog-card-excerpt {
    color: var(--text-secondary);
    font-size: 0.875rem;
    line-height: 1.6;
}

/* ====================================
   Form Elements
   ==================================== */
.form-control, .form-select {
    background: var(--bg-medium) !important;
    border: 1px solid var(--border-color) !important;
    color: var(--text-primary) !important;
    border-radius: 8px;
    transition: all 0.2s;
}

.form-control:focus, .form-select:focus {
    background: var(--bg-light) !important;
    border-color: var(--primary-color) !important;
    box-shadow: 0 0 0 3px rgba(0, 120, 212, 0.15) !important;
    color: var(--text-primary) !important;
}

.form-control::placeholder {
    color: var(--text-muted) !important;
}

.form-label {
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 0.875rem;
}

/* ====================================
   Accordion (FAQ)
   ==================================== */
.accordion-item {
    background: var(--bg-card) !important;
    border: 1px solid var(--border-subtle) !important;
    border-radius: 10px !important;
    overflow: hidden;
}

.accordion-button {
    background: var(--bg-card) !important;
    color: var(--text-primary) !important;
    font-weight: 500;
    box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
    background: var(--bg-medium) !important;
    color: var(--primary-light) !important;
}

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

.accordion-body {
    background: var(--bg-medium) !important;
    border-top: 1px solid var(--border-subtle) !important;
}

/* ====================================
   Footer
   ==================================== */
footer {
    background: var(--bg-dark) !important;
    border-top: 1px solid var(--border-subtle);
    color: var(--text-secondary);
}

footer h5, footer h6 {
    color: var(--text-primary) !important;
    font-family: var(--font-display);
}

footer a {
    color: var(--text-secondary) !important;
    transition: color 0.2s;
}

footer a:hover {
    color: var(--primary-light) !important;
}

footer .social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background: var(--bg-medium);
    border: 1px solid var(--border-subtle);
    border-radius: 8px;
    color: var(--text-secondary) !important;
    font-size: 1rem;
    transition: all 0.25s ease;
}

footer .social-link:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff !important;
    transform: translateY(-2px);
}

/* ====================================
   Billing / Payment Pages
   ==================================== */
.billing-status-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.35rem 0.85rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
}

.billing-status-badge.active {
    background: rgba(74, 222, 128, 0.12);
    color: var(--accent-success);
    border: 1px solid rgba(74, 222, 128, 0.25);
}

.billing-status-badge.expired {
    background: rgba(248, 113, 113, 0.12);
    color: var(--accent-danger);
    border: 1px solid rgba(248, 113, 113, 0.25);
}

.billing-status-badge.pending {
    background: rgba(251, 191, 36, 0.12);
    color: var(--accent-warning);
    border: 1px solid rgba(251, 191, 36, 0.25);
}

.billing-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-subtle);
    font-size: 0.9rem;
}

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

.billing-row-label {
    color: var(--text-secondary);
}

.billing-row-value {
    color: var(--text-primary);
    font-weight: 500;
}

.saved-card {
    background: var(--bg-medium);
    border: 1px solid var(--border-subtle);
    border-radius: 10px;
    padding: 1rem 1.25rem;
    transition: all 0.2s;
}

.saved-card:hover {
    border-color: var(--border-color);
}

.saved-card.default-card {
    border-color: var(--primary-color);
    background: rgba(0, 120, 212, 0.05);
}

/* ====================================
   Progress Steps
   ==================================== */
.progress-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    gap: 0;
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    flex: 1;
    max-width: 120px;
}

.progress-step-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--bg-medium);
    border: 2px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-muted);
    position: relative;
    z-index: 1;
    transition: all 0.3s;
}

.progress-step.active .progress-step-circle {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
    box-shadow: 0 0 20px rgba(0, 120, 212, 0.4);
}

.progress-step.completed .progress-step-circle {
    background: var(--accent-success);
    border-color: var(--accent-success);
    color: #fff;
}

.progress-step-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 0.4rem;
    text-align: center;
    font-weight: 500;
}

.progress-step.active .progress-step-label {
    color: var(--primary-light);
}

.progress-step-line {
    flex: 1;
    height: 2px;
    background: var(--border-subtle);
    margin-top: -20px;
    max-width: 80px;
    transition: background 0.3s;
}

.progress-step-line.completed {
    background: var(--primary-color);
}

/* ====================================
   Alert / Notifications
   ==================================== */
.alert {
    border-radius: 10px;
    border: 1px solid;
}

.alert-danger {
    background: rgba(248, 113, 113, 0.08) !important;
    border-color: rgba(248, 113, 113, 0.2) !important;
    color: #fca5a5 !important;
}

.alert-warning {
    background: rgba(251, 191, 36, 0.08) !important;
    border-color: rgba(251, 191, 36, 0.2) !important;
    color: #fcd34d !important;
}

.alert-success {
    background: rgba(74, 222, 128, 0.08) !important;
    border-color: rgba(74, 222, 128, 0.2) !important;
    color: #86efac !important;
}

.alert-info {
    background: rgba(56, 189, 248, 0.08) !important;
    border-color: rgba(56, 189, 248, 0.2) !important;
    color: #7dd3fc !important;
}

/* ====================================
   Tables
   ==================================== */
.table {
    color: var(--text-secondary);
}

.table thead th {
    color: var(--text-muted);
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-bottom: 1px solid var(--border-subtle) !important;
}

.table td, .table th {
    border-color: var(--border-subtle) !important;
    padding: 0.9rem 1rem;
}

.table-hover tbody tr:hover {
    background: rgba(0, 120, 212, 0.05) !important;
    color: var(--text-primary) !important;
}

/* ====================================
   Utility Classes
   ==================================== */
.text-primary-light {
    color: var(--primary-light) !important;
}

.text-cyan {
    color: var(--accent-cyan) !important;
}

.bg-tech {
    background: var(--bg-card);
}

.border-blue {
    border-color: var(--border-color) !important;
}

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

/* NToastNotify override */
#toast-container .toast {
    border-radius: 10px !important;
    font-size: 0.875rem;
}

/* Modal */
.modal-content {
    background: var(--bg-medium) !important;
    border: 1px solid var(--border-color) !important;
    border-radius: 16px;
    color: var(--text-primary);
}

.modal-header {
    border-bottom-color: var(--border-subtle) !important;
}

.modal-footer {
    border-top-color: var(--border-subtle) !important;
}

/* ====================================
   Application / Psychometric test
   ==================================== */
.psychometric-option {
    background: var(--bg-medium);
    border: 2px solid var(--border-subtle);
    border-radius: 10px;
    padding: 1rem 1.25rem;
    cursor: pointer;
    transition: all 0.2s;
    color: var(--text-secondary);
}

.psychometric-option:hover {
    border-color: var(--primary-color);
    color: var(--text-primary);
    background: rgba(0, 120, 212, 0.06);
}

.psychometric-option.selected {
    border-color: var(--primary-color);
    background: rgba(0, 120, 212, 0.1);
    color: var(--text-primary);
}

/* Radio / Checkbox */
.form-check-input {
    background-color: var(--bg-medium) !important;
    border-color: var(--border-color) !important;
}

.form-check-input:checked {
    background-color: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
}

/* ====================================
   Login Page
   ==================================== */
.login-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 18px;
    padding: 2.5rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), var(--shadow-glow);
}

/* ====================================
   Member Cards
   ==================================== */
.member-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 14px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.member-card:hover {
    border-color: var(--border-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.member-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0;
}

/* ====================================
   Property Listing Cards
   ==================================== */
.listing-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 14px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.listing-card:hover {
    border-color: var(--border-color);
    transform: translateY(-4px);
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.5);
}

.listing-status-badge {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 0.25rem 0.65rem;
    border-radius: 5px;
}

/* ====================================
   Navbar Toggler
   ==================================== */
.navbar-toggler {
    border: 1px solid var(--border-color) !important;
    padding: 0.4rem 0.6rem;
    border-radius: 8px !important;
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 2px rgba(0, 120, 212, 0.25) !important;
}

/* ====================================
   Responsive
   ==================================== */
@media (max-width: 991px) {
    .navbar-collapse {
        background: var(--bg-medium);
        border: 1px solid var(--border-color);
        border-radius: 12px;
        padding: 1rem;
        margin-top: 0.75rem;
    }

    .hero-section .min-vh-100 {
        min-height: auto !important;
        padding: 3rem 0;
    }
}

@media (max-width: 576px) {
    .display-4 {
        font-size: 2rem !important;
    }

    .display-6 {
        font-size: 1.5rem !important;
    }
}
