/* =====================================================
   APT COMPUTER - SERVICE BOOKING
   ===================================================== */

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html,
body {
    width: 100%;
    height: 100%;
}

body {
    font-family: "Segoe UI", Arial, sans-serif;

    background:
        linear-gradient(
            rgba(2, 16, 38, 0.72),
            rgba(2, 16, 38, 0.72)
        ),
        url("../images/bg.jpg");

    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;

    color: white;
}


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

.app {

    width: calc(100% - 30px);
    max-width: 1120px;

    min-height: 680px;

    margin: 20px auto;

    padding: 24px 32px 22px;

    border-radius: 28px;

    background:
        linear-gradient(
            135deg,
            rgba(7, 39, 78, 0.92),
            rgba(2, 19, 46, 0.88)
        );

    border: 1px solid rgba(150, 220, 255, 0.35);

    box-shadow:
        0 25px 70px rgba(0, 0, 0, 0.65),
        inset 0 1px 1px rgba(255,255,255,0.15);

    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);

}


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

.top {
    text-align: center;
}

.logo {

    width: 190px;
    height: 78px;

    object-fit: contain;

    display: block;

    margin: 0 auto 4px;

    filter:
        drop-shadow(
            0 7px 12px rgba(0,0,0,0.45)
        );
}


.welcome span {

    display: block;

    font-size: 11px;

    letter-spacing: 2px;

    font-weight: 600;

    color: rgba(255,255,255,0.75);

}


.welcome h1 {

    font-size: 34px;

    line-height: 1.1;

    margin-top: 2px;

    font-weight: 800;

    color: white;

}


.welcome p {

    margin-top: 5px;

    font-size: 13px;

    color: rgba(255,255,255,0.78);

}


/* =====================================================
   TITLE
   ===================================================== */

.title {

    display: flex;

    align-items: center;
    justify-content: center;

    gap: 18px;

    margin: 17px 0 13px;

}


.title span {

    width: 80px;
    height: 1px;

    background:
        linear-gradient(
            90deg,
            transparent,
            #19bfff
        );

}


.title span:last-child {

    background:
        linear-gradient(
            90deg,
            #19bfff,
            transparent
        );

}


.title h2 {

    font-size: 21px;

    font-weight: 700;

    white-space: nowrap;

}


/* =====================================================
   SERVICES
   ===================================================== */

.services {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 12px 16px;

}


/* Remove browser button/form appearance */

.services form {
    width: 100%;
    min-width: 0;
}


.card {

    position: relative;

    width: 100%;

    height: 105px;

    border-radius: 18px;

    border: 1px solid rgba(255,255,255,0.35);

    outline: none;

    cursor: pointer;

    display: flex;

    align-items: center;

    padding: 8px 12px;

    text-align: left;

    color: white;

    overflow: hidden;

    transition:
        transform 0.22s ease,
        filter 0.22s ease,
        box-shadow 0.22s ease;

}


/* =====================================================
   CARD COLORS
   ===================================================== */

.blue {

    background:
        linear-gradient(
            110deg,
            rgba(0,116,215,0.72),
            rgba(3,30,65,0.96)
        );

    border-color:
        rgba(0,190,255,0.75);

    box-shadow:
        inset 0 0 25px rgba(0,150,255,0.12);

}


.green {

    background:
        linear-gradient(
            110deg,
            rgba(20,120,65,0.72),
            rgba(3,38,39,0.96)
        );

    border-color:
        rgba(90,255,110,0.70);

}


.orange {

    background:
        linear-gradient(
            110deg,
            rgba(140,75,5,0.75),
            rgba(45,28,8,0.96)
        );

    border-color:
        rgba(255,180,35,0.75);

}


.purple {

    background:
        linear-gradient(
            110deg,
            rgba(82,45,150,0.76),
            rgba(25,18,62,0.96)
        );

    border-color:
        rgba(200,130,255,0.75);

}


.pink {

    background:
        linear-gradient(
            110deg,
            rgba(145,35,105,0.76),
            rgba(48,12,48,0.96)
        );

    border-color:
        rgba(255,80,180,0.75);

}


.cyan {

    background:
        linear-gradient(
            110deg,
            rgba(0,120,135,0.76),
            rgba(3,40,55,0.96)
        );

    border-color:
        rgba(35,235,255,0.75);

}


/* =====================================================
   ICON
   ===================================================== */

.icon {

    width: 82px;
    height: 82px;

    min-width: 82px;

    border-radius: 50%;

    display: flex;

    align-items: center;
    justify-content: center;

    background:
        rgba(255,255,255,0.11);

    border:
        1px solid rgba(255,255,255,0.28);

    box-shadow:
        inset 0 0 18px rgba(255,255,255,0.08),
        0 0 20px rgba(0,0,0,0.18);

}


.icon img {

    width: 70px;
    height: 70px;

    object-fit: contain;

    display: block;

    filter:
        drop-shadow(
            0 5px 6px rgba(0,0,0,0.50)
        );

    transition:
        transform 0.25s ease;

}


/* =====================================================
   TEXT
   ===================================================== */

.details {

    min-width: 0;

    flex: 1;

    margin-left: 17px;

}


.details strong {

    display: block;

    font-size: 23px;

    line-height: 1.05;

    font-weight: 800;

}


.details b {

    display: block;

    font-size: 14px;

    margin-top: 5px;

}


.details small {

    display: block;

    font-size: 10px;

    margin-top: 6px;

    color: rgba(255,255,255,0.78);

}


/* Colored service names */

.blue .details b {
    color: #25c9ff;
}

.green .details b {
    color: #70ff6b;
}

.orange .details b {
    color: #ffc044;
}

.purple .details b {
    color: #d18aff;
}

.pink .details b {
    color: #ff64bd;
}

.cyan .details b {
    color: #35edff;
}


/* =====================================================
   ARROW
   ===================================================== */

.arrow {

    width: 42px;
    height: 42px;

    min-width: 42px;

    border-radius: 50%;

    display: flex;

    align-items: center;
    justify-content: center;

    font-size: 34px;

    line-height: 1;

    padding-bottom: 5px;

    background:
        rgba(0,150,255,0.85);

    border:
        1px solid rgba(255,255,255,0.35);

    box-shadow:
        0 0 16px rgba(0,140,255,0.25);

}


.green .arrow {
    background: rgba(35,185,55,0.9);
}

.orange .arrow {
    background: rgba(235,125,5,0.9);
}

.purple .arrow {
    background: rgba(125,55,205,0.9);
}

.pink .arrow {
    background: rgba(220,35,125,0.9);
}

.cyan .arrow {
    background: rgba(0,180,195,0.9);
}


/* =====================================================
   HOVER
   ===================================================== */

.card:hover {

    transform: translateY(-3px);

    filter: brightness(1.12);

}


.card:hover .icon img {

    transform: scale(1.13);

}


.card:hover .arrow {

    transform: translateX(4px);

}

/* =====================================================
   BOTTOM ACTION AREA
   ===================================================== */

.bottom-actions {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 12px;
}


/* -----------------------------------------------------
   COMMON ACTION BUTTON
   ----------------------------------------------------- */

.bottom-btn {
    width: 100%;
    min-width: 0;
    height: 63px;

    display: flex;
    align-items: center;

    padding: 7px 13px;

    border-radius: 17px;

    text-decoration: none !important;
    color: #fff !important;

    border: 1px solid rgba(255,255,255,0.35);

    overflow: hidden;

    box-sizing: border-box;

    transition:
        transform .22s ease,
        filter .22s ease,
        box-shadow .22s ease;
}


/* -----------------------------------------------------
   CURRENT OFFERS
   ----------------------------------------------------- */

.bottom-btn.offers {
    margin: 0 !important;
    width: 100% !important;

    background:
        linear-gradient(
            100deg,
            #ff8b00,
            #ef3150 50%,
            #d8008c
        ) !important;

    box-shadow:
        0 8px 24px rgba(230,20,100,.25);
}


/* -----------------------------------------------------
   WEBSITE
   ----------------------------------------------------- */

.bottom-btn.website {
    margin: 0 !important;
    width: 100% !important;

    background:
        linear-gradient(
            100deg,
            #008ee8,
            #0060c9 55%,
            #2735c7
        ) !important;

    box-shadow:
        0 8px 24px rgba(0,120,255,.25);
}


/* -----------------------------------------------------
   ACTION ICON
   ----------------------------------------------------- */

.bottom-icon {
    width: 47px;
    height: 47px;

    min-width: 47px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    font-size: 23px;

    background:
        rgba(255,255,255,.14);

    border:
        1px solid rgba(255,255,255,.25);

    box-shadow:
        inset 0 0 12px rgba(255,255,255,.08);
}


/* -----------------------------------------------------
   ACTION TEXT
   ----------------------------------------------------- */

.bottom-text {
    min-width: 0;
    flex: 1;

    margin-left: 13px;

    overflow: hidden;
}


.bottom-text strong {
    display: block;

    font-size: 19px;
    line-height: 1.1;

    font-weight: 800;

    white-space: nowrap;
}


.bottom-text small {
    display: block;

    margin-top: 4px;

    font-size: 10px;

    color: rgba(255,255,255,.88);

    white-space: nowrap;
}


/* -----------------------------------------------------
   ACTION ARROW
   ----------------------------------------------------- */

.bottom-arrow {
    width: 40px;
    height: 40px;

    min-width: 40px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: rgba(255,255,255,.96);

    color: #d92a76;

    font-size: 31px;
    line-height: 1;

    padding-bottom: 5px;

    transition:
        transform .2s ease;
}


.website .bottom-arrow {
    color: #006bd6;
}


/* -----------------------------------------------------
   ACTION HOVER
   ----------------------------------------------------- */

.bottom-btn:hover {
    transform: translateY(-3px);
    filter: brightness(1.10);
}


.bottom-btn:hover .bottom-arrow {
    transform: translateX(4px);
}


/* =====================================================
   BUSINESS INFORMATION
   ===================================================== */

.business-info {
    width: 100%;

    margin-top: 10px;

    padding: 9px 14px;

    display: flex;
    align-items: center;

    border-radius: 16px;

    background:
        linear-gradient(
            110deg,
            rgba(255,255,255,.075),
            rgba(255,255,255,.035)
        );

    border:
        1px solid rgba(255,255,255,.16);

    box-shadow:
        inset 0 0 25px rgba(255,255,255,.025);

    box-sizing: border-box;
}


/* -----------------------------------------------------
   INFORMATION ITEM
   ----------------------------------------------------- */

.info-item {
    flex: 1;
    min-width: 0;

    display: flex;
    align-items: center;
}


.info-icon {
    width: 42px;
    height: 42px;

    min-width: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 12px;

    font-size: 20px;

    background:
        rgba(255,255,255,.08);

    border:
        1px solid rgba(255,255,255,.16);
}


.info-item div {
    min-width: 0;

    margin-left: 11px;
}


.info-item strong {
    display: block;

    font-size: 13px;

    font-weight: 800;

    color: #fff;
}


.info-item p {
    margin: 3px 0 0;

    font-size: 9px;

    line-height: 1.3;

    color: rgba(255,255,255,.70);
}


.info-divider {
    width: 1px;
    height: 40px;

    margin: 0 18px;

    background:
        rgba(255,255,255,.18);
}


/* =====================================================
   DESKTOP - SMALL HEIGHT
   ===================================================== */

@media (min-width: 701px) and (max-height: 800px) {

    .bottom-actions {
        gap: 9px;
        margin-top: 9px;
    }

    .bottom-btn {
        height: 50px;
        padding: 5px 10px;
    }

    .bottom-icon {
        width: 36px;
        height: 36px;
        min-width: 36px;

        font-size: 18px;
    }

    .bottom-text {
        margin-left: 9px;
    }

    .bottom-text strong {
        font-size: 15px;
    }

    .bottom-text small {
        font-size: 8px;
        margin-top: 2px;
    }

    .bottom-arrow {
        width: 32px;
        height: 32px;
        min-width: 32px;

        font-size: 26px;
    }


    .business-info {
        margin-top: 8px;
        padding: 6px 10px;
    }

    .info-icon {
        width: 34px;
        height: 34px;
        min-width: 34px;

        font-size: 16px;
    }

    .info-item div {
        margin-left: 8px;
    }

    .info-item strong {
        font-size: 10px;
    }

    .info-item p {
        font-size: 7px;
    }

    .info-divider {
        height: 32px;
        margin: 0 12px;
    }
}


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

@media (max-width: 700px) {

    .bottom-actions {
        grid-template-columns: 1fr 1fr;

        gap: 6px;

        margin-top: 6px;
    }


    .bottom-btn {
        height: 48px;

        padding: 5px 7px;

        border-radius: 12px;
    }


    .bottom-icon {
        width: 33px;
        height: 33px;

        min-width: 33px;

        font-size: 16px;
    }


    .bottom-text {
        margin-left: 7px;
    }


    .bottom-text strong {
        font-size: 10px;
    }


    .bottom-text small {
        font-size: 6px;
        margin-top: 2px;
    }


    .bottom-arrow {
        width: 27px;
        height: 27px;

        min-width: 27px;

        font-size: 22px;
    }


    .business-info {
        margin-top: 6px;

        padding: 6px 7px;

        border-radius: 11px;
    }


    .info-icon {
        width: 29px;
        height: 29px;

        min-width: 29px;

        font-size: 14px;

        border-radius: 8px;
    }


    .info-item div {
        margin-left: 6px;
    }


    .info-item strong {
        font-size: 8px;
    }


    .info-item p {
        font-size: 5.5px;

        line-height: 1.2;
    }


    .info-divider {
        height: 28px;

        margin: 0 6px;
    }
}


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

@media (max-width: 370px) {

    .bottom-text strong {
        font-size: 9px;
    }

    .bottom-text small {
        font-size: 5.5px;
    }

    .info-item strong {
        font-size: 7px;
    }

    .info-item p {
        font-size: 5px;
    }

}
/* =====================================================
   FINAL RESPONSIVE POLISH
   ===================================================== */

/* Extra heading between services and action buttons */
.bottom-section-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin: 14px 0 9px;
}

.bottom-section-title::before,
.bottom-section-title::after {
    content: "";
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(25,191,255,.75));
}

.bottom-section-title::after {
    background: linear-gradient(90deg, rgba(25,191,255,.75), transparent);
}

.bottom-section-title span {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .4px;
    color: rgba(255,255,255,.86);
    white-space: nowrap;
}

/* Make the business information more readable on desktop */
.business-info {
    min-height: 58px;
    padding: 8px 14px;
}

.info-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    font-size: 21px;
}

.info-item strong {
    font-size: 14px;
}

.info-item p {
    font-size: 10px;
}

/* =====================================================
   MOBILE - KEEP EVERYTHING ON ONE SCREEN
   ===================================================== */
@media (max-width: 700px) {

    html, body {
        min-height: 100%;
        height: auto;
    }

    body {
        background-attachment: scroll;
    }

    .app {
        width: calc(100% - 12px);
        max-width: 520px;
        min-height: 0;
        height: auto;
        margin: 7px auto;
        padding: 12px 10px 11px;
        border-radius: 21px;
    }

    /* Compact header */
    .logo {
        width: 145px;
        height: 59px;
        margin-bottom: 1px;
    }

    .welcome span {
        font-size: 8px;
        letter-spacing: 1.6px;
    }

    .welcome h1 {
        font-size: 24px;
        margin-top: 1px;
    }

    .welcome p {
        margin-top: 3px;
        font-size: 8px;
        line-height: 1.25;
        padding: 0 8px;
    }

    /* Service title */
    .title {
        gap: 8px;
        margin: 9px 0 8px;
    }

    .title span {
        width: 28px;
    }

    .title h2 {
        font-size: 15px;
        line-height: 1.1;
    }

    /* Two columns remain on mobile */
    .services {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 7px;
    }

    .services form {
        min-width: 0;
    }

    .card {
        height: 76px;
        min-width: 0;
        padding: 5px 5px;
        border-radius: 13px;
    }

    .icon {
        width: 50px;
        height: 50px;
        min-width: 50px;
        border-radius: 50%;
    }

    .icon img {
        width: 43px;
        height: 43px;
    }

    .details {
        min-width: 0;
        margin-left: 6px;
        overflow: hidden;
    }

    .details strong {
        font-size: 13px;
        line-height: 1;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .details b {
        font-size: 8px;
        line-height: 1.05;
        margin-top: 3px;
        white-space: normal;
    }

    .details small {
        font-size: 6px;
        line-height: 1.05;
        margin-top: 3px;
        white-space: normal;
    }

    .arrow {
        width: 27px;
        height: 27px;
        min-width: 27px;
        font-size: 23px;
        padding-bottom: 3px;
    }

    /* Separator after Others */
    .bottom-section-title {
        gap: 8px;
        margin: 9px 0 6px;
    }

    .bottom-section-title span {
        font-size: 9px;
        letter-spacing: .25px;
    }

    /* Offers + Website */
    .bottom-actions {
        gap: 6px;
        margin-top: 0;
    }

    .bottom-btn {
        height: 46px;
        min-width: 0;
        padding: 4px 6px;
        border-radius: 11px;
    }

    .bottom-icon {
        width: 31px;
        height: 31px;
        min-width: 31px;
        font-size: 15px;
    }

    .bottom-text {
        margin-left: 6px;
        min-width: 0;
    }

    .bottom-text strong {
        font-size: 10px;
        line-height: 1;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .bottom-text small {
        font-size: 6px;
        margin-top: 2px;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .bottom-arrow {
        width: 26px;
        height: 26px;
        min-width: 26px;
        font-size: 21px;
    }

    /* Business information */
    .business-info {
        min-height: 53px;
        margin-top: 6px;
        padding: 5px 6px;
        border-radius: 11px;
    }

    .info-item {
        min-width: 0;
    }

    .info-icon {
        width: 31px;
        height: 31px;
        min-width: 31px;
        font-size: 14px;
        border-radius: 8px;
    }

    .info-item div {
        min-width: 0;
        margin-left: 6px;
    }

    .info-item strong {
        font-size: 8.5px;
        line-height: 1.05;
        white-space: nowrap;
    }

    .info-item p {
        font-size: 5.8px;
        line-height: 1.15;
        margin-top: 2px;
    }

    .info-divider {
        height: 30px;
        margin: 0 6px;
    }
}

/* Very narrow phones */
@media (max-width: 350px) {
    .app {
        padding-left: 8px;
        padding-right: 8px;
    }

    .card {
        height: 72px;
        padding-left: 4px;
        padding-right: 4px;
    }

    .icon {
        width: 45px;
        height: 45px;
        min-width: 45px;
    }

    .icon img {
        width: 39px;
        height: 39px;
    }

    .details {
        margin-left: 5px;
    }

    .details strong {
        font-size: 11px;
    }

    .details b {
        font-size: 7px;
    }

    .details small {
        font-size: 5.5px;
    }

    .arrow {
        width: 24px;
        height: 24px;
        min-width: 24px;
        font-size: 20px;
    }

    .bottom-text strong {
        font-size: 9px;
    }

    .bottom-text small {
        font-size: 5.5px;
    }

    .info-item strong {
        font-size: 7.5px;
    }

    .info-item p {
        font-size: 5.2px;
    }
}

/* =====================================================
   APT COMPUTER
   OTHER SERVICES SECTION
   FINAL OVERRIDE
   ===================================================== */

.extra-section-title {
    width: 100%;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 14px;

    margin-top: 42px;
    margin-bottom: 14px;
}

.extra-section-title span {
    flex: 1;
    height: 1px;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(0,180,255,.55)
        );
}

.extra-section-title span:last-child {
    background:
        linear-gradient(
            90deg,
            rgba(0,180,255,.55),
            transparent
        );
}

.extra-section-title h2 {
    margin: 0;

    color: #fff;

    font-size: 18px;

    font-weight: 800;

    white-space: nowrap;

    text-shadow:
        0 2px 8px rgba(0,0,0,.45);
}


/* =====================================================
   OFFERS + WEBSITE
   ===================================================== */

.bottom-actions {
    width: 100% !important;

    display: grid !important;

    grid-template-columns:
        minmax(0, 1fr)
        minmax(0, 1fr) !important;

    gap: 12px !important;

    margin-top: 0 !important;
}


/* Remove old .offers behaviour */
.bottom-actions a.bottom-btn {
    width: 100% !important;

    min-width: 0 !important;

    height: 62px !important;

    margin: 0 !important;

    padding: 7px 13px !important;

    display: flex !important;

    align-items: center !important;

    box-sizing: border-box !important;

    border-radius: 17px !important;

    text-decoration: none !important;

    color: #fff !important;

    overflow: hidden !important;
}


/* CURRENT OFFERS */

.bottom-actions a.bottom-btn.offers {
    background:
        linear-gradient(
            100deg,
            #ff8b00 0%,
            #f42d55 52%,
            #d9008e 100%
        ) !important;

    border:
        1px solid rgba(255,255,255,.38) !important;

    box-shadow:
        0 8px 24px rgba(225,20,100,.25) !important;
}


/* WEBSITE */

.bottom-actions a.bottom-btn.website {
    background:
        linear-gradient(
            100deg,
            #008fe8 0%,
            #0064d5 55%,
            #2839cc 100%
        ) !important;

    border:
        1px solid rgba(255,255,255,.38) !important;

    box-shadow:
        0 8px 24px rgba(0,100,220,.25) !important;
}


/* =====================================================
   BOTTOM BUTTON ICON
   ===================================================== */

.bottom-actions .bottom-icon {
    width: 46px !important;
    height: 46px !important;

    min-width: 46px !important;

    display: flex !important;

    align-items: center !important;
    justify-content: center !important;

    border-radius: 50% !important;

    font-size: 22px !important;

    background:
        rgba(255,255,255,.14) !important;

    border:
        1px solid rgba(255,255,255,.25) !important;
}


/* =====================================================
   BOTTOM BUTTON TEXT
   ===================================================== */

.bottom-actions .bottom-text {
    min-width: 0 !important;

    flex: 1 !important;

    margin-left: 12px !important;

    overflow: hidden !important;
}

.bottom-actions .bottom-text strong {
    display: block !important;

    font-size: 17px !important;

    line-height: 1.1 !important;

    font-weight: 800 !important;

    color: #fff !important;

    white-space: nowrap !important;
}

.bottom-actions .bottom-text small {
    display: block !important;

    margin-top: 4px !important;

    font-size: 9px !important;

    line-height: 1.2 !important;

    color: rgba(255,255,255,.88) !important;

    white-space: nowrap !important;
}


/* =====================================================
   BOTTOM ARROW
   ===================================================== */

.bottom-actions .bottom-arrow {
    width: 38px !important;
    height: 38px !important;

    min-width: 38px !important;

    display: flex !important;

    align-items: center !important;
    justify-content: center !important;

    border-radius: 50% !important;

    background: rgba(255,255,255,.96) !important;

    color: #df2677 !important;

    font-size: 30px !important;

    line-height: 1 !important;

    padding-bottom: 5px !important;

    box-sizing: border-box !important;
}

.bottom-actions .website .bottom-arrow {
    color: #006bd6 !important;
}


/* =====================================================
   HOVER
   ===================================================== */

.bottom-actions .bottom-btn:hover {
    transform: translateY(-3px) !important;

    filter: brightness(1.08);
}

.bottom-actions .bottom-btn:hover .bottom-arrow {
    transform: translateX(4px);
}


/* =====================================================
   WHOLESALE + AMC
   ===================================================== */

.business-info {
    width: 100% !important;

    margin-top: 11px !important;

    padding: 12px 16px !important;

    min-height: 68px !important;

    display: flex !important;

    align-items: center !important;

    box-sizing: border-box !important;

    border-radius: 16px !important;

    background:
        linear-gradient(
            105deg,
            rgba(255,255,255,.10),
            rgba(255,255,255,.045)
        ) !important;

    border:
        1px solid rgba(255,255,255,.20) !important;

    box-shadow:
        inset 0 0 25px rgba(255,255,255,.025),
        0 6px 20px rgba(0,0,0,.12) !important;
}


/* INFO ITEM */

.business-info .info-item {
    flex: 1 !important;

    min-width: 0 !important;

    display: flex !important;

    align-items: center !important;
}


/* INFO ICON */

.business-info .info-icon {
    width: 44px !important;
    height: 44px !important;

    min-width: 44px !important;

    display: flex !important;

    align-items: center !important;
    justify-content: center !important;

    border-radius: 12px !important;

    font-size: 21px !important;

    background:
        rgba(255,255,255,.10) !important;

    border:
        1px solid rgba(255,255,255,.18) !important;
}


/* INFO TEXT */

.business-info .info-item > div {
    min-width: 0 !important;

    margin-left: 12px !important;
}

.business-info .info-item strong {
    display: block !important;

    font-size: 15px !important;

    font-weight: 800 !important;

    line-height: 1.15 !important;

    color: #fff !important;
}

.business-info .info-item p {
    margin: 4px 0 0 !important;

    font-size: 10px !important;

    line-height: 1.35 !important;

    color: rgba(255,255,255,.78) !important;
}


/* DIVIDER */

.business-info .info-divider {
    width: 1px !important;

    height: 43px !important;

    flex: 0 0 1px !important;

    margin: 0 22px !important;

    background:
        rgba(255,255,255,.22) !important;
}


/* =====================================================
   LOGIN FOOTER
   ===================================================== */

.login-footer {
    width: 100%;

    display: flex;

    align-items: center;
    justify-content: center;

    gap: 12px;

    margin-top: 18px;

    padding-top: 10px;

    border-top:
        1px solid rgba(255,255,255,.10);
}


/* LOGIN LINKS */

.login-link {
    display: inline-flex;

    align-items: center;

    gap: 5px;

    padding: 5px 10px;

    border-radius: 8px;

    text-decoration: none;

    color: rgba(255,255,255,.58);

    font-size: 10px;

    transition:
        color .2s ease,
        background .2s ease,
        transform .2s ease;
}

.login-link span {
    font-size: 11px;
}

.login-link strong {
    font-size: 10px;

    font-weight: 600;
}


/* ADMIN */

.admin-login:hover {
    color: #ff9b9b;

    background:
        rgba(255,80,80,.08);

    transform: translateY(-1px);
}


/* EMPLOYEE */

.employee-login:hover {
    color: #75caff;

    background:
        rgba(0,150,255,.08);

    transform: translateY(-1px);
}


/* SEPARATOR */

.login-separator {
    color:
        rgba(255,255,255,.25);

    font-size: 9px;
}


/* COPYRIGHT */

.copyright {
    text-align: center;

    margin-top: 3px;

    font-size: 7px;

    color:
        rgba(255,255,255,.32);
}


/* =====================================================
   DESKTOP
   ===================================================== */

@media (min-width: 701px) {

    .extra-section-title {
        margin-top: 42px;

        margin-bottom: 14px;
    }

}


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

@media (max-width: 700px) {

    .extra-section-title {
        gap: 7px;

        margin-top: 14px;

        margin-bottom: 7px;
    }

    .extra-section-title h2 {
        font-size: 11px;
    }


    .bottom-actions {
        gap: 6px !important;
    }


    .bottom-actions a.bottom-btn {
        height: 48px !important;

        padding: 5px 7px !important;

        border-radius: 12px !important;
    }


    .bottom-actions .bottom-icon {
        width: 32px !important;
        height: 32px !important;

        min-width: 32px !important;

        font-size: 15px !important;
    }


    .bottom-actions .bottom-text {
        margin-left: 6px !important;
    }


    .bottom-actions .bottom-text strong {
        font-size: 9px !important;
    }


    .bottom-actions .bottom-text small {
        font-size: 5.5px !important;

        margin-top: 2px !important;
    }


    .bottom-actions .bottom-arrow {
        width: 27px !important;
        height: 27px !important;

        min-width: 27px !important;

        font-size: 22px !important;
    }


    /* WHOLESALE / AMC */

    .business-info {
        margin-top: 6px !important;

        padding: 8px !important;

        min-height: 52px !important;

        border-radius: 11px !important;
    }


    .business-info .info-icon {
        width: 31px !important;
        height: 31px !important;

        min-width: 31px !important;

        border-radius: 8px !important;

        font-size: 14px !important;
    }


    .business-info .info-item > div {
        margin-left: 6px !important;
    }


    .business-info .info-item strong {
        font-size: 8px !important;
    }


    .business-info .info-item p {
        margin-top: 2px !important;

        font-size: 5.5px !important;

        line-height: 1.2 !important;
    }


    .business-info .info-divider {
        height: 30px !important;

        margin: 0 7px !important;
    }


    /* LOGIN */

    .login-footer {
        margin-top: 10px;

        padding-top: 6px;

        gap: 7px;
    }


    .login-link {
        padding: 4px 7px;
    }


    .login-link span {
        font-size: 9px;
    }


    .login-link strong {
        font-size: 8px;
    }


    .copyright {
        font-size: 5.5px;

        margin-top: 2px;
    }

}


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

@media (max-width: 370px) {

    .extra-section-title {
        margin-top: 10px;
    }


    .extra-section-title h2 {
        font-size: 10px;
    }


    .business-info .info-item strong {
        font-size: 7px !important;
    }


    .business-info .info-item p {
        font-size: 5px !important;
    }

}

/* =====================================================
   APT COMPUTER
   OTHER SERVICES SECTION
   FINAL OVERRIDE
   ===================================================== */

.extra-section-title {
    width: 100%;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 14px;

    margin-top: 42px;
    margin-bottom: 14px;
}

.extra-section-title span {
    flex: 1;
    height: 1px;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(0,180,255,.55)
        );
}

.extra-section-title span:last-child {
    background:
        linear-gradient(
            90deg,
            rgba(0,180,255,.55),
            transparent
        );
}

.extra-section-title h2 {
    margin: 0;

    color: #fff;

    font-size: 18px;

    font-weight: 800;

    white-space: nowrap;

    text-shadow:
        0 2px 8px rgba(0,0,0,.45);
}


/* =====================================================
   OFFERS + WEBSITE
   ===================================================== */

.bottom-actions {
    width: 100% !important;

    display: grid !important;

    grid-template-columns:
        minmax(0, 1fr)
        minmax(0, 1fr) !important;

    gap: 12px !important;

    margin-top: 0 !important;
}


/* Remove old .offers behaviour */
.bottom-actions a.bottom-btn {
    width: 100% !important;

    min-width: 0 !important;

    height: 62px !important;

    margin: 0 !important;

    padding: 7px 13px !important;

    display: flex !important;

    align-items: center !important;

    box-sizing: border-box !important;

    border-radius: 17px !important;

    text-decoration: none !important;

    color: #fff !important;

    overflow: hidden !important;
}


/* CURRENT OFFERS */

.bottom-actions a.bottom-btn.offers {
    background:
        linear-gradient(
            100deg,
            #ff8b00 0%,
            #f42d55 52%,
            #d9008e 100%
        ) !important;

    border:
        1px solid rgba(255,255,255,.38) !important;

    box-shadow:
        0 8px 24px rgba(225,20,100,.25) !important;
}


/* WEBSITE */

.bottom-actions a.bottom-btn.website {
    background:
        linear-gradient(
            100deg,
            #008fe8 0%,
            #0064d5 55%,
            #2839cc 100%
        ) !important;

    border:
        1px solid rgba(255,255,255,.38) !important;

    box-shadow:
        0 8px 24px rgba(0,100,220,.25) !important;
}


/* =====================================================
   BOTTOM BUTTON ICON
   ===================================================== */

.bottom-actions .bottom-icon {
    width: 46px !important;
    height: 46px !important;

    min-width: 46px !important;

    display: flex !important;

    align-items: center !important;
    justify-content: center !important;

    border-radius: 50% !important;

    font-size: 22px !important;

    background:
        rgba(255,255,255,.14) !important;

    border:
        1px solid rgba(255,255,255,.25) !important;
}


/* =====================================================
   BOTTOM BUTTON TEXT
   ===================================================== */

.bottom-actions .bottom-text {
    min-width: 0 !important;

    flex: 1 !important;

    margin-left: 12px !important;

    overflow: hidden !important;
}

.bottom-actions .bottom-text strong {
    display: block !important;

    font-size: 17px !important;

    line-height: 1.1 !important;

    font-weight: 800 !important;

    color: #fff !important;

    white-space: nowrap !important;
}

.bottom-actions .bottom-text small {
    display: block !important;

    margin-top: 4px !important;

    font-size: 9px !important;

    line-height: 1.2 !important;

    color: rgba(255,255,255,.88) !important;

    white-space: nowrap !important;
}


/* =====================================================
   BOTTOM ARROW
   ===================================================== */

.bottom-actions .bottom-arrow {
    width: 38px !important;
    height: 38px !important;

    min-width: 38px !important;

    display: flex !important;

    align-items: center !important;
    justify-content: center !important;

    border-radius: 50% !important;

    background: rgba(255,255,255,.96) !important;

    color: #df2677 !important;

    font-size: 30px !important;

    line-height: 1 !important;

    padding-bottom: 5px !important;

    box-sizing: border-box !important;
}

.bottom-actions .website .bottom-arrow {
    color: #006bd6 !important;
}


/* =====================================================
   HOVER
   ===================================================== */

.bottom-actions .bottom-btn:hover {
    transform: translateY(-3px) !important;

    filter: brightness(1.08);
}

.bottom-actions .bottom-btn:hover .bottom-arrow {
    transform: translateX(4px);
}


/* =====================================================
   WHOLESALE + AMC
   ===================================================== */

.business-info {
    width: 100% !important;

    margin-top: 11px !important;

    padding: 12px 16px !important;

    min-height: 68px !important;

    display: flex !important;

    align-items: center !important;

    box-sizing: border-box !important;

    border-radius: 16px !important;

    background:
        linear-gradient(
            105deg,
            rgba(255,255,255,.10),
            rgba(255,255,255,.045)
        ) !important;

    border:
        1px solid rgba(255,255,255,.20) !important;

    box-shadow:
        inset 0 0 25px rgba(255,255,255,.025),
        0 6px 20px rgba(0,0,0,.12) !important;
}


/* INFO ITEM */

.business-info .info-item {
    flex: 1 !important;

    min-width: 0 !important;

    display: flex !important;

    align-items: center !important;
}


/* INFO ICON */

.business-info .info-icon {
    width: 44px !important;
    height: 44px !important;

    min-width: 44px !important;

    display: flex !important;

    align-items: center !important;
    justify-content: center !important;

    border-radius: 12px !important;

    font-size: 21px !important;

    background:
        rgba(255,255,255,.10) !important;

    border:
        1px solid rgba(255,255,255,.18) !important;
}


/* INFO TEXT */

.business-info .info-item > div {
    min-width: 0 !important;

    margin-left: 12px !important;
}

.business-info .info-item strong {
    display: block !important;

    font-size: 15px !important;

    font-weight: 800 !important;

    line-height: 1.15 !important;

    color: #fff !important;
}

.business-info .info-item p {
    margin: 4px 0 0 !important;

    font-size: 10px !important;

    line-height: 1.35 !important;

    color: rgba(255,255,255,.78) !important;
}


/* DIVIDER */

.business-info .info-divider {
    width: 1px !important;

    height: 43px !important;

    flex: 0 0 1px !important;

    margin: 0 22px !important;

    background:
        rgba(255,255,255,.22) !important;
}


/* =====================================================
   LOGIN FOOTER
   ===================================================== */

.login-footer {
    width: 100%;

    display: flex;

    align-items: center;
    justify-content: center;

    gap: 12px;

    margin-top: 18px;

    padding-top: 10px;

    border-top:
        1px solid rgba(255,255,255,.10);
}


/* LOGIN LINKS */

.login-link {
    display: inline-flex;

    align-items: center;

    gap: 5px;

    padding: 5px 10px;

    border-radius: 8px;

    text-decoration: none;

    color: rgba(255,255,255,.58);

    font-size: 10px;

    transition:
        color .2s ease,
        background .2s ease,
        transform .2s ease;
}

.login-link span {
    font-size: 11px;
}

.login-link strong {
    font-size: 10px;

    font-weight: 600;
}


/* ADMIN */

.admin-login:hover {
    color: #ff9b9b;

    background:
        rgba(255,80,80,.08);

    transform: translateY(-1px);
}


/* EMPLOYEE */

.employee-login:hover {
    color: #75caff;

    background:
        rgba(0,150,255,.08);

    transform: translateY(-1px);
}


/* SEPARATOR */

.login-separator {
    color:
        rgba(255,255,255,.25);

    font-size: 9px;
}


/* COPYRIGHT */

.copyright {
    text-align: center;

    margin-top: 3px;

    font-size: 7px;

    color:
        rgba(255,255,255,.32);
}


/* =====================================================
   DESKTOP
   ===================================================== */

@media (min-width: 701px) {

    .extra-section-title {
        margin-top: 42px;

        margin-bottom: 14px;
    }

}


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

@media (max-width: 700px) {

    .extra-section-title {
        gap: 7px;

        margin-top: 14px;

        margin-bottom: 7px;
    }

    .extra-section-title h2 {
        font-size: 11px;
    }


    .bottom-actions {
        gap: 6px !important;
    }


    .bottom-actions a.bottom-btn {
        height: 48px !important;

        padding: 5px 7px !important;

        border-radius: 12px !important;
    }


    .bottom-actions .bottom-icon {
        width: 32px !important;
        height: 32px !important;

        min-width: 32px !important;

        font-size: 15px !important;
    }


    .bottom-actions .bottom-text {
        margin-left: 6px !important;
    }


    .bottom-actions .bottom-text strong {
        font-size: 9px !important;
    }


    .bottom-actions .bottom-text small {
        font-size: 5.5px !important;

        margin-top: 2px !important;
    }


    .bottom-actions .bottom-arrow {
        width: 27px !important;
        height: 27px !important;

        min-width: 27px !important;

        font-size: 22px !important;
    }


    /* WHOLESALE / AMC */

    .business-info {
        margin-top: 6px !important;

        padding: 8px !important;

        min-height: 52px !important;

        border-radius: 11px !important;
    }


    .business-info .info-icon {
        width: 31px !important;
        height: 31px !important;

        min-width: 31px !important;

        border-radius: 8px !important;

        font-size: 14px !important;
    }


    .business-info .info-item > div {
        margin-left: 6px !important;
    }


    .business-info .info-item strong {
        font-size: 8px !important;
    }


    .business-info .info-item p {
        margin-top: 2px !important;

        font-size: 5.5px !important;

        line-height: 1.2 !important;
    }


    .business-info .info-divider {
        height: 30px !important;

        margin: 0 7px !important;
    }


    /* LOGIN */

    .login-footer {
        margin-top: 10px;

        padding-top: 6px;

        gap: 7px;
    }


    .login-link {
        padding: 4px 7px;
    }


    .login-link span {
        font-size: 9px;
    }


    .login-link strong {
        font-size: 8px;
    }


    .copyright {
        font-size: 5.5px;

        margin-top: 2px;
    }

}


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

@media (max-width: 370px) {

    .extra-section-title {
        margin-top: 10px;
    }


    .extra-section-title h2 {
        font-size: 10px;
    }


    .business-info .info-item strong {
        font-size: 7px !important;
    }


    .business-info .info-item p {
        font-size: 5px !important;
    }

}
