/* 
Theme Name: DevPortfolio
Version: 1.2.0 
*/

:root {
    --bg-color: #050505;
    --bg-secondary: #0a0a0a;
    --text-color: #e0e0e0;
    --text-muted: #a0a0a0;
    --primary-color: #6c5ce7;
    --secondary-color: #00cec9;
    --accent-color: #fd79a8;
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-blur: 20px;
    --font-main: 'Inter', sans-serif;
    --font-heading: 'Outfit', sans-serif;
    --container-width: 1280px;
    --header-height: 80px;
}

/* RTL Support */
[dir="rtl"] {
    --font-main: 'Tajawal', 'Inter', sans-serif;
    --font-heading: 'Tajawal', 'Outfit', sans-serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-main);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: #fff;
    font-weight: 700;
    line-height: 1.2;
}

a {
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s ease;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.language-switcher {
    position: relative;
}

.lang-btn {
    background: transparent;
    border: 1px solid var(--glass-border);
    color: #fff;
    padding: 8px 12px;
    border-radius: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
}

.lang-dropdown {
    position: absolute;
    top: 100%;
    inset-inline-end: 0;
    background: #1a1a1a;
    list-style: none;
    padding: 10px;
    border-radius: 10px;
    display: none;
    min-width: 100px;
    border: 1px solid var(--glass-border);
}

.language-switcher:hover .lang-dropdown {
    display: block;
}

.button {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    color: #fff;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1.2;
    border: none;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(108, 92, 231, 0.3);
}

.button-sm {
    padding: 8px 20px;
    font-size: 0.9rem;
}

.button-outline {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: #fff;
}

.button-outline:hover {
    background: var(--primary-color);
}

/* Mobile Menu */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    display: flex;
    justify-content: flex-end;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-content {
    width: 300px;
    height: 100%;
    background: #111;
    padding: 40px;
    transform: translateX(100%);
    transition: transform 0.3s ease;
}

.mobile-menu-overlay.active .mobile-menu-content {
    transform: translateX(0);
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: var(--header-height);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: radial-gradient(circle at 50% 50%, rgba(108, 92, 231, 0.15), transparent 60%);
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.hero-content {
    max-width: 600px;
    z-index: 2;
}

.hero-greeting {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.hero-title {
    font-size: 4rem;
    margin-bottom: 20px;
    background: linear-gradient(to right, #fff, #a0a0a0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 2rem;
    color: #fff;
    margin-bottom: 20px;
}

.hero-desc {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

@media (max-width: 768px) {
    .hero-buttons {
        flex-direction: column;
        width: 100%;
        align-items: center;
        gap: 12px;
    }

    .hero-buttons .button {
        width: 100%;
        justify-content: center;
    }
}

/* Mobile: stack buttons vertically, full width, centered */
@media (max-width: 768px) {
    .hero-buttons {
        flex-direction: column;
        width: 100%;
        align-items: center;
        gap: 12px;
    }

    .hero-buttons .button {
        width: 100%;
        justify-content: center;
    }
}

/* Hero Orbit Animation */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 600px;
    flex: 1;
    /* Fixed overlap issue */
}

.orbit-container {
    position: relative;
    width: 500px;
    height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.central-image-wrapper {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
    border: 5px solid var(--primary-color);
    box-shadow: 0 0 30px rgba(108, 92, 231, 0.5);
    z-index: 10;
    position: relative;
    top: 40px;
}

.central-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.orbit-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px dashed rgba(255, 255, 255, 0.1);
    animation: rotate-orbit linear infinite;
}

.ring-1 {
    width: 300px;
    height: 300px;
    animation-duration: 20s;
}

.ring-2 {
    width: 400px;
    height: 400px;
    animation-duration: 30s;
    animation-direction: reverse;
}

.ring-3 {
    width: 500px;
    height: 500px;
    animation-duration: 40s;
}

.orbit-icon {
    position: absolute;
    width: 50px;
    height: 50px;
    background: var(--bg-secondary);
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Positioning Icons on Rings */
.ring-1 .orbit-icon:nth-child(1) {
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
}

.ring-1 .orbit-icon:nth-child(2) {
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
}

.ring-2 .orbit-icon:nth-child(1) {
    left: -25px;
    top: 50%;
    transform: translateY(-50%);
}

.ring-2 .orbit-icon:nth-child(2) {
    right: -25px;
    top: 50%;
    transform: translateY(-50%);
}

.ring-3 .orbit-icon:nth-child(1) {
    top: 15%;
    left: 15%;
}

.ring-3 .orbit-icon:nth-child(2) {
    bottom: 15%;
    right: 15%;
}

@keyframes rotate-orbit {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* Stats Section */
.stats-section {
    padding: 40px 0;
    margin-top: -50px;
    position: relative;
    z-index: 10;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    padding: 40px;
    text-align: center;
    gap: 20px;
}

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
}

.stat-label {
    color: var(--text-muted);
    font-size: 1rem;
}

/* Section Common */
.section-padding {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.section-desc {
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto;
}

/* Skills Section */
.skills-grid-6 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    /* Responsive Fix */
    gap: 30px;
    text-align: center;
}

.skill-item-circle {
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.skill-circle {
    position: relative;
    width: 150px;
    height: 150px;
    margin-bottom: 15px;
}

.skill-circle svg {
    width: 150px;
    height: 150px;
}

.skill-circle circle {
    width: 150px;
    height: 150px;
    fill: none;
    stroke-width: 10;
    stroke: #000;
    transform: translate(5px, 5px);
    stroke-dasharray: 440;
    stroke-dashoffset: 440;
    stroke-linecap: round;
}

.skill-circle circle:nth-child(1) {
    stroke-dashoffset: 0;
    stroke: rgba(255, 255, 255, 0.1);
}

.skill-circle circle:nth-child(2) {
    stroke-dashoffset: calc(440 - (440 * var(--percent)) / 100);
    stroke: var(--primary-color);
    transition: stroke-dashoffset 2s ease-in-out;
}

.skill-circle .number {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
}

.skill-circle .number h2 {
    font-size: 2rem;
}

.skill-text {
    font-size: 1.2rem;
    font-weight: 600;
}

/* Services & Grid Layouts */
.grid {
    display: grid;
    gap: 30px;
}

/* Force 3 columns on desktop */
@media (min-width: 1024px) {

    .services-grid,
    .projects-grid,
    .pricing-grid {
        grid-template-columns: repeat(3, 1fr) !important;
    }
}

@media (max-width: 1023px) and (min-width: 768px) {

    .services-grid,
    .projects-grid,
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 767px) {

    .services-grid,
    .projects-grid,
    .pricing-grid {
        grid-template-columns: 1fr !important;
    }
}

.service-card {
    padding: 40px;
    text-align: center;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-icon {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

/* Projects */
.project-card {
    overflow: hidden;
    padding: 0;
    display: flex;
    flex-direction: column;
}

.project-frame {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.project-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.project-card:hover .project-frame img {
    transform: scale(1.1);
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.project-card:hover .project-overlay {
    opacity: 1;
}

.project-info {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.project-info h3 {
    margin-bottom: 10px;
}

.project-excerpt {
    flex-grow: 1;
    margin-bottom: 20px;
    color: var(--text-muted);
}

.read-more-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-weight: 600;
    color: var(--secondary-color);
}

/* Pricing Section */
.pricing-card {
    padding: 40px;
    text-align: center;
    position: relative;
    transition: transform 0.3s ease;
    border: 1px solid var(--glass-border);
}

.pricing-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
}

.plan-name {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.plan-price {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.plan-desc {
    color: var(--text-muted);
    margin-bottom: 30px;
}

.plan-features {
    list-style: none;
    text-align: left;
    margin-bottom: 30px;
}

.plan-features li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.plan-features i {
    color: var(--secondary-color);
}

.full-width {
    width: 100%;
}

/* Premium Footer */
.site-footer {
    background: linear-gradient(to top, #000, #0a0a0a);
    position: relative;
    margin-top: 100px;
    border-top: 1px solid var(--glass-border);
}

.footer-wave {
    position: absolute;
    top: -100px;
    left: 0;
    width: 100%;
    line-height: 0;
    opacity: 0.5;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 50px;
    padding: 30px 0 20px;
}

.footer-widget .widget-title {
    font-size: 1.3rem;
    margin-bottom: 25px;
    color: #fff;
    position: relative;
    padding-bottom: 15px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.footer-widget .widget-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), transparent);
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--text-muted);
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: #fff;
    transform: translateX(5px);
    text-shadow: 0 0 10px rgba(108, 92, 231, 0.5);
}

.contact-list li {
    margin-bottom: 20px;
    align-items: flex-start;
}

.contact-list i {
    background: rgba(255, 255, 255, 0.05);
    padding: 10px;
    border-radius: 50%;
    color: var(--primary-color);
}

.social-links {
    gap: 15px;
}

.social-btn {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-btn:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    box-shadow: 0 0 20px rgba(108, 92, 231, 0.4);
}

.site-info {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 30px 0;
    margin-top: 40px;
    color: #666;
    font-size: 0.9rem;
}

@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .hero-container {
        flex-direction: column-reverse;
        text-align: center;
    }

    .site-branding {
        margin-right: 0;
    }

    .main-navigation {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }
}

/* RTL Specifics */
[dir="rtl"] .site-branding {
    margin-right: 0;
    margin-left: 40px;
}

[dir="rtl"] .main-navigation a::after {
    right: 0;
    left: auto;
}

[dir="rtl"] .lang-dropdown {
    right: auto;
    left: 0;
}

[dir="rtl"] .mobile-menu-content {
    transform: translateX(-100%);
}

[dir="rtl"] .mobile-menu-overlay {
    justify-content: flex-start;
}

[dir="rtl"] .mobile-menu-overlay.active .mobile-menu-content {
    transform: translateX(0);
}

[dir="rtl"] .footer-widget .widget-title::after {
    left: auto;
    right: 0;
    background: linear-gradient(-90deg, var(--primary-color), transparent);
}

[dir="rtl"] .footer-links a:hover {
    transform: translateX(-5px);
}

/* ========================================
   NEW SECTIONS STYLES (ADDED)
   ======================================== */

/* Fun Facts Section */
.funfacts-section {
    position: relative;
    overflow: hidden;
}

.funfacts-wrapper {
    position: relative;
    z-index: 1;
}

/* Tabbed Services Section */
.tabbed-services-section {
    position: relative;
}

.tabs-wrapper .nav-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    list-style: none;
    padding: 0;
    margin-bottom: 40px;
}

.tabs-wrapper .nav-link {
    transition: all 0.3s ease;
}

.tabs-wrapper .nav-link:hover {
    transform: translateY(-3px);
}

.tab-pane {
    animation: fadeInUp 0.5s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Dynamic Sections */
.dynamic-section {
    border-top: 1px solid var(--glass-border);
}

.dynamic-section .section-title i {
    margin-right: 10px;
    color: var(--secondary-color);
}

/* Archive Section */
.archive-section {
    min-height: 60vh;
}

/* Responsive Adjustments for New Sections */
@media (max-width: 991px) {
    .funfacts-wrapper {
        flex-direction: column !important;
    }

    .funfacts-left,
    .funfacts-right {
        flex: 0 0 100% !important;
        max-width: 100% !important;
    }

    .advantage-skills {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    .tabs-wrapper .nav-tabs {
        flex-wrap: wrap;
    }
}

@media (max-width: 576px) {
    .advantage-skills {
        grid-template-columns: 1fr !important;
    }

    .tabs-wrapper .nav-link {
        padding: 10px 20px !important;
        font-size: 0.9rem !important;
    }
}

/* Footer Wave Fix - Pointer Events */
.footer-wave {
    pointer-events: none;
    position: relative;
    z-index: 1;
}

.site-footer .container {
    position: relative;
    z-index: 10;
}

/* 404 Page Centering */
.error-404.not-found {
    margin: 0 auto;
}

/* Contact Cards Responsive */
.contact-card:hover {
    transform: translateY(-5px);
    transition: transform 0.3s ease;
}

/* Timeline Items */
.timeline-item {
    transition: transform 0.3s ease;
}

.timeline-item:hover {
    transform: translateX(5px);
}

/* ========================================
   FIXES - User Requested
   ======================================== */

/* Stats Labels - White */
.stat-label {
    color: #fff !important;
}

/* Buttons - Text color never changes */
.button,
.button:hover,
.button:focus,
.button:active {
    color: #fff !important;
}

.button-outline,
.button-outline:hover,
.button-outline:focus {
    color: #fff !important;
}

/* Get Similar Button - Black text */
.button[style*='25D366'],
a[style*='25D366'] {
    color: #000 !important;
}

/* Footer Social Icons - Smaller & Centered */
.footer-widget .social-links {
    display: flex;
    gap: 10px;
    justify-content: flex-start;
}

.footer-widget .social-btn,
.footer-widget .social-links a {
    width: 36px !important;
    height: 36px !important;
    min-width: 36px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 1rem !important;
    padding: 0 !important;
    border-radius: 50% !important;
}

/* Price display in cards */
.product-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin: 10px 0;
}

/* Dynamic sections - better cards */
.dynamic-section .project-card {
    display: flex;
    flex-direction: column;
}

.dynamic-section .project-info {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.dynamic-section .project-actions {
    margin-top: auto;
    padding-top: 15px;
}

/* ========================================
   PAGE LAYOUT FIXES
   ======================================== */

/* Content area - add padding for fixed header */
.site-content,
#primary,
.content-area {
    padding-top: 80px;
    /* Height of fixed header */
}

/* Front page doesn't need extra padding (has hero section) */
body.home .site-content,
body.home #primary,
body.page-template-front-page .site-content,
body.page-template-front-page #primary {
    padding-top: 0;
}

/* Page hero sections - adjust for header */
.page-hero {
    padding-top: 100px !important;
    /* Extra padding for fixed header */
}

/* Footer - remove extra space before */
.site-footer {
    margin-top: 0;
}

/* Main site content - make sure it fills space */
#page.site {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.site-main,
#primary {
    flex: 1;
}

/* Remove any default margins that cause whitespace */
main.site-main {
    margin: 0;
    padding: 0;
}

/* Archive and other pages - proper spacing */
.archive-section,
.single-post,
.page {
    padding-top: 80px;
}

/* Hero sections in templates */
section.page-hero,
section.section-padding:first-child {
    margin-top: 0;
}

/* ========================================
   FOOTER FIXES - Remove extra space
   ======================================== */

/* Footer wave positioning */
.footer-wave {
    position: relative;
    margin-bottom: -1px;
    line-height: 0;
}

.footer-wave svg {
    display: block;
    width: 100%;
    height: auto;
}

/* Footer overall */
.site-footer {
    background: #0a0a0a;
    padding-top: 0;
    margin-top: 0 !important;
    position: relative;
}

/* Remove any potential extra margins */
.site-footer .container {
    padding-top: 60px;
    padding-bottom: 20px;
}

/* Footer grid */
.footer-grid {
    margin-bottom: 0;
    padding-bottom: 0;
}

/* ========================================
   CRITICAL FOOTER GAP FIX
   ======================================== */

/* Remove ALL extra space before footer */
.site-main>section:last-child,
.content-area section:last-child,
#primary section:last-child,
main section:last-of-type {
    margin-bottom: 0 !important;
    padding-bottom: 60px !important;
}

/* CTA sections before footer - reduce padding */
.cta-section {
    padding-bottom: 60px !important;
    margin-bottom: 0 !important;
}

/* Footer wave - make it overlap content */
.footer-wave {
    margin-top: -80px !important;
    pointer-events: none;
}

.footer-wave svg {
    height: 80px;
}

/* Footer main content */
.site-footer {
    background: #0a0a0a !important;
    margin-top: 0 !important;
    padding-top: 0 !important;
}

.site-footer>.container {
    padding-top: 40px !important;
}

/* Ensure no extra gaps from page templates */
#primary,
.content-area,
.site-main,
main.site-main {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}

/* Footer adjustment - move down more */
.footer-wave {
    margin-top: -40px !important;
}

/* Footer adjustment - move down even more */
.footer-wave {
    margin-top: -120px !important;
}

/* ========================================
   SOCIAL ICONS FIX - No Hover Color Change
   ======================================== */

.footer-widget .social-btn:hover,
.footer-widget .social-links a:hover {
    color: var(--text-color) !important;
    /* Keep original color */
    background: rgba(255, 255, 255, 0.1) !important;
    /* Optional: slight bg change for feedback without color change */
    transform: translateY(-3px);
    /* Keep movement */
}

/* Specific fix for WhatsApp icon color if needed, but user said 'don't change color' */
.ri-whatsapp-fill {
    color: inherit;
}

/* ========================================
   ABOUT PAGE REDESIGN (PREMIUM)
   ======================================== */

/* Hero Section */
.about-hero {
    padding: 10px 0 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.about-hero .hero-badge {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(108, 92, 231, 0.1);
    color: var(--primary-color);
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
    border: 1px solid rgba(108, 92, 231, 0.2);
}

.about-hero .page-title {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.about-hero .highlight {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.about-hero .page-desc {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto;
}

/* Layout Grid */
.about-layout-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: start;
}

/* Glass Cards Common */
.glass-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.glass-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.1);
}

.card-header {
    margin-bottom: 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 15px;
}

.card-title {
    font-size: 1.5rem;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.card-title i {
    color: var(--secondary-color);
}

/* Bio Card */
.bio-intro {
    font-size: 1.8rem;
    margin-bottom: 20px;
    background: linear-gradient(to right, #fff, var(--text-muted));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.bio-text {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.personal-info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 30px;
    background: rgba(0, 0, 0, 0.2);
    padding: 20px;
    border-radius: 15px;
}

.info-box {
    display: flex;
    flex-direction: column;
}

.info-box .label {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 5px;
}

.info-box .value {
    font-weight: 600;
    color: #fff;
}

.info-box .value.available {
    color: #00b894;
    display: flex;
    align-items: center;
    gap: 5px;
}

.info-box .value.available::before {
    content: '';
    display: block;
    width: 8px;
    height: 8px;
    background: #00b894;
    border-radius: 50%;
    box-shadow: 0 0 10px #00b894;
}

/* Timeline */
.timeline {
    position: relative;
    padding-left: 20px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: rgba(255, 255, 255, 0.1);
}

.timeline-item {
    position: relative;
    padding-bottom: 40px;
    padding-left: 20px;
}

.timeline-item:last-child {
    padding-bottom: 0;
}

.timeline-marker {
    position: absolute;
    left: -24px;
    top: 5px;
    width: 10px;
    height: 10px;
    background: var(--primary-color);
    border-radius: 50%;
    box-shadow: 0 0 0 5px rgba(108, 92, 231, 0.2);
}

.timeline-content .date {
    display: inline-block;
    font-size: 0.85rem;
    color: var(--secondary-color);
    margin-bottom: 5px;
    font-weight: 600;
}

.timeline-content .role {
    font-size: 1.2rem;
    margin: 5px 0;
    color: #fff;
}

.timeline-content .company {
    display: block;
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 10px;
    font-style: italic;
}

.timeline-content p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

/* Sidebar Profile */
.profile-image-wrapper {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.profile-img {
    width: 100%;
    display: block;
    transition: transform 0.5s ease;
}

.profile-card:hover .profile-img {
    transform: scale(1.05);
}

.profile-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.button.full-width {
    width: 100%;
    justify-content: center;
}

/* Skills List */
.skills-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.skill-item {
    width: 100%;
}

.skill-info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-size: 0.95rem;
    font-weight: 600;
}

.skill-progress {
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 3px;
}

/* Mini Stats Grid */
.stats-mini-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.stat-mini {
    text-align: center;
    padding: 20px;
    margin-bottom: 0;
}

.stat-mini i {
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 10px;
    display: block;
}

.stat-mini .stat-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
}

.stat-mini .stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* CTA Card */
.cta-card {
    padding: 60px;
    background: linear-gradient(135deg, rgba(108, 92, 231, 0.1), rgba(0, 206, 201, 0.1));
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.cta-card h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-card p {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 30px;
}

/* Responsive */
@media (max-width: 991px) {
    .about-layout-grid {
        grid-template-columns: 1fr;
    }

    .about-sidebar-col {
        order: -1;
        /* Show profile on top on mobile */
    }

    .profile-card {
        display: flex;
        align-items: center;
        gap: 20px;
    }

    .profile-image-wrapper {
        width: 150px;
        margin-bottom: 0;
        flex-shrink: 0;
    }

    .profile-actions {
        flex-grow: 1;
    }
}

@media (max-width: 576px) {
    .about-hero .page-title {
        font-size: 2.5rem;
    }

    .personal-info-grid {
        grid-template-columns: 1fr;
    }

    .profile-card {
        flex-direction: column;
        text-align: center;
    }

    .profile-image-wrapper {
        width: 100%;
        max-width: 200px;
        margin: 0 auto 20px;
    }

    .cta-card {
        padding: 40px 20px;
    }

    .cta-card h2 {
        font-size: 2rem;
    }
}

/* ========================================
   FOOTER WAVE FIX - HIDE IT
   ======================================== */
.footer-wave {
    display: none !important;
}

/* ========================================
   DEVELOPER CARD (USER REQUEST)
   ======================================== */
.developer-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    color: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    margin-bottom: 30px;
}

.developer-card .avatar-wrapper {
    width: 120px;
    height: 120px;
    position: relative;
    margin: 0 auto 20px;
}

.developer-card .avatar-border {
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 50%;
    background: conic-gradient(#ff6b6b, #feca57, #48dbfb, #ff6b6b);
    animation: spin 2s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.developer-card .avatar-wrapper img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    position: relative;
    z-index: 1;
    border: 4px solid white;
}

.developer-card h3 {
    font-size: 1.5rem;
    margin-bottom: 5px;
    color: white !important;
}

.developer-card .title {
    opacity: 0.9;
    margin-bottom: 20px;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
}

.developer-card .contact-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

/* Gradient Animated Buttons */
.btn-website {
    background: linear-gradient(135deg, #0ea5e9 0%, #06b6d4 50%, #22d3ee 100%);
    background-size: 200% 200%;
    color: white;
    padding: 12px 28px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    animation: gradient-flow 3s ease infinite;
    box-shadow: 0 4px 15px rgba(14, 165, 233, 0.4);
    display: inline-block;
    border: none;
}

.btn-website:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(14, 165, 233, 0.5);
    color: white;
}

.btn-whatsapp {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 50%, #25d366 100%);
    background-size: 200% 200%;
    color: white;
    padding: 12px 28px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    animation: gradient-flow 3s ease infinite;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    display: inline-block;
    border: none;
}

.btn-whatsapp:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
    color: white;
}

.btn-purchase {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 50%, #fbbf24 100%);
    background-size: 200% 200%;
    color: white;
    padding: 14px 35px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1em;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    animation: gradient-flow 3s ease infinite;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.4);
    display: inline-block;
    margin-top: 10px;
    border: none;
}

.btn-purchase:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 30px rgba(245, 158, 11, 0.6);
    color: white;
}

@keyframes gradient-flow {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* CTA Centering Fix */
.cta-card {
    text-align: center !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
}

/* Fix Select Options Visibility */
select option {
    background-color: #1a1a2e !important;
    /* Dark background to match theme */
    color: #ffffff !important;
    /* White text */
    padding: 10px;
}

/* Contact Page Grid */
.contact-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 60px;
}

@media (max-width: 991px) {
    .contact-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        padding: 0;
    }
}

@media (max-width: 576px) {
    .contact-cards-grid {
        grid-template-columns: 1fr;
    }
}

/* Contact Main Grid */
.contact-main-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

@media (max-width: 991px) {
    .contact-main-grid {
        grid-template-columns: 1fr;
    }
}

/* Contact Page Container Override */
.contact-page-container {
    padding-left: 60px !important;
    padding-right: 60px !important;
    max-width: 1200px !important;
}

@media (max-width: 768px) {
    .contact-page-container {
        padding-left: 30px !important;
        padding-right: 30px !important;
    }
}

/* Projects Grid */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

@media (max-width: 1200px) {
    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .projects-grid {
        grid-template-columns: 1fr;
    }
}

/* Get Similar Button Fix */
.get-similar-btn {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #25D366 !important;
    color: #000 !important;
    border: none !important;
}

/* Hero Spacing Override */
.hero-content {
    padding-left: 40px !important;
}

.hero-visual {
    padding-right: 40px !important;
}

/* Hero Alignment Fix */
.hero-visual {
    justify-content: flex-end !important;
}

/* --- Hero Revamp & Global Styles --- */

/* 1. Move Hero Content Up */
.hero-container {
    margin-top: -80px !important;
    /* Lifting the content */
}

/* 2. Typography & Gradient Text */
.hero-greeting {
    font-size: 2rem !important;
}

.hero-title {
    font-size: 5rem !important;
    background: linear-gradient(270deg, #ff7675, #fd79a8, #6c5ce7, #00cec9, #00b894);
    background-size: 400% 400%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradient-text 5s ease infinite;
}

.hero-subtitle {
    font-size: 2.5rem !important;
    background: linear-gradient(270deg, #00b894, #00cec9, #6c5ce7, #fd79a8, #ff7675);
    background-size: 400% 400%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradient-text 5s ease infinite;
}

@keyframes gradient-text {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* 3. Hero Image Styling (About Page Style) */
.central-image-wrapper.avatar-wrapper {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    position: relative;
    padding: 10px;
    border: none;
    box-shadow: none;
    overflow: visible;
}

.central-image-wrapper .avatar-border {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 2px dashed var(--primary-color);
    border-radius: 50%;
    animation: spin-slow 20s linear infinite;
    z-index: 1;
}

.central-image-wrapper img.central-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    position: relative;
    z-index: 2;
    border: 5px solid rgba(255, 255, 255, 0.1);
}

@keyframes spin-slow {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* 4. Orbit Animation (Single Ring) */
.orbit-ring.ring-1 {
    width: 500px;
    height: 500px;
    border: 1px dashed rgba(255, 255, 255, 0.2);
    animation: rotate-orbit 60s linear infinite;
}

.orbit-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.2rem;
}

/* 5. Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--bg-color);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(var(--primary-color), var(--secondary-color));
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-color);
}

/* --- Hero Refinements (User Feedback) --- */

/* 1. Enhanced Gradient Text (More Colors, Moving) */
.hero-title,
.hero-subtitle {
    background: linear-gradient(to right,
            #ff0000, #ff7f00, #ffff00, #00ff00, #0000ff, #4b0082, #8f00ff,
            #ff0000, #ff7f00, #ffff00, #00ff00, #0000ff, #4b0082, #8f00ff) !important;
    background-size: 200% auto !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    animation: rainbow-text 3s linear infinite !important;
}

@keyframes rainbow-text {
    to {
        background-position: 200% center;
    }
}

/* 2. Hero Image - Exact Match to About Page (Conic Gradient Border) & Larger */
.central-image-wrapper.avatar-wrapper {
    width: 350px !important;
    /* Larger */
    height: 350px !important;
    padding: 0 !important;
    /* Reset padding */
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.central-image-wrapper .avatar-border {
    position: absolute;
    top: -10px !important;
    left: -10px !important;
    right: -10px !important;
    bottom: -10px !important;
    width: auto !important;
    height: auto !important;
    border: none !important;
    border-radius: 50%;
    background: conic-gradient(#ff6b6b, #feca57, #48dbfb, #ff6b6b, #ff6b6b, #feca57, #48dbfb, #ff6b6b) !important;
    animation: spin 4s linear infinite !important;
    z-index: 1;
}

.central-image-wrapper img.central-img {
    width: 100% !important;
    height: 100% !important;
    border: 6px solid var(--bg-color) !important;
    /* Inner border to separate image from gradient */
    z-index: 2;
    position: relative;
    border-radius: 50%;
}

/* 3. Orbit Icons - Running ON the circle (Closer Orbit) */
.orbit-ring.ring-1 {
    width: 450px !important;
    /* Just outside the 350px image + border */
    height: 450px !important;
    border: 2px dashed rgba(255, 255, 255, 0.1) !important;
    /* Center the ring relative to container */
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%);
    animation: rotate-orbit 40s linear infinite !important;
}

/* Adjust Icon Positioning for new Ring Size */
/* Since we changed ring size, the translate(250px) in inline HTML might be too far or too close. */
/* Ring width is 450px, radius is 225px. */
/* We need to override the inline transform if possible, or update PHP. */
/* Updating PHP is better for exact math. */


/* --- Hero Orbit Refinement (Train on Rails) --- */

/* 1. Static Track (The Rails) */
.orbit-track {
    width: 450px !important;
    height: 450px !important;
    border: 2px dashed rgba(255, 255, 255, 0.2) !important;
    border-radius: 50% !important;
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    z-index: 1 !important;
    /* NO ANIMATION */
}

/* 2. Moving Icons Wrapper (The Train) */
.orbit-icons-wrapper {
    width: 450px !important;
    height: 450px !important;
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    z-index: 2 !important;
    animation: rotate-orbit 40s linear infinite !important;
    /* NO BORDER */
}

/* Fix Orbit Icon Positioning */
.orbit-icon {
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    margin-top: -20px !important;
    /* Half of height */
    margin-left: -20px !important;
    /* Half of width */
}

/* Slow Down Orbit Animation */
.orbit-icons-wrapper {
    animation-duration: 100s !important;
}

/* --- Fix Animation & Colors --- */

/* 1. Define Keyframes */
@keyframes rotate-orbit {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

/* 2. Apply Animation to Wrapper */
.orbit-icons-wrapper {
    animation: rotate-orbit 60s linear infinite !important;
}

/* 3. Style Icons (Theme Colors) */
.orbit-icon {
    background: rgba(255, 255, 255, 0.05) !important;
    backdrop-filter: blur(5px) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    color: var(--primary-color) !important;
    box-shadow: 0 0 15px rgba(108, 92, 231, 0.2) !important;
    transition: all 0.3s ease !important;
}

.orbit-icon:hover {
    background: var(--primary-color) !important;
    color: #fff !important;
    box-shadow: 0 0 20px var(--primary-color) !important;
}

.orbit-icon i {
    transition: transform 0.3s ease;
}

.orbit-icon:hover i {
    transform: scale(1.2);
}

/* 4. Text Gradient (2 Colors: Primary & Secondary) */
.hero-title,
.hero-subtitle {
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color), var(--primary-color)) !important;
    background-size: 200% auto !important;
    animation: gradient-flow 3s ease infinite !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent;
}

/* --- Enlarge Hero Image & Orbit (User Request) --- */
.central-image-wrapper.avatar-wrapper {
    width: 400px !important;
    height: 400px !important;
}

.orbit-track,
.orbit-icons-wrapper {
    width: 520px !important;
    height: 520px !important;
}

/* --- Tech Stack Redesign --- */

/* 1. Container Layout */
.orbit-container {
    flex-direction: column !important;
    height: auto !important;
    width: 100% !important;
    gap: 40px !important;
}

/* 2. Profile Image Position */
.central-image-wrapper.avatar-wrapper {
    margin-top: -50px !important;
    /* Move up */
}

/* 3. Tech Stack Container */
.tech-stack-container {
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    gap: 20px !important;
    max-width: 600px !important;
    z-index: 10 !important;
}

/* 4. Tech Stack Icons (Devicon) */
.tech-stack-container i {
    font-size: 3rem !important;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
    cursor: pointer !important;
    padding: 15px !important;
    background: rgba(255, 255, 255, 0.05) !important;
    border-radius: 15px !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.tech-stack-container i:hover {
    transform: translateY(-10px) scale(1.2) !important;
    background: rgba(255, 255, 255, 0.15) !important;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3) !important;
}

/* Hide Orbit Elements if any remain */
.orbit-track,
.orbit-icons-wrapper {
    display: none !important;
}

/* --- Hero Stats Section --- */
.hero-stats-container {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
    width: 100%;
    z-index: 10;
}

.stat-item {
    text-align: center;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 20px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
    min-width: 120px;
}

.stat-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary-color);
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 5px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-label {
    display: block;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 768px) {
    .hero-stats-container {
        flex-wrap: wrap;
        gap: 20px;
    }

    .stat-item {
        flex: 1 1 40%;
    }
}

/* --- Tech Stack Images (Custom Uploads) --- */
.tech-stack-img {
    width: 48px;
    height: 48px;
    object-fit: contain;
    transition: all 0.3s ease;
    cursor: pointer;
    padding: 5px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.tech-stack-img:hover {
    transform: translateY(-10px) scale(1.2);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

/* ========================================
   Admin Bar Fix
   ======================================== */
body.admin-bar .site-header {
    top: 32px;
}

@media screen and (max-width: 782px) {
    body.admin-bar .site-header {
        top: 46px;
    }
}

body.admin-bar .hero-section {
    padding-top: calc(var(--header-height) + 32px);
}

@media screen and (max-width: 782px) {
    body.admin-bar .hero-section {
        padding-top: calc(var(--header-height) + 46px);
    }
}

body.admin-bar .mobile-menu-overlay {
    top: 32px;
}

@media screen and (max-width: 782px) {
    body.admin-bar .mobile-menu-overlay {
        top: 46px;
    }
}

/* ========================================
   Skip Link Accessibility
   ======================================== */
.skip-link {
    position: absolute;
    left: -9999px;
    z-index: 99999;
    padding: 1em 1.5em;
    background: var(--primary-color);
    color: #fff;
}

.orbit-icon:hover i {
    transform: scale(1.2);
}

/* 4. Text Gradient (2 Colors: Primary & Secondary) */
.hero-title,
.hero-subtitle {
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color), var(--primary-color)) !important;
    background-size: 200% auto !important;
    animation: gradient-flow 3s ease infinite !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent;
}

/* --- Enlarge Hero Image & Orbit (User Request) --- */
.central-image-wrapper.avatar-wrapper {
    width: 400px !important;
    height: 400px !important;
}

.orbit-track,
.orbit-icons-wrapper {
    width: 520px !important;
    height: 520px !important;
}

/* --- Tech Stack Redesign --- */

/* 1. Container Layout */
.orbit-container {
    flex-direction: column !important;
    height: auto !important;
    width: 100% !important;
    gap: 40px !important;
}

/* 2. Profile Image Position */
.central-image-wrapper.avatar-wrapper {
    margin-top: -50px !important;
    /* Move up */
}

/* 3. Tech Stack Container */
.tech-stack-container {
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    gap: 20px !important;
    max-width: 600px !important;
    z-index: 10 !important;
}

/* 4. Tech Stack Icons (Devicon) */
.tech-stack-container i {
    font-size: 3rem !important;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
    cursor: pointer !important;
    padding: 15px !important;
    background: rgba(255, 255, 255, 0.05) !important;
    border-radius: 15px !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.tech-stack-container i:hover {
    transform: translateY(-10px) scale(1.2) !important;
    background: rgba(255, 255, 255, 0.15) !important;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3) !important;
}

/* Hide Orbit Elements if any remain */
.orbit-track,
.orbit-icons-wrapper {
    display: none !important;
}

/* --- Hero Stats Section --- */
.hero-stats-container {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
    width: 100%;
    z-index: 10;
}

.stat-item {
    text-align: center;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 20px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
    min-width: 120px;
}

.stat-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary-color);
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 5px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-label {
    display: block;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 768px) {
    .hero-stats-container {
        flex-wrap: wrap;
        gap: 20px;
    }

    .stat-item {
        flex: 1 1 40%;
    }
}

/* --- Tech Stack Images (Custom Uploads) --- */
.tech-stack-img {
    width: 48px;
    height: 48px;
    object-fit: contain;
    transition: all 0.3s ease;
    cursor: pointer;
    padding: 5px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.tech-stack-img:hover {
    transform: translateY(-10px) scale(1.2);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

/* ========================================
   Admin Bar Fix
   ======================================== */
body.admin-bar .site-header {
    top: 32px;
}

@media screen and (max-width: 782px) {
    body.admin-bar .site-header {
        top: 46px;
    }
}

body.admin-bar .hero-section {
    padding-top: calc(var(--header-height) + 32px);
}

@media screen and (max-width: 782px) {
    body.admin-bar .hero-section {
        padding-top: calc(var(--header-height) + 46px);
    }
}

body.admin-bar .mobile-menu-overlay {
    top: 32px;
}

@media screen and (max-width: 782px) {
    body.admin-bar .mobile-menu-overlay {
        top: 46px;
    }
}

/* ========================================
   Skip Link Accessibility
   ======================================== */
.skip-link {
    position: absolute;
    left: -9999px;
    z-index: 99999;
    padding: 1em 1.5em;
    background: var(--primary-color);
    color: #fff;
    font-weight: 600;
    border-radius: 0 0 8px 8px;
    text-decoration: none;
}

.skip-link:focus {
    left: 50%;
    transform: translateX(-50%);
    top: 0;
    outline: none;
}

/* ========================================
   Search Form Styles
   ======================================== */
.search-form-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 15px;
    border-radius: 50px;
}

.search-field {
    flex: 1;
    background: transparent;
    border: none;
    color: var(--text-color);
    padding: 10px 15px;
    font-size: 1rem;
    outline: none;
}

.search-field::placeholder {
    color: var(--text-muted);
}

.search-submit {
    background: var(--primary-color);
    border: none;
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.search-submit:hover {
    background: var(--secondary-color);
    transform: scale(1.1);
}

.search-submit i {
    font-size: 1.2rem;
}

/* ========================================
   Widget Styles
   ======================================== */
.widget {
    margin-bottom: 30px;
}

.widget-title {
    font-size: 1.2rem;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary-color);
    color: #fff;
}

.widget ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.widget ul li {
    padding: 8px 0;
    border-bottom: 1px solid var(--glass-border);
}

.widget ul li:last-child {
    border-bottom: none;
}

.widget ul li a {
    color: var(--text-muted);
    transition: color 0.3s ease;
}

.widget ul li a:hover {
    color: var(--primary-color);
}

/* ========================================
   Print Styles
   ======================================== */
@media print {

    .site-header,
    .site-footer,
    .whatsapp-widget,
    .telegram-widget,
    .mobile-menu-overlay,
    .menu-toggle,
    .skip-link,
    .comments-area,
    .post-navigation,
    .sidebar {
        display: none !important;
    }

    body {
        background: #fff !important;
        color: #000 !important;
        font-size: 12pt;
        line-height: 1.5;
    }

    h1,
    h2,
    h3,
    h4,
    h5,
    h6 {
        color: #000 !important;
        page-break-after: avoid;
    }

    a {
        color: #000 !important;
        text-decoration: underline;
    }

    a[href^="http"]:after {
        content: " (" attr(href) ")";
        font-size: 0.9em;
    }

}

@media screen and (max-width: 782px) {
    body.admin-bar .mobile-menu-overlay {
        top: 46px;
    }
}

/* ========================================
   Skip Link Accessibility
   ======================================== */
.skip-link {
    position: absolute;
    left: -9999px;
    z-index: 99999;
    padding: 1em 1.5em;
    background: var(--primary-color);
    color: #fff;
    font-weight: 600;
    border-radius: 0 0 8px 8px;
    text-decoration: none;
}

.skip-link:focus {
    left: 50%;
    transform: translateX(-50%);
    top: 0;
    outline: none;
}

/* ========================================
   Search Form Styles
   ======================================== */
.search-form-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 15px;
    border-radius: 50px;
}

.search-field {
    flex: 1;
    background: transparent;
    border: none;
    color: var(--text-color);
    padding: 10px 15px;
    font-size: 1rem;
    outline: none;
}

.search-field::placeholder {
    color: var(--text-muted);
}

.search-submit {
    background: var(--primary-color);
    border: none;
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.search-submit:hover {
    background: var(--secondary-color);
    transform: scale(1.1);
}

.search-submit i {
    font-size: 1.2rem;
}

/* ========================================
   Widget Styles
   ======================================== */
.widget {
    margin-bottom: 30px;
}

.widget-title {
    font-size: 1.2rem;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary-color);
    color: #fff;
}

.widget ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.widget ul li {
    padding: 8px 0;
    border-bottom: 1px solid var(--glass-border);
}

.widget ul li:last-child {
    border-bottom: none;
}

.widget ul li a {
    color: var(--text-muted);
    transition: color 0.3s ease;
}

.widget ul li a:hover {
    color: var(--primary-color);
}

/* ========================================
   Print Styles
   ======================================== */
@media print {

    .site-header,
    .site-footer,
    .whatsapp-widget,
    .telegram-widget,
    .mobile-menu-overlay,
    .menu-toggle,
    .skip-link,
    .comments-area,
    .post-navigation,
    .sidebar {
        display: none !important;
    }

    body {
        background: #fff !important;
        color: #000 !important;
        font-size: 12pt;
        line-height: 1.5;
    }

    h1,
    h2,
    h3,
    h4,
    h5,
    h6 {
        color: #000 !important;
        page-break-after: avoid;
    }

    a {
        color: #000 !important;
        text-decoration: underline;
    }

    a[href^="http"]:after {
        content: " (" attr(href) ")";
        font-size: 0.9em;
    }

    .container {
        max-width: 100% !important;
        padding: 0 !important;
    }

    .glass-panel {
        background: #fff !important;
        border: 1px solid #ccc !important;
        box-shadow: none !important;
    }

    a.button i,
    button i,
    .ah-btn i,
    a i[class^="ri-"],
    h3,
    h4,
    h5,
    h6 {
        color: #000 !important;
        page-break-after: avoid;
    }

    a {
        color: #000 !important;
        text-decoration: underline;
    }

    a[href^="http"]:after {
        content: " (" attr(href) ")";
        font-size: 0.9em;
    }

}

@media screen and (max-width: 782px) {
    body.admin-bar .mobile-menu-overlay {
        top: 46px;
    }
}

/* ========================================
   Skip Link Accessibility
   ======================================== */
.skip-link {
    position: absolute;
    left: -9999px;
    z-index: 99999;
    padding: 1em 1.5em;
    background: var(--primary-color);
    color: #fff;
    font-weight: 600;
    border-radius: 0 0 8px 8px;
    text-decoration: none;
}

.skip-link:focus {
    left: 50%;
    transform: translateX(-50%);
    top: 0;
    outline: none;
}

/* ========================================
   Search Form Styles
   ======================================== */
.search-form-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 15px;
    border-radius: 50px;
}

.search-field {
    flex: 1;
    background: transparent;
    border: none;
    color: var(--text-color);
    padding: 10px 15px;
    font-size: 1rem;
    outline: none;
}

.search-field::placeholder {
    color: var(--text-muted);
}

.search-submit {
    background: var(--primary-color);
    border: none;
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.search-submit:hover {
    background: var(--secondary-color);
    transform: scale(1.1);
}

.search-submit i {
    font-size: 1.2rem;
}

/* ========================================
   Widget Styles
   ======================================== */
.widget {
    margin-bottom: 30px;
}

.widget-title {
    font-size: 1.2rem;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary-color);
    color: #fff;
}

.widget ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.widget ul li {
    padding: 8px 0;
    border-bottom: 1px solid var(--glass-border);
}

.widget ul li:last-child {
    border-bottom: none;
}

.widget ul li a {
    color: var(--text-muted);
    transition: color 0.3s ease;
}

.widget ul li a:hover {
    color: var(--primary-color);
}

/* ========================================
   Print Styles
   ======================================== */
@media print {

    .site-header,
    .site-footer,
    .whatsapp-widget,
    .telegram-widget,
    .mobile-menu-overlay,
    .menu-toggle,
    .skip-link,
    .comments-area,
    .post-navigation,
    .sidebar {
        display: none !important;
    }

    body {
        background: #fff !important;
        color: #000 !important;
        font-size: 12pt;
        line-height: 1.5;
    }

    h1,
    h2,
    h3,
    h4,
    h5,
    h6 {
        color: #000 !important;
        page-break-after: avoid;
    }

    a {
        color: #000 !important;
        text-decoration: underline;
    }

    a[href^="http"]:after {
        content: " (" attr(href) ")";
        font-size: 0.9em;
    }

    .container {
        max-width: 100% !important;
        padding: 0 !important;
    }

    .glass-panel {
        background: #fff !important;
        border: 1px solid #ccc !important;
        box-shadow: none !important;
    }

    a.button i,
    button i,
    .ah-btn i,
    a i[class^="ri-"],
    button i[class^="ri-"] {
        margin-inline-end: 8px !important;
        margin-inline-start: 0 !important;
    }

    /* Ensure no margin on icon-only buttons */
    .button.icon-only i,
    .btn.icon-only i,
    .social-btn i:only-child,
    .skip-link {
        position: absolute;
        left: -9999px;
        z-index: 99999;
        padding: 1em 1.5em;
        background: var(--primary-color);
        color: #fff;
        font-weight: 600;
        border-radius: 0 0 8px 8px;
        text-decoration: none;
    }

    .skip-link:focus {
        left: 50%;
        transform: translateX(-50%);
        top: 0;
        outline: none;
    }

    /* ========================================
   Search Form Styles
   ======================================== */
    .search-form-wrapper {
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 8px 15px;
        border-radius: 50px;
    }

    .search-field {
        flex: 1;
        background: transparent;
        border: none;
        color: var(--text-color);
        padding: 10px 15px;
        font-size: 1rem;
        outline: none;
    }

    .search-field::placeholder {
        color: var(--text-muted);
    }

    .search-submit {
        background: var(--primary-color);
        border: none;
        color: #fff;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
    }

    .search-submit:hover {
        background: var(--secondary-color);
        transform: scale(1.1);
    }

    .search-submit i {
        font-size: 1.2rem;
    }

    /* ========================================
   Widget Styles
   ======================================== */
    .widget {
        margin-bottom: 30px;
    }

    .widget-title {
        font-size: 1.2rem;
        margin-bottom: 15px;
        padding-bottom: 10px;
        border-bottom: 2px solid var(--primary-color);
        color: #fff;
    }

    .widget ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .widget ul li {
        padding: 8px 0;
        border-bottom: 1px solid var(--glass-border);
    }

    .widget ul li:last-child {
        border-bottom: none;
    }

    .widget ul li a {
        color: var(--text-muted);
        transition: color 0.3s ease;
    }

    .widget ul li a:hover {
        color: var(--primary-color);
    }

    /* ========================================
   Print Styles
   ======================================== */
    @media print {

        .site-header,
        .site-footer,
        .whatsapp-widget,
        .telegram-widget,
        .mobile-menu-overlay,
        .menu-toggle,
        .skip-link,
        .comments-area,
        .post-navigation,
        .sidebar {
            display: none !important;
        }

        body {
            background: #fff !important;
            color: #000 !important;
            font-size: 12pt;
            line-height: 1.5;
        }

        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            color: #000 !important;
            page-break-after: avoid;
        }

        a {
            color: #000 !important;
            text-decoration: underline;
        }

        a[href^="http"]:after {
            content: " (" attr(href) ")";
            font-size: 0.9em;
        }

        .container {
            max-width: 100% !important;
            padding: 0 !important;
        }

        .glass-panel {
            background: #fff !important;
            border: 1px solid #ccc !important;
            box-shadow: none !important;
        }

        a.button i,
        button i,
        .ah-btn i,
        a i[class^="ri-"],
        button i[class^="ri-"] {
            margin-inline-end: 8px !important;
            margin-inline-start: 0 !important;
        }

        /* Ensure no margin on icon-only buttons */
        .button.icon-only i,
        .btn.icon-only i,
        .social-btn i:only-child,
        .icon-btn i {
            margin-inline-end: 0 !important;
        }
    }

    /* Button Icon Spacing Fix - Global */
    .button i,
    .btn i,
    .social-btn i,
    a.button i,
    button i,
    .ah-btn i,
    a i[class^="ri-"],
    button i[class^="ri-"] {
        margin-inline-end: 8px !important;
        margin-inline-start: 0 !important;
    }

    /* Ensure no margin on icon-only buttons */
    .button.icon-only i,
    .btn.icon-only i,
    .social-btn i:only-child,
    .icon-btn i {
        margin-inline-end: 0 !important;
    }

    /* ========================================
   Theme Toggle Button
   ======================================== */
    .theme-toggle {
        position: relative;
        width: 44px;
        height: 44px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.1);
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
        overflow: hidden;
    }

    .theme-toggle:hover {
        background: rgba(255, 255, 255, 0.1);
        border-color: var(--primary-color);
        transform: scale(1.05);
    }

    .theme-toggle i {
        font-size: 1.25rem;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .theme-icon-light {
        color: #fbbf24;
    }

    .theme-icon-dark {
        color: #a5b4fc;
        position: absolute;
    }

    .theme-toggle .theme-icon-dark {
        opacity: 1;
        transform: rotate(0deg) scale(1);
    }

    .theme-toggle .theme-icon-light {
        opacity: 0;
        transform: rotate(-180deg) scale(0);
    }

    /* Floating Widget Pulse Animation */
    @keyframes floating-widget-pulse {
        0% {
            box-shadow: 0 8px 32px rgba(var(--widget-color, 37, 211, 102), 0.4),
                0 0 0 0 rgba(var(--widget-color, 37, 211, 102), 0.4);
        }

        70% {
            box-shadow: 0 8px 32px rgba(var(--widget-color, 37, 211, 102), 0.4),
                0 0 0 15px rgba(var(--widget-color, 37, 211, 102), 0);
        }

        100% {
            box-shadow: 0 8px 32px rgba(var(--widget-color, 37, 211, 102), 0.4),
                0 0 0 0 rgba(var(--widget-color, 37, 211, 102), 0);
        }
    }

    /* Floating Widget Tooltips */
    .floating-widget::after {
        content: attr(aria-label);
        position: absolute;
        right: 75px;
        background: rgba(0, 0, 0, 0.9);
        color: #fff;
        padding: 8px 16px;
        border-radius: 8px;
        font-size: 0.85rem;
        font-weight: 500;
        white-space: nowrap;
        opacity: 0;
        visibility: hidden;
        transform: translateX(10px);
        transition: all 0.3s ease;
        pointer-events: none;
    }

    .floating-widget:hover::after {
        opacity: 1;
        visibility: visible;
        transform: translateX(0);
    }

    /* RTL Support for Widget Tooltips */
    [dir="rtl"] .floating-widget::after {
        right: auto;
        left: 75px;
        transform: translateX(-10px);
    }

    [dir="rtl"] .floating-widget:hover::after {
        transform: translateX(0);
    }

    /* ========================================
   LIGHT MODE - COMPREHENSIVE STYLES
   ======================================== */

    /* Light Mode Variables */
    body.light-mode {
        --bg-color: #f5f7fa;
        --bg-secondary: #ffffff;
        --text-color: #1e293b;
        --text-muted: #64748b;
        --glass-bg: rgba(255, 255, 255, 0.9);
        --glass-border: rgba(0, 0, 0, 0.08);
    }

    body.light-mode .theme-toggle .theme-icon-light {
        opacity: 1;
        transform: rotate(0deg) scale(1);
    }

    body.light-mode .theme-toggle .theme-icon-dark {
        opacity: 0;
        transform: rotate(180deg) scale(0);
    }

    body.light-mode .theme-toggle {
        background: rgba(0, 0, 0, 0.05);
        border-color: rgba(0, 0, 0, 0.1);
    }

    /* Header */
    body.light-mode .site-header {
        background: rgba(255, 255, 255, 0.98);
        border-bottom-color: rgba(0, 0, 0, 0.08);
        box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
    }

    body.light-mode .main-navigation a {
        color: #334155;
    }

    body.light-mode .main-navigation a:hover {
        color: var(--primary-color);
    }

    body.light-mode .site-title a {
        color: #1e293b;
    }

    body.light-mode .lang-btn {
        border-color: rgba(0, 0, 0, 0.12);
        color: #334155;
    }

    body.light-mode .header-cart .cart-toggle {
        color: #334155;
    }

    body.light-mode .menu-toggle {
        color: #334155;
    }

    body.light-mode .cart-popup {
        background: #ffffff;
        border-color: rgba(0, 0, 0, 0.1);
        box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
    }

    body.light-mode .cart-popup h4 {
        color: #1e293b;
    }

    /* Typography */
    body.light-mode h1,
    body.light-mode h2,
    body.light-mode h3,
    body.light-mode h4,
    body.light-mode h5,
    body.light-mode h6 {
        color: #1e293b;
    }

    body.light-mode p {
        color: #475569;
    }

    body.light-mode .section-title {
        color: #1e293b;
    }

    body.light-mode .section-desc {
        color: #64748b;
    }

    /* Hero Section */
    body.light-mode .hero-section {
        background: linear-gradient(135deg, #f5f7fa 0%, #e8ecf1 100%);
    }

    body.light-mode .hero-bg {
        background: radial-gradient(circle at 50% 50%, rgba(108, 92, 231, 0.08), transparent 60%);
    }

    body.light-mode .hero-title {
        background: linear-gradient(to right, #1e293b, #475569);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    body.light-mode .hero-desc {
        color: #64748b;
    }

    body.light-mode .hero-greeting {
        color: var(--secondary-color);
    }

    /* Orbit Icons - Keep Dark Background */
    body.light-mode .orbit-ring {
        border-color: rgba(0, 0, 0, 0.08);
    }

    body.light-mode .orbit-icon {
        background: #1e293b;
        border-color: rgba(255, 255, 255, 0.15);
        color: #ffffff;
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    }

    body.light-mode .central-image-wrapper {
        box-shadow: 0 0 50px rgba(108, 92, 231, 0.25);
    }

    /* Glass Panels & Cards */
    body.light-mode .glass-panel {
        background: rgba(255, 255, 255, 0.98);
        border-color: rgba(0, 0, 0, 0.06);
        box-shadow: 0 4px 25px rgba(0, 0, 0, 0.06);
    }

    body.light-mode .service-card,
    body.light-mode .project-card,
    body.light-mode .pricing-card {
        background: #ffffff;
        border-color: rgba(0, 0, 0, 0.06);
    }

    body.light-mode .service-card:hover,
    body.light-mode .project-card:hover,
    body.light-mode .pricing-card:hover {
        border-color: var(--primary-color);
        box-shadow: 0 15px 50px rgba(108, 92, 231, 0.12);
    }

    body.light-mode .service-card h3,
    body.light-mode .project-card h3,
    body.light-mode .pricing-card h3,
    body.light-mode .plan-name {
        color: #1e293b;
    }

    body.light-mode .service-card p,
    body.light-mode .project-excerpt,
    body.light-mode .plan-desc {
        color: #64748b;
    }

    /* Buttons */
    body.light-mode .button-outline {
        border-color: var(--primary-color);
        color: var(--primary-color);
        background: transparent;
    }

    body.light-mode .button-outline:hover {
        background: var(--primary-color);
        color: #ffffff;
    }

    body.light-mode .read-more-link {
        color: var(--primary-color);
    }

    /* Pricing Features */
    body.light-mode .plan-features li {
        color: #475569;
    }

    /* Footer - Keep Dark */
    body.light-mode .site-footer {
        background: linear-gradient(to top, #0f172a, #1e293b);
    }

    body.light-mode .site-footer .footer-logo,
    body.light-mode .site-footer .widget-title {
        color: #ffffff;
    }

    body.light-mode .site-footer p,
    body.light-mode .site-footer li,
    body.light-mode .footer-links a,
    body.light-mode .contact-list li {
        color: rgba(255, 255, 255, 0.7);
    }

    body.light-mode .site-footer a:hover,
    body.light-mode .footer-links a:hover {
        color: var(--secondary-color);
    }

    body.light-mode .social-btn {
        background: rgba(255, 255, 255, 0.1);
        color: #ffffff;
    }

    body.light-mode .social-btn:hover {
        background: var(--primary-color);
    }

    /* Mobile Menu */
    body.light-mode .mobile-menu-content {
        background: #ffffff;
    }

    body.light-mode .mobile-menu-content a {
        color: #1e293b;
    }

    body.light-mode .mobile-menu-content a:hover {
        color: var(--primary-color);
    }

    body.light-mode .close-menu {
        color: #1e293b;
    }

    /* Forms & Inputs */
    body.light-mode input[type="text"],
    body.light-mode input[type="email"],
    body.light-mode input[type="tel"],
    body.light-mode input[type="number"],
    body.light-mode input[type="password"],
    body.light-mode textarea,
    body.light-mode select {
        background: #ffffff;
        border-color: rgba(0, 0, 0, 0.12);
        color: #1e293b;
    }

    body.light-mode input::placeholder,
    body.light-mode textarea::placeholder {
        color: #94a3b8;
    }

    body.light-mode input:focus,
    body.light-mode textarea:focus,
    body.light-mode select:focus {
        border-color: var(--primary-color);
        box-shadow: 0 0 0 3px rgba(108, 92, 231, 0.1);
    }

    /* Project Cards */
    body.light-mode .project-info {
        background: #ffffff;
    }

    /* Scrollbar */
    body.light-mode::-webkit-scrollbar-track {
        background: #f1f5f9;
    }

    body.light-mode::-webkit-scrollbar-thumb {
        background: #cbd5e1;
    }

    body.light-mode::-webkit-scrollbar-thumb:hover {
        background: #94a3b8;
    }

    /* Lang Dropdown */
    body.light-mode .lang-dropdown {
        background: #ffffff;
        border-color: rgba(0, 0, 0, 0.1);
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    }

    body.light-mode .hero-greeting {
        color: var(--secondary-color);
    }

    /* Orbit Icons - Keep Dark Background */
    body.light-mode .orbit-ring {
        border-color: rgba(0, 0, 0, 0.08);
    }

    body.light-mode .orbit-icon {
        background: #1e293b;
        border-color: rgba(255, 255, 255, 0.15);
        color: #ffffff;
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    }

    body.light-mode .central-image-wrapper {
        box-shadow: 0 0 50px rgba(108, 92, 231, 0.25);
    }

    /* Glass Panels & Cards */
    body.light-mode .glass-panel {
        background: rgba(255, 255, 255, 0.98);
        border-color: rgba(0, 0, 0, 0.06);
        box-shadow: 0 4px 25px rgba(0, 0, 0, 0.06);
    }

    body.light-mode .service-card,
    body.light-mode .project-card,
    body.light-mode .pricing-card {
        background: #ffffff;
        border-color: rgba(0, 0, 0, 0.06);
    }

    body.light-mode .service-card:hover,
    body.light-mode .project-card:hover,
    body.light-mode .pricing-card:hover {
        border-color: var(--primary-color);
        box-shadow: 0 15px 50px rgba(108, 92, 231, 0.12);
    }

    body.light-mode .service-card h3,
    body.light-mode .project-card h3,
    body.light-mode .pricing-card h3,
    body.light-mode .plan-name {
        color: #1e293b;
    }

    body.light-mode .service-card p,
    body.light-mode .project-excerpt,
    body.light-mode .plan-desc {
        color: #64748b;
    }

    body.light-mode .skills-stats-section .section-title {
        color: #ffffff;
    }

    body.light-mode .skills-stats-section .section-desc {
        color: rgba(255, 255, 255, 0.7);
    }

    body.light-mode .skills-stats-section .stat-item {
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 16px;
        padding: 25px 20px;
        transition: all 0.3s ease;
    }

    body.light-mode .skills-stats-section .stat-item:hover {
        background: rgba(255, 255, 255, 0.1);
        transform: translateY(-5px);
    }

    body.light-mode .skills-stats-section .stat-number {
        color: var(--primary-color);
    }

    body.light-mode .skills-stats-section .stat-label {
        color: rgba(255, 255, 255, 0.8);
    }

    body.light-mode .skills-stats-section i[class*="devicon"] {
        color: var(--secondary-color);
    }

    body.light-mode .skill-circle circle:nth-child(1) {
        stroke: rgba(255, 255, 255, 0.1);
    }

    body.light-mode .skills-stats-section .skill-circle .number h2,
    body.light-mode .skill-circle .number h2 {
        color: #ffffff;
    }

    body.light-mode .skills-stats-section .skill-text,
    body.light-mode .skill-text {
        color: rgba(255, 255, 255, 0.9);
    }

    /* Buttons */
    body.light-mode .button-outline {
        border-color: var(--primary-color);
        color: var(--primary-color);
        background: transparent;
    }

    body.light-mode .button-outline:hover {
        background: var(--primary-color);
        color: #ffffff;
    }

    body.light-mode .read-more-link {
        color: var(--primary-color);
    }

    /* Pricing Features */
    body.light-mode .plan-features li {
        color: #475569;
    }

    /* Footer - Keep Dark */
    body.light-mode .site-footer {
        background: linear-gradient(to top, #0f172a, #1e293b);
    }

    body.light-mode .site-footer .footer-logo,
    body.light-mode .site-footer .widget-title {
        color: #ffffff;
    }

    body.light-mode .site-footer p,
    body.light-mode .site-footer li,
    body.light-mode .footer-links a,
    body.light-mode .contact-list li {
        color: rgba(255, 255, 255, 0.7);
    }

    body.light-mode .site-footer a:hover,
    body.light-mode .footer-links a:hover {
        color: var(--secondary-color);
    }

    body.light-mode .social-btn {
        background: rgba(255, 255, 255, 0.1);
        color: #ffffff;
    }

    body.light-mode .social-btn:hover {
        background: var(--primary-color);
    }

    /* Mobile Menu */
    body.light-mode .mobile-menu-content {
        background: #ffffff;
    }

    body.light-mode .mobile-menu-content a {
        color: #1e293b;
    }

    body.light-mode .mobile-menu-content a:hover {
        color: var(--primary-color);
    }

    body.light-mode .close-menu {
        color: #1e293b;
    }

    /* Forms & Inputs */
    body.light-mode input[type="text"],
    body.light-mode input[type="email"],
    body.light-mode input[type="tel"],
    body.light-mode input[type="number"],
    body.light-mode input[type="password"],
    body.light-mode textarea,
    body.light-mode select {
        background: #ffffff;
        border-color: rgba(0, 0, 0, 0.12);
        color: #1e293b;
    }

    body.light-mode input::placeholder,
    body.light-mode textarea::placeholder {
        color: #94a3b8;
    }

    body.light-mode input:focus,
    body.light-mode textarea:focus,
    body.light-mode select:focus {
        border-color: var(--primary-color);
        box-shadow: 0 0 0 3px rgba(108, 92, 231, 0.1);
    }

    /* Project Cards */
    body.light-mode .project-info {
        background: #ffffff;
    }

    /* Scrollbar */
    body.light-mode::-webkit-scrollbar-track {
        background: #f1f5f9;
    }

    body.light-mode::-webkit-scrollbar-thumb {
        background: #cbd5e1;
    }

    body.light-mode::-webkit-scrollbar-thumb:hover {
        background: #94a3b8;
    }

    /* Lang Dropdown */
    body.light-mode .lang-dropdown {
        background: #ffffff;
        border-color: rgba(0, 0, 0, 0.1);
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    }

    body.light-mode .lang-dropdown a {
        color: #334155;
    }

    body.light-mode .lang-dropdown a:hover,
    body.light-mode .lang-dropdown a.active {
        color: var(--primary-color);
    }

    /* ========================================
   Site Branding - Logo + Name Together
   ======================================== */
    .site-branding-link {
        display: flex;
        align-items: center;
        gap: 12px;
        text-decoration: none;
    }

    .site-branding-link .custom-logo {
        max-height: 45px;
        width: auto;
    }

    .site-branding-link .site-title {
        font-size: 1.4rem;
        font-weight: 700;
        color: #fff;
        background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
        -webkit-background-clip: text;
        color: #ffffff;
    }

    body.light-mode .skills-stats-section .section-desc {
        color: rgba(255, 255, 255, 0.7);
    }

    body.light-mode .skills-stats-section .stat-item {
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 16px;
        padding: 25px 20px;
        transition: all 0.3s ease;
    }

    body.light-mode .skills-stats-section .stat-item:hover {
        background: rgba(255, 255, 255, 0.1);
        transform: translateY(-5px);
    }

    body.light-mode .skills-stats-section .stat-number {
        color: var(--primary-color);
    }

    body.light-mode .skills-stats-section .stat-label {
        color: rgba(255, 255, 255, 0.8);
    }

    body.light-mode .skills-stats-section i[class*="devicon"] {
        color: var(--secondary-color);
    }

    body.light-mode .skill-circle circle:nth-child(1) {
        stroke: rgba(255, 255, 255, 0.1);
    }

    body.light-mode .skills-stats-section .skill-circle .number h2,
    body.light-mode .skill-circle .number h2 {
        color: #ffffff;
    }

    body.light-mode .skills-stats-section .skill-text,
    body.light-mode .skill-text {
        color: rgba(255, 255, 255, 0.9);
    }

    /* Buttons */
    body.light-mode .button-outline {
        border-color: var(--primary-color);
        color: var(--primary-color);
        background: transparent;
    }

    body.light-mode .button-outline:hover {
        background: var(--primary-color);
        color: #ffffff;
    }

    body.light-mode .read-more-link {
        color: var(--primary-color);
    }

    /* Pricing Features */
    body.light-mode .plan-features li {
        color: #475569;
    }

    /* Footer - Keep Dark */
    body.light-mode .site-footer {
        background: linear-gradient(to top, #0f172a, #1e293b);
    }

    body.light-mode .site-footer .footer-logo,
    body.light-mode .site-footer .widget-title {
        color: #ffffff;
    }

    body.light-mode .site-footer p,
    body.light-mode .site-footer li,
    body.light-mode .footer-links a,
    body.light-mode .contact-list li {
        color: rgba(255, 255, 255, 0.7);
    }

    body.light-mode .site-footer a:hover,
    body.light-mode .footer-links a:hover {
        color: var(--secondary-color);
    }

    body.light-mode .social-btn {
        background: rgba(255, 255, 255, 0.1);
        color: #ffffff;
    }

    body.light-mode .social-btn:hover {
        background: var(--primary-color);
    }

    /* Mobile Menu */
    body.light-mode .mobile-menu-content {
        background: #ffffff;
    }

    body.light-mode .mobile-menu-content a {
        color: #1e293b;
    }

    body.light-mode .mobile-menu-content a:hover {
        color: var(--primary-color);
    }

    body.light-mode .close-menu {
        color: #1e293b;
    }

    /* Forms & Inputs */
    body.light-mode input[type="text"],
    body.light-mode input[type="email"],
    body.light-mode input[type="tel"],
    body.light-mode input[type="number"],
    body.light-mode input[type="password"],
    body.light-mode textarea,
    body.light-mode select {
        background: #ffffff;
        border-color: rgba(0, 0, 0, 0.12);
        color: #1e293b;
    }

    body.light-mode input::placeholder,
    body.light-mode textarea::placeholder {
        color: #94a3b8;
    }

    body.light-mode input:focus,
    body.light-mode textarea:focus,
    body.light-mode select:focus {
        border-color: var(--primary-color);
        box-shadow: 0 0 0 3px rgba(108, 92, 231, 0.1);
    }

    /* Project Cards */
    body.light-mode .project-info {
        background: #ffffff;
    }

    /* Scrollbar */
    body.light-mode::-webkit-scrollbar-track {
        background: #f1f5f9;
    }

    body.light-mode::-webkit-scrollbar-thumb {
        background: #cbd5e1;
    }

    body.light-mode::-webkit-scrollbar-thumb:hover {
        background: #94a3b8;
    }

    /* Lang Dropdown */
    body.light-mode .lang-dropdown {
        background: #ffffff;
        border-color: rgba(0, 0, 0, 0.1);
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    }

    body.light-mode .lang-dropdown a {
        color: #334155;
    }

    body.light-mode .lang-dropdown a:hover,
    body.light-mode .lang-dropdown a.active {
        color: var(--primary-color);
    }

    /* ========================================
   Site Branding - Logo + Name Together
   ======================================== */
    .site-branding-link {
        display: flex;
        align-items: center;
        gap: 12px;
        text-decoration: none;
    }

    .site-branding-link .custom-logo {
        max-height: 45px;
        width: auto;
    }

    .site-branding-link .site-title {
        font-size: 1.4rem;
        font-weight: 700;
        color: #fff;
        background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
        -webkit-background-clip: text;
        color: #ffffff;
    }

    body.light-mode .skills-stats-section .section-desc {
        color: rgba(255, 255, 255, 0.7);
    }

    body.light-mode .skills-stats-section .stat-item {
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 16px;
        padding: 25px 20px;
        transition: all 0.3s ease;
    }

    body.light-mode .skills-stats-section .stat-item:hover {
        background: rgba(255, 255, 255, 0.1);
        transform: translateY(-5px);
    }

    body.light-mode .skills-stats-section .stat-number {
        color: var(--primary-color);
    }

    body.light-mode .skills-stats-section .stat-label {
        color: rgba(255, 255, 255, 0.8);
    }

    body.light-mode .skills-stats-section i[class*="devicon"] {
        color: var(--secondary-color);
    }

    body.light-mode .skill-circle circle:nth-child(1) {
        stroke: rgba(255, 255, 255, 0.1);
    }

    body.light-mode .skills-stats-section .skill-circle .number h2,
    body.light-mode .skill-circle .number h2 {
        color: #ffffff;
    }

    body.light-mode .skills-stats-section .skill-text,
    body.light-mode .skill-text {
        color: rgba(255, 255, 255, 0.9);
    }

    /* Buttons */
    body.light-mode .button-outline {
        border-color: var(--primary-color);
        color: var(--primary-color);
        background: transparent;
    }

    body.light-mode .button-outline:hover {
        background: var(--primary-color);
        color: #ffffff;
    }

    body.light-mode .read-more-link {
        color: var(--primary-color);
    }

    /* Pricing Features */
    body.light-mode .plan-features li {
        color: #475569;
    }

    /* Footer - Keep Dark */
    body.light-mode .site-footer {
        background: linear-gradient(to top, #0f172a, #1e293b);
    }

    body.light-mode .site-footer .footer-logo,
    body.light-mode .site-footer .widget-title {
        color: #ffffff;
    }

    body.light-mode .site-footer p,
    body.light-mode .site-footer li,
    body.light-mode .footer-links a,
    body.light-mode .contact-list li {
        color: rgba(255, 255, 255, 0.7);
    }

    body.light-mode .site-footer a:hover,
    body.light-mode .footer-links a:hover {
        color: var(--secondary-color);
    }

    body.light-mode .social-btn {
        background: rgba(255, 255, 255, 0.1);
        color: #ffffff;
    }

    body.light-mode .social-btn:hover {
        background: var(--primary-color);
    }

    /* Mobile Menu */
    body.light-mode .mobile-menu-content {
        background: #ffffff;
    }

    body.light-mode .mobile-menu-content a {
        color: #1e293b;
    }

    body.light-mode .mobile-menu-content a:hover {
        color: var(--primary-color);
    }

    body.light-mode .close-menu {
        color: #1e293b;
    }

    /* Forms & Inputs */
    body.light-mode input[type="text"],
    body.light-mode input[type="email"],
    body.light-mode input[type="tel"],
    body.light-mode input[type="number"],
    body.light-mode input[type="password"],
    body.light-mode textarea,
    body.light-mode select {
        background: #ffffff;
        border-color: rgba(0, 0, 0, 0.12);
        color: #1e293b;
    }

    body.light-mode input::placeholder,
    body.light-mode textarea::placeholder {
        color: #94a3b8;
    }

    body.light-mode input:focus,
    body.light-mode textarea:focus,
    body.light-mode select:focus {
        border-color: var(--primary-color);
        box-shadow: 0 0 0 3px rgba(108, 92, 231, 0.1);
    }

    /* Project Cards */
    body.light-mode .project-info {
        background: #ffffff;
    }

    /* Scrollbar */
    body.light-mode::-webkit-scrollbar-track {
        background: #f1f5f9;
    }

    body.light-mode::-webkit-scrollbar-thumb {
        background: #cbd5e1;
    }

    body.light-mode::-webkit-scrollbar-thumb:hover {
        background: #94a3b8;
    }

    /* Lang Dropdown */
    body.light-mode .lang-dropdown {
        background: #ffffff;
        border-color: rgba(0, 0, 0, 0.1);
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    }

    body.light-mode .lang-dropdown a {
        color: #334155;
    }

    body.light-mode .lang-dropdown a:hover,
    body.light-mode .lang-dropdown a.active {
        color: var(--primary-color);
    }

    /* ========================================
   Site Branding - Logo + Name Together
   ======================================== */
    .site-branding-link {
        display: flex;
        align-items: center;
        gap: 12px;
        text-decoration: none;
    }

    .site-branding-link .custom-logo {
        max-height: 45px;
        width: auto;
    }

    .site-branding-link .site-title {
        font-size: 1.4rem;
        font-weight: 700;
        color: #fff;
        background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        margin: 0;
    }

    .site-branding-link:hover .site-title {
        opacity: 0.9;
    }
}

/* ========================================
   Premium Breadcrumb Styles
   ======================================== */
.product-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    margin-bottom: 30px;
    width: fit-content;
    font-size: 0.9rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.product-breadcrumb a {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--text-muted);
    font-weight: 500;
    text-decoration: none;
    padding: 6px 12px;
    border-radius: 20px;
    transition: all 0.3s ease;
    position: relative;
}

.product-breadcrumb a:first-child::before {
    content: '\eb4a';
    /* ri-home-4-line */
    font-family: 'remixicon' !important;
    font-size: 1rem;
    margin-right: 4px;
}

.product-breadcrumb a:hover {
    color: var(--primary-color);
    background: rgba(126, 87, 194, 0.15);
}

.product-breadcrumb .separator {
    color: var(--text-muted);
    opacity: 0.4;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
}

.product-breadcrumb .separator i {
    transition: transform 0.3s ease;
}

.product-breadcrumb .current {
    color: #fff;
    font-weight: 600;
    padding: 6px 14px;
    background: linear-gradient(135deg, rgba(126, 87, 194, 0.3), rgba(0, 212, 255, 0.2));
    border-radius: 20px;
    border: 1px solid rgba(126, 87, 194, 0.3);
    max-width: 200px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* Sale Price Styles */
.product-price-box {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin: 15px 0;
}

.product-price-box .old-price {
    text-decoration: line-through;
    opacity: 0.6;
    font-size: 1.1rem;
    color: #999 !important;
}

.product-price-box .sale-price {
    color: #22c55e !important;
    font-weight: 700;
}

body.light-mode .mobile-menu-content a {
    color: #1e293b;
}

body.light-mode .mobile-menu-content a:hover {
    color: var(--primary-color);
}

body.light-mode .close-menu {
    color: #1e293b;
}

/* Forms & Inputs */
body.light-mode input[type="text"],
body.light-mode input[type="email"],
body.light-mode input[type="tel"],
body.light-mode input[type="number"],
body.light-mode input[type="password"],
body.light-mode textarea,
body.light-mode select {
    background: #ffffff;
    border-color: rgba(0, 0, 0, 0.12);
    color: #1e293b;
}

body.light-mode input::placeholder,
body.light-mode textarea::placeholder {
    color: #94a3b8;
}

body.light-mode input:focus,
body.light-mode textarea:focus,
body.light-mode select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(108, 92, 231, 0.1);
}

/* Project Cards */
body.light-mode .project-info {
    background: #ffffff;
}

/* Scrollbar */
body.light-mode::-webkit-scrollbar-track {
    background: #f1f5f9;
}

body.light-mode::-webkit-scrollbar-thumb {
    background: #cbd5e1;
}

body.light-mode::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}

/* Lang Dropdown */
body.light-mode .lang-dropdown {
    background: #ffffff;
    border-color: rgba(0, 0, 0, 0.1);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

body.light-mode .lang-dropdown a {
    color: #334155;
}

body.light-mode .lang-dropdown a:hover,
body.light-mode .lang-dropdown a.active {
    color: var(--primary-color);
}

/* ========================================
   Site Branding - Logo + Name Together
   ======================================== */
.site-branding-link {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.site-branding-link .custom-logo {
    max-height: 45px;
    width: auto;
}

.site-branding-link .site-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
}

.site-branding-link:hover .site-title {
    opacity: 0.9;
}

/* ========================================
   Premium Breadcrumb Styles
   ======================================== */
.product-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    margin-bottom: 30px;
    width: fit-content;
    font-size: 0.9rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.product-breadcrumb a {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--text-muted);
    font-weight: 500;
    text-decoration: none;
    padding: 6px 12px;
    border-radius: 20px;
    transition: all 0.3s ease;
    position: relative;
}

.product-breadcrumb a:first-child::before {
    content: '\eb4a';
    /* ri-home-4-line */
    font-family: 'remixicon' !important;
    font-size: 1rem;
    margin-right: 4px;
}

.product-breadcrumb a:hover {
    color: var(--primary-color);
    background: rgba(126, 87, 194, 0.15);
}

.product-breadcrumb .separator {
    color: var(--text-muted);
    opacity: 0.4;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
}

.product-breadcrumb .separator i {
    transition: transform 0.3s ease;
}

.product-breadcrumb .current {
    color: #fff;
    font-weight: 600;
    padding: 6px 14px;
    background: linear-gradient(135deg, rgba(126, 87, 194, 0.3), rgba(0, 212, 255, 0.2));
    border-radius: 20px;
    border: 1px solid rgba(126, 87, 194, 0.3);
    max-width: 200px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* Sale Price Styles */
.product-price-box {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin: 15px 0;
}

.product-price-box .old-price {
    text-decoration: line-through;
    opacity: 0.6;
    font-size: 1.1rem;
    color: #999 !important;
}

.product-price-box .sale-price {
    color: #22c55e !important;
    font-weight: 700;
}

.product-price-box .sale-badge-inline {
    animation: pulse-sale 2s infinite;
}

@keyframes pulse-sale {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

/* ===== CONTACT PAGE ===== */
.contact-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-bottom: 60px;
}

.contact-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(108, 92, 231, 0.2);
}

.contact-main-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

@media (max-width: 1024px) {
    .contact-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-main-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .contact-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}

/* ========================================
   CONTACT PAGE SPACING FIX
   ======================================== */

/* Spacing between Page Hero and Contact Cards */
.page-hero+.contact-page-container,
.page-hero.section-padding+.container.contact-page-container {
    margin-top: 90px;
}

/* Spacing between Contact Section and Footer */
.contact-page-container {
    padding-bottom: 80px !important;
}

/* Contact main grid spacing */
.contact-main-grid {
    margin-bottom: 60px;
}

/* ========================================
   CONTACT PAGE STYLES (No Inline Styles)
   ======================================== */

/* Contact Hero */
.contact-hero {
    text-align: center;
    background: linear-gradient(135deg, rgba(108, 92, 231, 0.1), rgba(0, 206, 201, 0.1));
}

.contact-hero .page-title {
    margin-bottom: 20px;
}

.contact-hero-desc {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* Contact Page Container - Spacing Fix */
.contact-page-container {
    margin-top: 60px;
}

/* Contact Cards */
.contact-card {
    padding: 30px;
    text-align: center;
}

.contact-card-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.contact-card-icon i {
    font-size: 2rem;
    color: #fff;
}

.contact-card-icon.whatsapp-icon {
    background: #25D366;
}

.contact-card-title {
    margin-bottom: 10px;
}

.contact-card-link {
    color: var(--secondary-color);
}

.contact-card-link-bold {
    font-weight: bold;
}

.contact-card-text {
    color: var(--text-muted);
}

/* Contact Info Section */
.contact-info {
    padding: 50px;
}

.contact-info-title {
    font-size: 2rem;
    margin-bottom: 20px;
}

.contact-info-desc {
    margin-bottom: 30px;
    color: var(--text-muted);
    font-size: 1.1rem;
}

/* Why Choose Me */
.why-choose {
    margin-bottom: 30px;
}

.why-choose-title {
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.why-choose-list {
    list-style: none;
    padding: 0;
}

.why-choose-item {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.why-choose-item i {
    color: var(--secondary-color);
}

/* Contact Social Links */
.contact-social-links {
    display: flex;
    gap: 10px;
    margin-top: 30px;
}

/* Contact Form Wrapper */
.contact-form-wrapper {
    padding: 50px;
}

.contact-form-title {
    font-size: 2rem;
    margin-bottom: 30px;
}

/* Form Styles */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-input {
    width: 100%;
    padding: 15px;
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    font-size: 1rem;
}

.form-textarea {
    resize: vertical;
}

.form-select {
    cursor: pointer;
}

/* Honeypot - Hidden from humans */
.honeypot-field {
    position: absolute;
    left: -9999px;
}

/* CAPTCHA */
.captcha-group {
    margin-bottom: 20px;
}

.captcha-wrapper {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.captcha-label {
    color: var(--text-muted);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.captcha-label i {
    color: var(--secondary-color);
}

.captcha-input {
    width: 100px;
    text-align: center;
    font-size: 1.1rem;
}

/* Submit Button */
.contact-submit-btn {
    padding: 15px;
}

/* Form Response */
.form-response {
    display: none;
    margin-top: 20px;
    padding: 15px;
    border-radius: 10px;
    text-align: center;
}

.form-response-success {
    background: rgba(16, 185, 129, 0.2);
    border: 1px solid #10b981;
    color: #10b981;
}

.form-response-error {
    background: rgba(239, 68, 68, 0.2);
    border: 1px solid #ef4444;
    color: #ef4444;
}

.form-response-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.form-response-content i {
    font-size: 1.5rem;
}

.form-response-content span {
    font-size: 1.1rem;
    font-weight: 500;
}

/* Responsive */
@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-info,
    .contact-form-wrapper {
        padding: 30px;
    }

    .captcha-wrapper {
        flex-direction: column;
        align-items: flex-start;
    }

    .captcha-input {
        width: 100%;
    }
}

/* ========================================
   CONTACT PAGE - CRITICAL FIXES
   ======================================== */

/* FIX 1: Spacing between Hero and Cards - IMPORTANT */
.contact-page-container {
    margin-top: 80px !important;
    padding-top: 0 !important;
}

/* FIX 2: Contact Info Social Icons - Restore Original Style */
.contact-social-links {
    display: flex;
    gap: 10px;
    margin-top: 30px;
}

.contact-social-links .social-btn {
    width: 45px !important;
    height: 45px !important;
    min-width: 45px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 1.2rem !important;
    padding: 0 !important;
    border-radius: 50% !important;
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    color: #fff !important;
    transition: all 0.3s ease !important;
    text-decoration: none !important;
}

.contact-social-links .social-btn:hover {
    background: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
    box-shadow: 0 0 20px rgba(126, 87, 194, 0.5) !important;
    transform: translateY(-3px) !important;
}

.contact-social-links .social-btn i {
    font-size: 1.2rem !important;
    line-height: 1 !important;
    margin: 0 !important;
}

/* FIX 3: Contact Info & Form Glass Panel */
.contact-info.glass-panel,
.contact-form-wrapper.glass-panel {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
}

/* ========================================
   FORM HEIGHT FIX - Remove Extra Spacing
   ======================================== */

/* Remove double margin from form-group inside form-row */
.form-row .form-group {
    margin-bottom: 0 !important;
}

/* Reduce form-row margin */
.contact-form .form-row {
    margin-bottom: 15px !important;
}

/* Single form-group outside row */
.contact-form>.form-group {
    margin-bottom: 15px !important;
}

/* CAPTCHA fix */
.contact-form .captcha-group {
    margin-bottom: 15px !important;
}

/* Form title margin */
.contact-form-title {
    margin-bottom: 20px !important;
}

/* ========================================
   LANGUAGE DROPDOWN - Wider with Flags
   ======================================== */

.lang-dropdown {
    min-width: 140px !important;
}

.lang-dropdown li a {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    padding: 10px 15px !important;
    white-space: nowrap !important;
}

.lang-dropdown .lang-flag {
    font-size: 1.2rem;
}

.lang-dropdown .lang-name {
    font-size: 0.95rem;
}

.lang-dropdown li a:hover,
.lang-dropdown li a.active {
    background: rgba(108, 92, 231, 0.1);
    color: var(--primary-color);
}

/* ========================================
   MOBILE BOTTOM NAVIGATION BAR
   ======================================== */

/* Hide on desktop, show on mobile only */
.mobile-bottom-nav {
    display: none;
}

@media (max-width: 768px) {

    /* Show bottom nav on mobile */
    .mobile-bottom-nav {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background: rgba(10, 10, 10, 0.95);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        z-index: 9999;
        padding: 8px 0;
        padding-bottom: calc(8px + env(safe-area-inset-bottom));
        justify-content: space-around;
        align-items: center;
    }

    /* Nav item */
    .mobile-nav-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        color: var(--text-muted);
        font-size: 0.7rem;
        padding: 5px 10px;
        transition: all 0.3s ease;
        position: relative;
        gap: 3px;
        cursor: pointer;
    }

    .mobile-nav-item i {
        font-size: 1.4rem;
        transition: all 0.3s ease;
    }

    .mobile-nav-item span {
        font-weight: 500;
    }

    .mobile-nav-item:hover,
    .mobile-nav-item.active {
        color: var(--primary-color);
    }

    .mobile-nav-item.active i {
        transform: scale(1.1);
    }

    /* Cart badge */
    .mobile-cart-badge {
        position: absolute;
        top: 0;
        right: 5px;
        background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
        color: #fff;
        font-size: 0.65rem;
        font-weight: 700;
        min-width: 18px;
        height: 18px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0 4px;
    }

    /* Language popup */
    .mobile-lang-popup {
        position: absolute;
        bottom: 100%;
        left: 50%;
        transform: translateX(-50%);
        background: rgba(20, 20, 30, 0.98);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 12px;
        padding: 10px;
        display: none;
        flex-direction: column;
        gap: 5px;
        min-width: 100px;
        margin-bottom: 10px;
        box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.4);
    }

    .mobile-lang-trigger.open .mobile-lang-popup {
        display: flex;
    }

    .mobile-lang-option {
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 10px 15px;
        color: #fff;
        text-decoration: none;
        border-radius: 8px;
        transition: all 0.3s ease;
    }

    .mobile-lang-option:hover,
    .mobile-lang-option.active {
        background: rgba(108, 92, 231, 0.2);
        color: var(--primary-color);
    }

    .mobile-lang-option .lang-flag {
        font-size: 1.2rem;
    }

    .mobile-lang-option .lang-code {
        font-weight: 600;
    }

    /* Add padding to body so content doesn't hide behind bottom nav */
    body {
        padding-bottom: 70px !important;
    }

    /* Hide floating widgets on mobile to avoid overlap */
    .floating-widget,
    .whatsapp-widget,
    .telegram-widget {
        bottom: 80px !important;
    }

    /* Adjust mobile header */
    .site-header .header-container {
        justify-content: space-between !important;
    }

    .site-header .site-branding {
        order: 2;
        flex: 1;
        display: flex;
        justify-content: center;
    }

    .site-header .menu-toggle {
        order: 1;
    }

    .site-header .header-cart {
        order: 3;
    }

    /* Hide language switcher in header on mobile */
    .site-header .language-switcher {
        display: none !important;
    }

    /* Hide hire me button on mobile */
    .site-header .button.button-sm.glow-effect {
        display: none !important;
    }
}

/* Mobile Bottom Nav - Language Trigger Click Handler via CSS */
.mobile-lang-trigger {
    position: relative;
}

/* Arrow indicator for language */
.mobile-lang-trigger::after {
    content: '';
    position: absolute;
    bottom: calc(100% + 5px);
    left: 50%;
    transform: translateX(-50%);
    border: 6px solid transparent;
    border-top-color: rgba(20, 20, 30, 0.98);
    display: none;
}

.mobile-lang-trigger.open::after {
    display: block;
}

/* ========================================
   ENHANCED MOBILE NAVIGATION DESIGN
   ======================================== */

@media (max-width: 768px) {

    /* ===== 1. MENU TOGGLE BUTTON - Premium Design ===== */
    .menu-toggle {
        order: 3 !important;
        /* Move to right */
        width: 44px !important;
        height: 44px !important;
        background: rgba(255, 255, 255, 0.05) !important;
        border: 1px solid rgba(255, 255, 255, 0.15) !important;
        border-radius: 12px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        transition: all 0.3s ease !important;
        cursor: pointer !important;
    }

    .menu-toggle:hover,
    .menu-toggle:focus {
        background: rgba(108, 92, 231, 0.2) !important;
        border-color: var(--primary-color) !important;
        outline: none !important;
        box-shadow: 0 0 20px rgba(108, 92, 231, 0.3) !important;
    }

    .menu-toggle i {
        font-size: 1.5rem !important;
        color: #fff !important;
        transition: transform 0.3s ease !important;
    }

    .menu-toggle:hover i {
        transform: scale(1.1) !important;
    }

    /* Header Cart on left */
    .header-cart {
        order: 1 !important;
    }

    /* Logo centered */
    .site-branding {
        order: 2 !important;
        flex: 1 !important;
        display: flex !important;
        justify-content: center !important;
    }

    /* ===== 2. MOBILE MENU SLIDER - Premium Overlay ===== */
    .mobile-menu-overlay {
        background: rgba(0, 0, 0, 0.85) !important;
        backdrop-filter: blur(15px) !important;
        -webkit-backdrop-filter: blur(15px) !important;
    }

    .mobile-menu-content {
        width: 85% !important;
        max-width: 320px !important;
        background: linear-gradient(180deg, #0f0f1a 0%, #1a1a2e 100%) !important;
        border-left: 1px solid rgba(255, 255, 255, 0.1) !important;
        box-shadow: -10px 0 50px rgba(0, 0, 0, 0.5) !important;
        padding: 0 !important;
        display: flex !important;
        flex-direction: column !important;
    }

    /* Close button */
    .close-menu {
        position: absolute !important;
        top: 20px !important;
        right: 20px !important;
        width: 40px !important;
        height: 40px !important;
        background: rgba(255, 255, 255, 0.1) !important;
        border: 1px solid rgba(255, 255, 255, 0.15) !important;
        border-radius: 50% !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        cursor: pointer !important;
        transition: all 0.3s ease !important;
        color: #fff !important;
        font-size: 1.5rem !important;
    }

    .close-menu:hover {
        background: rgba(239, 68, 68, 0.2) !important;
        border-color: #ef4444 !important;
        color: #ef4444 !important;
        transform: rotate(90deg) !important;
    }

    /* Mobile Menu Header */
    .mobile-menu-content::before {
        content: '';
        display: block;
        height: 80px;
        background: linear-gradient(135deg, rgba(108, 92, 231, 0.2), rgba(0, 206, 201, 0.1));
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    /* Mobile Navigation Links */
    .mobile-nav-menu {
        list-style: none !important;
        padding: 20px !important;
        margin: 0 !important;
        flex: 1 !important;
    }

    .mobile-nav-menu li {
        margin-bottom: 5px !important;
    }

    .mobile-nav-menu li a {
        display: flex !important;
        align-items: center !important;
        gap: 12px !important;
        padding: 15px 20px !important;
        color: rgba(255, 255, 255, 0.8) !important;
        text-decoration: none !important;
        font-size: 1rem !important;
        font-weight: 500 !important;
        border-radius: 12px !important;
        transition: all 0.3s ease !important;
        position: relative !important;
        overflow: hidden !important;
    }

    .mobile-nav-menu li a::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        width: 0;
        height: 100%;
        background: linear-gradient(90deg, rgba(108, 92, 231, 0.2), transparent);
        transition: width 0.3s ease;
        z-index: -1;
    }

    .mobile-nav-menu li a:hover,
    .mobile-nav-menu li.current-menu-item a {
        color: #fff !important;
        background: rgba(255, 255, 255, 0.05) !important;
        transform: translateX(5px) !important;
    }

    .mobile-nav-menu li a:hover::before,
    .mobile-nav-menu li.current-menu-item a::before {
        width: 100%;
    }

    /* Active indicator */
    .mobile-nav-menu li.current-menu-item a::after {
        content: '';
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
        width: 3px;
        height: 60%;
        background: linear-gradient(180deg, var(--primary-color), var(--secondary-color));
        border-radius: 0 3px 3px 0;
    }

    /* ===== 3. BOTTOM NAV - Enhanced Premium Design ===== */
    .mobile-bottom-nav {
        background: linear-gradient(180deg, rgba(15, 15, 25, 0.98), rgba(10, 10, 20, 1)) !important;
        border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
        box-shadow: 0 -5px 30px rgba(0, 0, 0, 0.3) !important;
        padding: 10px 5px !important;
        padding-bottom: calc(10px + env(safe-area-inset-bottom)) !important;
    }

    .mobile-nav-item {
        background: transparent !important;
        border-radius: 12px !important;
        padding: 8px 12px !important;
        min-width: 60px !important;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    }

    .mobile-nav-item i {
        font-size: 1.3rem !important;
        margin-bottom: 2px !important;
    }

    .mobile-nav-item span:not(.mobile-cart-badge) {
        font-size: 0.65rem !important;
        font-weight: 600 !important;
        letter-spacing: 0.3px !important;
        text-transform: uppercase !important;
    }

    .mobile-nav-item:hover {
        background: rgba(108, 92, 231, 0.15) !important;
        color: var(--primary-color) !important;
    }

    .mobile-nav-item.active {
        background: rgba(108, 92, 231, 0.2) !important;
        color: var(--primary-color) !important;
    }

    .mobile-nav-item.active i {
        transform: scale(1.15) !important;
        text-shadow: 0 0 15px rgba(108, 92, 231, 0.5) !important;
    }

    /* Cart badge enhanced */
    .mobile-cart-badge {
        top: 2px !important;
        right: 8px !important;
        min-width: 16px !important;
        height: 16px !important;
        font-size: 0.6rem !important;
        box-shadow: 0 2px 8px rgba(108, 92, 231, 0.4) !important;
        animation: pulse-badge 2s infinite !important;
    }

    @keyframes pulse-badge {

        0%,
        100% {
            transform: scale(1);
        }

        50% {
            transform: scale(1.1);
        }
    }

    /* Language popup enhanced */
    .mobile-lang-popup {
        background: linear-gradient(180deg, rgba(20, 20, 35, 0.98), rgba(15, 15, 25, 1)) !important;
        border: 1px solid rgba(108, 92, 231, 0.3) !important;
        border-radius: 16px !important;
        box-shadow: 0 -15px 50px rgba(0, 0, 0, 0.5), 0 0 30px rgba(108, 92, 231, 0.15) !important;
    }

    .mobile-lang-option {
        border-radius: 10px !important;
    }

    .mobile-lang-option:hover {
        background: linear-gradient(90deg, rgba(108, 92, 231, 0.2), transparent) !important;
    }
}

/* ========================================
   MOBILE HEADER & BOTTOM NAV - FINAL FIX
   ======================================== */

@media (max-width: 768px) {

    /* ===== HEADER LAYOUT FIX ===== */
    /* Cart - Left | Logo - Center | Menu - Right */
    .site-header .header-container {
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
    }

    .site-header .header-cart {
        order: 1 !important;
        margin-right: auto !important;
    }

    .site-header .site-branding {
        order: 2 !important;
        position: absolute !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
    }

    .site-header .menu-toggle {
        order: 3 !important;
        margin-left: auto !important;
    }

    /* Hide other elements */
    .site-header .main-navigation,
    .site-header .language-switcher,
    .site-header .button.button-sm.glow-effect {
        display: none !important;
    }

    /* ===== BOTTOM NAV - PREMIUM REDESIGN ===== */
    .mobile-bottom-nav {
        display: flex !important;
        position: fixed !important;
        bottom: 0 !important;
        left: 0 !important;
        right: 0 !important;
        height: 70px !important;
        background: linear-gradient(180deg, rgba(20, 20, 30, 0.98) 0%, rgba(10, 10, 20, 1) 100%) !important;
        backdrop-filter: blur(30px) !important;
        -webkit-backdrop-filter: blur(30px) !important;
        border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
        box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.4) !important;
        padding: 0 !important;
        padding-bottom: env(safe-area-inset-bottom) !important;
        justify-content: space-around !important;
        align-items: stretch !important;
        z-index: 99999 !important;
    }

    /* Each nav item */
    .mobile-nav-item {
        flex: 1 !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        text-decoration: none !important;
        color: rgba(255, 255, 255, 0.5) !important;
        background: transparent !important;
        position: relative !important;
        padding: 8px 5px !important;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
        cursor: pointer !important;
        gap: 4px !important;
        border: none !important;
    }

    .mobile-nav-item i {
        font-size: 1.4rem !important;
        transition: all 0.3s ease !important;
    }

    .mobile-nav-item span:not(.mobile-cart-badge):not(.lang-flag):not(.lang-code) {
        font-size: 0.6rem !important;
        font-weight: 600 !important;
        text-transform: uppercase !important;
        letter-spacing: 0.5px !important;
        white-space: nowrap !important;
    }

    /* Hover state */
    .mobile-nav-item:hover {
        color: rgba(255, 255, 255, 0.8) !important;
    }

    /* ACTIVE STATE - Premium Glow Effect */
    .mobile-nav-item.active {
        color: #fff !important;
    }

    .mobile-nav-item.active::before {
        content: '';
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 40px;
        height: 3px;
        background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
        border-radius: 0 0 3px 3px;
    }

    .mobile-nav-item.active i {
        color: var(--primary-color) !important;
        transform: scale(1.15) translateY(-2px) !important;
        filter: drop-shadow(0 0 10px rgba(108, 92, 231, 0.6)) !important;
    }

    .mobile-nav-item.active span:not(.mobile-cart-badge) {
        color: var(--primary-color) !important;
    }

    /* Active glow background */
    .mobile-nav-item.active::after {
        content: '';
        position: absolute;
        bottom: 15px;
        left: 50%;
        transform: translateX(-50%);
        width: 50px;
        height: 30px;
        background: radial-gradient(ellipse, rgba(108, 92, 231, 0.25), transparent);
        border-radius: 50%;
        z-index: -1;
    }

    /* Cart badge */
    .mobile-cart-badge {
        position: absolute !important;
        top: 5px !important;
        right: calc(50% - 20px) !important;
        background: linear-gradient(135deg, #ef4444, #dc2626) !important;
        color: #fff !important;
        font-size: 0.55rem !important;
        font-weight: 700 !important;
        min-width: 16px !important;
        height: 16px !important;
        border-radius: 8px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        padding: 0 4px !important;
        box-shadow: 0 2px 8px rgba(239, 68, 68, 0.5) !important;
    }

    /* Body padding for bottom nav */
    body {
        padding-bottom: 80px !important;
    }
}

/* ========================================
   FINAL FIX - MOBILE HEADER & BOTTOM NAV
   ======================================== */

@media (max-width: 768px) {

    /* ===== HEADER FIX - Menu Button FAR RIGHT ===== */
    .site-header .header-container {
        display: flex !important;
        align-items: center !important;
        padding: 0 15px !important;
    }

    /* Cart stays left */
    .site-header .header-cart {
        order: 1 !important;
        flex-shrink: 0 !important;
    }

    /* Logo in center - takes remaining space */
    .site-header .site-branding {
        order: 2 !important;
        flex: 1 !important;
        display: flex !important;
        justify-content: center !important;
        margin: 0 10px !important;
    }

    /* Menu toggle FAR RIGHT */
    .site-header .menu-toggle {
        order: 99 !important;
        flex-shrink: 0 !important;
        margin-left: 0 !important;
    }

    /* Hide navigation and other items */
    .site-header .main-navigation,
    .site-header .language-switcher,
    .site-header .button.button-sm.glow-effect {
        display: none !important;
    }

    /* ===== BOTTOM NAV - PROFESSIONAL DESIGN ===== */
    .mobile-bottom-nav {
        height: 65px !important;
    }

    .mobile-nav-item {
        gap: 2px !important;
        padding: 6px 8px !important;
    }

    /* Icon */
    .mobile-nav-item i {
        font-size: 1.25rem !important;
        transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1) !important;
    }

    /* Label - SMALLER */
    .mobile-nav-item span:not(.mobile-cart-badge):not(.lang-flag):not(.lang-code) {
        font-size: 0.55rem !important;
        font-weight: 500 !important;
        text-transform: uppercase !important;
        letter-spacing: 0.3px !important;
        opacity: 0.7 !important;
        transition: all 0.25s ease !important;
    }

    /* ACTIVE - Icon moves UP */
    .mobile-nav-item.active {
        color: var(--primary-color) !important;
    }

    .mobile-nav-item.active i {
        transform: translateY(-4px) scale(1.1) !important;
        color: var(--primary-color) !important;
        filter: drop-shadow(0 4px 8px rgba(108, 92, 231, 0.4)) !important;
    }

    .mobile-nav-item.active span:not(.mobile-cart-badge) {
        opacity: 1 !important;
        font-weight: 600 !important;
        color: var(--primary-color) !important;
    }

    /* Top indicator line for active */
    .mobile-nav-item.active::before {
        content: '';
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 30px;
        height: 3px;
        background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
        border-radius: 0 0 4px 4px;
        box-shadow: 0 2px 10px rgba(108, 92, 231, 0.5);
    }

    /* Background glow for active */
    .mobile-nav-item.active::after {
        content: '';
        position: absolute;
        top: 5px;
        left: 50%;
        transform: translateX(-50%);
        width: 40px;
        height: 40px;
        background: radial-gradient(circle, rgba(108, 92, 231, 0.15), transparent 70%);
        border-radius: 50%;
        z-index: -1;
    }

    /* Hover effect */
    .mobile-nav-item:not(.active):hover i {
        transform: translateY(-2px) !important;
    }

    .mobile-nav-item:not(.active):hover span:not(.mobile-cart-badge) {
        opacity: 0.9 !important;
    }
}

/* ===== FLOATING WIDGETS FIX FOR MOBILE ===== */
@media (max-width: 768px) {

    /* Raise widgets above bottom nav */
    .telegram-widget,
    .whatsapp-widget,
    .floating-widget {
        bottom: 85px !important;
    }

    /* Make them smaller on mobile */
    .telegram-widget,
    .whatsapp-widget {
        width: 50px !important;
        height: 50px !important;
    }

    .telegram-widget svg,
    .whatsapp-widget svg {
        width: 22px !important;
        height: 22px !important;
    }
}

/* ========================================
   MOBILE HEADER - FINAL STRUCTURE FIX
   ======================================== */

@media (max-width: 768px) {

    /* Header container structure on mobile */
    .site-header .header-container {
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        gap: 10px !important;
    }

    /* Site branding - left side */
    .site-header .site-branding {
        flex: 1 !important;
        max-width: 60% !important;
    }

    /* Hide desktop navigation */
    .site-header .main-navigation {
        display: none !important;
    }

    /* Header actions - cart only */
    .site-header .header-actions {
        display: flex !important;
        align-items: center !important;
        gap: 8px !important;
    }

    /* Hide language and hire me in header-actions */
    .site-header .header-actions .language-switcher,
    .site-header .header-actions .hire-me-btn,
    .site-header .header-actions .button.button-sm {
        display: none !important;
    }

    /* Menu toggle - FAR RIGHT, outside header-actions */
    .site-header .menu-toggle {
        flex-shrink: 0 !important;
        width: 42px !important;
        height: 42px !important;
        background: rgba(255, 255, 255, 0.08) !important;
        border: 1px solid rgba(255, 255, 255, 0.15) !important;
        border-radius: 10px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        cursor: pointer !important;
    }

    .site-header .menu-toggle i {
        font-size: 1.3rem !important;
        color: #fff !important;
    }

    .site-header .menu-toggle:hover {
        background: rgba(108, 92, 231, 0.2) !important;
        border-color: var(--primary-color) !important;
    }
}

/* Desktop - show navigation, hide toggle */
@media (min-width: 769px) {
    .site-header .menu-toggle {
        display: none !important;
    }
}

/* ========================================
   MOBILE HEADER - PERFECT CENTER LOGO
   ======================================== */

@media (max-width: 768px) {

    /* Header container - relative for absolute centering */
    .site-header .header-container {
        position: relative !important;
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        min-height: 60px !important;
    }

    /* Logo - ABSOLUTE CENTER */
    .site-header .site-branding {
        position: absolute !important;
        left: 50% !important;
        top: 50% !important;
        transform: translate(-50%, -50%) !important;
        max-width: 50% !important;
        text-align: center !important;
    }

    /* Cart - left side */
    .site-header .header-actions {
        position: relative !important;
        z-index: 2 !important;
    }

    /* Menu toggle - right side */
    .site-header .menu-toggle {
        position: relative !important;
        z-index: 2 !important;
    }
}

/* ========================================
   FIX: EQUAL WIDTH BUTTONS FOR PERFECT CENTER
   ======================================== */

@media (max-width: 768px) {

    /* Make Cart and Menu Toggle SAME width */
    .site-header .header-cart,
    .site-header .menu-toggle {
        width: 42px !important;
        min-width: 42px !important;
        max-width: 42px !important;
        flex-shrink: 0 !important;
    }

    .site-header .header-cart .cart-toggle {
        width: 42px !important;
        height: 42px !important;
        padding: 0 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }

    /* Hide cart count badge to match sizes */
    .site-header .header-cart .cart-count {
        position: absolute !important;
        top: -5px !important;
        right: -5px !important;
        min-width: 18px !important;
        height: 18px !important;
        font-size: 0.65rem !important;
    }

    /* Header actions container */
    .site-header .header-actions {
        width: 42px !important;
        min-width: 42px !important;
    }
}

/* ========================================
   MOBILE HEADER: HIDE CART, SHOW LANGUAGE
   ======================================== */

@media (max-width: 768px) {

    /* Hide Cart in header on mobile */
    .site-header .header-cart {
        display: none !important;
    }

    /* Show Language Switcher in header on mobile */
    .site-header .language-switcher {
        display: flex !important;
        width: 42px !important;
        min-width: 42px !important;
    }

    .site-header .language-switcher .lang-btn {
        width: 42px !important;
        height: 42px !important;
        padding: 0 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        background: rgba(255, 255, 255, 0.08) !important;
        border: 1px solid rgba(255, 255, 255, 0.15) !important;
        border-radius: 10px !important;
        gap: 0 !important;
    }

    .site-header .language-switcher .lang-btn i {
        display: none !important;
    }

    .site-header .language-switcher .lang-btn .current-lang {
        font-size: 0.75rem !important;
        font-weight: 600 !important;
    }

    /* Header actions width */
    .site-header .header-actions {
        width: 42px !important;
        min-width: 42px !important;
    }
}

/* ========================================
   FORCE LANGUAGE SWITCHER VISIBLE ON MOBILE
   ======================================== */

@media (max-width: 768px) {

    /* Header actions - VISIBLE and positioned left */
    .site-header .header-actions {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        position: relative !important;
        z-index: 10 !important;
    }

    /* Language switcher - FORCE VISIBLE */
    .site-header .header-actions .language-switcher,
    .site-header .language-switcher {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
    }

    /* Hide ONLY the cart, nothing else */
    .site-header .header-actions .header-cart {
        display: none !important;
    }

    /* Language button styling */
    .site-header .language-switcher .lang-btn {
        width: 42px !important;
        height: 42px !important;
        min-width: 42px !important;
        background: rgba(255, 255, 255, 0.08) !important;
        border: 1px solid rgba(255, 255, 255, 0.15) !important;
        border-radius: 10px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        padding: 0 !important;
        cursor: pointer !important;
    }

    /* Hide globe icon, show only text */
    .site-header .language-switcher .lang-btn i {
        display: none !important;
    }

    .site-header .language-switcher .lang-btn .current-lang {
        font-size: 0.8rem !important;
        font-weight: 600 !important;
        color: #fff !important;
    }
}

/* ========================================
   FIX: LANGUAGE DROPDOWN DIRECTION + PERFECT CENTER
   ======================================== */

@media (max-width: 768px) {

    /* Language dropdown - open to RIGHT not left */
    .site-header .language-switcher .lang-dropdown {
        left: 0 !important;
        right: auto !important;
        transform: none !important;
    }

    /* ===== PERFECT CENTER LOGO ===== */
    .site-header .header-container {
        display: grid !important;
        grid-template-columns: 42px 1fr 42px !important;
        align-items: center !important;
        gap: 10px !important;
        padding: 10px 15px !important;
    }

    /* Left - Language */
    .site-header .header-actions {
        grid-column: 1 !important;
        justify-self: start !important;
        width: 42px !important;
    }

    /* Center - Logo & Name */
    .site-header .site-branding {
        grid-column: 2 !important;
        justify-self: center !important;
        text-align: center !important;
        position: static !important;
        transform: none !important;
        max-width: 100% !important;
    }

    /* Right - Menu Toggle */
    .site-header .menu-toggle {
        grid-column: 3 !important;
        justify-self: end !important;
    }

    /* Hide navigation */
    .site-header .main-navigation {
        display: none !important;
    }
}

/* ========================================
   LANGUAGE DROPDOWN - CLICK TO TOGGLE
   ======================================== */

/* Default hidden */
.language-switcher .lang-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 140px;
    background: rgba(20, 20, 30, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 8px;
    margin-top: 8px;
    z-index: 1000;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}

/* Show on hover (desktop) */
@media (min-width: 769px) {

    .language-switcher:hover .lang-dropdown,
    .language-switcher:focus-within .lang-dropdown {
        display: block;
    }
}

/* Show when open class added (mobile) */
.language-switcher.open .lang-dropdown {
    display: block !important;
}

/* Position for language switcher */
.language-switcher {
    position: relative;
}

/* ========================================
   PREMIUM MOBILE MENU DESIGN
   ======================================== */

/* Overlay */
.mobile-menu-overlay {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    background: rgba(0, 0, 0, 0.85) !important;
    backdrop-filter: blur(15px) !important;
    -webkit-backdrop-filter: blur(15px) !important;
    z-index: 99999 !important;
    opacity: 0 !important;
    visibility: hidden !important;
    transition: all 0.3s ease !important;
}

.mobile-menu-overlay.active {
    opacity: 1 !important;
    visibility: visible !important;
}

/* Menu Content Panel */
.mobile-menu-content {
    position: fixed !important;
    top: 0 !important;
    right: -100% !important;
    width: 85% !important;
    max-width: 320px !important;
    height: 100vh !important;
    background: linear-gradient(180deg, #0f0f1a 0%, #1a1a2e 50%, #0f0f1a 100%) !important;
    border-left: 1px solid rgba(255, 255, 255, 0.1) !important;
    box-shadow: -10px 0 50px rgba(0, 0, 0, 0.5) !important;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    overflow-y: auto !important;
    z-index: 100000 !important;
    padding: 0 !important;
}

.mobile-menu-overlay.active .mobile-menu-content {
    right: 0 !important;
}

/* Close Button */
.mobile-menu-content .close-menu {
    position: absolute !important;
    top: 20px !important;
    right: 20px !important;
    width: 45px !important;
    height: 45px !important;
    background: rgba(255, 255, 255, 0.08) !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    cursor: pointer !important;
    color: #fff !important;
    font-size: 1.5rem !important;
    transition: all 0.3s ease !important;
    z-index: 10 !important;
}

.mobile-menu-content .close-menu:hover {
    background: rgba(239, 68, 68, 0.2) !important;
    border-color: #ef4444 !important;
    color: #ef4444 !important;
    transform: rotate(90deg) !important;
}

/* Menu Header Area */
.mobile-menu-content::before {
    content: '';
    display: block;
    height: 100px;
    background: linear-gradient(135deg, rgba(108, 92, 231, 0.15), rgba(0, 206, 201, 0.1));
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

/* Navigation Menu */
.mobile-nav-menu {
    list-style: none !important;
    padding: 25px 20px !important;
    margin: 0 !important;
}

.mobile-nav-menu li {
    margin-bottom: 5px !important;
}

.mobile-nav-menu li a {
    display: flex !important;
    align-items: center !important;
    padding: 16px 20px !important;
    color: rgba(255, 255, 255, 0.75) !important;
    text-decoration: none !important;
    font-size: 1rem !important;
    font-weight: 500 !important;
    border-radius: 12px !important;
    transition: all 0.3s ease !important;
    position: relative !important;
    overflow: hidden !important;
}

.mobile-nav-menu li a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, rgba(108, 92, 231, 0.15), transparent);
    transition: width 0.3s ease;
    z-index: -1;
}

.mobile-nav-menu li a:hover,
.mobile-nav-menu li.current-menu-item a {
    color: #fff !important;
    background: rgba(255, 255, 255, 0.05) !important;
    transform: translateX(8px) !important;
}

.mobile-nav-menu li a:hover::before,
.mobile-nav-menu li.current-menu-item a::before {
    width: 100%;
}

/* Active menu item indicator */
.mobile-nav-menu li.current-menu-item a::after {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 50%;
    background: linear-gradient(180deg, var(--primary-color), var(--secondary-color));
    border-radius: 0 4px 4px 0;
}

/* ========================================
   MOBILE MENU - COMPLETE FIX
   ======================================== */

/* Override all previous styles */
.mobile-menu-overlay {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    background: rgba(0, 0, 0, 0.9) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    z-index: 999999 !important;
    opacity: 0 !important;
    visibility: hidden !important;
    transition: all 0.35s ease !important;
}

.mobile-menu-overlay.active {
    opacity: 1 !important;
    visibility: visible !important;
}

.mobile-menu-content {
    position: fixed !important;
    top: 0 !important;
    right: 0 !important;
    width: 300px !important;
    max-width: 85vw !important;
    height: 100vh !important;
    background: linear-gradient(180deg, #12121f 0%, #1a1a2e 30%, #16162a 70%, #0d0d15 100%) !important;
    border-left: 1px solid rgba(108, 92, 231, 0.3) !important;
    box-shadow: -20px 0 60px rgba(0, 0, 0, 0.7) !important;
    transform: translateX(100%) !important;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    overflow-y: auto !important;
    z-index: 1000000 !important;
    display: flex !important;
    flex-direction: column !important;
}

.mobile-menu-overlay.active .mobile-menu-content {
    transform: translateX(0) !important;
}

/* Header Area with Glow */
.mobile-menu-content::before {
    content: '' !important;
    display: block !important;
    height: 120px !important;
    background: linear-gradient(135deg, rgba(108, 92, 231, 0.2) 0%, rgba(0, 206, 201, 0.1) 50%, rgba(108, 92, 231, 0.15) 100%) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
    flex-shrink: 0 !important;
}

/* Close Button */
.mobile-menu-content .close-menu {
    position: absolute !important;
    top: 35px !important;
    right: 20px !important;
    width: 50px !important;
    height: 50px !important;
    background: rgba(255, 255, 255, 0.1) !important;
    border: 2px solid rgba(255, 255, 255, 0.2) !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    cursor: pointer !important;
    color: #fff !important;
    font-size: 1.6rem !important;
    transition: all 0.3s ease !important;
    z-index: 10 !important;
}

.mobile-menu-content .close-menu:hover {
    background: rgba(239, 68, 68, 0.3) !important;
    border-color: #ef4444 !important;
    color: #ef4444 !important;
    transform: rotate(90deg) scale(1.05) !important;
}

/* Navigation Menu */
.mobile-nav-menu {
    list-style: none !important;
    padding: 30px 20px !important;
    margin: 0 !important;
    flex: 1 !important;
}

.mobile-nav-menu li {
    margin-bottom: 8px !important;
}

.mobile-nav-menu li a {
    display: flex !important;
    align-items: center !important;
    padding: 18px 24px !important;
    color: rgba(255, 255, 255, 0.8) !important;
    text-decoration: none !important;
    font-size: 1.05rem !important;
    font-weight: 500 !important;
    letter-spacing: 0.3px !important;
    border-radius: 14px !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    position: relative !important;
    overflow: hidden !important;
    background: transparent !important;
}

.mobile-nav-menu li a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, rgba(108, 92, 231, 0.2), rgba(0, 206, 201, 0.1), transparent);
    transition: width 0.4s ease;
    z-index: -1;
    border-radius: 14px;
}

.mobile-nav-menu li a:hover {
    color: #fff !important;
    background: rgba(255, 255, 255, 0.05) !important;
    transform: translateX(10px) !important;
}

.mobile-nav-menu li a:hover::before {
    width: 100%;
}

/* Active menu item */
.mobile-nav-menu li.current-menu-item a,
.mobile-nav-menu li.current_page_item a {
    color: #fff !important;
    background: linear-gradient(90deg, rgba(108, 92, 231, 0.15), rgba(0, 206, 201, 0.08)) !important;
}

.mobile-nav-menu li.current-menu-item a::after,
.mobile-nav-menu li.current_page_item a::after {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 5px;
    height: 60%;
    background: linear-gradient(180deg, var(--primary-color), var(--secondary-color));
    border-radius: 0 5px 5px 0;
    box-shadow: 0 0 15px rgba(108, 92, 231, 0.5);
}

/* ========================================
   MOBILE MENU - FORCE STYLES WITH !IMPORTANT
   ========================================
   Added: 2026-01-05 01:43:21
*/

/* Force Menu Container */
.mobile-menu-content .mobile-nav-menu,
.mobile-menu-overlay .mobile-nav-menu,
ul.mobile-nav-menu {
    list-style: none !important;
    padding: 30px 15px !important;
    margin: 0 !important;
    background: transparent !important;
}

/* Force Menu Items */
.mobile-menu-content .mobile-nav-menu li,
.mobile-menu-overlay .mobile-nav-menu li,
ul.mobile-nav-menu li {
    margin-bottom: 8px !important;
    list-style: none !important;
}

/* Force Menu Links - Premium Style */
.mobile-menu-content .mobile-nav-menu li a,
.mobile-menu-overlay .mobile-nav-menu li a,
ul.mobile-nav-menu li a {
    display: block !important;
    padding: 18px 22px !important;
    margin: 0 !important;
    color: rgba(255, 255, 255, 0.85) !important;
    text-decoration: none !important;
    font-size: 1rem !important;
    font-weight: 500 !important;
    letter-spacing: 0.5px !important;
    border-radius: 14px !important;
    background: rgba(255, 255, 255, 0.03) !important;
    border: 1px solid rgba(255, 255, 255, 0.06) !important;
    transition: all 0.3s ease !important;
    position: relative !important;
}

/* Hover Effect */
.mobile-menu-content .mobile-nav-menu li a:hover,
.mobile-menu-overlay .mobile-nav-menu li a:hover,
ul.mobile-nav-menu li a:hover {
    color: #fff !important;
    background: linear-gradient(90deg, rgba(108, 92, 231, 0.2), rgba(0, 206, 201, 0.1)) !important;
    border-color: rgba(108, 92, 231, 0.3) !important;
    transform: translateX(8px) !important;
    box-shadow: 0 5px 20px rgba(108, 92, 231, 0.15) !important;
}

/* Active/Current Page */
.mobile-menu-content .mobile-nav-menu li.current-menu-item a,
.mobile-menu-content .mobile-nav-menu li.current_page_item a,
ul.mobile-nav-menu li.current-menu-item a,
ul.mobile-nav-menu li.current_page_item a {
    color: #fff !important;
    background: linear-gradient(90deg, rgba(108, 92, 231, 0.25), rgba(0, 206, 201, 0.15)) !important;
    border-left: 4px solid var(--primary-color) !important;
    box-shadow: 0 5px 25px rgba(108, 92, 231, 0.2) !important;
}

/* ========================================
   REMOVE MOBILE MENU HEADER AREA
   ======================================== */

.mobile-menu-content::before {
    display: none !important;
    height: 0 !important;
    content: none !important;
}

/* ========================================
   FORCE MOBILE MENU CLOSE BUTTON STYLE
   ======================================== */

.mobile-menu-content .close-menu {
    position: static !important;
    top: auto !important;
    right: auto !important;
    width: 32px !important;
    height: 32px !important;
    min-width: 32px !important;
    min-height: 32px !important;
    max-width: 32px !important;
    max-height: 32px !important;
    background: rgba(255, 255, 255, 0.08) !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    border-radius: 50% !important;
    color: #fff !important;
    font-size: 1.1rem !important;
    cursor: pointer !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-shrink: 0 !important;
}

/* ========================================
   HEADER ACCOUNT ICON & DROPDOWN
   ======================================== */

.header-account {
    position: relative;
}

.header-account .account-btn,
.header-account .account-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.header-account .account-btn:hover,
.header-account .account-toggle:hover {
    background: rgba(108, 92, 231, 0.2);
    border-color: var(--primary-color);
    color: #fff;
    transform: scale(1.05);
}

/* Account Dropdown Popup */
.header-account .account-popup {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    min-width: 200px;
    background: rgba(20, 20, 35, 0.98);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.4);
}

.header-account .account-dropdown:hover .account-popup,
.header-account .account-dropdown.open .account-popup {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.header-account .account-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    color: #fff;
    font-weight: 600;
}

.header-account .account-header i {
    font-size: 1.2rem;
    color: var(--primary-color);
}

.header-account .account-menu {
    list-style: none;
    padding: 10px;
    margin: 0;
}

.header-account .account-menu li a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.9rem;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.header-account .account-menu li a:hover {
    background: rgba(108, 92, 231, 0.15);
    color: #fff;
}

.header-account .account-menu li a i {
    font-size: 1rem;
    color: var(--primary-color);
}

.header-account .account-menu li.divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.08);
    margin: 8px 0;
}

/* Hide on mobile - use mobile menu buttons instead */
@media (max-width: 768px) {
    .header-account {
        display: none !important;
    }
}

/* ========================================
   FIX: ACCOUNT ICON CENTERING
   ======================================== */

.header-account .account-btn,
.header-account .account-toggle {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    line-height: 1 !important;
    padding: 0 !important;
}

.header-account .account-btn i,
.header-account .account-toggle i {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    line-height: 1 !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* ========================================
   FIX: ACCOUNT ICON + POPUP STYLING
   ======================================== */

/* Fix icon centering for non-logged in state */
.header-account .account-btn {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 40px !important;
    height: 40px !important;
    line-height: 40px !important;
    padding: 0 !important;
    margin: 0 !important;
    vertical-align: middle !important;
}

.header-account .account-btn i {
    display: inline-block !important;
    line-height: 1 !important;
    vertical-align: middle !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* Make popup background solid, not transparent */
.header-account .account-popup {
    background: #1a1a2e !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6) !important;
}

.header-account .account-header {
    background: linear-gradient(135deg, rgba(108, 92, 231, 0.15), rgba(0, 206, 201, 0.1)) !important;
}

/* ========================================
   ACCOUNT POPUP - SOLID BACKGROUND + SPACING
   ======================================== */

/* Solid background */
.header-account .account-popup.glass-panel,
.header-account .account-popup {
    background: #1a1a2e !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
}

/* Icon and text spacing */
.header-account .account-menu li a {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
}

.header-account .account-menu li a i {
    flex-shrink: 0 !important;
    width: 18px !important;
    text-align: center !important;
}

.header-account .account-header {
    gap: 12px !important;
}

/* ========================================
   MOBILE BOTTOM NAVIGATION - PROFESSIONAL
   ========================================
   5 Items: Home, Projects, Shop (center), Cart, Support
*/

@media (max-width: 768px) {

    /* Main Container */
    .mobile-bottom-nav {
        position: fixed !important;
        bottom: 0 !important;
        left: 0 !important;
        right: 0 !important;
        height: 70px !important;
        background: linear-gradient(180deg, rgba(18, 18, 30, 0.98) 0%, rgba(10, 10, 18, 1) 100%) !important;
        backdrop-filter: blur(20px) !important;
        -webkit-backdrop-filter: blur(20px) !important;
        border-top: 1px solid rgba(255, 255, 255, 0.06) !important;
        box-shadow: 0 -5px 30px rgba(0, 0, 0, 0.3) !important;
        display: flex !important;
        justify-content: space-around !important;
        align-items: stretch !important;
        padding: 0 5px !important;
        padding-bottom: env(safe-area-inset-bottom) !important;
        z-index: 99999 !important;
    }

    /* Each Nav Item */
    .mobile-bottom-nav .mobile-nav-item {
        flex: 1 !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        text-decoration: none !important;
        color: rgba(255, 255, 255, 0.5) !important;
        position: relative !important;
        padding: 8px 5px !important;
        gap: 4px !important;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    }

    /* Icon Wrapper */
    .mobile-bottom-nav .nav-icon-wrapper {
        position: relative !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        width: 40px !important;
        height: 32px !important;
        transition: all 0.3s ease !important;
    }

    .mobile-bottom-nav .mobile-nav-item i {
        font-size: 1.4rem !important;
        transition: all 0.3s ease !important;
    }

    /* Label */
    .mobile-bottom-nav .nav-label {
        font-size: 0.6rem !important;
        font-weight: 500 !important;
        text-transform: uppercase !important;
        letter-spacing: 0.3px !important;
        opacity: 0.8 !important;
        transition: all 0.3s ease !important;
    }

    /* ===== CENTER ITEM (Shop) - Special Design ===== */
    .mobile-bottom-nav .mobile-nav-item.center-item {
        position: relative !important;
    }

    .mobile-bottom-nav .mobile-nav-item.center-item .nav-icon-wrapper {
        width: 50px !important;
        height: 50px !important;
        background: linear-gradient(135deg, var(--primary-color), var(--secondary-color)) !important;
        border-radius: 16px !important;
        margin-top: -20px !important;
        box-shadow: 0 8px 25px rgba(108, 92, 231, 0.4) !important;
    }

    .mobile-bottom-nav .mobile-nav-item.center-item i {
        color: #fff !important;
        font-size: 1.5rem !important;
    }

    .mobile-bottom-nav .mobile-nav-item.center-item .nav-label {
        color: var(--primary-color) !important;
        opacity: 1 !important;
        font-weight: 600 !important;
    }

    /* ===== ACTIVE STATE ===== */
    .mobile-bottom-nav .mobile-nav-item.active:not(.center-item) {
        color: #fff !important;
    }

    .mobile-bottom-nav .mobile-nav-item.active:not(.center-item)::before {
        content: '';
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 30px;
        height: 3px;
        background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
        border-radius: 0 0 3px 3px;
    }

    .mobile-bottom-nav .mobile-nav-item.active:not(.center-item) i {
        color: var(--primary-color) !important;
        transform: translateY(-3px) scale(1.1) !important;
    }

    .mobile-bottom-nav .mobile-nav-item.active:not(.center-item) .nav-label {
        color: var(--primary-color) !important;
        opacity: 1 !important;
        font-weight: 600 !important;
    }

    /* Active glow effect */
    .mobile-bottom-nav .mobile-nav-item.active:not(.center-item)::after {
        content: '';
        position: absolute;
        top: 10px;
        left: 50%;
        transform: translateX(-50%);
        width: 35px;
        height: 25px;
        background: radial-gradient(ellipse, rgba(108, 92, 231, 0.2), transparent);
        border-radius: 50%;
        z-index: -1;
    }

    /* ===== CART BADGE ===== */
    .mobile-bottom-nav .cart-badge {
        position: absolute !important;
        top: -2px !important;
        right: 0 !important;
        background: linear-gradient(135deg, #ef4444, #dc2626) !important;
        color: #fff !important;
        font-size: 0.55rem !important;
        font-weight: 700 !important;
        min-width: 16px !important;
        height: 16px !important;
        border-radius: 8px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        padding: 0 4px !important;
        box-shadow: 0 2px 8px rgba(239, 68, 68, 0.5) !important;
    }

    /* ===== HOVER EFFECT ===== */
    .mobile-bottom-nav .mobile-nav-item:not(.center-item):hover i {
        transform: translateY(-2px) !important;
    }

    /* Body padding */
    body {
        padding-bottom: 80px !important;
    }
}

/* Hide on desktop */
@media (min-width: 769px) {
    .mobile-bottom-nav {
        display: none !important;
    }
}

/* ========================================
   MOBILE BOTTOM NAV - IMPROVED DESIGN V2
   ======================================== */

@media (max-width: 768px) {

    /* Better container */
    .mobile-bottom-nav {
        height: 65px !important;
        background: #0f0f18 !important;
        border-top: 1px solid rgba(108, 92, 231, 0.2) !important;
        box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.5), 0 -2px 10px rgba(108, 92, 231, 0.1) !important;
    }

    /* Each item - cleaner */
    .mobile-bottom-nav .mobile-nav-item {
        color: rgba(255, 255, 255, 0.4) !important;
        gap: 3px !important;
    }

    .mobile-bottom-nav .nav-icon-wrapper {
        width: 36px !important;
        height: 28px !important;
    }

    .mobile-bottom-nav .mobile-nav-item i {
        font-size: 1.25rem !important;
    }

    .mobile-bottom-nav .nav-label {
        font-size: 0.55rem !important;
        font-weight: 600 !important;
        letter-spacing: 0.5px !important;
    }

    /* Center item - smaller and cleaner */
    .mobile-bottom-nav .mobile-nav-item.center-item .nav-icon-wrapper {
        width: 46px !important;
        height: 46px !important;
        margin-top: -18px !important;
        border-radius: 14px !important;
        background: linear-gradient(135deg, #6c5ce7 0%, #00cec9 100%) !important;
        box-shadow: 0 6px 20px rgba(108, 92, 231, 0.35) !important;
    }

    .mobile-bottom-nav .mobile-nav-item.center-item i {
        font-size: 1.3rem !important;
    }

    /* Active state - cleaner */
    .mobile-bottom-nav .mobile-nav-item.active:not(.center-item) {
        color: #fff !important;
    }

    .mobile-bottom-nav .mobile-nav-item.active:not(.center-item) i {
        color: #6c5ce7 !important;
        transform: translateY(-2px) !important;
        filter: drop-shadow(0 3px 6px rgba(108, 92, 231, 0.4)) !important;
    }

    .mobile-bottom-nav .mobile-nav-item.active:not(.center-item) .nav-label {
        color: #6c5ce7 !important;
    }

    .mobile-bottom-nav .mobile-nav-item.active:not(.center-item)::before {
        width: 24px !important;
        height: 2px !important;
    }

    /* Remove glow effect for cleaner look */
    .mobile-bottom-nav .mobile-nav-item.active:not(.center-item)::after {
        display: none !important;
    }

    /* Cart badge */
    .mobile-bottom-nav .cart-badge {
        top: -3px !important;
        right: 2px !important;
        min-width: 14px !important;
        height: 14px !important;
        font-size: 0.5rem !important;
    }
}

/* ========================================
   MOBILE BOTTOM NAV - PREMIUM DESIGN V3
   ========================================
   Clean, Modern, Professional
*/

@media (max-width: 768px) {

    /* ===== MAIN CONTAINER ===== */
    .mobile-bottom-nav {
        position: fixed !important;
        bottom: 0 !important;
        left: 0 !important;
        right: 0 !important;
        height: 72px !important;
        background: linear-gradient(180deg,
                rgba(15, 15, 25, 0.95) 0%,
                rgba(10, 10, 18, 0.98) 100%) !important;
        backdrop-filter: blur(25px) saturate(180%) !important;
        -webkit-backdrop-filter: blur(25px) saturate(180%) !important;
        border-top: 1px solid rgba(108, 92, 231, 0.15) !important;
        box-shadow:
            0 -8px 32px rgba(0, 0, 0, 0.4),
            0 -2px 8px rgba(108, 92, 231, 0.08),
            inset 0 1px 0 rgba(255, 255, 255, 0.03) !important;
        display: flex !important;
        justify-content: space-around !important;
        align-items: center !important;
        padding: 0 8px !important;
        padding-bottom: env(safe-area-inset-bottom) !important;
        z-index: 99999 !important;
    }

    /* ===== NAV ITEM ===== */
    .mobile-bottom-nav .mobile-nav-item {
        flex: 1 !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        text-decoration: none !important;
        color: rgba(255, 255, 255, 0.45) !important;
        position: relative !important;
        padding: 10px 4px 8px !important;
        gap: 5px !important;
        transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
        border-radius: 12px !important;
    }

    /* ===== ICON WRAPPER ===== */
    .mobile-bottom-nav .nav-icon-wrapper {
        position: relative !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        width: 38px !important;
        height: 30px !important;
        transition: all 0.4s ease !important;
    }

    .mobile-bottom-nav .mobile-nav-item i {
        font-size: 1.35rem !important;
        transition: all 0.4s ease !important;
    }

    /* ===== LABEL ===== */
    .mobile-bottom-nav .nav-label {
        font-size: 0.58rem !important;
        font-weight: 600 !important;
        text-transform: uppercase !important;
        letter-spacing: 0.8px !important;
        transition: all 0.4s ease !important;
    }

    /* ===== CENTER ITEM - FLOATING BUTTON ===== */
    .mobile-bottom-nav .mobile-nav-item.center-item {
        margin-top: -25px !important;
    }

    .mobile-bottom-nav .mobile-nav-item.center-item .nav-icon-wrapper {
        width: 56px !important;
        height: 56px !important;
        background: linear-gradient(145deg, #7c3aed 0%, #06b6d4 50%, #10b981 100%) !important;
        border-radius: 18px !important;
        box-shadow:
            0 8px 28px rgba(124, 58, 237, 0.45),
            0 4px 12px rgba(6, 182, 212, 0.25),
            inset 0 2px 4px rgba(255, 255, 255, 0.2) !important;
        transform: rotate(0deg) !important;
        transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) !important;
    }

    .mobile-bottom-nav .mobile-nav-item.center-item:active .nav-icon-wrapper {
        transform: scale(0.92) !important;
    }

    .mobile-bottom-nav .mobile-nav-item.center-item i {
        color: #fff !important;
        font-size: 1.5rem !important;
        filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2)) !important;
    }

    .mobile-bottom-nav .mobile-nav-item.center-item .nav-label {
        color: #a78bfa !important;
        font-weight: 700 !important;
        margin-top: 2px !important;
    }

    /* ===== ACTIVE STATE ===== */
    .mobile-bottom-nav .mobile-nav-item.active:not(.center-item) {
        color: #fff !important;
    }

    /* Active indicator line */
    .mobile-bottom-nav .mobile-nav-item.active:not(.center-item)::before {
        content: '';
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 28px;
        height: 3px;
        background: linear-gradient(90deg, #7c3aed, #06b6d4);
        border-radius: 0 0 4px 4px;
        box-shadow: 0 4px 12px rgba(124, 58, 237, 0.5);
    }

    .mobile-bottom-nav .mobile-nav-item.active:not(.center-item) i {
        color: #a78bfa !important;
        transform: translateY(-3px) scale(1.15) !important;
        filter: drop-shadow(0 4px 8px rgba(167, 139, 250, 0.4)) !important;
    }

    .mobile-bottom-nav .mobile-nav-item.active:not(.center-item) .nav-label {
        color: #a78bfa !important;
        font-weight: 700 !important;
    }

    /* ===== HOVER/TAP EFFECT ===== */
    .mobile-bottom-nav .mobile-nav-item:not(.center-item):active {
        background: rgba(124, 58, 237, 0.08) !important;
    }

    .mobile-bottom-nav .mobile-nav-item:not(.center-item):active i {
        transform: scale(0.9) !important;
    }

    /* ===== CART BADGE ===== */
    .mobile-bottom-nav .cart-badge {
        position: absolute !important;
        top: -4px !important;
        right: 2px !important;
        background: linear-gradient(135deg, #f43f5e, #e11d48) !important;
        color: #fff !important;
        font-size: 0.5rem !important;
        font-weight: 800 !important;
        min-width: 16px !important;
        height: 16px !important;
        border-radius: 50% !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        padding: 0 4px !important;
        box-shadow: 0 3px 10px rgba(244, 63, 94, 0.5) !important;
        border: 2px solid #0f0f18 !important;
        animation: badge-pulse 2s infinite !important;
    }

    @keyframes badge-pulse {

        0%,
        100% {
            transform: scale(1);
        }

        50% {
            transform: scale(1.1);
        }
    }

    /* ===== BODY PADDING ===== */
    body {
        padding-bottom: 85px !important;
    }
}

/* Hide on desktop */
@media (min-width: 769px) {
    .mobile-bottom-nav {
        display: none !important;
    }
}

/* ========================================
   MOBILE BOTTOM NAV - MINIMAL DESIGN V4
   ========================================
   Label shows ONLY on active item
*/

@media (max-width: 768px) {

    /* Container - clean and simple */
    .mobile-bottom-nav {
        position: fixed !important;
        bottom: 0 !important;
        left: 0 !important;
        right: 0 !important;
        height: 60px !important;
        background: #0d0d14 !important;
        border-top: 1px solid rgba(255, 255, 255, 0.05) !important;
        box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3) !important;
        display: flex !important;
        justify-content: space-around !important;
        align-items: center !important;
        padding: 0 !important;
        padding-bottom: env(safe-area-inset-bottom) !important;
        z-index: 99999 !important;
    }

    /* Each item */
    .mobile-bottom-nav .mobile-nav-item {
        flex: 1 !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        text-decoration: none !important;
        color: rgba(255, 255, 255, 0.4) !important;
        position: relative !important;
        height: 100% !important;
        padding: 8px 0 !important;
        gap: 4px !important;
        transition: all 0.3s ease !important;
    }

    /* Icon wrapper */
    .mobile-bottom-nav .nav-icon-wrapper {
        position: relative !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        transition: all 0.3s ease !important;
    }

    .mobile-bottom-nav .mobile-nav-item i {
        font-size: 1.4rem !important;
        transition: all 0.3s ease !important;
    }

    /* HIDE label by default */
    .mobile-bottom-nav .nav-label {
        font-size: 0 !important;
        opacity: 0 !important;
        max-height: 0 !important;
        overflow: hidden !important;
        transition: all 0.3s ease !important;
    }

    /* ===== CENTER ITEM ===== */
    .mobile-bottom-nav .mobile-nav-item.center-item {
        color: rgba(255, 255, 255, 0.5) !important;
    }

    .mobile-bottom-nav .mobile-nav-item.center-item .nav-icon-wrapper {
        width: 48px !important;
        height: 48px !important;
        background: linear-gradient(135deg, #6c5ce7, #00cec9) !important;
        border-radius: 50% !important;
        margin-top: -20px !important;
        box-shadow: 0 4px 15px rgba(108, 92, 231, 0.4) !important;
    }

    .mobile-bottom-nav .mobile-nav-item.center-item i {
        color: #fff !important;
        font-size: 1.3rem !important;
    }

    /* Center item always shows label */
    .mobile-bottom-nav .mobile-nav-item.center-item .nav-label {
        font-size: 0.55rem !important;
        opacity: 1 !important;
        max-height: 20px !important;
        color: #a78bfa !important;
        font-weight: 600 !important;
        margin-top: 4px !important;
    }

    /* ===== ACTIVE STATE - SHOW LABEL ===== */
    .mobile-bottom-nav .mobile-nav-item.active:not(.center-item) {
        color: #fff !important;
    }

    .mobile-bottom-nav .mobile-nav-item.active:not(.center-item) i {
        color: #a78bfa !important;
        transform: scale(1.1) !important;
    }

    /* Show label only on active */
    .mobile-bottom-nav .mobile-nav-item.active:not(.center-item) .nav-label {
        font-size: 0.55rem !important;
        opacity: 1 !important;
        max-height: 20px !important;
        color: #a78bfa !important;
        font-weight: 600 !important;
        text-transform: uppercase !important;
        letter-spacing: 0.5px !important;
    }

    /* Small indicator dot on active */
    .mobile-bottom-nav .mobile-nav-item.active:not(.center-item)::after {
        content: '';
        position: absolute;
        bottom: 4px;
        left: 50%;
        transform: translateX(-50%);
        width: 4px;
        height: 4px;
        background: #a78bfa;
        border-radius: 50%;
    }

    /* Remove old indicators */
    .mobile-bottom-nav .mobile-nav-item.active:not(.center-item)::before {
        display: none !important;
    }

    /* Cart badge */
    .mobile-bottom-nav .cart-badge {
        position: absolute !important;
        top: -2px !important;
        right: -4px !important;
        background: #ef4444 !important;
        color: #fff !important;
        font-size: 0.5rem !important;
        font-weight: 700 !important;
        min-width: 14px !important;
        height: 14px !important;
        border-radius: 50% !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        border: 2px solid #0d0d14 !important;
    }

    /* Body padding */
    body {
        padding-bottom: 70px !important;
    }
}

/* FOOTER MOBILE RESPONSIVE */
@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 25px !important;
    }

    .footer-widget:first-child {
        grid-column: 1 / -1;
        text-align: center;
    }

    .footer-widget:first-child .footer-branding,
    .footer-widget:first-child .footer-logo {
        justify-content: center !important;
    }

    .footer-widget:first-child .widget-title::after {
        left: 50% !important;
        transform: translateX(-50%) !important;
    }

    .footer-widget:last-child {
        display: none !important;
    }
}

/* Center social icons on mobile */
@media (max-width: 768px) {
    .footer-widget:first-child .social-links {
        justify-content: center !important;
    }
}

/* Footer mobile fixes - padding for columns */
@media (max-width: 768px) {
    .footer-widget {
        padding: 0 15px !important;
    }

    .footer-widget .social-links {
        justify-content: center !important;
        display: flex !important;
    }
}

/* More padding for footer widgets */
@media (max-width: 768px) {
    .footer-widget {
        padding: 0 25px !important;
    }
}

/* Mobile menu content - more space at bottom */
.mobile-menu-content {
    padding-bottom: 100px !important;
}

/* Mobile menu close button - center the X icon */
.mobile-menu-content button,
.mobile-menu-content .close,
.mobile-menu-content [class*='close'] {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.mobile-menu-content button i,
.mobile-menu-content .close i {
    margin: 0 !important;
    line-height: 1 !important;
}

/* Menu toggle button - center the hamburger icon */
.menu-toggle,
button.menu-toggle {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.menu-toggle i {
    margin: 0 !important;
    line-height: 1 !important;
}

/* Mobile: Robust CSS Grid Layout for Hero - Appended Fix */
@media (max-width: 768px) {
    .hero-container {
        display: grid !important;
        grid-template-columns: 1fr auto !important;
        /* Text column | Image column */
        grid-template-rows: auto auto auto auto auto auto !important;
        gap: 10px !important;
        align-items: center !important;
        text-align: left !important;
        padding: 0 15px !important;
    }

    /* Flatten the structure to allow grid placement */
    .hero-content,
    .hero-visual,
    .orbit-container {
        display: contents !important;
    }

    /* 1. Greeting */
    .hero-greeting {
        grid-column: 1 / -1 !important;
        grid-row: 1 !important;
        text-align: left !important;
        margin-bottom: 5px !important;
        padding-left: 0 !important;
        order: unset !important;
    }

    /* 2. Title (Left) */
    .hero-title {
        grid-column: 1 / 2 !important;
        grid-row: 2 !important;
        text-align: left !important;
        margin-bottom: 0 !important;
        padding-left: 0 !important;
        white-space: nowrap !important;
        width: auto !important;
        order: unset !important;
    }

    /* 3. Image (Right of Title) */
    .central-image-wrapper,
    .avatar-wrapper {
        grid-column: 2 / 3 !important;
        grid-row: 2 !important;
        width: 80px !important;
        height: 80px !important;
        min-width: 80px !important;
        min-height: 80px !important;
        margin: 0 0 0 10px !important;
        padding: 0 !important;
        border: 3px solid #6c5ce7 !important;
        border-radius: 50% !important;
        box-shadow: 0 0 15px rgba(108, 92, 231, 0.5) !important;
        transform: none !important;
        position: relative !important;
        display: block !important;
        order: unset !important;
    }

    .central-img {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
    }

    .avatar-border {
        width: 100% !important;
        height: 100% !important;
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
    }

    /* 4. Subtitle */
    .hero-subtitle {
        grid-column: 1 / -1 !important;
        grid-row: 3 !important;
        text-align: left !important;
        margin-top: 10px !important;
        padding-left: 0 !important;
        order: unset !important;
    }

    /* 5. Description */
    .hero-desc {
        grid-column: 1 / -1 !important;
        grid-row: 4 !important;
        text-align: left !important;
        margin-bottom: 20px !important;
        padding-left: 0 !important;
        order: unset !important;
    }

    /* 6. Buttons */
    .hero-buttons {
        grid-column: 1 / -1 !important;
        grid-row: 5 !important;
        display: flex !important;
        flex-direction: column !important;
        width: 100% !important;
        gap: 12px !important;
        order: unset !important;
    }

    .hero-buttons .button {
        width: 100% !important;
        justify-content: center !important;
    }

    /* 7. Tech Stack */
    .tech-stack-container {
        grid-column: 1 / -1 !important;
        grid-row: 6 !important;
        margin-top: 30px !important;
        display: flex !important;
        flex-wrap: wrap !important;
        justify-content: center !important;
        gap: 10px !important;
        order: unset !important;
    }

    /* Hide orbit container elements that are not the image or tech stack */
    .orbit-container>*:not(.central-image-wrapper):not(.tech-stack-container) {
        display: none !important;
    }
}

/* ==========================================
   HERO SECTION - MOBILE FIX (CodeCanyon Ready)
   ========================================== */
@media (max-width: 768px) {

    /* Reduce top spacing */
    .hero-section {
        padding-top: 80px !important;
        margin-top: 0 !important;
    }

    /* Container padding */
    .hero-section,
    .hero-container {
        padding-left: 20px !important;
        padding-right: 20px !important;
        overflow-x: hidden !important;
    }

    /* Hero Title - bigger font */
    .hero-title {
        font-size: 2.8rem !important;
        line-height: 1.1 !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        max-width: 100% !important;
        white-space: normal !important;
        margin-bottom: 10px !important;
    }

    /* Hero Subtitle - bigger */
    .hero-subtitle {
        font-size: 1.4rem !important;
        max-width: 100% !important;
        margin-bottom: 15px !important;
    }

    /* Hero Description - fit in viewport */
    .hero-desc,
    .hero-description {
        font-size: 0.95rem !important;
        line-height: 1.6 !important;
        max-width: 100% !important;
        padding: 0 !important;
        word-wrap: break-word !important;
    }

    /* Hide decorative circles/tech stack that overlap buttons */
    .tech-stack-container,
    .orbit-ring,
    .orbit-container>*:not(.central-image-wrapper) {
        display: none !important;
    }

    /* Buttons - full width stacked */
    .hero-buttons {
        display: flex !important;
        flex-direction: column !important;
        gap: 15px !important;
        width: 100% !important;
        margin-top: 25px !important;
    }

    .hero-buttons .button,
    .hero-buttons a {
        width: 100% !important;
        text-align: center !important;
        justify-content: center !important;
        padding: 16px 24px !important;
        font-size: 1rem !important;
        position: relative !important;
        z-index: 10 !important;
    }

    /* Hero content text alignment */
    .hero-content {
        text-align: left !important;
        padding: 0 !important;
    }

    /* Greeting - bigger */
    .hero-greeting {
        font-size: 1.1rem !important;
        text-align: left !important;
        margin-bottom: 5px !important;
    }
}

/* Extra small devices */
@media (max-width: 375px) {
    .hero-title {
        font-size: 1.8rem !important;
    }

    .hero-subtitle {
        font-size: 1rem !important;
    }

    .hero-desc,
    .hero-description {
        font-size: 0.85rem !important;
    }
}