/* =========================================================
   MAIN CONTAINER
   ========================================================= */

.ga-dropdown-container,
.ga-dropdown-container * {
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

.ga-dropdown-container {
    position: relative;
    width: 100%;
    max-width: 100%;
    z-index: 1000;
}


/* =========================================================
   NAVIGATION
   ========================================================= */

.ga-navigation {
    display: flex;
    align-items: center;
    gap: 30px;
    width: 100%;
    padding: 20px;
    background: #fff;
    border-bottom: 1px solid #ccc;
    position: relative;
	
}


/* =========================================================
   NAVIGATION ITEMS
   ========================================================= */

.ga-nav-item {
    position: relative;
    display: inline-block;
}

.ga-trigger-link {
    display: inline-block;
    text-decoration: none;
    color: #0056b3;
    padding: 10px 0;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
}

.ga-trigger-link:hover {
    color: #0056b3;
}


/* =========================================================
   CENTERED MEGA MENU
   ========================================================= */

.ga-megamenu-panel {
    display: none;
    position: fixed;
    left: 50%;
    top: 120px;
    transform: translateX(-50%);

    width: min(1200px, calc(100vw - 40px));
    max-width: 1200px;
    max-height: calc(100vh - 100px);

    overflow-y: auto;
    overflow-x: hidden;

    background-color: #ffffff;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);

    border-top: 3px solid #c0392b;

    padding: 30px;

    z-index: 99999;
    border-radius: 4px;
}


/* =========================================================
   SHOW DROPDOWN
   ========================================================= */

.ga-nav-item:hover > .ga-megamenu-panel {
    display: block;
}


/* =========================================================
   MENU HEADER
   ========================================================= */

.ga-menu-header {
    display: flex;
    align-items: center;
    border-bottom: 2px solid #eee;
    padding-bottom: 12px;
    margin-bottom: 25px;
}

.ga-menu-title {
    color: #444;
    font-size: 20px;
    margin-right: 15px;
    font-weight: bold;
}

.ga-browse-all-btn {
    background-color: #0056b3;
    color: #fff;
    border: none;
    padding: 7px 14px;
    cursor: pointer;
    font-weight: bold;
    font-size: 13px;
    border-radius: 3px;
}


/* =========================================================
   4 COLUMN GRID
   ========================================================= */

.ga-grid-layout {
    display: grid;

    grid-template-columns: repeat(4, minmax(0, 1fr));

    column-gap: 25px;
    row-gap: 30px;

    width: 100%;
	
    max-width: 100%;

    margin: 0 auto;
}


/* =========================================================
   GRID CARD
   ========================================================= */

.ga-service-card {
    display: flex;
    gap: 12px;

    align-items: flex-start;

    background: transparent;
    border: none;

    text-align: left;

    min-width: 0;
    width: 100%;
}


/* =========================================================
   CARD IMAGE
   ========================================================= */

.ga-card-thumb {
    width: 85px;
    height: 65px;

    object-fit: cover;

    border-radius: 3px;

    flex-shrink: 0;
}


/* =========================================================
   CARD BODY
   ========================================================= */

.ga-card-body {
    min-width: 0;
    overflow: hidden;
}

.ga-card-body h3 {
    font-size: 14px;
    color: #0056b3;
    margin: 0 0 5px 0;
    font-weight: bold;
    line-height: 1.25;
}

.ga-card-body p {
    font-size: 12px;
    color: #666;
    line-height: 1.4;
    margin: 0;
}


/* =========================================================
   CTA BOX
   ========================================================= */

.ga-cta-box {
    border: 2px solid #e2e8f0;
    border-radius: 6px;

    display: flex;
    align-items: center;

    padding: 15px;
    gap: 12px;

    background-color: #fffaf5;

    cursor: pointer;
    text-decoration: none;

    min-width: 0;
    width: 100%;
}

.ga-cta-phone-icon {
    font-size: 28px;
    color: #e67e22;
    line-height: 1;
    flex-shrink: 0;
}

.ga-cta-text {
    font-size: 15px;
    color: #c0392b;
    font-weight: bold;
    line-height: 1.3;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1100px) {

    .ga-megamenu-panel {
        width: calc(100vw - 30px);
        padding: 25px;
    }

    .ga-grid-layout {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}


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

@media (max-width: 600px) {

    .ga-navigation {
        gap: 20px;
        padding: 15px;
        flex-wrap: wrap;
    }

    .ga-megamenu-panel {
        width: calc(100vw - 30px);
        max-width: calc(100vw - 30px);

        top: 65px;

        padding: 20px;

        max-height: calc(100vh - 80px);
    }

    .ga-grid-layout {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .ga-menu-header {
        flex-wrap: wrap;
        gap: 10px;
    }

    .ga-card-thumb {
        width: 80px;
        height: 60px;
    }
}


/* =========================================================
   VERY SMALL MOBILE
   ========================================================= */

@media (max-width: 400px) {

    .ga-megamenu-panel {
        width: calc(100vw - 20px);
        max-width: calc(100vw - 20px);
        padding: 15px;
    }

    .ga-service-card {
        gap: 8px;
    }

    .ga-card-thumb {
        width: 70px;
        height: 55px;
    }
}