/* 
   Premium Header & Footer Styles
   Focus: Professional navigation, sticky header, and clean footer
*/

@media (min-width: 768px) {

    /* Header Styling */
    .header {
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        border-bottom: 1px solid #f1f5f9;
        height: 80px;
        position: sticky;
        top: 0;
        z-index: 1000;
        padding-top: 20px;
    }

    .desktop-nav {
        height: 50px;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .navbar-brand .logo {
        height: 45px !important;
        transition: transform 0.3s ease;
    }

    .navbar-brand:hover .logo {
        transform: scale(1.05);
    }

    /* Navigation Links */
    .desktop-nav-links {
        background: #f8fafc;
        padding: 6px;
        border-radius: 50px;
        display: flex;
        gap: 4px;
        border: 1px solid #e2e8f0;
    }

    .desktop-nav-links li a {
        padding: 10px 24px;
        border-radius: 40px;
        color: #64748b;
        font-weight: 600;
        font-size: 14px;
        transition: all 0.3s ease;
        display: block;
    }

    .desktop-nav-links li a:hover {
        color: #2777FC;
        background: rgba(39, 119, 252, 0.05);
    }

    .desktop-nav-links li a.active {
        background: #2777FC;
        color: #fff;
        box-shadow: 0 4px 12px rgba(39, 119, 252, 0.25);
    }

    .desktop-nav-links li a.active::after {
        display: none;
    }

    /* Header Actions */
    .desktop-header-actions {
        gap: 16px;
    }

    .desktop-header-actions .icon-btn {
        width: 48px;
        height: 48px;
        border-radius: 14px;
        background: #fff;
        border: 1px solid #e2e8f0;
        color: #334155;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .desktop-header-actions .icon-btn:hover {
        background: #2777FC;
        border-color: #2777FC;
        color: #fff;
        transform: translateY(-2px);
        box-shadow: 0 8px 16px -4px rgba(39, 119, 252, 0.3);
    }

    .desktop-header-actions .icon-btn i,
    .desktop-header-actions .icon-btn .iconsax {
        font-size: 22px;
        display: block;
    }

    /* Footer Improvements */
    footer {
        background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
        border-top: none;
        padding: 60px 0 30px;
        margin-top: 60px;
    }

    .footer-content {
        display: grid;
        grid-template-columns: 2fr 1fr 1fr 1fr;
        gap: 50px;
        margin-bottom: 40px;
    }

    .footer-logo {
        margin-bottom: 20px;
    }

    .footer-text {
        color: #94a3b8;
        line-height: 1.8;
        margin-bottom: 16px;
        font-size: 14px;
    }

    /* Social Icons */
    .footer-social-icon {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.08);
        border: 1px solid rgba(255, 255, 255, 0.1);
        display: flex;
        align-items: center;
        justify-content: center;
        color: #94a3b8;
        font-size: 16px;
        transition: all 0.3s ease;
        text-decoration: none;
    }

    .footer-social-icon:hover {
        background: #2777FC;
        border-color: #2777FC;
        color: #fff;
        transform: translateY(-3px);
        box-shadow: 0 6px 20px rgba(39, 119, 252, 0.35);
    }

    .footer-links h4 {
        color: #f1f5f9;
        font-weight: 700;
        margin-bottom: 24px;
        font-size: 15px;
        text-transform: uppercase;
        letter-spacing: 1px;
        position: relative;
        padding-bottom: 12px;
    }

    .footer-links h4::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 30px;
        height: 2px;
        background: #2777FC;
        border-radius: 2px;
    }

    .footer-links ul {
        display: block !important;
        padding: 0;
        margin: 0;
    }

    .footer-links ul li {
        display: block !important;
        margin-bottom: 12px;
    }

    .footer-links ul li a {
        color: #94a3b8;
        transition: all 0.3s ease;
        font-size: 14px;
        display: inline-block;
    }

    .footer-links ul li a:hover {
        color: #2777FC;
        padding-left: 6px;
    }

    /* Unclickable phone number styling */
    .footer-phone-text {
        color: #94a3b8;
        font-size: 14px;
        cursor: default;
    }

    .copyright {
        border-top: 1px solid rgba(255, 255, 255, 0.08);
        padding-top: 24px;
        text-align: center;
    }

    .copyright p {
        color: #64748b;
        font-size: 13px;
        margin: 0;
    }
}