/* ==========================================================================
   Toledo Portfolio Template - Centered Single Page Layout - CLEANED VERSION
   ========================================================================== */

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    -webkit-overflow-scrolling: touch;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
    scroll-behavior: auto !important;
}

html, body {
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

:root {
    --primary-color: #000;
    --secondary-color: #666;
    --background-light: #f8f9fa;
    --background-dark: #e9ecef;
    --text-dark: #333;
    --white: #fff;
    --transition: all 0.3s ease;
    --border-radius: 0;
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background: var(--background-light);
    width: 100%;
    max-width: 100vw;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    min-height: 100vh;
}

/* Main Container - Full Width Layout */
.container {
    min-height: 100vh;
    position: relative;
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
}

/* Hide the original panels for the new layout */
.left-panel,
.right-panel {
    display: none;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    background: var(--background-light);
    position: relative;
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
    contain: layout style;
    padding-top: max(40px, env(safe-area-inset-top, 0px));
}

.main-content {
    max-width: 1200px;
    width: 100%;
    text-align: center;
    position: relative;
    z-index: 2;
    animation: fadeInUp 1s ease-out;
    contain: layout style;
}

/* Header Section with Profile Picture */
.header-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    margin-bottom: 50px;
}

.profile-picture {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid var(--primary-color);
    aspect-ratio: 1;
    display: block;
    margin: 0 auto;
    transition: none !important;
    will-change: auto;
    transform: translateZ(0);
}

.name-tagline-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
    text-align: center;
}

.title {
    font-size: 36px;
    font-weight: 700;
    letter-spacing: -0.5px;
    margin: 0;
    color: var(--primary-color);
    font-family: var(--font-primary);
    line-height: 1.2;
}

.tagline {
    font-size: 24px;
    font-weight: 300;
    line-height: 1.2;
    margin: 0;
    color: var(--primary-color);
    letter-spacing: -1px;
}

.description {
    font-size: 20px;
    line-height: 1.8;
    margin-bottom: 50px;
    color: var(--secondary-color);
    font-weight: 400;
    text-align: justify;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
}

/* Buttons */
.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.btn {
    padding: 15px 30px;
    text-decoration: none;
    border-radius: var(--border-radius);
    transition: var(--transition);
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-size: 14px;
    border: 2px solid;
    display: inline-block;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    min-width: 200px;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

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

.btn-primary:hover {
    background: transparent;
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* About TheraLink Section */
.about-theralink-section {
    background: var(--background-dark);
    padding: 80px 0;
    text-align: center;
    width: 100%;
}

.about-theralink-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-title {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--primary-color);
    letter-spacing: -0.5px;
}

.section-subtitle {
    font-size: 18px;
    font-weight: 400;
    color: var(--secondary-color);
    margin-bottom: 40px;
    letter-spacing: 0.3px;
    opacity: 0.8;
}

.coming-soon {
    font-size: 18px;
    color: var(--secondary-color);
    font-style: italic;
    opacity: 0.8;
}

/* Blog Section */
.blog-section {
    background: var(--background-light);
    padding: 80px 0 40px 0;
    text-align: center;
    width: 100%;
}

.blog-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.blog-card {
    background: var(--white);
    border: 1px solid rgba(0,0,0,0.1);
    padding: 30px;
    text-align: left;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.blog-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--primary-color);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.blog-date {
    font-size: 12px;
    color: var(--secondary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    font-weight: 500;
}

.blog-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 15px;
    line-height: 1.3;
}

.blog-excerpt {
    font-size: 16px;
    color: var(--secondary-color);
    line-height: 1.6;
    margin-bottom: 20px;
}

.read-more {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    margin-top: auto;
    padding-top: 10px;
}

.read-more::after {
    content: '→';
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.read-more:hover::after {
    transform: translateX(5px);
}

/* Copyright Footer */
.copyright-footer {
    background: var(--background-light);
    padding: 20px 0 40px 0;
    width: 100%;
}

.copyright-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: left;
    gap: 5px;
}

.copyright-line {
    width: 100%;
    height: 1px;
    background: rgba(0, 0, 0, 0.1);
}

.copyright-text {
    font-size: 10px;
    color: rgba(102, 102, 102, 0.7);
    font-weight: 400;
    letter-spacing: 0.3px;
    margin: 0;
    text-align: left;
}

/* Fixed Navigation - Upper Right Corner */
.top-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 60px;
    z-index: 100;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 0 20px;
    box-sizing: border-box;
    transform: translateY(0);
    transition: transform 0.3s ease;
}

.top-nav.hidden {
    transform: translateY(-100%);
}

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

.nav-link {
    color: var(--secondary-color);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: var(--transition);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-link:hover::after {
    width: 100%;
}

/* Desktop Contact Navigation Item with SVG LinkedIn */
.contact-nav-item {
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
    padding: 0;
}

.contact-link {
    color: var(--secondary-color);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: var(--transition);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    position: relative;
}

.contact-link::after {
    display: none !important;
}

.linkedin-svg-icon {
    width: 16px;
    height: 16px;
    fill: var(--secondary-color);
    transition: var(--transition);
    cursor: pointer;
    flex-shrink: 0;
    display: block;
}

.contact-nav-item::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

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

.contact-nav-item:hover::after {
    width: 100%;
}

.contact-nav-item:hover .linkedin-svg-icon {
    fill: #0077b5;
}

.linkedin-svg-icon:hover {
    fill: #0077b5 !important;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 8px;
    background: none;
    border: none;
    z-index: 101;
    position: relative;
    width: 40px;
    height: 40px;
    justify-content: center;
    align-items: center;
    margin-left: auto;
}

.hamburger-line {
    width: 20px;
    height: 2px;
    background-color: var(--primary-color);
    margin: 2px 0;
    transition: 0.3s ease;
    transform-origin: center;
    border-radius: 1px;
}

.hamburger.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.hamburger.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px) saturate(180%);
    -webkit-backdrop-filter: blur(15px) saturate(180%);
    border-left: 1px solid rgba(255, 255, 255, 0.2);
    transition: right 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    z-index: 99;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.mobile-menu.active {
    right: 0;
}

/* Mobile Navigation Links */
.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 40px;
    list-style: none;
    margin: 0;
    padding: 0;
    text-align: center;
    align-items: center;
    justify-content: center;
}

.mobile-nav-link {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 24px;
    font-weight: 600;
    transition: all 0.3s ease;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 15px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    position: relative;
    min-width: 200px;
    text-align: center;
}

.mobile-nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.mobile-nav-link:hover::before {
    width: 50%;
}

.mobile-nav-link:hover {
    color: var(--primary-color);
    transform: translateX(10px);
}

/* Mobile Contact with LinkedIn - AGGRESSIVE SPACING FIX */
.mobile-contact-nav-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    position: relative;
    padding: 15px 0;
    font-size: 0; /* Eliminates any whitespace between inline elements */
    border-bottom: 1px solid rgba(0, 0, 0, 0.1); /* Restore the border */
}

.mobile-contact-link {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 24px;
    font-weight: 600;
    transition: all 0.3s ease;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-align: center;
    margin: 0;
    padding: 0;
    margin-right: 8px; /* Minimal controlled spacing */
}

.mobile-linkedin-svg-icon {
    width: 24px;
    height: 24px;
    fill: var(--primary-color);
    transition: var(--transition);
    cursor: pointer;
    flex-shrink: 0;
    display: block;
    margin: 0;
    padding: 0;
}

.mobile-contact-nav-item::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.mobile-contact-nav-item:hover .mobile-contact-link {
    color: var(--primary-color);
    transform: translateX(10px);
}

.mobile-contact-nav-item:hover .mobile-linkedin-svg-icon {
    fill: #0077b5;
    transform: translateX(10px);
}

.mobile-contact-nav-item:hover::before {
    width: 65%;
}

.mobile-linkedin-svg-icon:hover {
    fill: #0077b5 !important;
}

/* Floating Navigation */
.floating-nav {
    position: fixed;
    top: 50%;
    right: 30px;
    transform: translateY(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    gap: 12px;
    opacity: 0.4;
    transition: opacity 0.3s ease;
    contain: layout style;
}

.floating-nav:hover {
    opacity: 0.8;
}

.nav-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.2);
    cursor: pointer;
    position: relative;
    border: 1px solid transparent;
    transition: background-color 0.2s ease;
}

.nav-dot::before {
    content: attr(data-section);
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.85);
    color: var(--white);
    padding: 4px 8px;
    border-radius: 3px;
    font-size: 11px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
    font-weight: 500;
}

.nav-dot:hover {
    background: rgba(0, 0, 0, 0.4);
}

.nav-dot:hover::before {
    opacity: 1;
}

.nav-dot.active {
    background: rgba(0, 0, 0, 0.6);
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 110px;
    right: 30px;
    width: 45px;
    height: 45px;
    background: rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    z-index: 50;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: rgba(0, 0, 0, 0.1);
    border-color: rgba(0, 0, 0, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.back-to-top::after {
    content: '';
    width: 12px;
    height: 12px;
    border-top: 2px solid var(--primary-color);
    border-right: 2px solid var(--primary-color);
    transform: rotate(-45deg);
    margin-top: 3px;
}

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

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    50% {
        transform: translate(-10px, -10px) rotate(1deg);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-section {
        padding: 30px 15px;
    }

    .main-content {
        max-width: 800px;
    }

    .profile-picture {
        width: 180px;
        height: 180px;
    }

    .title {
        font-size: 32px;
    }

    .tagline {
        font-size: 22px;
    }

    .description {
        font-size: 18px;
        padding: 0 15px;
    }

    .blog-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
    }

    .copyright-content {
        padding: 0 15px;
        gap: 5px;
    }
}

@media (max-width: 768px) {
    html {
        scroll-behavior: auto !important;
        -webkit-overflow-scrolling: touch;
    }

    body {
        -webkit-overflow-scrolling: touch;
        overscroll-behavior: contain;
    }

    .blog-section {
        padding: 60px 0 20px 0;
    }

    .copyright-footer {
        padding: 60px 0 30px 0;
    }

    .back-to-top {
        bottom: 90px;
        right: 50%;
        transform: translateX(50%) translateY(10px);
        width: 40px;
        height: 40px;
    }

    .back-to-top.visible {
        transform: translateX(50%) translateY(0);
    }

    .back-to-top:hover {
        transform: translateX(50%) translateY(-2px);
    }

    .back-to-top::after {
        width: 10px;
        height: 10px;
        border-width: 2px;
    }

    .hero-section {
        padding: 20px 15px;
        min-height: 100vh;
        min-height: 100dvh;
        padding-top: max(60px, env(safe-area-inset-top, 20px));
    }

    .top-nav {
        height: 50px;
        padding: 0 15px;
    }

    .main-content {
        max-width: none;
        width: 100%;
    }

    .header-section {
        gap: 25px;
        margin-bottom: 40px;
    }

    .profile-picture {
        width: 160px;
        height: 160px;
        border: 3px solid var(--primary-color);
        transition: none !important;
        transform: none !important;
    }

    .title {
        font-size: 28px;
    }

    .tagline {
        font-size: 20px;
    }

    .description {
        font-size: 17px;
        margin-bottom: 40px;
        text-align: justify;
        line-height: 1.6;
        padding: 0 15px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
        margin-bottom: 50px;
    }

    .btn {
        width: 100%;
        max-width: 280px;
        text-align: center;
    }

    .floating-nav {
        display: none;
    }

    .about-theralink-section {
        padding: 60px 0;
    }

    .about-theralink-content,
    .blog-content {
        padding: 0 15px;
    }

    .section-title {
        font-size: 28px;
    }

    .section-subtitle {
        font-size: 16px;
        margin-bottom: 35px;
    }

    .blog-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-top: 40px;
    }

    .blog-card {
        padding: 25px;
    }

    .copyright-content {
        padding: 0 15px;
        gap: 5px;
    }

    .copyright-text {
        font-size: 10px;
    }

    /* Show hamburger menu on tablet and below */
    .top-nav .nav-links {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    /* Mobile Navigation Responsive Adjustments */
    .mobile-nav-links {
        gap: 35px;
    }

    .mobile-nav-link {
        font-size: 22px;
        min-width: 180px;
    }

    .mobile-contact-nav-item {
        gap: 0;
        padding: 12px 0;
        font-size: 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    }

    .mobile-contact-link {
        font-size: 22px;
        margin-right: 8px;
    }

    .mobile-linkedin-svg-icon {
        width: 22px;
        height: 22px;
    }

    .mobile-contact-nav-item:hover::before {
        width: 60%;
    }
}

@media (max-width: 480px) {
    .blog-section {
        padding: 50px 0 15px 0;
    }

    .copyright-footer {
        padding: 50px 0 25px 0;
    }

    .back-to-top {
        bottom: 75px;
        right: 50%;
        transform: translateX(50%) translateY(10px);
        width: 38px;
        height: 38px;
    }

    .back-to-top.visible {
        transform: translateX(50%) translateY(0);
    }

    .back-to-top:hover {
        transform: translateX(50%) translateY(-2px);
    }

    .back-to-top::after {
        width: 9px;
        height: 9px;
    }

    .hero-section {
        padding: 20px 10px;
    }

    .top-nav {
        height: 45px;
        padding: 0 10px;
    }

    .hamburger {
        width: 35px;
        height: 35px;
        padding: 6px;
    }

    .hamburger-line {
        width: 18px;
        height: 2px;
        margin: 2px 0;
    }

    .header-section {
        gap: 20px;
        margin-bottom: 30px;
    }

    .profile-picture {
        width: 140px;
        height: 140px;
        border: 3px solid var(--primary-color);
    }

    .title {
        font-size: 24px;
    }

    .tagline {
        font-size: 18px;
    }

    .description {
        font-size: 16px;
        margin-bottom: 35px;
        padding: 0 10px;
    }

    .btn {
        padding: 12px 24px;
        font-size: 13px;
        min-width: 0;
        max-width: 250px;
    }

    .mobile-nav-links {
        gap: 35px;
    }

    .mobile-nav-link {
        font-size: 20px;
        padding: 12px 0;
        min-width: 180px;
    }

    .mobile-contact-nav-item {
        gap: 0;
        padding: 12px 0;
        font-size: 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    }

    .mobile-contact-link {
        font-size: 20px;
        margin-right: 8px;
    }

    .mobile-linkedin-svg-icon {
        width: 20px;
        height: 20px;
    }

    .mobile-contact-nav-item:hover::before {
        width: 55%;
    }

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

    .about-theralink-content,
    .blog-content {
        padding: 0 10px;
    }

    .section-title {
        font-size: 24px;
    }

    .section-subtitle {
        font-size: 15px;
        margin-bottom: 30px;
    }

    .blog-card {
        padding: 20px;
    }

    .copyright-content {
        padding: 0 10px;
        gap: 5px;
    }

    .copyright-text {
        font-size: 9px;
    }
}

@media (max-width: 320px) {
    .blog-section {
        padding: 50px 0 10px 0;
    }

    .copyright-footer {
        padding: 45px 0 20px 0;
    }

    .back-to-top {
        bottom: 65px;
        width: 36px;
        height: 36px;
    }

    .back-to-top::after {
        width: 8px;
        height: 8px;
    }

    .top-nav {
        height: 40px;
        padding: 0 5px;
    }

    .hamburger {
        width: 30px;
        height: 30px;
        padding: 4px;
    }

    .hamburger-line {
        width: 14px;
        height: 2px;
        margin: 1px 0;
    }

    .profile-picture {
        width: 120px;
        height: 120px;
        border: 2px solid var(--primary-color);
    }

    .title {
        font-size: 22px;
    }

    .tagline {
        font-size: 16px;
    }

    .description {
        font-size: 15px;
    }

    .mobile-nav-links {
        gap: 30px;
    }

    .mobile-nav-link {
        font-size: 18px;
        padding: 10px 0;
        min-width: 160px;
    }

    .mobile-contact-nav-item {
        gap: 0;
        padding: 10px 0;
        font-size: 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    }

    .mobile-contact-link {
        font-size: 18px;
        margin-right: 8px;
    }

    .mobile-linkedin-svg-icon {
        width: 18px;
        height: 18px;
    }

    .mobile-contact-nav-item:hover::before {
        width: 50%;
    }

    .copyright-content {
        padding: 0 5px;
        gap: 5px;
    }

    .copyright-text {
        font-size: 8px;
    }
}

/* Print Styles */
@media print {
    .floating-nav {
        display: none;
    }

    .copyright-footer {
        padding: 20px 0;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    :root {
        --primary-color: #000;
        --secondary-color: #333;
        --background-light: #fff;
        --background-dark: #f0f0f0;
    }

    .copyright-text {
        color: rgba(51, 51, 51, 0.8);
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .back-to-top {
        transition: none;
    }
}
