/* Mobile Navigation Styles */
.mobile-navbar {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.5rem 1rem;
}

.mobile-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 1rem;
    font-weight: 500;
    text-decoration: none;
    border-radius: 0.375rem;
    transition: all 0.2s ease;
    cursor: pointer;
    border: none;
}

.mobile-btn-primary {
    background-color: #22c55e !important;
    color: #fff !important;
}

.mobile-btn-primary:hover {
    background-color: #16a34a !important;
    color: #fff !important;
}

.mobile-btn-ghost {
    background-color: transparent;
    color: #374151;
}

.mobile-btn-ghost:hover {
    background-color: #f3f4f6;
}

.mobile-btn-circle {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    padding: 0;
}

.mobile-drawer {
    position: relative;
}

.mobile-drawer-toggle {
    display: none;
}

.mobile-drawer-side {
    position: fixed;
    top: 0;
    right: 0;
    width: 20rem;
    height: 100vh;
    background: white;
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
    z-index: 1000;
}

.mobile-drawer-toggle:checked ~ .mobile-drawer-side {
    transform: translateX(0);
}

.mobile-drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-drawer-toggle:checked ~ .mobile-drawer-overlay {
    opacity: 1;
    visibility: visible;
}

.mobile-dropdown {
    margin: 0;
    padding: 0;
}

.mobile-dropdown summary {
    cursor: pointer;
    padding: 0.5rem 0;
    font-weight: 500;
    transition: color 0.2s ease;
}

.mobile-dropdown summary:hover {
    color: #3b82f6;
}

.mobile-dropdown ul {
    min-width: 200px;
    max-width: 95vw;
    padding: 0.15rem 0;
}

.mobile-dropdown ul li {
    margin: 0.25rem 0;
}

.mobile-dropdown ul li a {
    padding: 0.3rem 0.8rem;
    line-height: 1.3;
    font-size: 15px;
    white-space: normal;
    box-sizing: border-box;
}

.mobile-dropdown ul li a:hover {
    color: #3b82f6;
}

.mobile-dropdown ul {
    border: none;
    box-shadow: 0 2px 8px -2px rgba(0,0,0,0.08);
}

.mobile-menu {
    padding: 1rem;
    width: 20rem;
    min-height: 100%;
    background: white;
    color: #374151;
}

.mobile-menu ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.mobile-menu ul li {
    margin: 0.25rem 0;
}

.mobile-menu ul li a {
    color: #222;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
    display: block;
    padding: 0.5rem 0;
}

.mobile-menu ul li a:hover {
    color: #22c55e;
    text-decoration: none;
}

.mobile-btn-quote {
    background-color: #22c55e !important;
    color: #fff !important;
    border: none;
}

.mobile-btn-quote:hover {
    background-color: #16a34a !important;
    color: #fff !important;
}

/* Mobile specific responsive */
@media (min-width: 769px) {
    .mobile-header {
        display: none !important;
    }
} 