/* Mobile Navigation Styles */
@media only screen and (max-width: 991px) {
    /* Top Header */
    .top_header {
        padding: 8px 0;
        background: #1a1a1a;
    }

    /* Hide Logo on Mobile */
    .brand {
        display: none !important;
    }

    /* Service Section Styles */
    .lawyer_service.service_v1 {
        background: #fff;
        padding: 60px 0;
    }

    .lawyer_service .grid_inner_item {
        background: #fff;
        border: 1px solid rgba(238, 238, 238, 0.5);
        border-radius: 8px;
        padding: 30px 25px;
        margin: 12px 8px;
        transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
        position: relative;
        z-index: 1;
        box-shadow: 0 6px 15px rgba(0, 0, 0, 0.05);
    }

    .lawyer_service .grid_inner_item:hover,
    .lawyer_service .grid_inner_item:active {
        transform: scale(1.03);
        box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1);
        border-color: transparent;
    }

    .lawyer_service .grid_inner_item .lawyer_img {
        transition: all 0.4s ease;
        transform-origin: center;
    }

    .lawyer_service .grid_inner_item:hover .lawyer_img,
    .lawyer_service .grid_inner_item:active .lawyer_img {
        transform: scale(1.08);
    }

    .lawyer_service .lawyer_content {
        margin-top: 20px;
        transition: all 0.3s ease;
    }

    .lawyer_service .lawyer_content h4 {
        margin: 12px 0;
        color: #333;
        transition: all 0.3s ease;
    }

    .lawyer_service .grid_inner_item:hover .lawyer_content h4,
    .lawyer_service .grid_inner_item:active .lawyer_content h4 {
        transform: translateY(-2px);
    }

    .lawyer_service .lawyer_content p {
        margin-bottom: 20px;
        color: #666;
        transition: all 0.3s ease;
    }

    .lawyer_service .lawyer_btn {
        transition: all 0.4s ease;
        position: relative;
        overflow: hidden;
    }

    .lawyer_service .lawyer_btn:before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: rgba(255, 255, 255, 0.2);
        transition: all 0.4s ease;
    }

    .lawyer_service .grid_inner_item:hover .lawyer_btn:before,
    .lawyer_service .grid_inner_item:active .lawyer_btn:before {
        left: 100%;
    }

    .lawyer_service .section_title {
        background: #fff;
    }

    .lawyer_service .service_slide {
        background: #fff;
    }

    .lawyer_service .container {
        background: #fff;
    }

    .lawyer_service .container-fluid {
        background: #fff;
    }

    .top_header .container-fluid {
        padding: 0 15px;
    }

    .top_header .row {
        margin: 0;
    }

    .top_header .col-lg-6 {
        padding: 0 5px;
    }

    .top_header .top_left {
        display: flex;
        align-items: center;
        flex-wrap: wrap;
        gap: 15px;
    }

    .top_header .top_left span {
        display: inline-flex;
        align-items: center;
        font-size: 12px;
        color: #fff;
        white-space: nowrap;
    }

    .top_header .top_left span i {
        width: 16px;
        margin-right: 8px;
        color: #00B374;
        text-align: center;
    }

    .top_header .top_left span a {
        color: #fff;
        text-decoration: none;
        text-overflow: ellipsis;
        overflow: hidden;
    }

    .top_header .top_right {
        display: flex;
        align-items: center;
        justify-content: flex-end;
    }

    .top_header .social {
        display: flex;
        align-items: center;
        margin: 0;
        padding: 0;
        list-style: none;
        gap: 10px;
    }

    .top_header .social li a {
        color: #fff;
        font-size: 14px;
        transition: all 0.3s;
    }

    .top_header .social li a:hover {
        color: #00B374;
    }

    /* Header Navigation */
    .header_navigation {
        padding: 10px 0;
    }

    .primary_menu {
        display: none;
    }

    .mobile-nav-toggle {
        display: none !important;
    }
}

/* Additional Mobile Breakpoints */
@media only screen and (max-width: 767px) {
    .top_header .top_left {
        gap: 10px;
    }

    .top_header .top_left span {
        font-size: 11px;
    }

    .top_header .top_left span i {
        width: 14px;
        margin-right: 6px;
    }

    .top_header .social {
        gap: 8px;
    }

    .top_header .social li a {
        font-size: 12px;
    }
}

@media only screen and (max-width: 575px) {
    .top_header .container-fluid {
        padding: 0 10px;
    }

    .top_header .top_left {
        gap: 8px;
    }

    .top_header .top_left span i {
        width: 12px;
        margin-right: 5px;
    }

    .top_header .social {
        gap: 6px;
    }
}

@media only screen and (max-width: 400px) {
    .top_header .top_left {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
} 