/**
 * ========================================
 * RESPONSIVE STYLES FOR ELEMENTOR THEME
 * ========================================
 * 
 * STRICT RULES:
 * - NO HTML/PHP modifications
 * - Desktop (≥1200px) layout unchanged
 * - Mobile/Tablet get hamburger menu
 * - Only CSS-based responsive adjustments
 * 
 * BREAKPOINTS:
 * - ≤480px   (mobile)
 * - 481–768px (large mobile / tablet)
 * - 769–1024px (tablet)
 * - 1025–1199px (small desktop)
 * - ≥1200px (desktop – NO CHANGES)
 */

/* ========================================
   HAMBURGER MENU STYLES
   ======================================== */

/* Hamburger button - hidden on desktop */
.mobile-menu-toggle {
    display: none;
    position: relative;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
}

.mobile-menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: #fff;
    transition: all 0.3s ease;
    border-radius: 2px;
}

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

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

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

/* Mobile menu overlay */
.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

/* Hide mobile menu footer on desktop */
.mobile-menu-footer {
    display: none;
}


/* ========================================
   BREAKPOINT: < 1200px (TABLET & MOBILE)
   ======================================== */

@media (max-width: 1199px) {

    /* === HEADER RESPONSIVE === */

    /* LAYOUT: Header layout for mobile/tablet */
    .site-header {
        width: 100%;
        flex-wrap: nowrap;
        position: fixed;
        top: 0;
        z-index: 1002;
        background-color: #0B4C84;
        justify-content: space-between;
        align-items: center;
        padding: 8px 25px;
        box-sizing: border-box;
    }

    /* LAYOUT: Left section on mobile - logo only, menu moves to hamburger */
    .header-left {
        gap: 15px;
        width: auto;
        flex: 0 1 auto;
        min-width: 0;
    }

    /* LAYOUT: Right section on mobile - appointment button + hamburger */
    .header-right {
        gap: 15px;
        width: auto;
        order: 2;
        flex: 0 1 auto;
        min-width: 0;
    }

    .logo {
        width: auto;
        max-width: 140px;
        flex: 0 0 auto;
    }

    .logo img {
        height: 40px;
    }

    /* Show hamburger menu */
    .mobile-menu-toggle {
        display: flex;
        order: 3;
        margin-left: 0;
    }

    /* MODIFIED: Hide desktop navigation, show in hamburger */
    .menu {
        position: fixed;
        top: 56px;
        left: -100%;
        width: 280px;
        height: calc(100vh - 56px);
        background-color: #0B4C84;
        z-index: 1000;
        transition: left 0.3s ease;
        overflow-y: auto;
        padding: 0;
        box-shadow: 2px 0 8px rgba(0, 0, 0, 0.2);
        display: flex;
        flex-direction: column;
    }

    .menu.active {
        left: 0;
    }

    .menu>ul {
        flex-direction: column;
        gap: 0;
        align-items: stretch;
        padding: 24px 0;
        flex: 1;
    }

    /* Mobile menu footer with buttons */
    .mobile-menu-footer {
        margin-top: auto;
        padding: 20px 16px;
        border-top: 1px solid rgba(255, 255, 255, 0.15);
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    .menu>ul>li {
        width: 100%;
    }

    .menu>ul>li>a {
        display: block;
        padding: 14px 24px;
        border-radius: 0;
        font-size: 16px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .menu>ul>li>a:hover,
    .menu>ul>li>a:focus {
        background: rgba(255, 255, 255, 0.1);
    }

    /* Submenu adjustments for mobile */
    .children {
        position: static;
        min-width: 100%;
        background: rgba(0, 0, 0, 0.2);
        border-radius: 0;
        box-shadow: none;
        padding: 0;
        margin-top: 0;
        display: none !important;
        max-height: 0 !important;
        overflow: hidden;
        transition: max-height 0.3s ease;
        list-style: none;
    }

    .page_item_has_children.submenu-open>.children {
        display: block !important;
        max-height: 500px !important;
    }

    /* Parent menu items with children - flex layout */
    .page_item_has_children>a {
        display: flex !important;
        justify-content: space-between;
        align-items: center;
        position: relative;
    }

    /* Arrow toggle button */
    .submenu-toggle {
        background: none;
        border: none;
        color: #fff;
        font-size: 16px;
        padding: 0 8px;
        cursor: pointer;
        transition: transform 0.3s ease;
        margin-left: auto;
        flex-shrink: 0;
        line-height: 1;
    }

    .submenu-open>a>.submenu-toggle {
        transform: rotate(180deg);
    }

    .children li {
        list-style: none;
    }

    .children li a {
        color: #fff;
        padding: 12px 24px 12px 40px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .children li a:hover,
    .children li a:focus {
        background: rgba(255, 255, 255, 0.08);
    }


    /* MODIFIED: Hide call button in header on mobile, show appointment button */
    .header-right .book-appoinment-outline {
        display: none !important;
    }

    /* MODIFIED: Hide appointment button in mobile header */
    .header-right .book-appoinment-btn {
        display: none !important;
    }

    /* MODIFIED: Show both buttons in mobile menu footer */
    .mobile-menu-footer .book-appoinment-outline {
        display: flex !important;
        width: 100%;
        max-width: 100%;
        height: 48px;
        justify-content: center;
        align-items: center;
        order: 1;
        min-width: auto;
        border-color: rgba(218, 165, 31, 0.5);
        opacity: 1 !important;
        visibility: visible !important;
        transition: none !important;
    }

    /* MODIFIED: Show appointment button in mobile menu footer */
    .mobile-menu-footer .book-appoinment-btn {
        display: flex !important;
        width: 100%;
        max-width: 100%;
        height: 48px;
        justify-content: center;
        align-items: center;
        order: 2;
        opacity: 1 !important;
        visibility: visible !important;
        transition: none !important;
        background-color: #DAA51F;
        color: #fff;
        text-decoration: none;
        font-weight: 500;
        border-radius: 8px;
        gap: 8px;
    }

    /* === PRIMARY NAV HAMBURGER MENU SUPPORT === */

    /* Hide primary navigation on mobile, show in hamburger */
    .primary-nav {
        position: fixed;
        top: 56px;
        left: -100%;
        width: 280px;
        height: calc(100vh - 60px);
        background-color: #0B4C84;
        z-index: 1000;
        transition: left 0.3s ease;
        overflow-y: auto;
        padding: 0;
        box-shadow: 2px 0 8px rgba(0, 0, 0, 0.2);
        display: flex;
        flex-direction: column;
    }

    .primary-nav.active {
        left: 0;
    }

    .primary-menu {
        flex-direction: column;
        gap: 0;
        align-items: stretch;
        padding: 24px 0;
        flex: 1;
    }

    .primary-menu>li {
        width: 100%;
    }

    .primary-menu>li>a {
        display: block;
        padding: 14px 24px;
        border-radius: 0;
        font-size: 16px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .primary-menu>li>a:hover,
    .primary-menu>li>a:focus {
        background: rgba(255, 255, 255, 0.1);
    }

    .menu-item-has-children>.sub-menu {
        position: static;
        min-width: 100%;
        background: rgba(0, 0, 0, 0.2);
        border-radius: 0;
        box-shadow: none;
        padding: 0;
        margin-top: 0;
        display: none !important;
        max-height: 0 !important;
        overflow: hidden;
        transition: max-height 0.3s ease;
        list-style: none;
    }

    .menu-item-has-children.submenu-open>.sub-menu {
        display: block !important;
        max-height: 500px !important;
    }

    /* Parent menu items with children - flex layout */
    .menu-item-has-children>a {
        display: flex !important;
        justify-content: space-between;
        align-items: center;
        position: relative;
    }

    /* LAYOUT FIX: Hide desktop dropdown arrow on mobile */
    .menu-item-has-children>a::after {
        display: none !important;
    }

    /* Arrow toggle button for primary-menu */
    .menu-item-has-children .submenu-toggle {
        background: none;
        border: none;
        color: #fff;
        font-size: 16px;
        padding: 0 8px;
        cursor: pointer;
        transition: transform 0.3s ease;
        margin-left: auto;
        flex-shrink: 0;
        line-height: 1;
    }

    .menu-item-has-children.submenu-open>a>.submenu-toggle {
        transform: rotate(180deg);
    }

    .sub-menu li {
        list-style: none;
    }

    .sub-menu li a {
        color: #fff;
        padding: 12px 24px 12px 40px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .sub-menu li a:hover,
    .sub-menu li a:focus {
        background: rgba(255, 255, 255, 0.08);
    }



    /* === FOOTER RESPONSIVE === */

    .contact-cta {
        padding: 40px 24px;
        border-radius: 30px 30px 0 0;
    }

    .contact-cta__inner {
        flex-direction: column;
        gap: 32px;
    }

    .contact-cta__left {
        width: 100% !important;
    }

    .contact-cta__right {
        flex: 1 1 100%;
        width: 100% !important;
        max-width: 100% !important;
    }

    /* Optimize contact list */
    .contact-list {
        width: 100% !important;
    }

    .contact-list li {
        display: flex;
        align-items: center;
        gap: 12px;
    }

    .contact-list .icon {
        flex-shrink: 0;
    }

    .contact-list .contact-list__label {
        display: inline;
    }

    .contact-list a,
    .contact-list .location {
        display: inline;
        word-break: break-word;
    }

    .contact-cta__title {
        font-size: clamp(24px, 5vw, 32px);
    }

    .form-row--half {
        flex-direction: column;
        gap: 14px;
    }

    /* Fix form inputs to full width */
    .callback-form input[type="text"],
    .callback-form input[type="tel"],
    .callback-form input[type="email"],
    .callback-form textarea {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }

    .form-row,
    .form-row--half {
        width: 100% !important;
        max-width: 100% !important;
    }

    .form-row--half input {
        width: 100% !important;
    }

    /* === FIX HORIZONTAL OVERFLOW === */

    /* Prevent body overflow */
    html,
    body {
        max-width: 100vw !important;
        overflow-x: hidden !important;
    }

    /* Fix site-wide containers */
    .site-header,
    .site-footer,
    .contact-cta,
    .contact-cta__inner,
    .centered_contact_line {
        max-width: 100% !important;
        overflow-x: hidden !important;
        padding: 0 10px;
    }

    /* === ELEMENTOR CONTAINERS === */

    /* Allow Elementor flexbox containers to wrap */
    .elementor-container {
        flex-wrap: wrap !important;
        max-width: 100% !important;
        overflow-x: hidden !important;
    }

    .elementor-column {
        width: 100% !important;
        margin-bottom: 20px;
        max-width: 100% !important;
    }

    /* Prevent horizontal overflow */
    .elementor-section,
    .e-con,
    .e-container,
    .elementor-widget-wrap,
    .elementor-element {
        max-width: 100% !important;
        overflow-x: hidden !important;
    }

    /* Responsive images */
    /* .elementor-widget-image img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
    } */

    /* Responsive headings */
    /* .elementor-heading-title {
        font-size: clamp(24px, 5vw, 36px) !important;
    } */

    /* Responsive buttons */
    /* .elementor-button {
        font-size: 14px !important;
        padding: 12px 24px !important;
        max-width: 100% !important;
    } */

    /* Responsive spacing */
    .elementor-section {
        padding: 40px 20px !important;
        margin: 0 !important;
    }

    /* Fix any fixed width elements */
    .elementor-widget-container,
    .elementor-widget {
        max-width: 100% !important;
    }

    img,
    video,
    iframe,
    embed,
    object {
        max-width: 100% !important;
        height: auto !important;
    }

    .line-flow-img {
        display: none !important;
    }

    .book-appoinment-btn {
        min-width: 48%;
    }
}

/* ========================================
   BREAKPOINT: 769px - 1024px (TABLET)
   ======================================== */

@media (min-width: 769px) and (max-width: 1024px) {

    .site-header {
        padding: 8px 20px;
        gap: 12px;
    }

    .header-left {
        gap: 16px;
        max-width: calc(100% - 160px);
        flex: 1 1 auto;
    }

    .header-right {
        gap: 8px;
        flex: 0 0 auto;
    }

    .logo {
        width: 140px;
        flex-shrink: 0;
    }

    .logo img {
        max-height: 40px;
    }

    .primary-menu {
        gap: clamp(4px, 0.5vw, 8px);
    }

    .primary-menu>li>a {
        font-size: 12px;
        padding: 6px 6px;
    }

    .book-appoinment-outline {
        width: auto;
        min-width: max-content;
        height: auto;
        padding: 6px 10px;
        font-size: 11px;
    }

    .book-appoinment-outline .call-number {
        font-size: 12px;
    }

    .book-appoinment-outline .call-timing {
        font-size: 9px;
    }

    .book-appoinment-btn {
        width: auto;
        min-width: max-content;
        height: auto;
        padding: 6px 10px;
        font-size: 11px;
    }

    .contact-cta {
        padding: 40px 20px;
    }

    .contact-cta__title {
        font-size: 28px;
    }

    /* Tablet-specific Elementor adjustments */
    .elementor-section {
        padding: 40px 20px !important;
    }

    .elementor-column {
        width: 50% !important;
    }

    .elementor-column:nth-child(odd):last-child {
        width: 100% !important;
    }

    #carouselGrid .e-con.e-child {
        width: 300px !important;
    }

    .line-flow-img {
        display: none !important;
    }

    /* FOOTER TABLET FIXES */
    .uic-footer__header {
        flex-wrap: nowrap;
        gap: 16px;
    }

    .uic-footer__branding {
        gap: 16px;
        flex: 0 0 auto;
    }

    .uic-footer__logo {
        max-width: 100px;
        height: 50px;
    }

    .uic-footer__site-title {
        font-size: 18px !important;
    }

    .uic-footer__tagline {
        font-size: 12px !important;
    }

    .uic-footer__cta-buttons {
        flex: 0 0 auto;
        flex-wrap: nowrap;
        gap: 8px;
    }

    .uic-footer__btn {
        padding: 8px 12px !important;
        font-size: 12px !important;
        white-space: nowrap;
    }
}

/* ========================================
   BREAKPOINT: 481px - 768px (LARGE MOBILE)
   ======================================== */

@media (min-width: 481px) and (max-width: 768px) {

    .site-header {
        padding: 8px 16px;
        gap: 8px;
    }

    .header-left {
        gap: 12px;
        max-width: calc(100% - 140px);
        flex: 1 1 auto;
    }

    .header-right {
        gap: 6px;
        flex: 0 0 auto;
    }

    .logo {
        width: 110px;
        flex-shrink: 0;
    }

    .logo img {
        max-height: 35px;
    }

    .primary-menu {
        gap: clamp(2px, 0.4vw, 6px);
    }

    .primary-menu>li>a {
        font-size: 11px;
        padding: 4px 4px;
    }

    .book-appoinment-outline {
        width: auto;
        height: 40px;
    }

    .book-appoinment-outline .call-number {
        font-size: 11px;
    }

    .book-appoinment-outline .call-timing {
        font-size: 8px;
    }

    .book-appoinment-btn {
        width: auto;
        min-width: max-content;
        height: auto;
        padding: 6px 8px;
        font-size: 10px;
        display: inline-flex !important;
    }

    .contact-cta {
        padding: 28px 0px;
    }

    .contact-cta__title {
        font-size: 22px;
    }

    .contact-cta__subtitle {
        font-size: 13px;
    }

    /* Large mobile Elementor adjustments */
    .elementor-section {
        padding: 32px 16px !important;
    }

    .line-flow-img {
        display: none !important;
    }
}

/* ========================================
   BREAKPOINT: ≤480px (MOBILE)
   ======================================== */

@media (max-width: 480px) {

    /* === HEADER MOBILE === */

    /* LAYOUT: Mobile header padding from JSON */
    .site-header {
        padding: 8px 20px;
    }


    .logo {
        width: auto;
        max-width: 120px;
    }

    .logo img {
        height: 35px;
    }

    .mobile-menu-toggle {
        width: 36px;
        height: 36px;
    }

    .mobile-menu-toggle span {
        width: 20px;
    }

    /* Hide call button on very small screens */
    .header-right .book-appoinment-outline {
        display: none;
    }

    /* Mobile menu adjustments */
    .menu {
        top: 60px;
        height: calc(100vh - 60px);
        width: 100%;
        left: -100%;
    }

    .mobile-menu-overlay {
        top: 60px;
    }

    /* === FOOTER MOBILE === */

    .contact-cta {
        padding: 28px 16px;
        border-radius: 20px 20px 0 0;
    }

    .contact-cta__title {
        font-size: 22px;
        margin-bottom: 12px;
    }

    .contact-cta__subtitle {
        font-size: 13px;
    }

    .contact-cta__heading {
        font-size: 18px;
    }

    .contact-cta__text {
        font-size: 14px;
    }

    .contact-list li {
        font-size: 14px;
        gap: 10px;
        margin-bottom: 12px;
    }

    .contact-list .icon {
        width: 32px;
        height: 32px;
    }

    .contact-list .icon img {
        width: 20px;
        height: auto;
    }

    .callback-form input[type="text"],
    .callback-form input[type="tel"],
    .callback-form input[type="email"],
    .callback-form textarea {
        padding: 12px 14px;
        font-size: 14px;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }

    .form-row {
        width: 100% !important;
        max-width: 100% !important;
    }

    .form-row--half {
        width: 100% !important;
    }

    .form-row--half input {
        width: 100% !important;
    }

    .btn-gold {
        padding: 12px 18px;
        font-size: 14px;
    }

    .privacy {
        font-size: 12px;
    }

    /* === ELEMENTOR MOBILE === */

    .elementor-section {
        padding: 30px 16px !important;
    }

    .elementor-heading-title {
        font-size: clamp(18px, 4vw, 24px) !important;
        line-height: 1.3 !important;
    }

    /* .elementor-button {
        font-size: 13px !important;
        padding: 10px 20px !important;
        width: 100% !important;
        justify-content: center !important;
    } */

    .elementor-widget-text-editor {
        font-size: 14px !important;
    }

    /* Fix carousel on mobile */
    #carouselGrid {
        grid-auto-flow: column !important;
        gap: 0px !important;
    }

    /* #carouselGrid .e-con.e-child {
        width: 275px !important;
    } */

    /* Prevent overflow issues */
    body {
        overflow-x: hidden !important;
    }

    .elementor-section,
    .e-con,
    .elementor-container {
        overflow-x: hidden !important;
    }

    .line-flow-img {
        display: none !important;
    }
}

/* ========================================
   BREAKPOINT: 1025px - 1199px (SMALL DESKTOP)
   ======================================== */

@media (min-width: 1025px) and (max-width: 1199px) {

    .site-header {
        padding: 8px 24px;
        gap: 12px;
    }

    .header-left {
        gap: 16px;
        max-width: calc(100% - 200px);
        flex: 1 1 auto;
        min-width: 300px;
    }

    .header-right {
        gap: 8px;
        flex: 0 0 auto;
        min-width: auto;
    }

    .logo {
        width: 160px;
        flex-shrink: 0;
    }

    .menu>ul {
        gap: 12px;
        flex-wrap: nowrap;
    }

    .menu>ul>li>a {
        font-size: 13px;
        padding: 8px 8px;
    }

    .primary-menu {
        gap: clamp(4px, 0.5vw, 8px);
    }

    .book-appoinment-outline {
        width: auto;
        min-width: max-content;
        height: auto;
        padding: 8px 12px;
        font-size: 12px;
    }

    .book-appoinment-outline .call-number {
        font-size: 14px;
    }

    .book-appoinment-outline .call-timing {
        font-size: 11px;
    }

    .book-appoinment-btn {
        width: auto;
        min-width: max-content;
        height: auto;
        padding: 8px 12px;
        font-size: 12px;
    }

    .contact-cta__inner {
        padding: 0 10px;
    }

    .elementor-section {
        padding: 60px 40px !important;
    }

    .line-flow-img {
        display: none !important;
    }
}

/* ========================================
   ACCESSIBILITY & TOUCH IMPROVEMENTS
   ======================================== */

@media (max-width: 1199px) {

    /* Touch-friendly tap targets */
    .menu>ul>li>a,
    .children li a,
    .mobile-menu-toggle {
        min-height: 44px;
        display: flex;
        align-items: center;
    }

    /* Focus states for keyboard navigation */
    .mobile-menu-toggle:focus {
        outline: 2px solid #DAA51F;
        outline-offset: 2px;
    }

    .menu>ul>li>a:focus,
    .children li a:focus {
        outline: 2px solid #DAA51F;
        outline-offset: -2px;
    }

    /* Smooth scrolling for mobile menu */
    .menu {
        -webkit-overflow-scrolling: touch;
    }

    .line-flow-img {
        display: none !important;
    }
}

/* ========================================
   UTILITY CLASSES FOR ELEMENTOR
   ======================================== */

@media (max-width: 1199px) {

    /* Hide on mobile/tablet */
    .hide-mobile {
        display: none !important;
    }

    /* Full width on mobile */
    .mobile-full-width {
        width: 100% !important;
    }

    /* Center on mobile */
    .mobile-center {
        text-align: center !important;
        justify-content: center !important;
        align-items: center !important;
    }

    /* Stack on mobile */
    .mobile-stack {
        flex-direction: column !important;
    }

    .line-flow-img {
        display: none !important;
    }
}

@media (min-width: 1200px) {

    /* Hide on desktop */
    .hide-desktop {
        display: none !important;
    }
}

/* ========================================
   PRIMARY MENU RESPONSIVE STYLES
   (For new primary-menu structure)
   ======================================== */

/* Tablet and smaller desktop (below 1200px) */
@media screen and (max-width: 1199px) {
    .primary-nav {
        flex: 1 1 auto;
        max-width: 100%;
    }

    .primary-menu {
        gap: 16px;
        flex-wrap: wrap;
        justify-content: start;
    }

    .primary-menu>li>a {
        padding: 8px 10px;
        font-size: 14px;
    }

    .menu-item-has-children>.sub-menu {
        min-width: 200px;
    }
}

/* Tablet (below 992px) */
@media screen and (max-width: 991px) {
    .primary-menu {
        gap: 12px;
    }

    .primary-menu>li>a {
        padding: 6px 8px;
        font-size: 13px;
    }
}

/* Mobile landscape and smaller tablets (below 768px) */
@media screen and (max-width: 767px) {
    .primary-nav {
        order: 3;
        width: 100%;
        flex-basis: 100%;
        margin-top: 15px;
    }

    .primary-menu {
        flex-direction: column;
        gap: 8px;
        width: 100%;
        align-items: stretch;
    }

    .primary-menu>li {
        width: 100%;
        text-align: left;
    }

    .primary-menu>li>a {
        display: block;
        padding: 10px 16px;
        font-size: 14px;
    }

    .menu-item-has-children>.sub-menu {
        position: static;
        box-shadow: none;
        margin-top: 4px;
        padding: 5%;
        list-style: none;
        display: none !important;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .menu-item-has-children.submenu-open>.sub-menu {
        display: block !important;
        max-height: 500px;
    }

    .sub-menu li {
        list-style: none;
    }

    .sub-menu li a {
        padding: 8px 16px;
    }
}

/* Mobile portrait (below 576px) */
@media screen and (max-width: 575px) {
    .primary-menu>li>a {
        padding: 8px 12px;
        font-size: 13px;
    }

    .sub-menu li a {
        padding: 6px 12px;
        font-size: 13px;
    }
}