/* -------------------------------------------------------------
   TLBP_GFX - DESIGN SYSTEM & MASTER STYLESHEET
   ------------------------------------------------------------- */

/* Root Variables (Design Tokens) */
:root {
    --bg-base: #030306;
    --bg-surface: #0a0a10;
    --bg-surface-elevated: #12121e;
    --bg-surface-light: rgba(255, 255, 255, 0.03);
    --bg-card: rgba(18, 18, 30, 0.7);
    --border-color: rgba(255, 255, 255, 0.08);
    --border-color-glow: rgba(0, 242, 254, 0.25);

    --primary: #00f2fe;
    --primary-alt: #4facfe;
    --primary-gradient: linear-gradient(135deg, #00f2fe 0%, #4facfe 100%);
    --secondary: #e2e8f0;
    --silver: #cbd5e1;
    --silver-gradient: linear-gradient(135deg, #ffffff 0%, #a1a1aa 100%);

    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    --text-dim: #64748b;

    --success: #10b981;
    --danger: #ef4444;
    --warning: #f59e0b;

    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    --transition-fast: 0.15s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-medium: 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-slow: 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);

    --glow-shadow: 0 0 20px rgba(0, 242, 254, 0.35);
    --glass-blur: blur(12px);
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
}

/* Light Mode Overrides */
body.light-mode {
    --bg-base: #e2e8f0;
    --bg-surface: #e2e8f0;
    --bg-surface-elevated: #e2e8f0;
    --bg-surface-light: rgba(0, 0, 0, 0.03);
    --bg-card: rgba(226, 232, 240, 0.75);
    --border-color: rgba(0, 0, 0, 0.08);
    --border-color-glow: rgba(0, 172, 254, 0.2);

    --primary: #0088cc;
    --primary-alt: #2563eb;
    --primary-gradient: linear-gradient(135deg, #0088cc 0%, #2563eb 100%);
    --secondary: #0f172a;
    --silver: #1e293b;
    --silver-gradient: linear-gradient(135deg, #0f172a 0%, #475569 100%);

    --text-main: #0f172a;
    --text-muted: #475569;
    --text-dim: #64748b;

    --glow-shadow: 0 0 15px rgba(0, 136, 204, 0.15);
}

body.light-mode #main-header {
    background: rgba(226, 232, 240, 0.8);
    border-color: rgba(0, 0, 0, 0.08);
}

body.light-mode #main-header.scrolled {
    background: rgba(226, 232, 240, 0.95);
    border-color: rgba(0, 0, 0, 0.12);
}

body.light-mode .testimonials-slider {
    background: rgba(226, 232, 240, 0.85);
    border-color: rgba(0, 0, 0, 0.06);
}

body.light-mode .btn-secondary {
    background: rgba(0, 0, 0, 0.03);
    border-color: rgba(0, 0, 0, 0.08);
}

body.light-mode .btn-secondary:hover {
    background: rgba(0, 0, 0, 0.06);
    border-color: var(--primary);
}

body.light-mode .hero-bg-overlay {
    opacity: 0.05;
    mix-blend-mode: multiply;
    -webkit-mask-image: linear-gradient(to bottom, black 0%, transparent 100%);
    mask-image: linear-gradient(to bottom, black 0%, transparent 100%);
}

body.light-mode .insta-overlay {
    background: rgba(226, 232, 240, 0.9);
}

body.light-mode .insta-overlay-stat {
    color: var(--text-main);
}

body.light-mode .calculator-summary {
    background: rgba(226, 232, 240, 0.5);
    border-color: rgba(0, 0, 0, 0.06);
}

body.light-mode footer {
    background: #e2e8f0;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    color: #0f172a;
}

body.light-mode .footer-bottom {
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

body.light-mode .admin-modal {
    background: rgba(226, 232, 240, 0.8);
}

body.light-mode .admin-modal .modal-card {
    background: #e2e8f0;
    border: 1px solid rgba(0, 0, 0, 0.15);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

body.light-mode .admin-modal .modal-header {
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

body.light-mode label {
    color: #0f172a;
}

body.light-mode .admin-modal input,
body.light-mode .admin-modal textarea {
    background: rgba(0, 0, 0, 0.04);
    border-color: rgba(0, 0, 0, 0.08);
    color: #0f172a;
}

body.light-mode .admin-modal input:focus,
body.light-mode .admin-modal textarea:focus {
    border-color: var(--primary);
    background: rgba(0, 0, 0, 0.02);
}

body.light-mode .success-notification {
    background: #e2e8f0;
    border-color: var(--success);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

body.light-mode .success-notification .notification-content {
    background: transparent;
    color: #0f172a;
}

body.light-mode .success-notification h4 {
    color: #0f172a;
}

body.light-mode .success-notification p {
    color: #475569;
}

body.light-mode .success-notification.error {
    background: #fff5f5;
    border-color: var(--danger);
    box-shadow: 0 10px 30px rgba(239, 68, 68, 0.08);
}

body.light-mode .success-notification.error .notification-icon {
    color: var(--danger);
}

body.light-mode .form-group input,
body.light-mode .form-group select,
body.light-mode .form-group textarea {
    background: rgba(0, 0, 0, 0.03);
    border-color: rgba(0, 0, 0, 0.08);
    color: #0f172a;
}

body.light-mode .form-group input::placeholder,
body.light-mode .form-group textarea::placeholder {
    color: #94a3b8;
    opacity: 1;
}

body.light-mode .form-group input:focus,
body.light-mode .form-group select:focus,
body.light-mode .form-group textarea:focus {
    background: rgba(0, 0, 0, 0.01);
    border-color: var(--primary);
    box-shadow: 0 0 10px rgba(0, 136, 204, 0.15);
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
    -webkit-tap-highlight-color: transparent;
}

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

body {
    background-color: var(--bg-base);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
}

/* Scrollbar Customization */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--bg-base);
}

::-webkit-scrollbar-thumb {
    background: #1e1e2d;
    border: 2px solid var(--bg-base);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
    box-shadow: var(--glow-shadow);
}

/* Typography & Headers */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-fast);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-padding {
    padding: 50px 0;
}

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

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

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

.mt-30 {
    margin-top: 30px;
}

.btn-block {
    width: 100%;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 600;
    padding: 14px 28px;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition-medium);
    gap: 8px;
    font-size: 15px;
    border: none;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--primary-gradient);
    color: #020205;
    box-shadow: 0 4px 15px rgba(0, 242, 254, 0.2);
}

.btn-primary:hover {
    box-shadow: 0 6px 25px rgba(0, 242, 254, 0.45);
    transform: translateY(-2px);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-main);
    border: 1px solid var(--border-color);
    backdrop-filter: var(--glass-blur);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 242, 254, 0.1);
}

.btn-danger {
    background: var(--danger);
    color: white;
}

.btn-danger:hover {
    background: #dc2626;
    transform: translateY(-2px);
}

.btn-sm {
    padding: 6px 14px;
    font-size: 12px;
    border-radius: var(--radius-sm);
}

.btn-lg {
    padding: 16px 36px;
    font-size: 17px;
    border-radius: var(--radius-lg);
}

/* Header & Navigation */
#main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(3, 3, 6, 0.7);
    backdrop-filter: var(--glass-blur);
    border-bottom: 0.5px solid rgba(255, 255, 255, 0.04);
    padding: 8px 0;
    transition: var(--transition-medium);
}

#main-header.scrolled {
    padding: 6px 0;
    background: rgba(3, 3, 6, 0.9);
    border-color: rgba(0, 242, 254, 0.08);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-svg {
    width: 100px;
    height: 100px;
    filter: drop-shadow(0 0 6px rgba(0, 242, 254, 0.3));
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

#main-header.scrolled .logo-svg {
    opacity: 1;
    visibility: visible;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

/* Hide brand name text on mobile viewports */
@media (max-width: 768px) {
    .logo-text {
        display: none;
    }
    .logo-area {
        margin-left: -6px;
    }
    .logo-svg {
        width: 32px;
        height: 32px;
    }
}

.brand-name {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 800;
    letter-spacing: 0.05em;
    color: var(--text-main);
}

.brand-name .divider {
    color: var(--primary);
    margin: 0 4px;
    font-weight: 400;
}

.sub-brand {
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.3em;
    color: var(--text-muted);
}

.mobile-drawer-header {
    display: none;
}

.mobile-drawer-footer {
    display: none;
}

.nav-links a i {
    display: none;
}

.nav-links {
    display: flex;
    gap: 24px;
}

.nav-links a {
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 600;
    color: var(--text-muted);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary);
    text-shadow: 0 0 10px rgba(0, 242, 254, 0.4);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.theme-toggle-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    color: var(--text-main);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: var(--transition-medium);
    backdrop-filter: var(--glass-blur);
}

.theme-toggle-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary);
    transform: rotate(30deg) scale(1.1);
    box-shadow: var(--glow-shadow);
}

.mobile-nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 18px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1010;
    transition: all 0.3s ease;
}

.mobile-nav-toggle span {
    display: block;
    height: 2px;
    background-color: var(--text-main);
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.68, -0.6, 0.32, 1.6);
}

/* Symmetrical but stylishly offset length of hamburger lines */
.mobile-nav-toggle span:nth-child(1) {
    width: 30px;
}

.mobile-nav-toggle span:nth-child(2) {
    width: 20px;
    align-self: flex-end;
}

.mobile-nav-toggle span:nth-child(3) {
    width: 25px;
    align-self: flex-end;
}

/* Subtle micro-interactions on hover */
.mobile-nav-toggle:hover span:nth-child(2),
.mobile-nav-toggle:hover span:nth-child(3) {
    width: 30px;
}

/* Active Morph State: A glowing Cyan X with spin */
.mobile-nav-toggle.active {
    transform: rotate(180deg);
}

.mobile-nav-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(135deg);
    background-color: var(--primary);
    box-shadow: 0 0 10px var(--primary), 0 0 20px var(--primary);
}

.mobile-nav-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-20px);
}

.mobile-nav-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-135deg);
    width: 30px;
    background-color: var(--primary);
    box-shadow: 0 0 10px var(--primary), 0 0 20px var(--primary);
}

/* Hero Section */
#hero {
    min-height: 100vh;
    padding-top: 100px;
    padding-bottom: 40px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('hero_bg.jpg') no-repeat center center;
    background-size: cover;
    opacity: 0.5;
    mix-blend-mode: screen;
    z-index: 1;
    pointer-events: none;
    -webkit-mask-image: linear-gradient(to bottom, black 0%, transparent 100%);
    mask-image: linear-gradient(to bottom, black 0%, transparent 100%);
}

.hero-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 48px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.badge-new {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 242, 254, 0.08);
    border: 1px solid var(--border-color-glow);
    padding: 6px 14px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 24px;
}

.hero-title {
    font-size: 64px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
}

.hero-description {
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 540px;
}

.hero-cta {
    display: flex;
    gap: 16px;
}

.floating-shield-wrapper {
    position: relative;
    width: 100%;
    max-width: 450px;
    margin: 0 auto;
    aspect-ratio: 1;
}

.hero-shield-svg {
    width: 100%;
    height: 100%;
    animation: float 6s ease-in-out infinite;
    filter: drop-shadow(0 10px 30px rgba(0, 242, 254, 0.25));
    transform-style: preserve-3d;
}

/* Show a smaller hero logo on mobile viewports */
@media (max-width: 768px) {
    #hero {
        padding-top: 50px;
        padding-bottom: 60px;
        min-height: 100dvh;
    }

    .hero-visual {
        order: -1;
        max-width: 200px;
        margin: 0 auto 16px;
    }

    .floating-shield-wrapper {
        max-width: 200px;
    }
}

.shield-aura {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 70%;
    height: 70%;
    background: var(--primary-gradient);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    filter: blur(80px);
    opacity: 0.15;
    z-index: -1;
    animation: pulse 4s ease-in-out infinite alternate;
}

/* Sections Global Headers */
.section-header {
    max-width: 650px;
    margin: 0 auto 60px;
}

.section-subtitle {
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--primary);
    display: block;
    margin-bottom: 12px;
}

.section-title {
    font-size: 38px;
    font-weight: 800;
}

.title-underline {
    width: 60px;
    height: 4px;
    background: var(--primary-gradient);
    border-radius: 10px;
    margin: 16px auto 0;
}

.section-desc {
    color: var(--text-muted);
    margin-top: 16px;
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--bg-card);
    backdrop-filter: var(--glass-blur);
    border: 1px solid var(--border-color);
    padding: 40px 30px;
    border-radius: var(--radius-lg);
    transition: var(--transition-medium);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-card:hover {
    border-color: var(--primary-alt);
    transform: translateY(-5px);
    box-shadow: var(--glow-shadow), 0 10px 30px rgba(0, 0, 0, 0.4);
}

.service-icon {
    font-size: 32px;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 24px;
    height: 40px;
    display: flex;
    align-items: center;
}

.service-card h3 {
    font-size: 22px;
    margin-bottom: 14px;
}

.service-card p {
    color: var(--text-muted);
    font-size: 14px;
    flex-grow: 1;
    margin-bottom: 24px;
}

.service-price {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    color: var(--text-main);
    border-top: 1px solid var(--border-color);
    padding-top: 16px;
    display: flex;
    justify-content: space-between;
}

.service-price span {
    color: var(--primary);
}

/* Before & After Slider */
.before-after-wrapper {
    max-width: 850px;
    margin: 0 auto;
}

.before-after-slider {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.6);
    border: 1px solid var(--border-color);
}

.image-before,
.image-after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.image-before img,
.image-after img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-before {
    z-index: 1;
}

.image-after {
    z-index: 2;
    clip-path: inset(0 0 0 50%);
    transition: clip-path 0.15s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.gray-sketch-img {
    filter: grayscale(1) contrast(1.2) brightness(0.8);
}

.slider-label {
    position: absolute;
    bottom: 20px;
    background: rgba(3, 3, 6, 0.75);
    backdrop-filter: var(--glass-blur);
    padding: 6px 14px;
    border-radius: var(--radius-sm);
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 600;
    border: 1px solid var(--border-color);
    z-index: 3;
}

.label-left {
    left: 20px;
    color: var(--text-muted);
}

.label-right {
    right: 20px;
    color: var(--primary);
    border-color: var(--primary-alt);
}

.slider-handle {
    position: absolute;
    top: 0;
    left: 50%;
    width: 4px;
    height: 100%;
    background: var(--primary-gradient);
    z-index: 10;
    cursor: ew-resize;
    transform: translateX(-50%);
    box-shadow: 0 0 10px var(--primary);
    transition: left 0.15s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.handle-line {
    width: 100%;
    height: 100%;
}

.handle-button {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 40px;
    height: 40px;
    background: var(--primary-gradient);
    color: #020205;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 15px rgba(0, 242, 254, 0.6);
    pointer-events: none;
}

/* Portfolio Section */
.portfolio-categories {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.portfolio-tab {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    color: var(--text-muted);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 14px;
    padding: 10px 20px;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition-fast);
}

.portfolio-tab.active {
    background: var(--primary-gradient);
    color: #020205;
    border-color: transparent;
    box-shadow: var(--glow-shadow);
}

@media (hover: hover) {
    .portfolio-tab:hover {
        background: var(--primary-gradient);
        color: #020205;
        border-color: transparent;
        box-shadow: var(--glow-shadow);
    }
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 30px;
}

.portfolio-item {
    background: var(--bg-surface);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: var(--transition-medium);
    cursor: pointer;
    position: relative;
}

.portfolio-item:hover {
    transform: translateY(-6px);
    border-color: var(--primary-alt);
    box-shadow: var(--glow-shadow);
}

.portfolio-img-wrapper {
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    position: relative;
}

.portfolio-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.portfolio-item:hover .portfolio-img-wrapper img {
    transform: scale(1.08);
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(3, 3, 6, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-fast);
    backdrop-filter: blur(4px);
    z-index: 2;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-overlay i {
    font-size: 28px;
    color: var(--primary);
    background: rgba(0, 242, 254, 0.1);
    padding: 16px;
    border-radius: 50%;
    border: 1px solid var(--border-color-glow);
    box-shadow: var(--glow-shadow);
}

.portfolio-details {
    padding: 24px;
}

.portfolio-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.portfolio-category {
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--primary);
}

.portfolio-details h3 {
    font-size: 20px;
    color: var(--text-main);
    margin-bottom: 6px;
}

.portfolio-details p {
    font-size: 13px;
    color: var(--text-muted);
}

/* Quote Calculator */
.calculator-container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    background: var(--bg-card);
    backdrop-filter: var(--glass-blur);
    border: 1px solid var(--border-color);
    padding: 40px;
    border-radius: var(--radius-lg);
}

.calc-sub-title {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--text-main);
    border-left: 3px solid var(--primary);
    padding-left: 12px;
}

.calc-items-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 35px;
}

.calc-item-checkbox {
    display: block;
    cursor: pointer;
}

.calc-item-checkbox input {
    display: none;
}

.calc-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    padding: 16px 20px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: var(--transition-fast);
}

.calc-item-checkbox:hover .calc-card {
    border-color: rgba(0, 242, 254, 0.3);
    background: rgba(0, 242, 254, 0.02);
}

.calc-item-checkbox input:checked+.calc-card {
    background: rgba(0, 242, 254, 0.06);
    border-color: var(--primary);
    box-shadow: 0 0 10px rgba(0, 242, 254, 0.15);
}

.calc-item-name {
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 600;
    color: var(--text-main);
}

.qty-selector {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-color);
}

.qty-btn {
    background: none;
    border: none;
    color: var(--text-color);
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 16px;
    transition: all var(--transition-fast);
}

.qty-btn:hover {
    background: rgba(0, 242, 254, 0.1);
    color: var(--primary);
}

.qty-val {
    width: 24px;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
}

.calc-item-cost {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--primary);
}

.calc-delivery-options {
    display: flex;
    gap: 16px;
}

.delivery-card {
    flex: 1;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    padding: 16px 20px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    transition: var(--transition-fast);
}

.delivery-card input {
    display: none;
}

.delivery-card:hover {
    border-color: rgba(255, 255, 255, 0.15);
}

.delivery-card.active {
    background: rgba(0, 242, 254, 0.06);
    border-color: var(--primary);
}

.delivery-name {
    display: block;
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 600;
}

.delivery-days {
    display: block;
    font-size: 12px;
    color: var(--text-muted);
}

.delivery-price {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--primary);
}

.calculator-summary {
    background: rgba(3, 3, 6, 0.5);
    border: 1px solid var(--border-color);
    padding: 30px;
    border-radius: var(--radius-md);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.summary-title {
    font-size: 20px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 14px;
    margin-bottom: 20px;
}

.summary-details {
    flex-grow: 1;
    margin-bottom: 30px;
}

.calc-summary-item {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.calc-summary-item .item-title {
    color: var(--text-main);
}

.empty-summary {
    color: var(--text-dim);
    font-size: 14px;
    text-align: center;
    padding: 40px 0;
}

.summary-total {
    border-top: 1px solid var(--border-color);
    padding-top: 20px;
    margin-bottom: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.summary-total span {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 600;
}

.total-price {
    font-size: 32px !important;
    font-weight: 800 !important;
    color: var(--primary);
    text-shadow: 0 0 10px rgba(0, 242, 254, 0.2);
}

/* Testimonials */
.testimonials-slider {
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
}

.testimonials-track {
    display: flex;
    transition: transform var(--transition-medium);
}

.testimonial-card {
    min-width: 100%;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 40px;
    border-radius: var(--radius-lg);
    text-align: center;
}

.review-stars {
    color: #eab308;
    margin-bottom: 20px;
}

.review-text {
    font-size: 18px;
    font-style: italic;
    color: var(--text-main);
    margin-bottom: 28px;
    line-height: 1.8;
}

.reviewer-info {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    text-align: left;
}

.reviewer-avatar {
    width: 50px;
    height: 50px;
    background: rgba(0, 242, 254, 0.1);
    border: 1px solid var(--border-color-glow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--primary);
    box-shadow: var(--glow-shadow);
}

.reviewer-name {
    font-size: 16px;
    font-weight: 700;
}

.reviewer-title {
    font-size: 13px;
    color: var(--text-muted);
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 30px;
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--text-dim);
    cursor: pointer;
    transition: var(--transition-fast);
}

.slider-dot.active {
    background: var(--primary);
    width: 24px;
    border-radius: 10px;
}

/* Instagram Feed Section */
.insta-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.insta-item {
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 1;
    position: relative;
    border: 1px solid var(--border-color);
}

.insta-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.insta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(3, 3, 6, 0.85);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    opacity: 0;
    transition: var(--transition-fast);
}

.insta-overlay a {
    display: flex;
    gap: 24px;
}

.insta-item:hover .insta-overlay {
    opacity: 1;
}

.insta-item:hover img {
    transform: scale(1.06);
}

.insta-overlay-stat {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    color: var(--text-main);
    display: flex;
    align-items: center;
    gap: 8px;
}

.insta-overlay-stat i {
    color: var(--primary);
}

/* Contact Section */
.contact-wrapper {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 40px;
    align-items: stretch;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.info-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 24px;
    border-radius: var(--radius-md);
    display: flex;
    gap: 20px;
    align-items: center;
    -webkit-tap-highlight-color: transparent;
    outline: none;
}

.info-icon {
    font-size: 24px;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    transition: var(--transition-fast);
}

.info-item:hover .info-icon {
    border-color: var(--primary-alt);
    box-shadow: var(--glow-shadow);
    color: #fff;
    background: var(--primary-gradient);
}

.info-content h4 {
    font-size: 16px;
    margin-bottom: 4px;
}

.info-content p {
    font-size: 14px;
    color: var(--text-muted);
}

.contact-link:hover,
.info-item:hover .contact-link {
    color: var(--primary);
}

.contact-form-block {
    background: var(--bg-card);
    backdrop-filter: var(--glass-blur);
    border: 1px solid var(--border-color);
    padding: 40px;
    border-radius: var(--radius-lg);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 24px;
    position: relative;
}

.form-group label {
    display: block;
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-main);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    background: rgba(15, 18, 30, 0.35);
    border: 1px solid var(--border-color);
    color: var(--text-main);
    font-family: var(--font-body);
    font-size: 14px;
    padding: 12px 16px;
    border-radius: var(--radius-md);
    outline: none;
    transition: var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 10px rgba(0, 242, 254, 0.15);
}

.form-spinner {
    display: none;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-top-color: #000;
    border-radius: 50%;
    animation: rotate 0.8s linear infinite;
}

/* Lightbox Modal */
.lightbox-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(2, 2, 4, 0.95);
    backdrop-filter: blur(8px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-medium);
}

.lightbox-modal.active {
    opacity: 1;
    pointer-events: auto;
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 30px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    color: white;
    font-size: 24px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2010;
}

.lightbox-content {
    max-width: 90%;
    max-height: 85%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.lightbox-content img {
    max-height: 65vh;
    border-radius: var(--radius-md);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
    border: 1px solid var(--border-color);
}

.lightbox-caption {
    text-align: center;
    max-width: 600px;
}

.lightbox-caption h3 {
    font-size: 24px;
    margin-bottom: 6px;
}

.lightbox-caption p {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 12px;
}

.lightbox-badge {
    display: inline-block;
    background: rgba(0, 242, 254, 0.1);
    color: var(--primary);
    border: 1px solid var(--border-color-glow);
    padding: 4px 12px;
    border-radius: 100px;
    font-size: 11px;
    font-family: var(--font-heading);
    font-weight: 700;
    text-transform: uppercase;
}

/* Light Mode overrides for Lightbox Modal */
body.light-mode .lightbox-modal {
    background: rgba(244, 246, 250, 0.96);
}

body.light-mode .lightbox-close {
    background: rgba(0, 0, 0, 0.05);
    border-color: rgba(0, 0, 0, 0.08);
    color: #0f172a;
}

body.light-mode .lightbox-close:hover {
    background: rgba(0, 0, 0, 0.1);
    color: var(--primary);
}

/* Success Notification Popup */
.success-notification {
    position: fixed;
    bottom: 30px;
    right: -400px;
    width: 350px;
    background: #0d1e21;
    border: 1px solid var(--success);
    border-radius: var(--radius-md);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 15px rgba(16, 185, 129, 0.15);
    z-index: 9999;
    transition: right var(--transition-medium);
    overflow: hidden;
}

.success-notification.active {
    right: 95px;
}

/* Dynamic Error Notification Popup */
.success-notification.error {
    background: #1f1315;
    border-color: var(--danger);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 15px rgba(239, 68, 68, 0.15);
}

.success-notification.error .notification-icon {
    color: var(--danger);
}

.notification-content {
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    position: relative;
}

.notification-icon {
    font-size: 24px;
    color: var(--success);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.notification-text h4 {
    font-size: 15px;
    margin-bottom: 4px;
    color: var(--text-main);
}

.notification-text p {
    font-size: 13px;
    color: var(--text-muted);
}

.notif-close {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    font-size: 14px;
}

/* Scroll to top */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    color: var(--text-main);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100;
    transition: var(--transition-fast);
    opacity: 0;
    pointer-events: none;
    backdrop-filter: var(--glass-blur);
}

.scroll-to-top.visible {
    opacity: 1;
    pointer-events: auto;
}

.scroll-to-top:hover {
    border-color: var(--primary);
    box-shadow: var(--glow-shadow);
    color: var(--primary);
    transform: translateY(-3px);
}

/* Footer Section */
footer {
    background: #020204;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    padding: 12px 0 8px;
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--primary) 50%, transparent 100%);
    box-shadow: 0 0 15px var(--primary);
}

body.light-mode footer::before {
    background: linear-gradient(90deg, transparent 0%, var(--primary) 50%, transparent 100%);
    box-shadow: 0 0 10px rgba(0, 136, 204, 0.4);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 8px;
}

.footer-brand .logo-area {
    margin-bottom: 20px;
}

.logo-svg-footer:hover {
    transform: scale(1.08) rotate(4deg);
    filter: drop-shadow(0 0 10px rgba(0, 242, 254, 0.5));
}

.footer-desc {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 8px;
    max-width: 320px;
    line-height: 1.6;
}

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

.social-links a {
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: var(--transition-fast) !important;
}

body.light-mode .social-links a {
    background: rgba(0, 0, 0, 0.02);
    border-color: rgba(0, 0, 0, 0.08);
}

.social-links a:hover {
    color: #020205 !important;
    background: var(--primary-gradient) !important;
    border-color: transparent !important;
    box-shadow: var(--glow-shadow) !important;
    transform: translateY(-5px) rotate(8deg);
}

body.light-mode .social-links a:hover {
    color: #ffffff !important;
}

.footer-links-col h4 {
    font-size: 16px;
    margin-bottom: 8px;
    color: var(--text-main);
    font-family: var(--font-heading);
    position: relative;
    display: inline-block;
}

.footer-links-col h4::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--primary-gradient);
    border-radius: 10px;
}

.footer-links-col ul {
    list-style: none;
}

.footer-links-col li {
    margin-bottom: 4px;
    font-size: 14.5px;
    color: var(--text-muted);
    line-height: 1.6;
}

.footer-links-col li a {
    font-size: 14.5px;
    color: var(--text-muted);
    display: inline-block;
    position: relative;
    padding-left: 0;
    transition: var(--transition-medium) !important;
}

.footer-links-col li a::before {
    content: '>';
    position: absolute;
    left: -12px;
    opacity: 0;
    color: var(--primary);
    transition: var(--transition-fast);
    font-weight: 700;
}

.footer-links-col li a:hover {
    color: var(--primary) !important;
    padding-left: 14px;
    text-shadow: 0 0 8px rgba(0, 242, 254, 0.3);
}

.footer-links-col li a:hover::before {
    opacity: 1;
    left: 0;
}

.footer-links-col p {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.footer-contact-col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-contact-col h4 {
    font-size: 16px;
    margin-bottom: 8px;
    color: var(--text-main);
    font-family: var(--font-heading);
    position: relative;
    display: inline-block;
}

.footer-contact-col h4::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--primary-gradient);
    border-radius: 10px;
}

.footer-contact-text {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 16px;
    margin-top: 12px;
}

.footer-contact-btn {
    transition: var(--transition-medium) !important;
}

/* Studio Hours Custom Cyber Badges */
.studio-hours-list {
    list-style: none !important;
    padding: 0 !important;
}

.studio-hours-list li {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    margin-bottom: 4px !important;
    font-size: 13.5px !important;
    border-bottom: 1px dashed var(--border-color) !important;
    padding-bottom: 2px !important;
    color: var(--text-muted) !important;
}

.hours-label {
    font-weight: 500;
    color: var(--text-muted);
}

.hours-val {
    font-family: var(--font-heading);
    font-size: 10px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.hours-val.status-active {
    background: rgba(0, 242, 254, 0.06);
    color: var(--primary);
    border: 1px solid rgba(0, 242, 254, 0.15);
}

body.light-mode .hours-val.status-active {
    background: rgba(0, 136, 204, 0.05);
    color: var(--primary);
    border-color: rgba(0, 136, 204, 0.2);
}

.hours-val.status-express {
    background: rgba(245, 158, 11, 0.06);
    color: var(--warning);
    border: 1px solid rgba(245, 158, 11, 0.15);
}

body.light-mode .hours-val.status-express {
    background: rgba(245, 158, 11, 0.05);
    color: var(--warning);
    border-color: rgba(245, 158, 11, 0.2);
}

.hours-val.status-priority {
    background: rgba(16, 185, 129, 0.06);
    color: var(--success);
    border: 1px solid rgba(16, 185, 129, 0.15);
    animation: flash-pulse-hours 2s infinite alternate;
}

body.light-mode .hours-val.status-priority {
    background: rgba(16, 185, 129, 0.05);
    color: var(--success);
    border-color: rgba(16, 185, 129, 0.2);
}

@keyframes flash-pulse-hours {
    0% {
        opacity: 0.8;
        box-shadow: 0 0 4px rgba(16, 185, 129, 0.2);
    }
    100% {
        opacity: 1;
        box-shadow: 0 0 10px rgba(16, 185, 129, 0.4);
    }
}

.admin-btn-footer {
    display: inline-flex;
    background: rgba(239, 68, 68, 0.08);
    border-color: rgba(239, 68, 68, 0.2);
    color: #ef4444 !important;
}

.admin-btn-footer:hover {
    background: #ef4444;
    color: white !important;
    border-color: transparent;
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3);
}

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding: 24px 0;
    font-size: 13px;
    color: var(--text-dim);
    text-align: left;
}

/* Footer Responsive Styles */
@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }
    .footer-brand .logo-area {
        margin-left: 0;
    }
    .footer-desc {
        max-width: 100%;
        margin-bottom: 20px;
    }
    .footer-links-col ul {
        padding: 0;
    }
    .footer-contact-text {
        max-width: 100%;
    }
}

/* About Section */
#about {
    position: relative;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.about-text h3 {
    font-size: 28px;
    margin-bottom: 20px;
}

.about-text p {
    color: var(--text-muted);
    margin-bottom: 20px;
}

.timeline {
    margin-top: 40px;
    border-left: 2px solid var(--border-color);
    padding-left: 24px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.timeline-item {
    position: relative;
}

.timeline-item::before {
    content: '';
    position: absolute;
    top: 5px;
    left: -31px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--primary);
    border: 2px solid var(--bg-base);
    box-shadow: var(--glow-shadow);
}

.timeline-year {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 4px;
}

.timeline-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 6px;
}

.timeline-desc {
    font-size: 13px;
    color: var(--text-muted);
}


/* =============================================================
   ADMIN PANEL STYLING (admin.html SPECIFIC)
   ============================================================= */

.admin-body {
    background-color: var(--bg-base);
    overflow-y: auto;
}

/* Admin Login Overlay */
.admin-login-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-base);
    z-index: 5000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    transition: opacity var(--transition-medium);
}

.login-card {
    background: var(--bg-surface-elevated);
    border: 1px solid var(--border-color);
    width: 100%;
    max-width: 400px;
    padding: 40px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.8);
}

.login-logo-wrapper {
    margin-bottom: 24px;
    display: flex;
    justify-content: center;
}

.login-logo-svg {
    filter: drop-shadow(0 0 10px rgba(0, 242, 254, 0.4));
}

.login-card h2 {
    font-size: 26px;
    margin-bottom: 8px;
}

.login-card p {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 30px;
}

.login-hint {
    display: block;
    font-size: 12px;
    color: var(--text-dim);
    margin-top: 10px;
}

.error-msg {
    display: none;
    color: var(--danger);
    font-size: 13px;
    font-weight: 600;
    margin-top: 14px;
}

.back-to-site-link {
    display: inline-flex;
    margin-top: 24px;
    font-size: 13px;
    color: var(--text-muted);
}

.back-to-site-link:hover {
    color: var(--primary);
}

/* Admin Dashboard Container Layout */
.admin-dashboard-container {
    display: flex;
    min-height: 100vh;
    opacity: 0;
    transition: opacity var(--transition-medium);
}

.admin-sidebar {
    width: 280px;
    background: var(--bg-surface);
    border-right: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    position: fixed;
    height: 100vh;
    z-index: 100;
    overflow: hidden; /* Keep main sidebar container non-scrollable to lock logo in place */
}

.sidebar-header {
    padding: 30px 24px;
    border-bottom: 1px solid var(--border-color);
    flex-shrink: 0; /* Lock header size */
}

.sidebar-nav {
    padding: 24px 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex-grow: 1;
    overflow-y: auto; /* Enable scrolling for the nav options/services list */
}

/* Premium micro-scrollbar design for the sidebar nav list */
.sidebar-nav::-webkit-scrollbar {
    width: 4px;
}
.sidebar-nav::-webkit-scrollbar-track {
    background: transparent;
}
.sidebar-nav::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 10px;
}
.sidebar-nav::-webkit-scrollbar-thumb:hover {
    background: var(--primary-gradient);
}

.sidebar-nav .nav-item {
    background: none;
    border: none;
    color: var(--text-muted);
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 600;
    padding: 14px 18px;
    border-radius: var(--radius-md);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 14px;
    width: 100%;
    text-align: left;
    transition: var(--transition-fast);
}

.sidebar-nav .nav-item i {
    width: 20px;
    font-size: 16px;
}

.sidebar-nav .nav-item:hover {
    background: rgba(255, 255, 255, 0.02);
    color: var(--text-main);
}

.sidebar-nav .nav-item.active {
    background: var(--primary-gradient);
    color: #020205;
    box-shadow: 0 4px 15px rgba(0, 242, 254, 0.2);
}

.badge-leads {
    margin-left: auto;
    background: rgba(239, 68, 68, 0.2);
    border: 1px solid rgba(239, 68, 68, 0.4);
    color: #f87171;
    font-size: 11px;
    padding: 2px 8px;
    border-radius: 100px;
    font-weight: 700;
}

.sidebar-nav .nav-item.active .badge-leads {
    background: #020205;
    color: var(--primary);
    border-color: transparent;
}

.sidebar-footer {
    padding: 24px;
    border-top: 1px solid var(--border-color);
}

.sidebar-nav-spacer {
    flex: 1;
}

.sidebar-nav .nav-item-logout {
    margin-top: 8px;
    border-top: 1px solid var(--border-color);
    border-radius: 0;
    padding-top: 20px;
}

.sidebar-nav .nav-item-logout:hover {
    color: var(--danger) !important;
    background: rgba(239, 68, 68, 0.06);
}

/* Admin Main Area */
.admin-main {
    margin-left: 280px;
    flex-grow: 1;
    padding: 40px;
    min-height: 100vh;
}

.admin-header-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 24px;
    margin-bottom: 40px;
    position: sticky;
    top: 0;
    z-index: 50;
    background: var(--bg-base);
}

.header-bar-title h2 {
    font-size: 28px;
}

.admin-user-info {
    display: flex;
    align-items: center;
    gap: 16px;
}

.admin-header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.admin-badge {
    background: rgba(0, 242, 254, 0.08);
    border: 1px solid var(--border-color-glow);
    color: var(--primary);
    padding: 6px 14px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 600;
}

/* Tab Panels */
.tab-panel {
    display: none;
}

.tab-panel.active {
    display: block;
    animation: fadeIn 0.4s ease-in-out forwards;
}

/* Overview Section Styling */
.overview-metrics {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.metric-card {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    padding: 24px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    gap: 20px;
    transition: transform var(--transition-medium), border-color var(--transition-fast), box-shadow var(--transition-medium);
}

.metric-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: var(--glow-shadow), 0 10px 30px rgba(0, 0, 0, 0.2);
}

.metric-icon {
    font-size: 24px;
    width: 50px;
    height: 50px;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
}

.metric-info h3 {
    font-size: 26px;
    line-height: 1.1;
    margin-bottom: 4px;
}

.metric-info p {
    font-size: 13px;
    color: var(--text-muted);
}

.overview-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 30px;
}

.dashboard-card {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    padding: 30px;
    border-radius: var(--radius-lg);
    height: 100%;
    transition: transform var(--transition-medium), border-color var(--transition-fast), box-shadow var(--transition-medium);
}

.dashboard-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-alt);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.dashboard-card h3 {
    font-size: 18px;
    margin-bottom: 4px;
}

.card-subtitle {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 30px;
}

/* Mock Chart CSS */
.chart-container {
    height: 250px;
    display: flex;
    align-items: flex-end;
}

.mock-chart {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 10px;
}

.chart-bar-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-grow: 1;
    height: 100%;
    justify-content: flex-end;
}


.chart-bar {
    width: 32px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    border-radius: 4px 4px 0 0;
    position: relative;
    transition: height 1s ease-in-out;
}

.chart-bar.has-data {
    background: rgba(0, 242, 254, 0.18);
    border-color: rgba(0, 242, 254, 0.4);
}

.chart-bar.has-data .bar-value {
    opacity: 1;
    color: var(--text-muted);
}


.chart-bar:hover,
.chart-bar.active {
    background: var(--primary-gradient);
    border-color: transparent;
    box-shadow: var(--glow-shadow);
}

.bar-value {
    position: absolute;
    top: -24px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 11px;
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--text-muted);
    opacity: 0;
    transition: opacity 0.2s;
}

.chart-bar:hover .bar-value {
    opacity: 1;
    color: var(--primary);
}

.bar-label {
    font-size: 11px;
    color: var(--text-muted);
    margin-top: 8px;
}

/* Recent Leads list */
.recent-leads-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.recent-lead-item {
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid var(--border-color);
    padding: 16px;
    border-radius: var(--radius-md);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.lead-primary-info h4 {
    font-size: 14px;
    margin-bottom: 2px;
}

.lead-primary-info p {
    font-size: 12px;
    color: var(--text-muted);
}

.lead-category-badge {
    display: inline-block;
    font-size: 11px;
    padding: 4px 12px;
    border-radius: 100px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    white-space: nowrap;
    transition: all 0.2s ease-in-out;
}

.lead-category-badge.badge-order {
    background: rgba(0, 242, 254, 0.08);
    border: 1px solid rgba(0, 242, 254, 0.25);
    color: var(--primary);
    box-shadow: 0 0 10px rgba(0, 242, 254, 0.05);
}

.lead-category-badge.badge-support {
    background: rgba(239, 68, 68, 0.08);
    border: 1px solid rgba(239, 68, 68, 0.25);
    color: var(--danger);
    box-shadow: 0 0 10px rgba(239, 68, 68, 0.05);
}

.lead-category-badge.badge-member {
    background: rgba(16, 185, 129, 0.08);
    border: 1px solid rgba(16, 185, 129, 0.25);
    color: var(--success);
    box-shadow: 0 0 10px rgba(16, 185, 129, 0.05);
}

.lead-category-badge.badge-inquiry {
    background: rgba(245, 158, 11, 0.08);
    border: 1px solid rgba(245, 158, 11, 0.25);
    color: var(--warning);
    box-shadow: 0 0 10px rgba(245, 158, 11, 0.05);
}

/* Light mode overrides for categories */
body.light-mode .lead-category-badge.badge-order {
    background: rgba(0, 242, 254, 0.05);
    border-color: rgba(0, 242, 254, 0.4);
}

body.light-mode .lead-category-badge.badge-support {
    background: rgba(239, 68, 68, 0.05);
    border-color: rgba(239, 68, 68, 0.4);
}

body.light-mode .lead-category-badge.badge-member {
    background: rgba(16, 185, 129, 0.05);
    border-color: rgba(16, 185, 129, 0.4);
}

body.light-mode .lead-category-badge.badge-inquiry {
    background: rgba(245, 158, 11, 0.05);
    border-color: rgba(245, 158, 11, 0.4);
}

/* Panel Common Actions Row */
.panel-actions-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.panel-desc-text {
    color: var(--text-muted);
    font-size: 14px;
}

.panel-btn-group {
    display: flex;
    gap: 8px;
    align-items: center;
}

/* Tables Styling */
.projects-table-wrapper,
.leads-table-wrapper {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    overflow-x: auto;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

.admin-table th,
.admin-table td {
    padding: 18px 24px;
    border-bottom: 1px solid var(--border-color);
    font-size: 14px;
}

.admin-table th {
    background: rgba(255, 255, 255, 0.02);
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--text-main);
}

.admin-table tbody tr {
    transition: background-color var(--transition-fast);
}

.admin-table tbody tr:hover {
    background-color: rgba(255, 255, 255, 0.015);
}

body.light-mode .admin-table tbody tr:hover {
    background-color: rgba(0, 0, 0, 0.015);
}

.admin-table tbody tr:last-child td {
    border-bottom: none;
}

.table-img {
    width: 60px;
    height: 45px;
    object-fit: cover;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-color);
}

.badge-cat {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    color: var(--text-muted);
    padding: 4px 10px;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
}

.badge-lead-status {
    padding: 4px 10px;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 700;
    display: inline-block;
}

.status-new {
    background: rgba(59, 130, 246, 0.15);
    color: #60a5fa;
    border: 1px solid rgba(59, 130, 246, 0.3);
}

.status-contacted {
    background: rgba(16, 185, 129, 0.15);
    color: #34d399;
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.status-archived {
    background: rgba(100, 116, 139, 0.15);
    color: #94a3b8;
    border: 1px solid rgba(100, 116, 139, 0.3);
}

.table-actions {
    display: flex;
    gap: 8px;
}

.btn-icon {
    width: 32px;
    height: 32px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    color: var(--text-muted);
    cursor: pointer;
    transition: var(--transition-fast);
}

.btn-icon:hover {
    color: var(--text-main);
    background: rgba(255, 255, 255, 0.08);
}

.btn-icon.edit:hover {
    color: var(--primary);
    border-color: rgba(0, 242, 254, 0.4);
}

.btn-icon.delete:hover {
    color: var(--danger);
    border-color: rgba(239, 110, 110, 0.4);
}

/* Services Admin visual blocks */
.services-list-container {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.service-admin-item {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    padding: 24px;
    border-radius: var(--radius-lg);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.srv-meta {
    display: flex;
    align-items: center;
    gap: 20px;
}

.srv-icon-box {
    font-size: 24px;
    width: 50px;
    height: 50px;
    background: rgba(0, 242, 254, 0.05);
    border: 1px solid var(--border-color-glow);
    border-radius: var(--radius-md);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.srv-text-info h4 {
    font-size: 18px;
    margin-bottom: 4px;
}

.srv-text-info p {
    font-size: 13px;
    color: var(--text-muted);
    max-width: 500px;
}

.srv-financials {
    display: flex;
    align-items: center;
    gap: 30px;
}

.srv-cost {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    color: var(--primary);
}

/* Settings Form */
.form-settings-card {
    max-width: 750px;
}

.form-divider-title {
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 700;
    color: var(--primary);
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 8px;
    margin: 30px 0 20px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.db-utils-row {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 10px;
}

/* Modals */
.admin-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(2, 2, 4, 0.85);
    backdrop-filter: blur(6px);
    z-index: 4000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-medium);
    padding: 20px;
}

.admin-modal.active {
    opacity: 1;
    pointer-events: auto;
}

.modal-card {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    width: 100%;
    max-width: 550px;
    max-height: 90vh;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7);
    overflow-y: auto;
    overflow-x: hidden;
    overscroll-behavior: contain;
}

.modal-header {
    padding: 24px;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.btn-close-modal {
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 20px;
    cursor: pointer;
}

.admin-modal form {
    padding: 24px;
}

.modal-footer {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    border-top: 1px solid var(--border-color);
    padding-top: 20px;
    margin-top: 20px;
}

/* Custom File Upload Styling */
.image-source-toggle {
    display: flex;
    gap: 12px;
    margin-bottom: 10px;
}

.src-toggle {
    flex: 1;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    padding: 10px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    font-size: 13px;
    text-align: center;
    font-weight: 600;
}

.src-toggle input {
    display: none;
}

.src-toggle.active {
    background: rgba(0, 242, 254, 0.08);
    border-color: var(--primary);
    color: var(--primary);
}

.custom-file-input {
    position: relative;
    width: 100%;
    height: 100px;
    border: 2px dashed var(--border-color);
    border-radius: var(--radius-md);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.custom-file-input:hover {
    border-color: var(--primary);
    background: rgba(0, 242, 254, 0.02);
}

.custom-file-input input {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

.file-dummy {
    text-align: center;
    color: var(--text-muted);
}

.file-dummy i {
    font-size: 24px;
    margin-bottom: 8px;
    color: var(--primary);
}

.file-dummy span {
    display: block;
    font-size: 13px;
}

.file-hint {
    display: block;
    font-size: 11px;
    color: var(--text-dim);
    margin-top: 6px;
}

.project-modal-preview {
    width: 100%;
    height: 150px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    margin-top: 16px;
    display: none;
    overflow: hidden;
    position: relative;
}

.project-modal-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Empty states */
.empty-state {
    text-align: center;
    color: var(--text-dim);
    font-size: 14px;
    padding: 40px 0;
}

/* Animations */
@keyframes float {
    0% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-12px) rotate(1deg);
    }

    100% {
        transform: translateY(0px) rotate(0deg);
    }
}

@keyframes pulse {
    0% {
        transform: translate(-50%, -50%) scale(0.9);
        opacity: 0.1;
    }

    100% {
        transform: translate(-50%, -50%) scale(1.1);
    opacity: 0.4;
    }
}

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

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

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(12px) scale(0.985);
    }

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

.animate-glow {
    animation: glow-pulse 3s infinite alternate;
}

@keyframes glow-pulse {
    0% {
        box-shadow: 0 0 10px rgba(0, 242, 254, 0.15);
    }

    100% {
        box-shadow: 0 0 25px rgba(0, 242, 254, 0.45);
    }
}

/* Intersection Observer animations styling */
.fade-up-init {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.fade-up-active {
    opacity: 1;
    transform: translateY(0);
}


/* =============================================================
   RESPONSIVENESS & MEDIA QUERIES
   ============================================================= */

@media (max-width: 1024px) {
    .hero-title {
        font-size: 50px;
    }

    .hero-container {
        gap: 30px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .stat-card {
        border-right: none;
        border-bottom: 1px solid var(--border-color);
        padding-bottom: 15px;
    }

    .stat-card:nth-child(3),
    .stat-card:nth-child(4) {
        border-bottom: none;
        padding-bottom: 0;
        padding-top: 15px;
    }

    .calculator-container {
        grid-template-columns: 1fr;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .admin-sidebar {
        width: 80px;
    }

    .sidebar-nav .nav-item span,
    .sidebar-header .brand-name,
    .sidebar-footer button span {
        display: none;
    }

    .sidebar-nav .nav-item {
        justify-content: center;
        padding: 14px;
    }

    .sidebar-nav .nav-item i {
        margin-right: 0;
    }

    .admin-main {
        margin-left: 80px;
        padding: 24px;
    }

    .overview-metrics {
        grid-template-columns: repeat(2, 1fr);
    }

    .overview-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    /* Override primary button so it is transparent with border (no neon color/glow) */
    .btn-primary {
        background: transparent !important;
        color: var(--text-main) !important;
        border: 1px solid var(--border-color) !important;
        box-shadow: none !important;
    }
    .btn-primary:hover {
        background: rgba(255, 255, 255, 0.05) !important;
        box-shadow: none !important;
        transform: none !important;
    }

    /* Retain original cyan color/neon styling specifically for the main contact submit button and mobile login button */
    #btn-submit-form,
    #btn-mobile-drawer-action.btn-primary,
    #btn-header-register {
        background: var(--primary-gradient) !important;
        color: #020205 !important;
        box-shadow: 0 4px 15px rgba(0, 242, 254, 0.2) !important;
        border: none !important;
    }
    #btn-submit-form:hover,
    #btn-mobile-drawer-action.btn-primary:hover,
    #btn-header-register:hover {
        background: var(--primary-gradient) !important;
        box-shadow: 0 6px 25px rgba(0, 242, 254, 0.45) !important;
        transform: translateY(-2px) !important;
    }

    body.light-mode #btn-submit-form,
    body.light-mode #btn-mobile-drawer-action.btn-primary,
    body.light-mode #btn-header-register {
        color: #ffffff !important;
    }

    /* Retain original cyan color/neon styling specifically for the Contact Us footer button */
    .footer-contact-btn {
        background: var(--primary-gradient) !important;
        color: #020205 !important;
        box-shadow: 0 4px 15px rgba(0, 242, 254, 0.2) !important;
        border: none !important;
    }
    .footer-contact-btn:hover {
        background: var(--primary-gradient) !important;
        box-shadow: 0 6px 25px rgba(0, 242, 254, 0.45) !important;
        transform: translateY(-2px) !important;
    }

    /* Disable hover/active/focus transforms/glows on cards to prevent sticky touch states */
    .service-card:hover,
    .portfolio-item:hover,
    .info-item:hover,
    .info-item:active,
    .info-item:focus,
    .theme-toggle-btn:hover,
    .logo-svg-footer:hover {
        transform: none !important;
        box-shadow: none !important;
        filter: none !important;
        border-color: var(--border-color) !important;
        outline: none !important;
    }

    /* Disable sticky hover/active/focus cyan glows on contact card icons */
    .info-item:hover .info-icon,
    .info-item:active .info-icon,
    .info-item:focus .info-icon {
        border-color: var(--border-color) !important;
        box-shadow: none !important;
        background: rgba(255, 255, 255, 0.03) !important;
        color: var(--primary) !important;
    }

    .section-padding {
        padding: 70px 0;
    }

    .nav-container {
        padding: 0 16px;
    }

    .header-actions {
        gap: 8px;
    }

    .profile-avatar-btn {
        padding: 6px 12px !important;
        gap: 6px !important;
    }

    .theme-toggle-btn {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }

    .mobile-nav-toggle {
        display: flex;
        z-index: 1010;
    }

    .mobile-nav-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(3, 3, 6, 0.5);
        backdrop-filter: blur(6px);
        -webkit-backdrop-filter: blur(6px);
        z-index: 999;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.4s ease;
    }

    .mobile-nav-overlay.active {
        opacity: 1;
        pointer-events: auto;
    }

    body.light-mode .mobile-nav-overlay {
        background: rgba(15, 23, 42, 0.2);
    }

    .mobile-drawer-header {
        display: flex !important;
        align-items: center;
        width: 100%;
        padding: 24px 8px 16px;
        border-bottom: 1px solid var(--border-color);
        margin-bottom: 16px;
    }

    #header-user-profile {
        display: none !important;
    }

    .mobile-drawer-footer {
        display: flex !important;
        flex-direction: column;
        gap: 10px;
        width: 100%;
        padding: 16px 8px;
        border-top: 1px solid var(--border-color);
        margin-top: auto;
        margin-bottom: 20px;
    }

    .mobile-profile-card {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 12px;
        background: rgba(255, 255, 255, 0.02);
        border: 1px solid var(--border-color);
        border-radius: var(--radius-md);
        text-align: left;
        cursor: pointer;
        transition: var(--transition-fast);
    }

    .mobile-profile-card:hover {
        background: rgba(255, 255, 255, 0.05);
        border-color: var(--primary-alt);
    }

    body.light-mode .mobile-profile-card {
        background: rgba(0, 0, 0, 0.02);
    }

    body.light-mode .mobile-profile-card:hover {
        background: rgba(0, 0, 0, 0.04);
        border-color: var(--primary-alt);
    }

    .mobile-profile-avatar {
        width: 36px;
        height: 36px;
        border-radius: 50%;
        background: var(--primary-gradient);
        display: flex;
        align-items: center;
        justify-content: center;
        color: #020205;
        font-size: 14px;
        flex-shrink: 0;
    }

    body.light-mode .mobile-profile-avatar {
        color: #ffffff;
    }

    .mobile-profile-meta {
        display: flex;
        flex-direction: column;
        overflow: hidden;
    }

    .mobile-profile-name {
        font-family: var(--font-heading);
        font-weight: 700;
        font-size: 14px;
        color: var(--text-main);
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .mobile-profile-email {
        font-size: 11px;
        color: var(--text-dim);
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .mobile-profile-actions {
        display: flex;
        gap: 8px;
        width: 100%;
    }

    .mobile-profile-action-btn {
        flex: 1;
        background: rgba(255, 255, 255, 0.02);
        border: 1px solid var(--border-color);
        color: var(--text-muted);
        border-radius: var(--radius-sm);
        padding: 8px 6px;
        font-size: 12px;
        font-weight: 600;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 6px;
        transition: var(--transition-fast);
        outline: none;
        font-family: var(--font-heading);
    }

    body.light-mode .mobile-profile-action-btn {
        background: rgba(0, 0, 0, 0.02);
    }

    .mobile-profile-action-btn:hover {
        background: rgba(255, 255, 255, 0.05);
        color: var(--primary);
        border-color: var(--primary-alt);
    }

    body.light-mode .mobile-profile-action-btn:hover {
        background: rgba(0, 0, 0, 0.04);
    }

    .nav-links {
        position: fixed;
        top: 0;
        left: -290px;
        width: 280px;
        height: 100dvh;
        background: var(--bg-surface);
        border-right: 1px solid var(--border-color);
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        padding: 0 16px 30px 16px;
        gap: 6px;
        z-index: 1005;
        transition: left 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        will-change: left;
        box-shadow: 5px 0 25px rgba(0, 0, 0, 0.15);
        clip-path: none;
        pointer-events: auto;
        overflow-y: auto;
        overflow-x: hidden;
        overscroll-behavior: contain;
        scrollbar-width: thin;
        scrollbar-color: var(--border-color) transparent;
    }

    .nav-links::-webkit-scrollbar {
        width: 4px;
    }

    .nav-links::-webkit-scrollbar-track {
        background: transparent;
    }

    .nav-links::-webkit-scrollbar-thumb {
        background: var(--border-color);
        border-radius: 4px;
    }

    .nav-links::-webkit-scrollbar-thumb:hover {
        background: var(--primary);
    }

    .nav-links.active {
        left: 0;
    }

    .nav-links a {
        display: flex;
        align-items: center;
        gap: 12px;
        width: 100%;
        padding: 12px 16px;
        border-radius: var(--radius-md);
        color: var(--text-muted);
        font-family: var(--font-heading);
        font-size: 15px !important;
        font-weight: 600;
        transform: none;
        opacity: 1;
        transition: var(--transition-fast);
        text-shadow: none !important;
    }

    .nav-links a i {
        display: inline-block !important;
        width: 20px;
        font-size: 16px;
        text-align: center;
    }

    .nav-links a:hover {
        background: rgba(255, 255, 255, 0.03);
        color: var(--text-main);
    }

    body.light-mode .nav-links a:hover {
        background: rgba(0, 0, 0, 0.03);
    }

    .nav-links a.active {
        background: var(--primary-gradient);
        color: #020205 !important;
        box-shadow: 0 4px 15px rgba(0, 242, 254, 0.2);
    }

    body.light-mode .nav-links a.active {
        color: #ffffff !important;
        box-shadow: 0 4px 15px rgba(0, 136, 204, 0.2);
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        padding-top: 60px;
    }

    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-cta {
        justify-content: center;
    }

    .stats-grid {
        margin-top: 40px;
    }

    .calc-items-grid {
        grid-template-columns: 1fr;
    }

    .calc-delivery-options {
        flex-direction: column;
        gap: 12px;
    }

    .calculator-container {
        padding: 24px 16px;
    }

    .calculator-summary {
        padding: 20px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .insta-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .before-after-slider {
        aspect-ratio: 4 / 3;
    }

    /* Responsive Admin dashboard adjustments */
    .admin-header-bar {
        flex-direction: column;
        align-items: stretch;
        gap: 16px;
        padding-bottom: 16px;
        margin-bottom: 24px;
        position: sticky;
        top: 0;
        z-index: 50;
        background: var(--bg-base);
    }

    .admin-header-right {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        gap: 12px;
    }

    .admin-global-search {
        flex: 1;
        max-width: 100%;
    }

    .admin-user-info {
        width: auto;
        justify-content: flex-end;
    }

    .overview-metrics {
        grid-template-columns: 1fr;
    }

    .db-editor-textarea {
        height: 380px !important;
    }
}

@media (max-width: 480px) {
    .header-actions {
        gap: 8px;
    }

    .profile-avatar-btn {
        padding: 6px 12px !important;
        gap: 6px !important;
    }

    .hero-title {
        font-size: 38px;
    }

    .hero-cta {
        flex-direction: column;
        width: 100%;
    }

    .hero-cta .btn {
        width: 100%;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .stat-card {
        border-bottom: 1px solid var(--border-color);
        padding: 15px 0;
    }

    .stat-card:last-child {
        border-bottom: none;
    }

    .stat-card:first-child {
        padding-top: 0;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
    }

    .insta-grid {
        grid-template-columns: 1fr;
    }

    .contact-form-block {
        padding: 24px;
    }

    .success-notification {
        width: calc(100vw - 40px);
        right: calc(-100vw - 40px);
    }

    .success-notification.active {
        right: 20px;
    }

    .db-editor-textarea {
        height: 280px !important;
    }

    .recent-lead-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-visual {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
    border: 1px solid var(--border-color);
}

.about-visual img {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.about-visual:hover img {
    transform: scale(1.05);
}

.about-content h3 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--text-main);
}

.about-content p {
    color: var(--text-muted);
    font-size: 16px;
    margin-bottom: 24px;
    line-height: 1.7;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 35px;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
}

.about-feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 15px;
}

.about-feature-item i {
    color: var(--primary);
    font-size: 20px;
    background: rgba(0, 242, 254, 0.1);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: var(--glow-shadow);
}

@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* =============================================================
   24/7 AI SUPPORT CHATBOT WIDGET
   ============================================================= */
.chatbot-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 3000;
    font-family: var(--font-body);
}

/* Closed state bubble button */
.chatbot-bubble-btn {
    background: var(--primary-gradient);
    border: none;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #020205;
    font-size: 22px;
    box-shadow: 0 8px 32px rgba(0, 242, 254, 0.4), var(--glow-shadow);
    transition: var(--transition-medium);
    position: relative;
}

.chatbot-bubble-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 12px 40px rgba(0, 242, 254, 0.6), var(--glow-shadow);
}

.chatbot-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--danger);
    color: white;
    font-size: 10px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 100px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 4px 10px rgba(239, 68, 68, 0.4);
    animation: bounce-badge 2s infinite;
}

@keyframes bounce-badge {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-4px);
    }
}

/* Chat Window Container */
.chatbot-window {
    position: absolute;
    bottom: 70px;
    right: 0;
    width: 330px;
    height: 450px;
    background: rgba(10, 10, 16, 0.95);
    backdrop-filter: var(--glass-blur);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.8), 0 0 25px rgba(0, 242, 254, 0.1);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transform: translateY(20px) scale(0.9);
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-medium);
    transform-origin: bottom right;
}

.chatbot-window.active {
    transform: translateY(0) scale(1);
    opacity: 1;
    pointer-events: auto;
}

/* Chat Header */
.chatbot-header {
    background: rgba(18, 18, 30, 0.8);
    border-bottom: 1px solid var(--border-color);
    padding: 12px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.chatbot-header-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.chatbot-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(0, 242, 254, 0.1);
    border: 1px solid var(--border-color-glow);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 20px;
    position: relative;
    box-shadow: var(--glow-shadow);
}

.online-indicator {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 10px;
    height: 10px;
    background: var(--success);
    border-radius: 50%;
    border: 2px solid rgba(10, 10, 16, 0.95);
    box-shadow: 0 0 8px var(--success);
}

.chatbot-header h4 {
    font-size: 15px;
    color: var(--text-main);
    margin: 0;
}

.chatbot-header p {
    font-size: 11px;
    color: var(--text-muted);
    margin: 0;
}

.chatbot-close-btn {
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 18px;
    cursor: pointer;
    transition: var(--transition-fast);
}

.chatbot-close-btn:hover {
    color: var(--danger);
    transform: rotate(90deg);
}

/* Messages Display */
.chatbot-messages {
    flex: 1;
    overflow-y: auto;
    padding: 15px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.chat-message {
    display: flex;
    max-width: 85%;
}

.chat-message.bot {
    align-self: flex-start;
}

.chat-message.client {
    align-self: flex-end;
}

.message-bubble {
    padding: 12px 16px;
    border-radius: var(--radius-md);
    font-size: 13.5px;
    line-height: 1.5;
    word-break: break-word;
}

.chat-message.bot .message-bubble {
    background: var(--bg-surface-elevated);
    border: 1px solid var(--border-color);
    color: var(--text-main);
    border-top-left-radius: 2px;
}

.chat-message.client .message-bubble {
    background: var(--primary-gradient);
    color: #020205;
    font-weight: 500;
    border-top-right-radius: 2px;
}

/* Chips list styling */
.chat-message-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 4px;
    align-self: flex-start;
}

.chat-chip {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    color: var(--primary);
    padding: 6px 14px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-fast);
}

.chat-chip:hover {
    background: var(--primary-gradient);
    color: #020205;
    border-color: transparent;
    box-shadow: var(--glow-shadow);
    transform: translateY(-2px);
}

/* Typing Indicator Animation */
.typing-indicator {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 4px 8px;
}

.typing-dot {
    width: 6px;
    height: 6px;
    background-color: var(--primary);
    border-radius: 50%;
    animation: typing 1s infinite alternate;
}

.typing-dot:nth-child(2) {
    animation-delay: 0.2s;
}

.typing-dot:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes typing {
    0% {
        transform: translateY(0);
        opacity: 0.3;
    }

    100% {
        transform: translateY(-5px);
        opacity: 1;
    }
}

/* Footer Input Area */
.chatbot-input-area {
    padding: 12px 16px;
    background: rgba(18, 18, 30, 0.6);
    border-top: 1px solid var(--border-color);
    display: flex;
    gap: 10px;
    align-items: center;
}

.chatbot-input-area input {
    flex: 1;
    background: rgba(3, 3, 6, 0.8);
    border: 1px solid var(--border-color);
    color: var(--text-main);
    padding: 12px 16px;
    border-radius: var(--radius-md);
    outline: none;
    font-size: 13px;
    transition: var(--transition-fast);
}

.chatbot-input-area input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 10px rgba(0, 242, 254, 0.15);
}

.chatbot-send-btn {
    background: var(--primary-gradient);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: var(--radius-md);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #020205;
    font-size: 14px;
    transition: var(--transition-medium);
}

.chatbot-send-btn:hover {
    transform: scale(1.05);
    box-shadow: var(--glow-shadow);
}

/* Responsive tweaks */
@media (max-width: 480px) {
    .chatbot-window {
        width: calc(100vw - 40px);
        height: 420px;
        bottom: 65px;
    }
}

/* Light mode support */
body.light-mode .chatbot-window {
    background: rgba(255, 255, 255, 0.95);
    border-color: rgba(0, 0, 0, 0.08);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15), 0 0 25px rgba(0, 136, 204, 0.08);
}

body.light-mode .chatbot-header {
    background: #f4f6fa;
    border-bottom-color: rgba(0, 0, 0, 0.06);
}

body.light-mode .chatbot-header h4 {
    color: #0f172a;
}

body.light-mode .chatbot-header p {
    color: #64748b;
}

body.light-mode .chat-message.bot .message-bubble {
    background: #ffffff;
    border-color: rgba(0, 0, 0, 0.06);
    color: #0f172a;
}

body.light-mode .chat-chip {
    background: rgba(0, 0, 0, 0.02);
    border-color: rgba(0, 0, 0, 0.06);
    color: var(--primary);
}

body.light-mode .chat-chip:hover {
    background: var(--primary-gradient);
    color: #ffffff;
    box-shadow: var(--glow-shadow);
}

body.light-mode .chatbot-input-area {
    background: #fcfdfe;
    border-top-color: rgba(0, 0, 0, 0.06);
}

body.light-mode .chatbot-input-area input {
    background: #f4f6fa;
    border-color: rgba(0, 0, 0, 0.06);
    color: #0f172a;
}

body.light-mode .chatbot-input-area input:focus {
    background: #ffffff;
    border-color: var(--primary);
}

/* -------------------------------------------------------------
   3. ACTION-GATED REGISTRATION SHIELD MODAL
   ------------------------------------------------------------- */
.registration-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(3, 3, 6, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    display: flex;
    align-items: flex-start;
    justify-content: center;
    overflow-y: auto;
    z-index: 99999;
    padding: 40px 20px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1),
        visibility 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.registration-overlay.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.registration-card {
    background: rgba(18, 18, 30, 0.85);
    border: 1px solid var(--border-color-glow);
    border-radius: var(--radius-lg);
    width: 100%;
    max-width: 500px;
    padding: 30px 40px;
    text-align: center;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), var(--glow-shadow);
    margin: auto;
    transform: scale(0.9) translateY(-20px);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.registration-overlay.active .registration-card {
    transform: scale(1) translateY(0);
}

.registration-card h2 {
    font-size: 26px;
    margin-bottom: 8px;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: var(--font-heading);
}

.reg-subtitle {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 16px;
}

.registration-card .form-group {
    margin-bottom: 12px;
}

.registration-card label {
    display: block;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 11px;
    color: var(--text-main);
    margin-bottom: 4px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.registration-card input {
    width: 100%;
    background: rgba(3, 3, 6, 0.6);
    border: 1px solid var(--border-color);
    color: var(--text-main);
    padding: 10px 14px;
    border-radius: var(--radius-md);
    outline: none;
    font-family: var(--font-body);
    font-size: 13px;
    transition: var(--transition-fast);
}

.registration-card input:focus {
    border-color: var(--primary);
    background: rgba(3, 3, 6, 0.8);
    box-shadow: 0 0 12px rgba(0, 242, 254, 0.15);
}

.reg-close:hover {
    color: var(--danger) !important;
    transform: rotate(90deg) scale(1.1);
}

.reg-footer {
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid var(--border-color);
}

.reg-footer p {
    color: var(--text-dim);
    font-size: 12px;
    line-height: 1.4;
}

/* Light mode overrides for registration gate */
body.light-mode .registration-overlay {
    background: rgba(244, 246, 250, 0.85);
}

body.light-mode .registration-card {
    background: rgba(255, 255, 255, 0.95);
    border-color: rgba(0, 0, 0, 0.08);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1), 0 0 25px rgba(0, 136, 204, 0.1);
}

body.light-mode .registration-card h2 {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

body.light-mode .reg-subtitle {
    color: var(--text-muted);
}

body.light-mode .registration-card label {
    color: #0f172a;
}

body.light-mode .registration-card input {
    background: #f4f6fa;
    border-color: rgba(0, 0, 0, 0.08);
    color: #0f172a;
}

body.light-mode .registration-card input:focus {
    background: #ffffff;
    border-color: var(--primary);
    box-shadow: 0 0 10px rgba(0, 136, 204, 0.15);
}

body.light-mode .reg-footer {
    border-top-color: rgba(0, 0, 0, 0.06);
}

body.light-mode .reg-footer p {
    color: var(--text-dim);
}

/* =============================================================
   USER PROFILE DROPDOWN MENU WIDGET STYLING
   ============================================================= */
.profile-dropdown-menu {
    position: absolute;
    top: calc(100% + 20px);
    right: 0;
    background: rgba(18, 18, 30, 0.95);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid var(--border-color-glow);
    border-radius: var(--radius-md);
    width: 220px;
    padding: 10px 0;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.5);
    z-index: 100000;
    text-align: left;
}

.dropdown-profile-header {
    padding: 10px 20px;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 8px;
}

.dropdown-profile-header h5 {
    margin: 0;
    font-size: 14px;
    color: var(--text-main);
    font-family: var(--font-heading);
}

.dropdown-profile-header span {
    font-size: 11px;
    color: var(--text-dim);
    display: block;
    word-break: break-all;
    margin-top: 2px;
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    font-size: 13px;
    color: var(--text-main);
    transition: var(--transition-fast) !important;
    text-decoration: none;
}

.dropdown-item:hover {
    background: rgba(255, 255, 255, 0.05);
    color: var(--primary) !important;
}

.profile-dropdown-menu .dropdown-divider {
    border-top: 1px solid var(--border-color);
    margin-top: 8px;
    padding-top: 8px;
}

/* Premium styling & light mode overrides for the profile avatar button */
.profile-avatar-btn {
    transition: var(--transition-fast) !important;
}

.profile-avatar-btn:hover {
    background: rgba(255, 255, 255, 0.1) !important;
    border-color: var(--primary) !important;
    transform: translateY(-2px);
    box-shadow: var(--glow-shadow);
}

/* Light mode overrides for all dropdown elements */
body.light-mode .profile-dropdown-menu {
    background: rgba(226, 232, 240, 0.98) !important;
    border-color: rgba(0, 0, 0, 0.08) !important;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.1), 0 0 15px rgba(0, 136, 204, 0.05) !important;
}

body.light-mode .dropdown-profile-header {
    border-bottom-color: rgba(0, 0, 0, 0.06) !important;
}

body.light-mode .dropdown-profile-header h5 {
    color: #0f172a !important;
}

body.light-mode .dropdown-profile-header span {
    color: #64748b !important;
}

body.light-mode .profile-dropdown-menu .dropdown-item {
    color: #334155 !important;
}

body.light-mode .profile-dropdown-menu .dropdown-item:hover {
    background: rgba(0, 0, 0, 0.04) !important;
    color: var(--primary) !important;
}

body.light-mode .profile-dropdown-menu .dropdown-divider {
    border-top-color: rgba(0, 0, 0, 0.06) !important;
}

body.light-mode .profile-avatar-btn {
    background: rgba(0, 0, 0, 0.04) !important;
    border-color: rgba(0, 0, 0, 0.08) !important;
    color: #0f172a !important;
}

body.light-mode .profile-avatar-btn:hover {
    background: rgba(0, 0, 0, 0.08) !important;
    border-color: var(--primary) !important;
    box-shadow: 0 4px 12px rgba(0, 242, 254, 0.15);
}

/* =============================================================
   CUSTOM TELEPHONE COUNTRY CODE SELECT STYLING
   ============================================================= */
.phone-input-group {
    display: flex;
    gap: 8px;
    align-items: stretch;
    /* Make sure select trigger and input are identical height */
    width: 100%;
}

.custom-country-select {
    position: relative;
    user-select: none;
}

.selected-flag-code {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 16px;
    background: rgba(3, 3, 6, 0.6);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition-fast) !important;
    font-size: 13px;
    color: var(--text-main);
    height: 100%;
    min-width: 110px;
    box-sizing: border-box;
}

.selected-flag-code:hover {
    border-color: var(--primary);
    background: rgba(3, 3, 6, 0.8);
    box-shadow: 0 0 10px rgba(0, 242, 254, 0.1);
}

.selected-flag-code img.flag-icon {
    width: 18px;
    height: 12px;
    object-fit: cover;
    border-radius: 1px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.selected-flag-code i {
    font-size: 10px;
    color: var(--text-dim);
    transition: var(--transition-fast) !important;
    margin-left: 2px;
}

.custom-country-select.active .selected-flag-code i {
    transform: rotate(180deg);
}

.custom-country-select.active .selected-flag-code {
    border-color: var(--primary);
}

.custom-country-select.active .country-dropdown-list {
    display: block !important;
}

.selected-flag-code .code-text {
    font-weight: 600;
    font-family: var(--font-body);
}

/* Country Option List Dropdown */
.country-dropdown-list {
    display: none;
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    width: 260px;
    max-height: 220px;
    overflow-y: auto;
    background: rgba(18, 18, 30, 0.98);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid var(--border-color-glow);
    border-radius: var(--radius-md);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7);
    z-index: 100005;
    padding: 6px 0;
}

/* Custom scroll bar for the country list */
.country-dropdown-list::-webkit-scrollbar {
    width: 6px;
}

.country-dropdown-list::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.01);
}

.country-dropdown-list::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

.country-dropdown-list::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

/* Option Row Styling */
.country-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 16px;
    cursor: pointer;
    font-size: 13px;
    color: var(--text-main);
    transition: var(--transition-fast) !important;
    text-align: left;
}

.country-option:hover {
    background: rgba(255, 255, 255, 0.05);
    color: var(--primary) !important;
}

.country-option img {
    width: 18px;
    height: 12px;
    object-fit: cover;
    border-radius: 1px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.country-option span {
    font-weight: 500;
}

/* Light mode overrides for custom country dropdown */
body.light-mode .selected-flag-code {
    background: #f4f6fa;
    border-color: rgba(0, 0, 0, 0.08);
    color: #0f172a;
}

body.light-mode .selected-flag-code:hover {
    background: #ffffff;
    border-color: var(--primary);
}

body.light-mode .country-dropdown-list {
    background: rgba(255, 255, 255, 0.98) !important;
    border-color: rgba(0, 0, 0, 0.08) !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1) !important;
}

body.light-mode .country-dropdown-list::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.08);
}

body.light-mode .country-option {
    color: #334155 !important;
}

body.light-mode .country-option:hover {
    background: rgba(0, 0, 0, 0.04) !important;
    color: var(--primary) !important;
}

/* =============================================================
   CUSTOM LOGOUT CONFIRMATION MODAL STYLING
   ============================================================= */
.logout-modal-card {
    max-width: 440px !important;
    text-align: center;
    overflow: hidden;
}

.logout-icon-container {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: rgba(239, 68, 68, 0.1);
    border: 2px solid rgba(239, 68, 68, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--danger);
    font-size: 30px;
    margin: 32px auto 18px;
    box-shadow: 0 0 20px rgba(239, 68, 68, 0.15);
    animation: logout-pulse-danger 2s infinite alternate;
}

@keyframes logout-pulse-danger {
    0% {
        box-shadow: 0 0 10px rgba(239, 68, 68, 0.15);
        transform: scale(0.96);
    }

    100% {
        box-shadow: 0 0 25px rgba(239, 68, 68, 0.45);
        transform: scale(1.04);
    }
}

.logout-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 22px;
    color: var(--text-main);
    margin-bottom: 12px;
}

.logout-desc {
    font-size: 13.5px;
    color: var(--text-muted);
    line-height: 1.6;
    padding: 0 32px;
    margin-bottom: 28px;
}

.logout-btn-group {
    display: flex;
    gap: 16px;
    padding: 0 32px 32px;
}

.logout-btn-group .btn {
    flex: 1;
    padding: 12px 20px;
    font-weight: 600;
    font-size: 14.5px;
}

.btn-danger-solid {
    background: var(--danger) !important;
    border: 1px solid var(--danger) !important;
    color: #ffffff !important;
    box-shadow: 0 4px 14px rgba(239, 68, 68, 0.35);
}

.btn-danger-solid:hover {
    box-shadow: 0 6px 20px rgba(239, 68, 68, 0.55);
    transform: translateY(-2px);
    background: #dc2626 !important;
}

/* Light mode support override */
body.light-mode .logout-icon-container {
    background: rgba(239, 68, 68, 0.05);
    border-color: rgba(239, 68, 68, 0.15);
}

/* =============================================================
   ADMIN PORTAL GLOBAL SEARCH BAR STYLING
   ============================================================= */
.admin-global-search {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 380px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    border-radius: 30px;
    padding: 2px 6px;
    transition: var(--transition-medium);
}

.admin-global-search:focus-within {
    border-color: var(--primary);
    box-shadow: 0 0 15px rgba(0, 242, 254, 0.2);
    background: rgba(255, 255, 255, 0.05);
}

.admin-global-search .search-icon {
    font-size: 14px;
    color: var(--text-dim);
    margin-left: 14px;
    margin-right: 8px;
    transition: var(--transition-fast);
}

.admin-global-search:focus-within .search-icon {
    color: var(--primary);
}

.admin-global-search input {
    width: 100%;
    background: none;
    border: none;
    outline: none;
    color: var(--text-main);
    padding: 10px 0;
    font-family: var(--font-body);
    font-size: 13.5px;
}

.admin-global-search input::placeholder {
    color: var(--text-dim);
}

.search-clear-btn {
    background: none;
    border: none;
    color: var(--text-dim);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    /* Controlled by JS: show when input is active */
    align-items: center;
    justify-content: center;
    font-size: 12px;
    transition: var(--transition-fast);
    margin-right: 4px;
}

.search-clear-btn:hover {
    background: rgba(255, 255, 255, 0.08);
    color: var(--danger);
}

/* Light mode support override for global search */
body.light-mode .admin-global-search {
    background: #f1f5f9;
    border-color: rgba(0, 0, 0, 0.06);
}

body.light-mode .admin-global-search:focus-within {
    background: #ffffff;
    border-color: var(--primary);
}

body.light-mode .admin-global-search input {
    color: #0f172a;
}

body.light-mode .search-clear-btn:hover {
    background: rgba(0, 0, 0, 0.04);
}


/* ── Password Eye Toggle ─────────────────────── */
.pw-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.pw-wrapper input[type="password"],
.pw-wrapper input[type="text"] {
    width: 100%;
    padding-right: 42px !important;
}

.pw-eye-btn {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-dim);
    font-size: 14px;
    padding: 4px;
    line-height: 1;
    transition: color 0.2s;
    z-index: 2;
}

.pw-eye-btn:hover {
    color: var(--primary);
}


/* ─────────────────────────────────────────────────────────────
   MOBILE & PERFORMANCE OPTIMIZATIONS (No Lagging & Phone Friendly)
   ───────────────────────────────────────────────────────────── */
@media (max-width: 768px) {

    /* 1. Disable expensive rendering filters to eliminate scroll lag */
    .glass-nav,
    .dashboard-card,
    .metric-card,
    .admin-modal .modal-card,
    .registration-card,
    .profile-dropdown-menu,
    .chatbot-window {
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        background: var(--bg-surface) !important;
    }

    /* Use layer acceleration for hardware-assisted transitions */
    .nav-links,
    .admin-sidebar,
    .chatbot-window,
    .admin-modal,
    .modal-card {
        will-change: transform, opacity;
    }

    /* Hide the entire chatbot widget (both bubble button and window) when the sidebar is open */
    body.mobile-nav-open .chatbot-widget {
        display: none !important;
        opacity: 0 !important;
        pointer-events: none !important;
    }

    /* Lock body scroll when sidebar is open on mobile */
    body.mobile-nav-open {
        overflow: hidden !important;
        position: fixed;
        width: 100%;
        height: 100%;
    }

    /* Lock body scroll when chatbot is open on mobile */
    body.chatbot-open {
        overflow: hidden !important;
        position: fixed;
        width: 100%;
        height: 100%;
    }

    /* 2. Responsive mobile sidebar menu drawer */
    .mobile-sidebar-toggle {
        display: flex !important;
    }

    .admin-sidebar {
        position: fixed !important;
        top: 0;
        left: -260px;
        /* Hidden offscreen by default */
        width: 250px !important;
        height: 100dvh !important;
        z-index: 8500 !important;
        box-shadow: 5px 0 25px rgba(0, 0, 0, 0.6);
        transition: left 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        background: var(--bg-surface) !important;
        overscroll-behavior: contain;
        overflow: hidden !important; /* Keep mobile sidebar container locked, scrollable nav list handles options scroll */
    }

    .admin-sidebar.active {
        left: 0 !important;
    }

    /* Show labels on mobile active sidebar */
    .admin-sidebar.active .sidebar-nav .nav-item span,
    .admin-sidebar.active .sidebar-header .brand-name,
    .admin-sidebar.active .sidebar-footer button span {
        display: inline-block !important;
    }

    .admin-sidebar.active .sidebar-nav .nav-item {
        justify-content: flex-start !important;
        padding: 14px 20px !important;
    }

    .admin-sidebar.active .sidebar-nav .nav-item-logout {
        padding-top: 20px !important;
        border-top: 1px solid var(--border-color);
    }

    .admin-sidebar.active .sidebar-nav .nav-item i {
        margin-right: 12px !important;
    }

    .admin-main {
        margin-left: 0 !important;
        /* Full width space */
        padding: 16px !important;
    }

    /* Overlay backdrop */
    .admin-sidebar-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(0, 0, 0, 0.5);
        backdrop-filter: blur(2px);
        z-index: 8400;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.3s ease;
    }

    .admin-sidebar-overlay.active {
        opacity: 1;
        pointer-events: auto;
    }

    /* ── Responsive Table Card Conversion (Phone Friendly) ── */
    .panel-actions-row {
        flex-direction: column !important;
        align-items: stretch !important;
        gap: 12px !important;
        margin-bottom: 20px !important;
    }

    .panel-desc-text {
        text-align: center !important;
        font-size: 13.5px !important;
        margin-bottom: 4px !important;
    }

    .panel-btn-group {
        display: flex !important;
        gap: 10px !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    .panel-btn-group .btn {
        flex: 1 !important;
        justify-content: center !important;
        padding: 12px 16px !important;
        font-size: 13px !important;
    }

    .projects-table-wrapper,
    .leads-table-wrapper {
        border: none !important;
        background: transparent !important;
        border-radius: 0 !important;
        overflow-x: visible !important;
    }

    /* ── Responsive Modals (Phone Friendly) ── */
    .admin-modal .modal-card {
        border-radius: var(--radius-md) !important;
        max-width: 95% !important;
    }

    .modal-header {
        padding: 16px 20px !important;
    }

    .admin-modal form {
        padding: 20px !important;
    }

    .modal-footer {
        flex-direction: column-reverse !important;
        align-items: stretch !important;
        gap: 10px !important;
        margin-top: 15px !important;
        padding-top: 15px !important;
    }

    .modal-footer .btn {
        width: 100% !important;
        justify-content: center !important;
    }

    .admin-table thead {
        display: none !important;
        /* Hide wide table headers */
    }

    .admin-table,
    .admin-table tbody,
    .admin-table tr,
    .admin-table td {
        display: block !important;
        width: 100% !important;
    }

    .admin-table tr {
        background: var(--bg-surface-elevated) !important;
        border: 1px solid var(--border-color) !important;
        border-radius: var(--radius-md) !important;
        margin-bottom: 16px !important;
        padding: 16px !important;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.18) !important;
        box-sizing: border-box !important;
    }

    .admin-table td {
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        padding: 10px 0 !important;
        border-bottom: 1px dashed var(--border-color) !important;
        font-size: 13.5px !important;
        background: transparent !important;
        box-sizing: border-box !important;
    }

    .admin-table td:last-child {
        border-bottom: none !important;
        margin-top: 12px !important;
        justify-content: space-between !important;
        /* Label on left, actions on right */
        align-items: center !important;
    }

    /* Prevent overflow of text contents dynamically (excluding action buttons, thumbnails, and interactive select boxes) */
    .admin-table td>*:not(.table-actions):not(.table-img):not(img):not(select) {
        text-align: right !important;
        flex: 1 !important;
        min-width: 0 !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
        white-space: nowrap !important;
        margin-left: 15px !important;
        color: var(--text-main) !important;
    }

    /* Constrain select dropdowns on mobile to safeguard native anchoring bounds */
    .admin-table td select.badge-lead-status {
        text-align-last: right !important;
        max-width: 140px !important;
        min-width: 100px !important;
        border: none !important;
        outline: none !important;
        cursor: pointer !important;
        font-weight: 700 !important;
        box-sizing: border-box !important;
    }

    /* Inject bold labels on the left of each table value */
    .admin-table td::before {
        content: attr(data-label);
        font-weight: 700 !important;
        color: var(--text-muted) !important;
        text-transform: uppercase !important;
        font-size: 11px !important;
        letter-spacing: 0.05em !important;
        text-align: left !important;
        margin-right: 15px !important;
        flex-shrink: 0 !important;
    }

    /* Thumbnail image adjustment in project list cards */
    .admin-table td .table-img {
        width: 50px !important;
        height: 50px !important;
        border-radius: var(--radius-sm) !important;
        object-fit: cover !important;
        border: 1px solid var(--border-color) !important;
        flex-shrink: 0 !important;
    }

    /* Enhanced mobile action buttons spacing & tap targets */
    .admin-table td .table-actions {
        display: flex !important;
        gap: 8px !important;
        align-items: center !important;
        flex-shrink: 0 !important;
    }

    .admin-table td .table-actions .btn-icon {
        width: 38px !important;
        height: 38px !important;
        font-size: 14px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        border-radius: var(--radius-sm) !important;
        box-sizing: border-box !important;
    }

    /* ── Services Catalog Listing Mobilization ── */
    .service-admin-item {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 16px !important;
        padding: 18px !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    .srv-meta {
        display: flex !important;
        align-items: flex-start !important;
        gap: 15px !important;
        width: 100% !important;
    }

    .srv-text-info {
        flex: 1 !important;
        min-width: 0 !important;
    }

    .srv-text-info h4 {
        font-size: 16px !important;
        margin: 0 0 4px 0 !important;
        word-wrap: break-word !important;
    }

    .srv-text-info p {
        font-size: 12px !important;
        color: var(--text-muted) !important;
        margin: 0 !important;
        word-wrap: break-word !important;
        line-height: 1.4 !important;
    }

    .srv-financials {
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        width: 100% !important;
        border-top: 1px dashed var(--border-color) !important;
        padding-top: 12px !important;
        margin-top: 4px !important;
    }

    .srv-cost {
        font-size: 18px !important;
    }

    /* ── Site Settings Input & Utility Stacking ── */
    .form-group {
        max-width: 100% !important;
    }

    .db-utils-row {
        flex-direction: column !important;
        align-items: stretch !important;
    }

    .db-utils-row .btn {
        width: 100% !important;
        justify-content: center !important;
    }
}

/* =============================================================
   CIRCULAR AVATAR UPLOAD PREMIUM STYLES
   ============================================================= */
.personal-avatar-upload-circle {
    transition: var(--transition-fast) !important;
}

.personal-avatar-upload-circle:hover {
    border-color: var(--primary-alt) !important;
    box-shadow: 0 0 20px rgba(0, 242, 254, 0.45) !important;
}

.personal-avatar-upload-circle:hover .avatar-hover-overlay {
    opacity: 1 !important;
}

body.light-mode .personal-avatar-upload-circle {
    background: rgba(0, 136, 204, 0.03) !important;
    border-color: rgba(0, 136, 204, 0.4) !important;
}

body.light-mode .personal-avatar-upload-circle:hover {
    border-color: var(--primary) !important;
    box-shadow: 0 0 15px rgba(0, 136, 204, 0.25) !important;
}

/* =============================================================
   PREMIUM CIRCULAR THEME SELECT TOGGLE STYLES
   ============================================================= */
.theme-select-toggle-wrapper {
    display: flex;
    gap: 16px;
    margin-top: 8px;
}

.theme-select-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid var(--border-color);
    background: rgba(3, 3, 6, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 18px;
    color: var(--text-dim);
    transition: var(--transition-fast) !important;
    box-sizing: border-box;
}

.theme-select-btn:hover {
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* Light Mode active button style: Gold Sun icon in a light circle */
.theme-select-btn[data-value="light"].active {
    border-color: #ffb900 !important;
    background: rgba(255, 185, 0, 0.08) !important;
    color: #ffb900 !important;
    box-shadow: 0 0 15px rgba(255, 185, 0, 0.2) !important;
}

/* Dark Mode active button style: Cyan Moon icon in a dark/cyan circle */
.theme-select-btn[data-value="dark"].active {
    border-color: var(--primary) !important;
    background: rgba(0, 242, 254, 0.08) !important;
    color: var(--primary) !important;
    box-shadow: 0 0 15px rgba(0, 242, 254, 0.25) !important;
}

/* Light mode overrides for the selector buttons */
body.light-mode .theme-select-btn {
    border-color: rgba(0, 0, 0, 0.08);
    background: #f4f6fa;
    color: #64748b;
}

body.light-mode .theme-select-btn:hover {
    border-color: rgba(0, 0, 0, 0.15);
    background: #ffffff;
}

/* =============================================================
   PREMIUM CUSTOM DROPDOWN PICKER FOR STATUS SELECT
   ============================================================= */
.custom-status-pill {
    cursor: pointer !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 6px !important;
    padding: 6px 14px !important;
    border-radius: 100px !important;
    font-size: 11px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.05em !important;
    transition: all var(--transition-fast) !important;
    box-sizing: border-box !important;
    border: 1px solid transparent !important;
}

.custom-status-pill:hover {
    transform: translateY(-1px) !important;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15) !important;
}

.custom-status-pill:active {
    transform: translateY(0) !important;
}

.custom-picker-container {
    position: absolute;
    z-index: 10000;
    width: 220px;
    animation: pickerFadeIn 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes pickerFadeIn {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }

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

.custom-picker-card {
    background: #222225 !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-radius: 16px !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5) !important;
    overflow: hidden;
}

body.light-mode .custom-picker-card {
    background: #e2e8f0 !important;
    border-color: rgba(0, 0, 0, 0.08) !important;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.12) !important;
}

.custom-picker-item {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    padding: 16px 20px !important;
    cursor: pointer !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04) !important;
    transition: background-color var(--transition-fast) !important;
}

body.light-mode .custom-picker-item {
    border-bottom-color: rgba(0, 0, 0, 0.04) !important;
}

.custom-picker-item:last-child {
    border-bottom: none !important;
}

.custom-picker-item:hover {
    background-color: rgba(255, 255, 255, 0.03) !important;
}

body.light-mode .custom-picker-item:hover {
    background-color: rgba(0, 0, 0, 0.02) !important;
}

.picker-label {
    font-family: var(--font-heading) !important;
    font-size: 15px !important;
    font-weight: 600 !important;
    color: var(--text-main) !important;
}

.picker-radio {
    width: 20px !important;
    height: 20px !important;
    border-radius: 50% !important;
    border: 2px solid var(--text-dim) !important;
    box-sizing: border-box !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: all 0.2s ease !important;
}

/* Status-specific active states matching the screenshot & themes */

/* 1. New status: Blue radio */
.custom-picker-item.active[data-value="new"] .picker-radio {
    border-color: #3b82f6 !important;
}

.custom-picker-item.active[data-value="new"] .picker-radio::after {
    content: "" !important;
    width: 10px !important;
    height: 10px !important;
    border-radius: 50% !important;
    background-color: #3b82f6 !important;
}

/* 2. Contacted status: Coral / reddish-orange radio matching user screenshot exactly! */
.custom-picker-item.active[data-value="contacted"] .picker-radio {
    border-color: #ff6b57 !important;
}

.custom-picker-item.active[data-value="contacted"] .picker-radio::after {
    content: "" !important;
    width: 10px !important;
    height: 10px !important;
    border-radius: 50% !important;
    background-color: #ff6b57 !important;
}

/* 3. Archived status: Slate / gray radio */
.custom-picker-item.active[data-value="archived"] .picker-radio {
    border-color: #64748b !important;
}

.custom-picker-item.active[data-value="archived"] .picker-radio::after {
    content: "" !important;
    width: 10px !important;
    height: 10px !important;
    border-radius: 50% !important;
    background-color: #64748b !important;
}