/* ==========================================================================
   CSS VARIABLES & GLOBAL SETTINGS
   ========================================================================== */
:root {
    /* Colors */
    --clr-navy: #061B46;
    --clr-navy-dark: #041230;
    --clr-blue: #0B57D0;
    --clr-blue-light: #2583F7;
    --clr-white: #FFFFFF;
    --clr-bg-light: #F7F9FC;
    
    --clr-text-main: #111827;
    --clr-text-muted: #667085;
    
    --clr-border: #E2E6EC;
    
    --clr-accent-new: #0B57D0;
    --clr-accent-bestseller: #22C55E;
    --clr-accent-hot: #A855F7;

    /* Typography */
    --font-main: 'Inter', sans-serif;
    
    /* Layout */
    --container-max-width: 1280px;
    --container-padding: 20px;
    --section-padding: 60px 0;
    --border-radius-sm: 4px;
    --border-radius-md: 8px;
    --border-radius-lg: 12px;
    
    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -1px rgba(0,0,0,0.06);
    --shadow-card: 0 4px 12px rgba(0,0,0,0.05);
}

/* Reset & Basics */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    color: var(--clr-text-main);
    background-color: var(--clr-bg-light);
    line-height: 1.6;
    overflow-x: hidden;
    font-size: 15px;
}

html {
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.2s ease, background-color 0.2s ease;
}

ul {
    list-style: none;
}

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

input, button {
    font-family: inherit;
    outline: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
}

.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.section-padding {
    padding: var(--section-padding);
}

.bg-light {
    background-color: var(--clr-bg-light);
}

.text-white {
    color: var(--clr-white);
}

.text-blue {
    color: var(--clr-blue-light);
}

/* ==========================================================================
   TYPOGRAPHY & UTILITIES
   ========================================================================== */
.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-header h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--clr-navy);
    margin-bottom: 10px;
    text-transform: uppercase;
}

.section-header .underline {
    height: 3px;
    width: 60px;
    background-color: var(--clr-blue);
    margin: 0 auto;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 24px;
    border-radius: var(--border-radius-sm);
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.2s ease;
}

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

.btn-primary:hover {
    background-color: var(--clr-navy);
}

.btn-outline-white {
    background-color: transparent;
    border: 1px solid var(--clr-white);
    color: var(--clr-white);
}

.btn-outline-white:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.btn-whatsapp {
    background-color: #25D366;
    color: var(--clr-white);
}

.btn-whatsapp:hover {
    background-color: #128C7E;
}

.btn-full {
    width: 100%;
}

.btn-sm {
    padding: 8px 16px;
    font-size: 0.85rem;
}

.btn-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: var(--border-radius-sm);
    border: 1px solid var(--clr-border);
    color: var(--clr-text-muted);
    background-color: var(--clr-white);
    transition: all 0.2s ease;
}

.btn-icon:hover {
    color: var(--clr-blue);
    border-color: var(--clr-blue);
}

/* ==========================================================================
   1. TOP INFORMATION BAR
   ========================================================================== */
.top-bar {
    background-color: var(--clr-navy-dark);
    color: #A0ABC0;
    font-size: 0.8rem;
    padding: 8px 0;
}

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

.top-bar-left, .top-bar-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.top-bar-left i {
    color: var(--clr-white);
    margin-right: 4px;
}

.top-bar-left .separator {
    color: #4A5568;
}

.top-bar-right a, .top-bar-right .dropdown {
    color: inherit;
    cursor: pointer;
}

.top-bar-right a:hover {
    color: var(--clr-white);
}

/* ==========================================================================
   2. MAIN HEADER & STICKY
   ========================================================================== */
.sticky-header-wrapper {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: var(--clr-white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.main-header {
    background-color: var(--clr-white);
    padding: 20px 0;
    border-bottom: 1px solid var(--clr-border);
}

.main-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.logo a {
    display: flex;
    align-items: center;
}

.site-logo {
    max-height: 55px;
    width: auto;
    object-fit: contain;
}

.logo h1 {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--clr-blue);
    line-height: 1;
    letter-spacing: -0.5px;
}

.logo .logo-subtitle {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--clr-navy);
    letter-spacing: 2px;
}

.search-bar {
    flex: 1;
    max-width: 600px;
    display: flex;
    border: 1px solid var(--clr-border);
    border-radius: var(--border-radius-sm);
    overflow: hidden;
}

.search-dropdown {
    padding: 0 15px;
    display: flex;
    align-items: center;
    gap: 8px;
    background-color: var(--clr-bg-light);
    border-right: 1px solid var(--clr-border);
    font-size: 0.9rem;
    color: var(--clr-text-main);
    cursor: pointer;
    min-width: max-content;
}

.search-dropdown i {
    font-size: 0.7rem;
    color: var(--clr-text-muted);
}

.search-bar input {
    flex: 1;
    border: none;
    padding: 10px 15px;
    font-size: 0.95rem;
}

.search-btn {
    background-color: var(--clr-navy);
    color: var(--clr-white);
    width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.action-item {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    position: relative;
}

.action-item i {
    font-size: 1.4rem;
    color: var(--clr-navy);
}

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

.action-title {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--clr-text-main);
}

.action-subtitle {
    font-size: 0.75rem;
    color: var(--clr-text-muted);
}

.cart-price {
    font-weight: 700;
    color: var(--clr-navy);
}

.badge {
    position: absolute;
    top: -6px;
    left: 12px;
    background-color: var(--clr-blue);
    color: var(--clr-white);
    font-size: 0.65rem;
    font-weight: 700;
    height: 16px;
    min-width: 16px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
    border: 2px solid var(--clr-white);
}

.cart-icon-wrapper {
    position: relative;
}

.icon-only .action-title-mobile {
    display: none;
}

.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    color: var(--clr-navy);
}

/* ==========================================================================
   3. MAIN NAVIGATION
   ========================================================================== */
.main-nav {
    background-color: var(--clr-navy);
    color: var(--clr-white);
}

.main-nav .container {
    display: flex;
}

.nav-all-categories {
    background-color: var(--clr-blue);
    padding: 15px 25px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    cursor: pointer;
    min-width: 260px;
}

.nav-links {
    display: flex;
    flex: 1;
}

.nav-links li {
    display: flex;
}

.nav-links a {
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.9rem;
    font-weight: 500;
}

.nav-links a.active, .nav-links a:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.nav-links a.active {
    background-color: rgba(255,255,255,0.15); /* Slightly lighter for active */
}

.has-dropdown a i {
    font-size: 0.7rem;
    margin-top: 2px;
}

/* ==========================================================================
   4. HERO SECTION
   ========================================================================== */
.hero {
    position: relative;
    background-color: #030F26; /* Darker than navy for depth */
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Use a gradient as placeholder if no image */
    background: linear-gradient(135deg, rgba(6,27,70,0.9) 0%, rgba(3,15,38,0.95) 100%);
    z-index: 1;
}

/* If a background image is available, this would layer underneath the gradient or the gradient would have lower opacity */

.hero-container {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 60px;
    padding-bottom: 60px;
    min-height: 480px;
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.hero-label {
    display: inline-block;
    background-color: var(--clr-blue);
    color: var(--clr-white);
    padding: 6px 12px;
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: var(--border-radius-sm);
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero-description {
    color: #D1D5DB;
    font-size: 1.1rem;
    margin-bottom: 35px;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 15px;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    position: relative;
}

.floating-camera {
    max-width: 120%; /* Let it break grid slightly on right */
    height: auto;
    filter: drop-shadow(0 20px 30px rgba(0,0,0,0.5));
    /* Add slight animation for "smart" feel */
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

/* ==========================================================================
   5. TRUST STRIP
   ========================================================================== */
.trust-strip {
    background-color: var(--clr-navy-dark);
    color: var(--clr-white);
    padding: 25px 0;
}

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

.trust-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.trust-icon {
    font-size: 1.8rem;
    color: var(--clr-white);
    opacity: 0.9;
}

.trust-text h4 {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 2px;
}

.trust-text p {
    font-size: 0.8rem;
    color: #A0ABC0;
}

.trust-separator {
    width: 1px;
    height: 40px;
    background-color: rgba(255,255,255,0.1);
}

/* ==========================================================================
   6. SHOP BY CATEGORY
   ========================================================================== */
.category-grid {
    display: grid;
    grid-template-columns: repeat(9, 1fr);
    gap: 15px;
}

.category-card {
    background-color: var(--clr-white);
    border: 1px solid var(--clr-border);
    border-radius: var(--border-radius-md);
    padding: 15px 10px;
    text-align: center;
    transition: all 0.2s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.category-card:hover {
    border-color: var(--clr-blue);
    box-shadow: var(--shadow-sm);
    transform: translateY(-2px);
}

.category-img {
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}

.category-img img {
    max-height: 100%;
    object-fit: contain;
}

.category-card h3 {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--clr-text-main);
    line-height: 1.3;
}

/* ==========================================================================
   7. FEATURED PRODUCTS
   ========================================================================== */
.product-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}

.product-card {
    background-color: var(--clr-white);
    border: 1px solid var(--clr-border);
    border-radius: var(--border-radius-md);
    padding: 15px;
    position: relative;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.2s ease;
}

.product-card:hover {
    box-shadow: var(--shadow-card);
}

.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    color: var(--clr-white);
    font-size: 0.65rem;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: var(--border-radius-sm);
    z-index: 1;
}

.badge-new { background-color: var(--clr-accent-new); }
.badge-bestseller { background-color: var(--clr-accent-bestseller); }
.badge-hot { background-color: var(--clr-accent-hot); }

.product-image {
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.product-image img {
    max-height: 100%;
    object-fit: contain;
}

.product-info {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.product-title {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--clr-text-main);
    margin-bottom: 8px;
    line-height: 1.4;
    height: 2.8em; /* Force 2 lines max roughly */
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.product-price {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--clr-navy);
    margin-bottom: 8px;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 15px;
}

.stars {
    color: #F59E0B;
    font-size: 0.75rem;
}

.reviews {
    font-size: 0.75rem;
    color: var(--clr-text-muted);
}

.product-actions-secondary {
    display: flex;
    gap: 8px;
    margin-bottom: 15px;
    margin-top: auto; /* Push to bottom before button */
}

.add-to-cart {
    margin-top: auto;
}

/* ==========================================================================
   8. SECURITY SOLUTIONS FOR EVERY NEED
   ========================================================================== */
.solutions-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.solution-card {
    border: 1px solid var(--clr-border);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.solution-img {
    height: 120px;
    background-size: cover;
    background-position: center;
    background-color: var(--clr-bg-light); /* fallback */
}

.solution-content {
    padding: 0 15px 20px;
    position: relative;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.solution-icon {
    width: 44px;
    height: 44px;
    background-color: var(--clr-blue);
    color: var(--clr-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    position: absolute;
    top: -22px;
    left: 15px;
    border: 3px solid var(--clr-white);
}

.solution-content h3 {
    margin-top: 35px;
    font-size: 1rem;
    font-weight: 700;
    color: var(--clr-navy);
    margin-bottom: 8px;
}

.solution-content p {
    font-size: 0.85rem;
    color: var(--clr-text-muted);
    margin-bottom: 15px;
    flex: 1;
}

.view-solutions {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--clr-blue);
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.view-solutions:hover {
    color: var(--clr-navy);
}

/* ==========================================================================
   9. WHY SHOP WITH E-SAHARA TRADING?
   ========================================================================== */
.why-shop-strip {
    display: flex;
    border: 1px solid var(--clr-border);
    border-radius: var(--border-radius-md);
    background-color: var(--clr-white);
}

.why-item {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 25px 20px;
    border-right: 1px solid var(--clr-border);
}

.why-item:last-child {
    border-right: none;
}

.why-icon {
    font-size: 1.8rem;
    color: var(--clr-blue);
}

.why-text h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--clr-navy);
    margin-bottom: 2px;
}

.why-text p {
    font-size: 0.85rem;
    color: var(--clr-text-muted);
}

/* ==========================================================================
   10. TRUSTED BRANDS + HELP PANEL
   ========================================================================== */
.brands-help-container {
    display: flex;
    gap: 30px;
}

.trusted-brands {
    flex: 1;
}

.panel-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--clr-navy);
    margin-bottom: 20px;
}

.brands-grid {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.brand-logo {
    width: 120px;
    height: 55px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.brand-logo:hover {
    transform: scale(1.05);
}

.help-panel {
    background-color: var(--clr-navy);
    color: var(--clr-white);
    border-radius: var(--border-radius-md);
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 600px;
}

.help-content h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.help-content p {
    font-size: 0.9rem;
    color: #A0ABC0;
    margin-bottom: 20px;
}

.help-buttons {
    display: flex;
    gap: 15px;
}

.help-icon {
    font-size: 4rem;
    color: rgba(255,255,255,0.1);
    margin-left: 20px;
}

/* ==========================================================================
   11. FOOTER
   ========================================================================== */
.footer {
    background-color: var(--clr-navy-dark);
    color: var(--clr-white);
    padding-top: 60px;
}

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

.footer-col h4 {
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul a {
    color: #A0ABC0;
    font-size: 0.85rem;
}

.footer-col ul a:hover {
    color: var(--clr-white);
}

.footer-logo {
    display: inline-block;
    margin-bottom: 15px;
}

.footer-logo h2 {
    font-size: 1.5rem;
    font-weight: 800;
    line-height: 1;
}

.footer-logo .logo-subtitle {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 2px;
}

.company-info .tagline {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.company-info .company-desc {
    font-size: 0.85rem;
    color: #A0ABC0;
    margin-bottom: 20px;
    line-height: 1.6;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    width: 32px;
    height: 32px;
    background-color: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--clr-white);
}

.social-icons a:hover {
    background-color: var(--clr-blue);
}

.contact-info ul li {
    display: flex;
    gap: 10px;
    color: #A0ABC0;
    font-size: 0.85rem;
    line-height: 1.4;
    align-items: flex-start;
}

.contact-info ul li i {
    margin-top: 3px;
    color: var(--clr-white);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.85rem;
    color: #A0ABC0;
}

.payment-methods {
    display: flex;
    gap: 15px;
    font-size: 1.5rem;
    color: var(--clr-white);
}

/* ==========================================================================
   RESPONSIVE DESIGN
   ========================================================================== */
@media (max-width: 1200px) {
    .category-grid {
        grid-template-columns: repeat(5, 1fr);
    }
    
    .product-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .solutions-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .trust-strip .container {
        flex-wrap: wrap;
        gap: 20px;
    }
    
    .trust-item {
        flex: 1 1 45%;
    }
    
    .trust-separator {
        display: none;
    }
    
    .why-shop-strip {
        flex-wrap: wrap;
    }
    
    .why-item {
        flex: 1 1 33.33%;
        border-bottom: 1px solid var(--clr-border);
    }
    
    .why-item:nth-child(3n) {
        border-right: none;
    }
    
    .brands-help-container {
        flex-direction: column;
    }
    
    .help-panel {
        max-width: 100%;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .main-nav .nav-links {
        display: none; /* Hide for tablet/mobile */
    }
    
    .nav-all-categories {
        flex: 1; /* Take full width */
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .top-bar {
        display: none; /* Hide top bar on mobile */
    }
    
    .mobile-menu-btn {
        display: block;
        order: 3;
        margin-left: 15px;
    }

    .main-header .container {
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
    }
    
    .logo {
        order: 1;
        margin: 0;
    }
    
    .header-actions {
        order: 2;
        margin-left: auto;
    }

    .header-actions .action-item:not(.cart-item) {
        display: none;
    }
    
    .header-actions .cart-item {
        gap: 0;
    }

    .header-actions .action-text {
        display: none;
    }
    
    .search-bar {
        order: 4;
        display: flex;
        width: 100%;
        margin-top: 15px;
        max-width: 100%;
    }

    .search-dropdown {
        display: none;
    }
    
    .hero-container {
        flex-direction: column;
        text-align: center;
        padding-top: 40px;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-image {
        margin-top: 30px;
    }
    
    .category-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .solutions-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .why-item {
        flex: 1 1 50%;
    }
    
    .why-item:nth-child(2n) {
        border-right: none;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .category-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .product-grid {
        grid-template-columns: 1fr;
    }
    
    .solutions-grid {
        grid-template-columns: 1fr;
    }
    
    .trust-item, .why-item {
        flex: 1 1 100%;
        border-right: none !important;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
}

/* ==========================================================================
   MOBILE MENU DRAWER
   ========================================================================== */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(6, 27, 70, 0.7);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

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

.mobile-drawer {
    position: fixed;
    top: 0;
    left: -100%;
    width: 85%;
    max-width: 360px;
    height: 100%;
    background-color: var(--clr-navy);
    color: var(--clr-white);
    z-index: 1000;
    transition: left 0.3s ease;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    box-shadow: 2px 0 10px rgba(0,0,0,0.5);
}

.mobile-drawer.active {
    left: 0;
}

.mobile-drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.mobile-drawer-logo h2 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--clr-white);
    line-height: 1;
}

.mobile-drawer-logo .logo-subtitle {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--clr-blue-light);
}

.close-drawer-btn {
    color: var(--clr-white);
    font-size: 1.5rem;
}

.mobile-drawer-content {
    flex: 1;
    overflow-y: auto;
    padding: 10px 0;
}

.mobile-nav-links {
    list-style: none;
}

.mobile-nav-links > li > a, 
.accordion-btn {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 15px 20px;
    color: var(--clr-white);
    font-size: 1rem;
    font-weight: 600;
    text-align: left;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.mobile-nav-links > li > a:hover, 
.accordion-btn:hover {
    background-color: rgba(255,255,255,0.05);
}

.accordion-btn .transition-icon {
    transition: transform 0.3s ease;
}

.accordion-btn[aria-expanded="true"] .transition-icon {
    transform: rotate(180deg);
}

.accordion-content {
    display: none;
    background-color: var(--clr-navy-dark);
    list-style: none;
}

.accordion-content.active {
    display: block;
}

.accordion-content li a {
    display: block;
    padding: 12px 20px 12px 30px;
    color: #A0ABC0;
    font-size: 0.95rem;
}

.accordion-content li a:hover {
    color: var(--clr-white);
}

.mobile-drawer-footer {
    padding: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.mobile-contact {
    display: flex;
    flex-direction: column;
    margin-bottom: 15px;
}

.contact-label {
    font-size: 0.8rem;
    color: #A0ABC0;
}

.contact-phone {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--clr-white);
}
