/* Header Footer Specific Styles - Fresh Clean Design */

/* ===== HEADER SECTION ===== */

/* Header Reset & Base */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background: transparent;
    backdrop-filter: blur(5px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: border-bottom 0.3s ease, background 0.3s ease, top 0.3s ease;
    box-shadow: none;
    z-index: 1001;
}

/* Special styling for pages other than home */
body:not(.home-page) .header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}

/* Home page specific header styles */
.home-page .header:not(.scrolled) {
    border-bottom: none !important;
    box-shadow: none !important;
}

.home-page .header .nav-link {
    color: #ffffff;
}

.home-page .header .nav-link:hover {
    color: #f0f0f0;
}

/* Home page header when scrolled */
.home-page .header.scrolled .nav-link {
    color: #000000;
}

.home-page .header.scrolled .nav-link:hover {
    color: #333333;
}

/* Header border extension when dropdown is active */
.header .mega-dropdown:hover {
    position: relative;
}

/* Removing the thin line around dropdown */
.header .mega-dropdown:hover::before {
    display: none;
}

/* Header Container */
.header .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.header .header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    position: relative;
}

/* ===== LOGO SECTION ===== */
.header .logo {
    display: flex;
    align-items: center;
    z-index: 1002;
}

.header .logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.header .logo a:hover {
    transform: scale(1.05);
}

.header .logo-img {
    height: 53px;
    width: auto;
    max-width: 220px;
    transition: all 0.3s ease;
    /* Improve image rendering for the embedded PNG in SVG */
    image-rendering: -webkit-optimize-contrast;
    image-rendering: high-quality;
}


/* ===== NAVIGATION SECTION ===== */
.header .nav {
    display: flex;
    align-items: center;
}

.header .nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 1rem;
    align-items: center;
}

.header .nav-item {
    position: relative;
}

.header .nav-link {
    color: #334155;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    padding: 12px 20px;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
    display: block;
}

.header .nav-link:hover {
    color: #0f172a;
    background: rgba(59, 130, 246, 0.1);
    transform: translateY(-1px);
}

.header .nav-link::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: #3b82f6;
    border-radius: 1px;
    transition: width 0.3s ease;
}

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

/* Active Navigation Link Styles */
.header .nav-link.active {
    color: #3b82f6;
    background: rgba(59, 130, 246, 0.15);
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.3);
    font-weight: 600;
}

.header .nav-link.active::after {
    width: 80%;
    background: #3b82f6;
    box-shadow: 0 0 10px rgba(59, 130, 246, 0.5);
}

/* ===== DROPDOWN MENU ===== */
.header .dropdown {
    position: relative;
}

.header .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    padding: 2rem;
    min-width: 600px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 10000;
    margin-top: 5px;
}

.header .dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.header .dropdown-section {
    padding: 1.5rem;
    border-radius: 8px;
    background: rgba(248, 250, 252, 0.8);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.header .dropdown-section:hover {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(59, 130, 246, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.header .dropdown-section h4 {
    color: #1e293b;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    padding-bottom: 8px;
}

.header .dropdown-section h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: #3b82f6;
    border-radius: 1px;
    transition: width 0.3s ease;
}

.header .dropdown-section:hover h4::after {
    width: 50px;
}

.header .dropdown-section a {
    display: block;
    color: #64748b;
    text-decoration: none;
    padding: 10px 12px;
    font-size: 14px;
    font-weight: 500;
    border-radius: 6px;
    transition: all 0.3s ease;
    margin-bottom: 4px;
}

.header .dropdown-section a:hover {
    color: #1e293b;
    background: rgba(59, 130, 246, 0.1);
    transform: translateX(4px);
}

/* ===== MOBILE MENU TOGGLE ===== */
.header .mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    background: rgba(0, 123, 255, 0.1);
    border: 1px solid rgba(0, 123, 255, 0.2);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    cursor: pointer;
    transition: all 0.25s ease;
    z-index: 1002;
    border-radius: 12px;
    backdrop-filter: blur(8px);
}

.header .mobile-menu-toggle:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.12);
}

.header .mobile-menu-toggle:active {
    transform: scale(0.98);
}

.header .mobile-menu-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--primary-color);
    margin: 3px 0;
    border-radius: 2px;
    transition: all 0.25s ease;
}

.home-page .header:not(.scrolled) .mobile-menu-toggle span {
    background: #ffffff;
}

.header .mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.header .mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.header .mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

.header .mobile-menu-toggle.active {
    background: rgba(0, 123, 255, 0.15);
    border-color: rgba(0, 123, 255, 0.35);
}
.header .mobile-menu-toggle.active span {
    background: #ffffff;
}

.header .mobile-menu-toggle .menu-label {
    display: none;
}

/* Footer Container Reset */
.footer * {
    box-sizing: border-box;
}

.footer {
    isolation: isolate;
}

/* Footer Animation Effects */
.footer .footer-links a {
    position: relative;
    overflow: hidden;
}

.footer .footer-links a::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 1px;
    background: var(--accent-color);
    transition: width 0.3s ease;
}

.footer .footer-links a:hover::before {
    width: 100%;
}

/* Social Links Animation */
.footer .social-link {
    position: relative;
    overflow: hidden;
}

.footer .social-link::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.3s ease;
}

.footer .social-link:hover::before {
    width: 100%;
    height: 100%;
}

/* ===== MOBILE NAVIGATION ===== */
.mobile-nav {
    position: fixed;
    top: 0;
    right: -100vw;
    left: auto;
    width: 100vw;
    height: 100vh;
    background: linear-gradient(180deg, #0f1e4a 0%, #0b1740 60%);
    box-shadow: 0 12px 40px rgba(0,0,0,0.35);
    z-index: 1005;
    transition: all 0.3s ease;
    border: none;
}

.mobile-nav.active {
    right: 0;
    left: auto;
}

.mobile-nav::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.35);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-nav.active::before {
    opacity: 1;
}

.mobile-nav-content {
    padding: 24px;
    height: 100%;
    overflow-y: auto;
    position: relative;
    padding-top: 100px;
    padding-bottom: 24px;
    background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0) 60%);
    scrollbar-width: thin;
    scrollbar-color: #9bbcff transparent;
    scrollbar-gutter: stable both-edges;
}

.mobile-nav-content::-webkit-scrollbar {
    width: 10px;
}
.mobile-nav-content::-webkit-scrollbar-track {
    background: transparent;
}
.mobile-nav-content::-webkit-scrollbar-thumb {
    background-color: rgba(255,255,255,0.25);
    border-radius: 8px;
    border: 2px solid transparent;
}

.mobile-nav-list {
    list-style: none;
    margin: 0;
    padding: 8px 12px;
    margin-top: 8px;
}

.mobile-nav-list li {
    margin-bottom: 4px;
}

/* removed extra top offset for first item to normalize spacing */

.mobile-nav-list a {
    display: block;
    color: #ffffff !important;
    text-decoration: none;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    padding: 12px 12px;
    border-radius: 0;
    transition: color 0.2s ease;
    background: transparent;
    border: none;
    text-align: left;
    line-height: 1.6;
    border-bottom: 1px solid rgba(255,255,255,0.12);
}
.mobile-nav-list li:last-child a { border-bottom: none; }
.mobile-nav-list a:hover { color: #e6eeff; }
.has-submenu.open > .submenu-link { color: #e6eeff !important; }

.mobile-nav-list a:hover {
    color: #cfe0ff;
}

/* Active Mobile Navigation Link */
.mobile-nav-list a.active {
    color: #9bbcff;
}

body.menu-open {
    overflow: hidden;
}

.mobile-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.4);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 998;
}

.mobile-backdrop.active {
    opacity: 1;
    visibility: visible;
}

.mobile-nav .has-submenu {
    margin-bottom: 8px;
}

.mobile-nav .submenu-toggle {
    width: 100%;
    text-align: left;
    background: rgba(248, 250, 252, 0.5);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 8px;
    padding: 15px 20px;
    color: #334155;
    font-size: 16px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.3s ease;
}

.mobile-nav .submenu-toggle::after {
    content: '▾';
    font-size: 14px;
    transform: rotate(0deg);
    transition: transform 0.2s ease;
}

.mobile-nav .has-submenu.open .submenu-toggle::after {
    transform: rotate(180deg);
}

.mobile-nav .submenu-list {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding-left: 0;
    margin-top: 6px;
    background: transparent;
    border: none;
    border-radius: 0;
}

.mobile-nav .has-submenu.open .submenu-list {
    max-height: 800px;
}

.mobile-nav .submenu-list a {
    background: transparent;
    border: none;
    padding: 10px 12px 10px 8px;
    border-radius: 0;
    margin: 2px 0;
    color: #cfe0ff;
    font-size: 14px;
}

.mobile-nav-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 16px;
    background: rgba(255, 255, 255, 0.8);
    border-bottom: 1px solid rgba(0, 123, 255, 0.2);
}

.brand { display: flex; align-items: center; gap: 10px; }
.brand-logo { height: 28px; width: auto; }
.brand-text { font-weight: 700; color: var(--primary-color); }

.mobile-actions { display: flex; gap: 10px; }
.mobile-cta {
    padding: 8px 12px;
    border-radius: 8px;
    border: 1px solid rgba(0,0,0,0.08);
    background: rgba(255,255,255,0.7);
    color: #334155;
    font-weight: 600;
}
.mobile-cta.primary { background: var(--accent-color); color: #fff; border-color: var(--accent-color); }

.mobile-search { padding: 10px 16px 0; }
#mobile-search {
    width: 100%;
    padding: 12px 14px;
    border-radius: 10px;
    border: 1px solid rgba(0,123,255,0.15);
    background: rgba(255,255,255,0.85);
}

.menu-section { 
    padding: 10px 10px; 
    border-radius: 12px; 
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    margin: 8px 0;
}
.menu-section-title {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #9bbcff;
    margin: 4px 4px 8px;
}
.menu-item { 
    display: flex; 
    align-items: center; 
    gap: 14px; 
    padding: 8px 6px; 
    border-radius: 8px;
    transition: background 0.2s ease, color 0.2s ease;
}
.menu-section .menu-item + .menu-item { border-top: 1px solid rgba(255,255,255,0.08); }
.menu-item:hover { 
    background: rgba(255,255,255,0.08);
}
.menu-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    width: 28px;
    height: 28px;
    border-radius: 7px;
    background: rgba(155, 188, 255, 0.18);
    color: #e6eeff;
    font-size: 12px;
    font-weight: 800;
}
.menu-text { flex: 1; color: #e6eeff; }

/* ===== FLOATING ACTION BUTTONS ===== */
.floating-buttons {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 1000;
}

.floating-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.floating-btn svg {
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease;
}

.floating-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.floating-btn:hover svg {
    transform: scale(1.1);
}

.call-btn {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
}

.call-btn:hover {
    background: linear-gradient(135deg, #059669, #047857);
}

.whatsapp-btn {
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: white;
}

.whatsapp-btn:hover {
    background: linear-gradient(135deg, #128c7e, #075e54);
}

/* ===== RESPONSIVE DESIGN ===== */

/* Large Tablets */
@media (max-width: 1024px) {
    .header .container {
        padding: 0 1.5rem;
    }
    
    .header .nav-list {
        gap: 0.8rem;
    }
    
    .header .nav-link {
        padding: 10px 16px;
        font-size: 15px;
    }
    
    .header .dropdown-menu {
        min-width: 550px;
        left: 0;
        transform: translateY(10px);
    }
}

/* Tablets */
@media (max-width: 768px) {
    .header .nav {
        display: none;
    }
    
    .header .mobile-menu-toggle {
        display: flex;
    }
    
    .header .container {
        padding: 0 1rem;
    }
    
    .header .header-content {
        height: 70px;
    }
    
    .header .logo-img {
        height: 44px;
    }
    
    .mobile-nav {
        top: 0;
        height: 100vh;
        width: 100vw;
    }
    .mobile-nav::before {
        top: 0;
        height: 100vh;
    }
    .mobile-backdrop {
        top: 0;
        height: 100vh;
    }
    
    .floating-buttons {
        bottom: 20px;
        right: 20px;
        gap: 12px;
    }
    
    .floating-btn {
        width: 55px;
        height: 55px;
    }
    
    .floating-btn svg {
        width: 22px;
        height: 22px;
    }

    /* Hide Quick Links and Our Products on mobile */
    .footer-section.quick-links,
    .footer-section.our-products {
        display: none !important;
    }

    /* Center align footer elements on mobile */
    .footer p,
    .footer h3,
    .footer .footer-description,
    .footer .footer-title,
    .footer .footer-contact-item {
        text-align: center !important;
        justify-content: center !important;
    }
}

/* Mobile Phones */
@media (max-width: 480px) {
    .header .container {
        padding: 0 1rem;
    }
    
    .header .header-content {
        height: 65px;
    }
    
    .header .logo-img {
        height: 40px;
    }
    
    .mobile-nav {
        top: 0;
        height: 100vh;
        width: 100vw;
        right: -100vw;
        left: auto;
    }
    .mobile-nav::before {
        top: 0;
        height: 100vh;
    }
    .mobile-backdrop {
        top: 0;
        height: 100vh;
    }
    
    .mobile-nav-content {
        padding: 24px;
    }
}

/* ===== MOBILE BOTTOM SHEET REDESIGN ===== */
@media (max-width: 768px) {
    .mobile-nav {
        left: 0;
        right: 0;
        top: auto;
        bottom: 0;
        background: transparent;
        pointer-events: none;
    }
    .mobile-nav.active {
        right: 0;
        left: 0;
        bottom: 0;
        pointer-events: none;
    }
    .mobile-nav::before {
        background: rgba(0, 0, 0, 0.5);
    }
    .mobile-nav-content {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        max-width: 100vw;
        max-height: 85vh;
        height: auto;
        padding: 64px 12px 18px;
        background: rgba(17, 24, 39, 0.95);
        border-top-left-radius: 18px;
        border-top-right-radius: 18px;
        box-shadow: 0 -10px 30px rgba(0,0,0,0.35);
        transform: translateY(100%);
        transition: transform 0.35s ease;
        backdrop-filter: blur(8px);
        pointer-events: auto;
        scrollbar-gutter: stable both-edges;
    }
    .mobile-nav.active .mobile-nav-content {
        transform: translateY(0);
    }
    .mobile-close-btn {
        position: fixed;
        top: calc(16px + env(safe-area-inset-top, 0px));
        right: 16px;
        border-color: rgba(255,255,255,0.25);
        background: rgba(255,255,255,0.08);
        width: 30px;
        height: 30px;
        border-radius: 8px;
        z-index: 1007;
    }
    .mobile-close-btn::before,
    .mobile-close-btn::after {
        width: 14px;
        height: 1.5px;
    }
    .mobile-nav-topbar {
        background: rgba(255,255,255,0.08);
        border-color: rgba(255,255,255,0.15);
    }
    .mobile-nav .has-submenu { margin: 0; }
    .mobile-nav .submenu-link {
        padding: 10px 12px;
        margin: 0;
        line-height: 1.25;
    }
    .mobile-nav .submenu-list { margin-top: 0; }
    .mobile-nav .mobile-nav-list {
        padding: 10px 8px;
        margin-top: 4px;
        display: flex;
        flex-direction: column;
        gap: 12px;
    }
    .mobile-nav .mobile-nav-list li { margin-bottom: 2px; }
    .mobile-nav .mobile-nav-list a {
        font-size: 15px;
        padding: 10px 12px;
        line-height: 1.25;
        border-bottom: none;
    }
    .menu-section {
        background: rgba(255,255,255,0.08);
        border-color: rgba(255,255,255,0.15);
        margin: 4px 0;
    }
    .mobile-nav .menu-item {
        padding: 6px 8px;
        gap: 14px;
    }
}
    
    .floating-buttons {
        bottom: 15px;
        right: 15px;
        gap: 10px;
    }
    
    .floating-btn {
        width: 50px;
        height: 50px;
    }
    
    .floating-btn svg {
        width: 20px;
        height: 20px;
    }
/* (nothing to insert – the orphaned closing brace was simply removed) */

/* Small Mobile Phones */
@media (max-width: 360px) {
    .header .container {
        padding: 0 0.75rem;
    }
    
    .header .header-content {
        height: 60px;
    }
    
    .header .logo-img {
        height: 38px;
    }
    
    .mobile-nav {
        width: 100vw;
    }
    
    .mobile-nav-content {
        padding: 24px;
    }
    
    .mobile-nav-list a {
        font-size: 18px;
        padding: 18px 12px;
    }
}

/* Print Styles */
@media print {
    .header,
    .footer,
    .floating-buttons,
    .mobile-nav {
        display: none !important;
    }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
    .header {
        border-bottom: 2px solid #000;
    }
    
    .header .nav-link {
        font-weight: 600;
    }
    
    .footer {
        border-top: 2px solid #fff;
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    .header *,
    .footer * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus Styles for Accessibility */
.header .nav-link:focus-visible,
.header .mobile-menu-toggle:focus-visible,
.footer .footer-links a:focus-visible,
.footer .social-link:focus-visible,
.mobile-close-btn:focus-visible {
    outline: 2px solid var(--accent-color);
    outline-offset: 2px;
    border-radius: 2px;
}

.header .mobile-menu-toggle:focus,
.mobile-close-btn:focus {
    outline: none;
}

/* Skip Link */
.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: var(--primary-color);
    color: #fff;
    padding: 8px;
    text-decoration: none;
    border-radius: 4px;
    z-index: 1003;
    transition: transform 0.3s ease;
}

.skip-link:focus {
    top: 0;
}

/* =========================================
   DESKTOP FOOTER LAYOUT OVERRIDE
   Matches specific design request (4 columns)
   ========================================= */
@media (min-width: 992px) {
    .footer {
        background-color: #0a1b2b; /* Deep navy background */
        padding-top: 80px;
        padding-bottom: 40px;
    }

    .footer .footer-content {
        display: grid;
        grid-template-columns: 1.2fr 0.8fr 0.8fr 1.2fr; /* 4 Columns: Info, Links, Products, Contact */
        gap: 40px;
        align-items: start;
        max-width: 1200px;
        margin: 0 auto 40px;
    }

    /* Headings */
    .footer .footer-section h3.footer-title {
        color: #007bff; /* Bright Blue */
        font-size: 18px;
        font-weight: 700;
        margin-bottom: 25px;
        letter-spacing: 0.5px;
    }

    /* Links */
    .footer .footer-links a {
        color: #e0e0e0;
        font-size: 15px;
        padding: 6px 0;
        transition: all 0.3s ease;
    }

    .footer .footer-links a:hover {
        color: #007bff;
        padding-left: 5px;
    }

    /* Contact Info */
    .footer-contact-item {
        display: flex;
        gap: 15px;
        margin-bottom: 20px;
        color: #e0e0e0;
    }

    /* Fix for mobile browser auto-linking phone numbers with blue color */
    .footer-contact-item a,
    .footer-contact-item a:hover,
    .footer-contact-item a:focus,
    .footer-contact-item a:active,
    .footer-contact-item a[href^="tel:"] {
        color: inherit !important;
        text-decoration: none !important;
    }

    .footer-contact-icon {
        color: #007bff;
        width: 20px;
        height: 20px;
        margin-top: 3px;
        flex-shrink: 0;
    }
    
    .footer-description {
        color: #d1d5db;
        line-height: 1.6;
        margin-bottom: 25px;
    }
}
.submenu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(248, 250, 252, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 10px;
    padding: 12px 14px;
    margin-bottom: 8px;
}

.submenu-link {
    color: #334155;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
}

.submenu-link:hover {
    color: var(--accent-color);
}

.submenu-toggle {
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(0,0,0,0.08);
    color: #334155;
    border-radius: 8px;
    width: 36px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.submenu-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 18px 12px;
    margin-bottom: 6px;
    margin-top: 8px;
    text-decoration: none;
    color: #ffffff !important;
    font-size: 15px;
    font-weight: 800;
    text-transform: uppercase;
}

.submenu-link:hover { color: var(--accent-color); }

.submenu-text { pointer-events: none; }
.submenu-caret {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    font-size: 20px;
    color: #ffffff;
    cursor: pointer;
    margin-left: auto;
    background: transparent;
    border: none;
}

.has-submenu.open .submenu-caret { transform: none; }

.menu-item .menu-text,
.menu-section-title,
.menu-item { color: #e6eeff; }
.mobile-close-btn {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    border: 1.5px solid rgba(255,255,255,0.35);
    background: rgba(255,255,255,0.08);
    color: #ffffff;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1006;
    backdrop-filter: blur(6px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.25);
}
.mobile-close-btn::before,
.mobile-close-btn::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 2px;
    background: #e6eeff;
    border-radius: 1px;
    top: 50%;
    left: 50%;
}
.mobile-close-btn::before { transform: translate(-50%, -50%) rotate(45deg); }
.mobile-close-btn::after { transform: translate(-50%, -50%) rotate(-45deg); }

.mobile-close-btn:hover {
    background: rgba(255,255,255,0.14);
    transform: scale(1.03);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

@media (max-width: 768px) {
    .mobile-close-btn {
        position: fixed !important;
        top: calc(16px + env(safe-area-inset-top, 0px)) !important;
        right: 16px !important;
        width: 30px !important;
        height: 30px !important;
        border-radius: 8px !important;
        z-index: 1007 !important;
    }
    .mobile-close-btn::before,
    .mobile-close-btn::after {
        width: 15px !important;
        height: 1.5px !important;
    }
}
.mobile-nav-topbar {
    position: sticky;
    top: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #ffffff;
    padding: 8px 12px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 12px;
    backdrop-filter: blur(6px);
}
.mobile-nav-topbar .topbar-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #cfe0ff;
}
.mobile-nav-topbar .topbar-label {
    font-size: 14px;
    font-weight: 700;
    color: #e6eeff;
}
.mobile-nav-topbar .topbar-caret {
    font-size: 12px;
    color: #cfe0ff;
}

@media (max-width: 768px) {
    .mobile-nav .submenu-link {
        position: relative;
        padding-right: 48px;
    }
    .mobile-nav .mobile-nav-list li:first-child .submenu-link {
        margin-top: 12px;
    }
    .mobile-nav .mobile-nav-list li:first-child {
        padding-top: 12px;
    }
    .mobile-nav .submenu-caret {
        position: absolute;
        top: 50%;
        right: 12px;
        transform: translateY(-50%);
        width: 32px;
        height: 32px;
        font-size: 18px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        pointer-events: auto;
    }
    .mobile-nav .has-submenu.open .submenu-caret {
        transform: translateY(-50%);
    }
}
