/* =====================================================
   ARCHIMAN SERVICES SECTION
===================================================== */

.services-section {

    position: relative;

    width: 100%;

    min-height: 720px;

    background: #000000;

    color: #ffffff;

    overflow: hidden;

    padding: 110px 0 100px;
}


/* =====================================================
   BACKGROUND VERTICAL LINES
===================================================== */

.services-section::before {

    content: "";

    position: absolute;

    top: 0;
    bottom: 0;

    left: 7%;

    width: 86%;

    background-image:
        repeating-linear-gradient(to right,
            transparent 0,
            transparent calc(20% - 1px),
            rgba(255, 255, 255, 0.09) calc(20% - 1px),
            rgba(255, 255, 255, 0.09) 20%);

    pointer-events: none;
}


/* =====================================================
   TOP SUBTLE PATTERN
===================================================== */

.services-section::after {

    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 100px;

    background:
        repeating-linear-gradient(120deg,
            rgba(255, 255, 255, 0.035) 0,
            rgba(255, 255, 255, 0.035) 2px,
            transparent 2px,
            transparent 8px);

    opacity: 0.45;

    pointer-events: none;
}


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

.services-container {

    position: relative;

    z-index: 2;

    width: 100%;

    max-width: 1440px;

    margin: 0 auto;

    padding: 0 70px;
}


/* =====================================================
   HEADING
===================================================== */

.services-heading {

    text-align: center;

    margin-bottom: 70px;
}


.services-label {

    display: block;

    margin-bottom: 24px;

    color: #e5b457;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 18px;

    font-weight: 400;

    letter-spacing: 3px;
}


.services-heading h2 {

    margin: 0;

    color: #ffffff;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 43px;

    font-weight: 500;

    line-height: 1.25;

    letter-spacing: -1px;
}


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

.services-cards {

    width: 100%;

    display: flex;

    flex-wrap: wrap;

    align-items: flex-start;

    justify-content: center;

    column-gap: 28px;

    row-gap: 35px;
}


/* =====================================================
   SERVICE CARD
===================================================== */

.service-card {

    position: relative;

    width: 285px;

    min-height: 282px;

    background: #232323;

    padding: 76px 28px 27px;

    overflow: visible;

    box-sizing: border-box;

    flex-shrink: 0;
}


/* =====================================================
   GOLD OVAL
===================================================== */

.service-number {

    position: absolute;

    top: 0;

    left: 28px;

    width: 35px;

    height: 58px;

    background: #e5b457;

    border-radius: 50%;

    box-shadow:
        0 3px 8px rgba(0, 0, 0, 0.25);
}


/* =====================================================
   CARD CONTENT
===================================================== */

.service-content {

    position: relative;

    z-index: 2;
}


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

.service-content h3 {

    margin: 0 0 13px;

    color: #ffffff;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 19px;

    font-weight: 600;

    line-height: 1.3;
}


/* =====================================================
   CARD DESCRIPTION
===================================================== */

.service-content p {

    margin: 0;

    color: #bcbcbc;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 15px;

    font-weight: 400;

    line-height: 1.55;
}


/* =====================================================
   READ MORE
===================================================== */

.service-read-more {

    display: inline-flex;

    align-items: center;

    gap: 8px;

    margin-top: 30px;

    color: #e5b457;

    text-decoration: none;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 14px;

    font-weight: 500;

    transition: color 0.3s ease;
}


.service-read-more span {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    font-size: 25px;

    line-height: 15px;

    transition: transform 0.3s ease;
}


.service-read-more:hover {

    color: #ffffff;
}


.service-read-more:hover span {

    transform: translateX(4px);
}


/* =====================================================
   FIRST FOUR CARD POSITIONS
===================================================== */

.service-card-1 {

    margin-top: 0;
}


.service-card-2 {

    margin-top: 29px;
}


.service-card-3 {

    margin-top: 0;

    min-height: 352px;
}


.service-card-4 {

    margin-top: 29px;

    min-height: 359px;
}


/* =====================================================
   CARD 5
   LANDSCAPE DESIGN

   Original:
   Card 5 is LOWER than Card 6
===================================================== */

.service-card-5 {

    margin-top: 64px;

    min-height: 287px;

    width: 298px;
}


/* =====================================================
   CARD 6
   ELEVATION DESIGN

   Original:
   Card 6 is HIGHER than Card 5
===================================================== */

.service-card-6 {

    margin-top: 0;

    min-height: 287px;

    width: 305px;
}


/* =====================================================
   EXPLORE ALL SERVICES
===================================================== */

.explore-services {

    position: relative;

    z-index: 5;

    width: 100%;

    display: flex;

    align-items: center;

    justify-content: center;

    margin-top: 70px;
}


.explore-services-link {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 22px;

    color: #ffffff;

    text-decoration: none;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 20px;

    font-weight: 500;

    transition: color 0.3s ease;
}


.explore-services-text {

    white-space: nowrap;
}


.explore-services-arrow {

    width: 64px;

    height: 64px;

    display: flex;

    align-items: center;

    justify-content: center;

    border: 1px solid #e5b457;

    border-radius: 50%;

    color: #e5b457;

    font-size: 26px;

    font-weight: 800;

    transition:
        background 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease;
}


.explore-services-link:hover {

    color: #e5b457;
}


.explore-services-link:hover .explore-services-arrow {

    background: #e5b457;

    color: #000000;

    transform: translate(3px, -3px);
}


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

@media screen and (min-width: 1400px) {

    .services-container {

        max-width: 1440px;

        padding-left: 70px;

        padding-right: 70px;
    }


    .services-cards {

        column-gap: 28px;

        row-gap: 35px;
    }


    .service-card {

        width: 285px;
    }


    /* Keep last two cards wider */

    .service-card-5 {

        width: 298px;

        margin-top: 64px;
    }


    .service-card-6 {

        width: 305px;

        margin-top: 0;
    }

}


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

@media screen and (min-width: 1101px) and (max-width: 1399px) {

    .services-container {

        max-width: 1250px;

        padding-left: 45px;

        padding-right: 45px;
    }


    .services-cards {

        column-gap: 25px;

        row-gap: 30px;
    }


    .service-card {

        width: 260px;

        padding-left: 25px;

        padding-right: 25px;
    }


    .service-number {

        left: 25px;
    }


    /* Last two cards */

    .service-card-5 {

        width: 285px;

        min-height: 280px;

        margin-top: 55px;
    }


    .service-card-6 {

        width: 290px;

        min-height: 280px;

        margin-top: 0;
    }

}


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

@media screen and (max-width: 1100px) {

    .services-section {

        padding-top: 90px;

        padding-bottom: 80px;
    }


    .services-container {

        max-width: 1000px;

        padding-left: 35px;

        padding-right: 35px;
    }


    .services-heading h2 {

        font-size: 38px;
    }


    .services-cards {

        column-gap: 18px;

        row-gap: 30px;
    }


    .service-card {

        width: calc(50% - 12px);

        min-height: 280px;

        padding-left: 25px;

        padding-right: 25px;
    }


    .service-number {

        left: 25px;
    }


    .service-content h3 {

        font-size: 18px;
    }


    .service-content p {

        font-size: 14px;
    }


    /* Reset stagger on tablet */

    .service-card-1,
    .service-card-2,
    .service-card-3,
    .service-card-4,
    .service-card-5,
    .service-card-6 {

        margin-top: 0;
    }


    .service-card-3,
    .service-card-4 {

        min-height: 320px;
    }


    .service-card-5,
    .service-card-6 {

        min-height: 280px;
    }


    .explore-services {

        margin-top: 55px;
    }


    .explore-services-link {

        font-size: 19px;
    }


    .explore-services-arrow {

        width: 60px;

        height: 60px;
    }

}


/* =====================================================
   MOBILE — GOOD RESPONSIVE
===================================================== */

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

    .services-section {

        min-height: auto;

        padding: 70px 0 65px;

    }


    /* ---------------------------------------------
       CONTAINER
    --------------------------------------------- */

    .services-container {

        width: 100%;

        max-width: 100%;

        padding-left: 24px;

        padding-right: 24px;

        box-sizing: border-box;

    }


    /* ---------------------------------------------
       HEADING
    --------------------------------------------- */

    .services-heading {

        width: 100%;

        margin-bottom: 48px;

    }


    .services-label {

        font-size: 14px;

        letter-spacing: 2px;

        margin-bottom: 16px;

        line-height: 1.4;

    }


    .services-heading h2 {

        width: 100%;

        margin: 0;

        font-size: 30px;

        line-height: 1.25;

        letter-spacing: -0.5px;

    }


    .services-heading h2 br {

        display: none;

    }


    /* ---------------------------------------------
       CARDS
    --------------------------------------------- */

    .services-cards {

        width: 100%;

        display: flex;

        flex-direction: column;

        flex-wrap: nowrap;

        align-items: center;

        justify-content: flex-start;

        gap: 28px;

    }


    /* ---------------------------------------------
       ALL SERVICE CARDS
    --------------------------------------------- */

    .service-card,
    .service-card-1,
    .service-card-2,
    .service-card-3,
    .service-card-4,
    .service-card-5,
    .service-card-6 {

        width: 100%;

        max-width: 380px;

        min-height: 0;

        height: auto;

        margin-top: 0;

        padding:
            72px 25px 28px;

        box-sizing: border-box;

    }


    /* ---------------------------------------------
       NUMBER / GOLD OVAL
    --------------------------------------------- */

    .service-number {

        left: 25px;

        top: 0;

        width: 35px;

        height: 58px;

    }


    /* ---------------------------------------------
       CARD TITLE
    --------------------------------------------- */

    .service-content h3 {

        margin-bottom: 12px;

        font-size: 18px;

        line-height: 1.35;

    }


    /* ---------------------------------------------
       CARD DESCRIPTION
    --------------------------------------------- */

    .service-content p {

        font-size: 14px;

        line-height: 1.6;

    }


    /* ---------------------------------------------
       READ MORE
    --------------------------------------------- */

    .service-read-more {

        margin-top: 24px;

        font-size: 14px;

        gap: 7px;

    }


    .service-read-more span {

        font-size: 22px;

    }


    /* ---------------------------------------------
       EXPLORE SERVICES
    --------------------------------------------- */

    .explore-services {

        margin-top: 42px;

        width: 100%;

    }


    .explore-services-link {

        font-size: 17px;

        gap: 15px;

        white-space: nowrap;

    }


    .explore-services-arrow {

        width: 56px;

        height: 56px;

        flex-shrink: 0;

        font-size: 16px;

    }

}


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

@media screen and (max-width: 480px) {

    .services-section {

        padding: 58px 0 55px;

    }


    /* ---------------------------------------------
       CONTAINER
    --------------------------------------------- */

    .services-container {

        padding-left: 18px;

        padding-right: 18px;

    }


    /* ---------------------------------------------
       HEADING
    --------------------------------------------- */

    .services-heading {

        margin-bottom: 40px;

    }


    .services-label {

        font-size: 12px;

        letter-spacing: 1.7px;

        margin-bottom: 15px;

    }


    .services-heading h2 {

        font-size: 26px;

        line-height: 1.28;

        letter-spacing: -0.4px;

    }


    /* ---------------------------------------------
       CARDS
    --------------------------------------------- */

    .services-cards {

        gap: 24px;

    }


    .service-card,
    .service-card-1,
    .service-card-2,
    .service-card-3,
    .service-card-4,
    .service-card-5,
    .service-card-6 {

        width: 100%;

        max-width: 390px;

        min-height: 0;

        height: auto;

        margin: 0;

        padding:
            68px 22px 26px;

    }


    /* ---------------------------------------------
       GOLD OVAL
    --------------------------------------------- */

    .service-number {

        left: 22px;

        width: 34px;

        height: 55px;

    }


    /* ---------------------------------------------
       CARD CONTENT
    --------------------------------------------- */

    .service-content h3 {

        margin-bottom: 11px;

        font-size: 17px;

        line-height: 1.35;

    }


    .service-content p {

        font-size: 13px;

        line-height: 1.6;

    }


    /* ---------------------------------------------
       READ MORE
    --------------------------------------------- */

    .service-read-more {

        margin-top: 22px;

        font-size: 13px;

        gap: 6px;

    }


    .service-read-more span {

        font-size: 21px;

    }


    /* ---------------------------------------------
       EXPLORE
    --------------------------------------------- */

    .explore-services {

        margin-top: 34px;

    }


    .explore-services-link {

        font-size: 15px;

        gap: 12px;

    }


    .explore-services-arrow {

        width: 50px;

        height: 50px;

        font-size: 15px;

    }

}

