/* ============================
  Lab74AI - Advanced Voice Platform
  Theme: Dark Premium (ElevenLabs Inspired)
=============================== */

@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Space+Grotesk:wght@500;700&display=swap");

:root {
    /* Colors */
    --bg-color: #000000;
    --bg-secondary: #111111;
    --footer-bg: #050505;

    --text-primary: #ffffff;
    --text-white: #ffffff;
    --text-secondary: #a1a1aa;
    --text-muted: #888888;

    --accent-color: #ff4d4d;
    --accent-glow: rgba(255, 77, 77, 0.5);
    --accent-glow-weak: rgba(255, 77, 77, 0.2);
    --accent-gradient: linear-gradient(135deg, #ff4d4d 0%, #ff00d7 100%);

    /* Glass / Translucency */
    --glass-bg-low: rgba(255, 255, 255, 0.03);
    --glass-bg-med: rgba(255, 255, 255, 0.05);
    --glass-bg-high: rgba(255, 255, 255, 0.1);

    --glass-border: rgba(255, 255, 255, 0.1);
    --glass-border-faint: rgba(255, 255, 255, 0.08);
    --glass-border-strong: rgba(255, 255, 255, 0.2);

    /* Card Backgrounds */
    --card-bg-translucent: rgba(18, 18, 24, 0.6);
    --card-bg-solid: rgba(18, 18, 24, 0.8);
    --card-hover-bg: rgba(255, 255, 255, 0.04);
}

[data-theme="light"] {
    /* Colors */
    --bg-color: #ffffff;
    --bg-secondary: #f8fafc;
    --footer-bg: #f1f5f9;

    --text-primary: #0f172a;
    --text-white: #0f172a;
    /* Inverts to dark for light mode */
    --text-secondary: #475569;
    --text-muted: #64748b;

    /* Adjust accent for light background visibility if needed */
    --accent-color: #ef4444;

    /* Invert Glass / Translucency to be dark-tinted or just borders */
    --glass-bg-low: rgb(255, 255, 255);
    --glass-bg-med: rgb(255, 255, 255);
    --glass-bg-high: rgba(0, 0, 0, 0.1);

    --glass-border: rgba(0, 0, 0, 0.1);
    --glass-border-faint: rgba(0, 0, 0, 0.05);
    --glass-border-strong: rgba(0, 0, 0, 0.2);

    /* Card Backgrounds */
    --card-bg-translucent: rgba(255, 255, 255, 0.8);
    --card-bg-solid: #ffffff;
    --card-hover-bg: rgba(0, 0, 0, 0.03);

    /* Navbar specific override for light mode if needed */
    /* We might need to ensure the navbar sticky bg is white */
}

html,
body {
    width: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

body {
    font-family: "Inter", sans-serif;
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-size: 16px;
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* ===========================
   Global Styles
=========================== */

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

a:hover {
    text-decoration: none;
    transition: all 0.3s ease;
    color: var(--accent-color);
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Space Grotesk", sans-serif;
    color: var(--text-white);
    font-weight: 700;
    margin-top: 0;
}

.text-theme {
    color: var(--text-primary);
}


/* Global Grid Spacing */
section .row>[class*='col-'],
.section .row>[class*='col-'],
.feature-section .row>[class*='col-'] {
    margin-bottom: 24px;
}

/* Section Spacing Helpers */
.section-title h2 {
    font-size: 40px;
    margin-bottom: 16px;
}

.section-title p {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.section.pt-50 {
    padding-top: 80px !important;
}

.section.pb-100 {
    padding-bottom: 150px !important;
}

/* ===========================
   Preloader
=========================== */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-color);
    z-index: 99999;
    display: flex;
    justify-content: center;
    align-items: center;
}

.loader-svg {
    width: 80px;
    height: 80px;
    animation: rotate 2s linear infinite;
}

.loader-circle {
    fill: none;
    stroke: url(#loaderGradient);
    stroke-width: 4;
    stroke-linecap: round;
    stroke-dasharray: 1, 150;
    stroke-dashoffset: 0;
    animation: dash 1.5s ease-in-out infinite;
}

@keyframes rotate {
    100% {
        transform: rotate(360deg);
    }
}

@keyframes dash {
    0% {
        stroke-dasharray: 1, 150;
        stroke-dashoffset: 0;
    }

    50% {
        stroke-dasharray: 90, 150;
        stroke-dashoffset: -35;
    }

    100% {
        stroke-dasharray: 90, 150;
        stroke-dashoffset: -124;
    }
}

/* ===========================
   Navbar
=========================== */
.header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 99;
    padding: 20px 0;
}

.sticky {
    position: fixed;
    background: var(--card-bg-solid);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5); */
    padding: 10px 0;
    top: 0;
    animation: fadeInDown 0.5s;
    width: 100%;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.lab74-logo {
    font-size: 24px;
    margin: 0;
    letter-spacing: -0.5px;
}

.lab74-logo .ai-suffix {
    color: var(--accent-color);
}

.navbar-nav .nav-item a {
    color: var(--text-secondary) !important;
    font-size: 15px;
    padding: 10px 20px;
    font-weight: 500;
}

.navbar-nav .nav-item a:hover,
.navbar-nav .nav-item a.active {
    color: var(--text-white) !important;
}

/* Navbar Toggler */
.navbar-toggler {
    padding: 10px;
    border: none;
    background: transparent;
    outline: none;
}

.navbar-toggler:focus {
    box-shadow: none;
    outline: none;
}

.toggler-icon {
    display: block;
    width: 30px;
    height: 2px;
    background-color: var(--text-primary);
    margin: 6px 0;
    transition: all 0.3s ease;
    position: relative;
}

.navbar-toggler.active .toggler-icon:nth-of-type(1) {
    transform: rotate(45deg);
    top: 8px;
}

.navbar-toggler.active .toggler-icon:nth-of-type(2) {
    opacity: 0;
}

.navbar-toggler.active .toggler-icon:nth-of-type(3) {
    transform: rotate(135deg);
    top: -8px;
}

/* Buttons */
.main-btn {
    display: inline-block;
    background: var(--text-white);
    color: var(--bg-color);
    padding: 12px 28px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 15px;
    border: 1px solid var(--glass-border);
}

.main-btn:hover {
    background: var(--accent-gradient);
    color: var(--bg-color);
    transform: translateY(-2px);
}

.header-btn .main-btn {
    background: var(--glass-border);
    color: var(--text-white);
    backdrop-filter: blur(10px);
}

.header-btn .main-btn:hover {
    background: var(--text-white);
    color: var(--bg-color);
}

/* ===========================
   Hero Section
=========================== */
.hero-section {
    position: relative;
    padding-top: 200px;
    padding-bottom: 200px;
    overflow: hidden;
}

.hero-section-padding {
    padding-top: 220px !important;
    padding-bottom: 50px !important;
    min-height: 400px;
    height: auto;
    display: flex;
    align-items: center;
}

.hero-glow {
    position: absolute;
    top: -20%;
    left: 50%;
    transform: translateX(-50%);
    height: 800px;
    background: radial-gradient(circle, var(--accent-glow-weak) 0%, rgba(0, 210, 255, 0.1) 40%, rgba(0, 0, 0, 0) 70%);
    pointer-events: none;
    z-index: -1;
}

.neon-circle-container {
    position: absolute;
    top: 47%;
    left: 53%;
    transform: translate(-50%, -50%);
    height: 600px;
    z-index: -2;
    pointer-events: none;
    opacity: 0.8;
}

.neon-circle {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid transparent;
    box-shadow:
        0 0 10px var(--accent-color),
        inset 0 0 10px var(--accent-color),
        0 0 20px #00d2ff,
        inset 0 0 20px #00d2ff,
        0 0 40px var(--accent-glow),
        inset 0 0 40px rgba(0, 210, 255, 0.5);
    animation: pulseGlow 4s infinite alternate;
}

[data-theme="light"] .neon-circle {
    box-shadow:
        0 0 10px rgba(239, 68, 68, 0.3),
        inset 0 0 10px rgba(239, 68, 68, 0.3),
        0 0 20px rgba(0, 210, 255, 0.2),
        inset 0 0 20px rgba(0, 210, 255, 0.2),
        0 0 40px rgba(239, 68, 68, 0.1),
        inset 0 0 40px rgba(0, 210, 255, 0.1);
    border-color: rgba(0, 0, 0, 0.05);
    opacity: 0.7;
}

.neon-circle::after {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    bottom: 20px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.8);
    opacity: 0.5;
}

[data-theme="light"] .neon-circle::after {
    border-color: rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
}

@keyframes pulseGlow {
    0% {
        opacity: 0.7;
        transform: scale(0.98);
    }

    100% {
        opacity: 1;
        transform: scale(1.02);
    }
}

.hero-pill {
    display: inline-block;
    background: rgba(255, 77, 77, 0.1);
    color: #ff9999;
    border: 1px solid rgba(255, 77, 77, 0.3);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 24px;
}

.hero-content h1 {
    font-size: 64px;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -2px;
}

.gradient-text {
    background: linear-gradient(to right, var(--accent-color), #00d2ff);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-content p {
    font-size: 20px;
    color: var(--text-secondary);
    max-width: 500px;
    margin-bottom: 40px;
}

.hero-buttons {
    display: flex;
    align-items: center;
    gap: 20px;
}

.text-btn {
    color: var(--text-white);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
}

.text-btn:hover {
    color: var(--accent-color);
}

/* Hero Demo Card */
.hero-demo-card {
    background: var(--bg-color);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 0;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    position: relative;
}

.hero-demo-card .demo-header {
    padding: 16px;
    background: var(--glass-bg-low);
    display: flex;
    gap: 8px;
    border-bottom: 1px solid var(--glass-border);
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.dot.red {
    background: #ff5f56;
}

.dot.yellow {
    background: #ffbd2e;
}

.dot.green {
    background: #27c93f;
}

.hero-demo-card .demo-body {
    padding: 24px;
}

.voice-selector {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--glass-bg-med);
    padding: 10px 16px;
    border-radius: 12px;
    margin-bottom: 20px;
    cursor: pointer;
    border: 1px solid transparent;
    transition: all 0.2s;
}

.voice-selector:hover {
    border-color: var(--glass-border);
    background: var(--glass-border-faint);
}

.avatar {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, #FF6B6B, #556270);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
}

.voice-info {
    display: flex;
    flex-direction: column;
}

.voice-info .name {
    font-weight: 600;
    font-size: 14px;
}

.voice-info .desc {
    font-size: 12px;
    color: var(--text-secondary);
}

.text-input {
    background: transparent;
    color: var(--text-white);
    font-size: 18px;
    line-height: 1.5;
    margin-bottom: 24px;
    min-height: 80px;
    font-family: inherit;
    border: none;
    outline: none;
    width: 100%;
}

.audio-wave-visual {
    height: 40px;
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 24px;
}

.audio-wave-visual .bar {
    flex: 1;
    background: #333;
    height: 20%;
    border-radius: 2px;
    transition: all 0.2s;
}

.audio-wave-visual .bar:nth-child(even) {
    height: 40%;
}

.audio-wave-visual .bar:nth-child(3n) {
    height: 60%;
}

.audio-wave-visual .bar:nth-child(4n) {
    height: 30%;
}

.play-btn {
    width: 100%;
    background: var(--text-);
    border: none;
    padding: 14px;
    border-radius: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
}

.play-btn:hover {
    background: #f0f0f0;
}

/* ===========================
   Features Section
=========================== */
.feature-section {
    padding: 100px 0;
    background: var(--bg-secondary);
}

.single-feature {
    background: var(--card-bg-translucent);
    border: 1px solid var(--glass-border-faint);
    padding: 35px;
    border-radius: 16px;
    margin-bottom: 30px;
    transition: all 0.3s ease;
    height: 100%;
}

.single-feature:hover {
    transform: translateY(-8px);
    background: var(--card-hover-bg);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border-color: var(--accent-color);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--glass-bg-med);
    color: var(--accent-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 25px;
    transition: all 0.3s;
}

.single-feature:hover .feature-icon {
    background: var(--accent-gradient);
    color: var(--text-white);
    transform: scale(1.1);
}

.single-feature h4 {
    font-size: 20px;
    margin-bottom: 12px;
}

.single-feature p {
    color: var(--text-secondary);
    font-size: 15px;
}

/* ===========================
   Stats Section
=========================== */
.stats-section {
    padding: 80px 0;
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--bg-color) 100%);
    ;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    background: var(--text-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: white;
}

.stat-desc {
    color: #efefef;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ===========================
   CTA Section
=========================== */
.cta-section {
    /* background: linear-gradient(135deg, rgba(20, 20, 20, 0.95) 0%, rgba(30, 30, 30, 0.95) 100%); */
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--bg-color) 100%);
    border-top: 1px solid var(--glass-bg-med);
    border-bottom: 1px solid var(--glass-bg-med);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 300px;
    height: 300px;
    background: var(--accent-color);
    filter: blur(150px);
    opacity: 0.1;
    pointer-events: none;
}

.cta-box {
    background: linear-gradient(135deg, #1e293b, #0f172a);
    padding: 60px;
    border-radius: 24px;
    border: 1px solid var(--glass-border);
    position: relative;
    overflow: hidden;
}

.cta-content h2 {
    font-size: 42px;
    margin-bottom: 20px;
    font-weight: 700;
    /* background: linear-gradient(to right, #fff, #ffffff); */
    background: linear-gradient(to right, var(--text-white), var(--text-primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.cta-content p {
    font-size: 19px;
    /* color: var(--text-secondary); */
    color: #efefef;
    max-width: 500px;
}

/* ===========================
   Process / How it Works
=========================== */
.how-it-works-section .row,
.use-cases-section .row,
.section .row {
    --bs-gutter-x: 50px;
}

.how-it-works-section {
    background: var(--bg-color);
    padding-top: 120px;
    padding-bottom: 120px;
    position: relative;
}

.how-it-works-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 1px;
    background: radial-gradient(circle, var(--glass-bg-high) 0%, rgba(0, 0, 0, 0) 100%);
}

.single-process {
    background: linear-gradient(145deg, var(--glass-bg-med) 0%, rgba(255, 255, 255, 0.01) 100%);
    border: 1px solid var(--glass-bg-med);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.single-process:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 77, 77, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    background: linear-gradient(145deg, var(--glass-border-faint) 0%, rgba(255, 255, 255, 0.02) 100%);
}

.process-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 77, 77, 0.1);
    border-radius: 50%;
    margin: 0 auto 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    font-size: 32px;
    color: var(--accent-color);
    box-shadow: 0 0 20px var(--accent-glow-weak);
}

.process-icon .number {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 28px;
    height: 28px;
    background: var(--accent-gradient);
    color: white;
    font-size: 14px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.single-process h4 {
    margin-bottom: 15px;
    font-weight: 700;
    font-size: 20px;
    letter-spacing: -0.5px;
}

.single-process p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 15px;
}

/* ===========================
   Use Cases Section
=========================== */
.use-cases-section {
    position: relative;
    padding-bottom: 120px;
    padding-top: 50px;
}

.use-case-card {
    background: var(--card-bg-translucent);
    border: 1px solid var(--glass-border-faint);
    padding: 35px;
    border-radius: 16px;
    margin-bottom: 50px;
    transition: all 0.3s ease;
    height: 100%;
}

.use-case-card:hover {
    background: var(--card-hover-bg);
    transform: translateY(-8px);
    border-color: var(--accent-color);
}

.use-case-card .icon {
    font-size: 36px;
    margin-bottom: 25px;
    color: var(--accent-color);
    background: var(--glass-bg-low);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
}

.use-case-card h4 {
    margin-bottom: 15px;
    font-weight: 600;
}

.use-case-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ===========================
   Blog & Content Pages
=========================== */
.single-blog {
    background: var(--card-bg-translucent);
    border: 1px solid var(--glass-border-faint);
    border-radius: 16px;
    padding: 30px;
    margin-bottom: 50px;
    transition: all 0.3s ease;
    height: 100%;
}

.single-blog:hover {
    transform: translateY(-8px);
    background: var(--card-hover-bg);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border-color: var(--accent-color);
}

.single-blog h3 a {
    color: var(--text-white);
    transition: 0.3s;
}

.single-blog h3 a:hover {
    color: var(--accent-color);
}

.single-blog p {
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.read-more-btn {
    color: var(--text-white);
    font-weight: 600;
    font-size: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    padding-bottom: 2px;
}

.read-more-btn:hover {
    color: var(--accent-color);
    border-color: var(--accent-color);
}

/* Content Page Typography */
.content-wrapper {
    margin-bottom: 50px;
    padding: 60px !important;
}

.content-page h2 {
    font-size: 24px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: var(--text-white);
}

.content-page h3 {
    font-size: 20px;
    margin-top: 25px;
    margin-bottom: 12px;
    color: var(--text-white);
}

.content-page p {
    color: var(--text-secondary);
    margin-bottom: 15px;
    font-size: 1.1rem;
    line-height: 1.6;
}

.content-page ul,
.content-page ol {
    color: var(--text-secondary);
    margin-bottom: 15px;
    padding-left: 20px;
}

.content-page li {
    margin-bottom: 8px;
}

.content-page strong {
    color: var(--text-white);
}

/* ===========================
   FAQ Accordion
=========================== */
.accordion-button {
    background-color: var(--glass-bg-med);
    color: var(--text-white);
    border: 1px solid var(--glass-border);
}

.accordion-button:not(.collapsed) {
    background-color: rgba(255, 77, 77, 0.1);
    color: var(--text-white);
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: var(--accent-color);
}

.accordion-item {
    background-color: transparent;
    border: none;
    margin-bottom: 10px;
}

.accordion-body {
    background-color: rgba(255, 255, 255, 0.02);
    color: var(--text-secondary);
    border: 1px solid var(--glass-border);
    border-top: none;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
}

/* ===========================
   Pagination
=========================== */
.pagination {
    margin-top: 0;
    gap: 5px;
    margin-bottom: 0;
}

.d-none.d-md-flex.align-items-center.justify-content-between {
    width: 100%;
    background: var(--glass-bg-low);
    padding: 15px 20px;
    border-radius: 12px;
    border: 1px solid var(--glass-border-faint);
}

.text-muted {
    color: var(--text-secondary) !important;
    margin-bottom: 0;
}

.page-item .page-link {
    background-color: transparent;
    border: 1px solid var(--glass-border);
    color: var(--text-secondary);
    padding: 6px 12px;
    border-radius: 8px;
    font-weight: 500;
    font-size: 14px;
    margin-left: 4px;
}

.page-item .page-link:hover {
    background-color: var(--glass-bg-high);
    color: var(--text-white);
    border-color: rgba(255, 255, 255, 0.3);
    z-index: 2;
    transform: translateY(-1px);
}

.page-item.active .page-link {
    background: var(--accent-gradient);
    color: var(--text-white);
    border-color: transparent;
    box-shadow: 0 4px 10px rgba(220, 20, 60, 0.3);
    z-index: 3;
}

.page-item.disabled .page-link {
    background-color: transparent;
    color: rgba(255, 255, 255, 0.2);
    border-color: var(--glass-bg-med);
}

.page-link:focus {
    color: var(--text-white);
    background-color: var(--glass-bg-high);
    box-shadow: none;
}

/* ===========================
   Footer
=========================== */
.footer {
    padding-top: 80px;
    padding-bottom: 40px;
    background: var(--bg-color);
    border-top: 1px solid var(--glass-border);
    margin-top: auto;
    border-top: 0.5px solid #9c767c;
}

.footer-widget {
    margin-bottom: 24px;

}

.footer-widget h3 {
    font-size: 16px;
    margin-bottom: 12px;
    color: var(--text-white);
}

.footer-widget .links li {
    margin-bottom: 7px;
}

.footer-widget .links a,
.footer-widget ul.links li a {
    color: var(--text-muted);
    font-size: 14px;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-widget .links a:hover,
.footer-widget ul.links li a:hover {
    color: var(--accent-color);
    transform: translateX(5px);
}

.footer-widget .desc {
    color: var(--text-secondary);
    font-size: 14px;
    margin: 20px 0;
    max-width: 250px;
}

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

.social-links a {
    color: var(--text-white);
    font-size: 18px;
    opacity: 0.7;
}

.social-links a:hover {
    opacity: 1;
}

.lab74-logo-footer {
    font-size: 20px;
}

.footer-bottom {
    margin-top: 60px;
    padding-top: 20px;
    border-top: 1px solid var(--glass-border);
    text-align: center;
    color: var(--text-secondary);
    font-size: 14px;
}

.scroll-top {
    width: 45px;
    height: 45px;
    background: var(--accent-color);
    display: none;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 99;
    color: #fff;
}

.scroll-top:hover {
    background: var(--accent-color);
    color: var(--text-white);
}

/* ===========================
   Shared Utilities & Components
=========================== */

/* Unified Glass Panel Styles */
.glass-card-box,
.pricing-card-standard,
.blog-card-style,
.glass-panel-box,
.content-wrapper {
    background: var(--glass-bg-low);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
}

/* Specific paddings or overrides can remain if they differ */
.glass-card-box,
.pricing-card-standard {
    padding: 40px;
}

.glass-panel-box {
    padding: 1rem;
    /* default padding */
    border-radius: 8px;
    /* Override radius for small panels */
    background: var(--glass-bg-med);
}

/* Pricing Featured */
.pricing-card-featured {
    padding: 40px;
    border-radius: 16px;
    border: 2px solid var(--accent-color);
    height: 100%;
    background: rgba(255, 77, 77, 0.05);
    /* Slight tint of accent */
}

/* Auth Cards */
.auth-section {
    padding-top: 180px;
    padding-bottom: 100px;
    min-height: 80vh;
    display: flex;
    align-items: center;
    width: 100%;
}

.auth-card {
    background: var(--card-bg-solid);
    padding: 40px;
    border-radius: 16px;
    border: 1px solid var(--glass-border);
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
}

.auth-input,
.form-control-custom {
    background: var(--glass-bg-med);
    border: 1px solid var(--glass-border);
    color: var(--text-white);
    height: 50px;
}

.auth-input::placeholder,
.form-control-custom::placeholder {
    color: var(--text-muted);
    opacity: 1;
}

.auth-input:focus,
.form-control-custom:focus {
    background: var(--glass-bg-high);
    border-color: var(--accent-color);
    box-shadow: none;
    color: var(--text-white);
}

.bg-dark-option {
    background: var(--bg-secondary);
}

/* Contact Support Box */
.contact-support-box {
    border: 1px solid var(--accent-color);
    border-radius: 12px;
    background: rgba(255, 77, 77, 0.05);
}

/* Buttons & Links */
.btn-outline-custom {
    border: 1px solid var(--glass-border-strong);
}

.link-accent-underline {
    color: var(--accent-color);
    text-decoration: underline;
}

/* Utility Helpers */
.w-40 {
    width: 40%;
}

.w-30 {
    width: 30%;
}

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

.text-custom-green {
    color: #4CAF50;
}

.blog-detail-image {
    max-height: 400px;
}

.blog-image-style {
    height: 200px;
    object-fit: cover;
    border-radius: 16px;
}

.list-unstyled-custom {
    list-style: none;
}

.list-disc-secondary {
    list-style: disc;
    color: var(--text-secondary);
}

.badge-gradient {
    background: var(--accent-gradient) !important;
}

.table-glass {
    border-color: var(--glass-border);
}

.affiliate-card-box {
    background: var(--glass-bg-med);
    border-radius: 8px;
}

.opacity-50 {
    opacity: 0.5;
}

.h-60px {
    height: 60px;
}

.btn-google-custom {
    background: #333;
    border: none;
    height: 50px;
}

.navbar-area {
    border-bottom: 0.5px solid #9c767c;
}

#theme-toggle {
    outline: none !important;
    box-shadow: none !important;
}

/* Adaptive Outline Button */
.btn-theme-outline {
    color: var(--text-primary);
    border: 1px solid var(--text-primary);
    background: transparent;
    transition: all 0.3s ease;
}

.btn-theme-outline:hover {
    background: var(--text-primary);
    color: var(--bg-color);
    border-color: var(--text-primary);
}