
/* =========================================
   LOCATION INTRO
========================================= */

.location-intro-section {
    position: relative;

    width: 100%;

    padding: 85px 20px 45px;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 12% 45%,
            rgba(215, 25, 63, 0.07),
            transparent 32%
        ),
        #07080b;
}


.location-intro-container {
    width: min(900px, 100%);

    margin: 0 auto;
}


.location-intro-content {
    max-width: 820px;
}


/* =========================================
   LABEL
========================================= */

.location-intro-label {
    display: inline-flex;

    align-items: center;

    gap: 10px;

    margin-bottom: 15px;

    font-family: Arial, sans-serif;

    font-size: 9px;

    font-weight: 700;

    letter-spacing: 2.8px;

    color: #d7193f;
}


.location-intro-label::before {
    content: "";

    width: 32px;
    height: 1px;

    background:
        linear-gradient(
            90deg,
            #d7193f,
            transparent
        );
}


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

.location-intro-content h1 {
    margin: 0 0 22px;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: clamp(38px, 5vw, 55px);

    font-weight: 700;

    line-height: 1.12;

    letter-spacing: -1px;

    color: #ffffff;
}


.location-intro-content h1 span {
    display: block;

    color: #d7193f;
}


/* =========================================
   PARAGRAPHS
========================================= */

.location-intro-content p {
    max-width: 760px;

    margin: 0 0 16px;

    font-family: Arial, sans-serif;

    font-size: 12px;

    font-weight: 400;

    line-height: 1.9;

    color: #9da1ad;
}


.location-intro-content p strong {
    font-weight: 600;

    color: #d4d6dc;
}


/* =========================================
   LINE
========================================= */

.location-intro-line {
    width: 65px;

    height: 2px;

    margin-top: 24px;

    background:
        linear-gradient(
            90deg,
            #d7193f,
            rgba(215, 25, 63, 0)
        );
}


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

@media (max-width: 650px) {

    .location-intro-section {
        padding: 70px 15px 35px;
    }


    .location-intro-label {
        gap: 8px;

        margin-bottom: 13px;

        font-size: 8px;

        letter-spacing: 2.2px;
    }


    .location-intro-label::before {
        width: 25px;
    }


    .location-intro-content h1 {
        margin-bottom: 19px;

        font-size: 34px;

        line-height: 1.12;

        letter-spacing: -0.5px;
    }


    .location-intro-content h1 span {
        display: inline;
    }


    .location-intro-content p {
        font-size: 10px;

        line-height: 1.8;
    }


    .location-intro-line {
        width: 55px;

        margin-top: 21px;
    }

}


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

@media (max-width: 380px) {

    .location-intro-section {
        padding: 60px 12px 30px;
    }


    .location-intro-content h1 {
        font-size: 30px;
    }


    .location-intro-content p {
        font-size: 9px;

        line-height: 1.75;
    }

}
/* =========================================
   AREA SHOWCASE
========================================= */

.area-showcase-section {
    position: relative;

    width: 100%;

    padding: 80px 20px 90px;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 15% 35%,
            rgba(215, 25, 63, 0.055),
            transparent 30%
        ),
        #07080b;
}


/* =========================================
   WRAPPER
========================================= */

.area-showcase-wrap {
    position: relative;

    width: min(1200px, 100%);

    margin: 0 auto;
}


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

.area-showcase-heading {
    max-width: 720px;

    margin: 0 auto 38px;

    text-align: center;
}


.area-showcase-label {
    display: inline-flex;

    align-items: center;

    gap: 9px;

    margin-bottom: 13px;

    font-family: Arial, sans-serif;

    font-size: 9px;

    font-weight: 700;

    letter-spacing: 2.7px;

    color: #d7193f;
}


.area-showcase-label::before,
.area-showcase-label::after {
    content: "";

    width: 22px;

    height: 1px;

    background: #d7193f;
}


.area-showcase-heading h1 {
    margin: 0 0 15px;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: clamp(36px, 4vw, 50px);

    font-weight: 700;

    line-height: 1.12;

    letter-spacing: -.7px;

    color: #ffffff;
}


.area-showcase-heading h1 span {
    color: #d7193f;
}


.area-showcase-heading p {
    max-width: 620px;

    margin: 0 auto;

    font-family: Arial, sans-serif;

    font-size: 11px;

    line-height: 1.8;

    color: #8f939e;
}


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

.area-showcase-grid {
    display: grid;

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

    gap: 13px;
}


/* =========================================
   MINI CARD
========================================= */

.area-mini-card {
    position: relative;

    min-width: 0;

    height: 128px;

    padding: 17px 18px;

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

    border-radius: 15px;

    background:
        linear-gradient(
            145deg,
            rgba(19, 20, 27, .97),
            rgba(9, 10, 14, .99)
        );

    text-decoration: none;

    overflow: hidden;

    transition:
        transform .3s ease,
        border-color .3s ease,
        box-shadow .3s ease;
}


/* RED TOP ACCENT */

.area-mini-card::before {
    content: "";

    position: absolute;

    top: 0;
    left: 18px;

    width: 38px;
    height: 2px;

    background: #d7193f;

    transition: width .3s ease;
}


/* SOFT GLOW */

.area-mini-card::after {
    content: "";

    position: absolute;

    width: 130px;
    height: 130px;

    right: -70px;
    bottom: -80px;

    border-radius: 50%;

    background: rgba(215, 25, 63, .06);

    filter: blur(30px);

    opacity: 0;

    transition: opacity .3s ease;
}


.area-mini-card:hover {
    transform: translateY(-4px);

    border-color:
        rgba(215, 25, 63, .25);

    box-shadow:
        0 18px 38px rgba(0, 0, 0, .35);
}


.area-mini-card:hover::before {
    width: 65px;
}


.area-mini-card:hover::after {
    opacity: 1;
}


/* =========================================
   NUMBER
========================================= */

.area-mini-number {
    position: absolute;

    top: 15px;
    right: 17px;

    font-family: Arial, sans-serif;

    font-size: 7px;

    font-weight: 700;

    letter-spacing: 1.5px;

    color: #4f535e;
}


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

.area-mini-main {
    position: relative;

    z-index: 2;

    display: flex;

    align-items: center;

    gap: 13px;

    height: 100%;
}


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

.area-mini-icon {
    display: flex;

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

    width: 38px;
    height: 38px;

    flex-shrink: 0;

    border-radius: 11px;

    border:
        1px solid rgba(215, 25, 63, .18);

    background:
        rgba(215, 25, 63, .07);

    transition:
        transform .3s ease,
        background .3s ease;
}


.area-mini-icon i {
    font-size: 12px;

    color: #d7193f;
}


.area-mini-card:hover .area-mini-icon {
    transform: scale(1.05);

    background:
        rgba(215, 25, 63, .12);
}


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

.area-mini-main h2 {
    margin: 0 0 5px;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 17px;

    font-weight: 700;

    line-height: 1.2;

    color: #ffffff;
}


.area-mini-main p {
    margin: 0;

    font-family: Arial, sans-serif;

    font-size: 8px;

    line-height: 1.5;

    color: #70747f;
}


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

.area-mini-arrow {
    position: absolute;

    z-index: 3;

    right: 15px;
    bottom: 13px;

    display: flex;

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

    width: 22px;
    height: 22px;

    border-radius: 50%;

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

    color: #5e626d;

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


.area-mini-arrow i {
    font-size: 8px;
}


.area-mini-card:hover .area-mini-arrow {
    color: #ffffff;

    background:
        rgba(215, 25, 63, .16);

    transform: translateX(3px);
}


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

@media (max-width: 1000px) {

    .area-showcase-wrap {
        width: min(760px, 100%);
    }

    .area-showcase-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

}


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

@media (max-width: 650px) {

    .area-showcase-section {
        padding: 65px 15px 70px;
    }

    .area-showcase-heading {
        margin-bottom: 28px;
    }

    .area-showcase-label {
        font-size: 8px;
        letter-spacing: 2.2px;
    }

    .area-showcase-heading h1 {
        font-size: 33px;
    }

    .area-showcase-heading p {
        font-size: 10px;
        line-height: 1.75;
    }

    .area-showcase-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    .area-mini-card {
        height: 125px;
        padding: 16px 14px;
        border-radius: 14px;
    }

    .area-mini-card::before {
        left: 14px;
        width: 34px;
    }

    .area-mini-number {
        top: 13px;
        right: 13px;
        font-size: 6px;
    }

    .area-mini-main {
        gap: 10px;
    }

    .area-mini-icon {
        width: 34px;
        height: 34px;
        border-radius: 9px;
    }

    .area-mini-icon i {
        font-size: 10px;
    }

    .area-mini-main h2 {
        font-size: 15px;
    }

    .area-mini-main p {
        font-size: 7px;
    }

    .area-mini-arrow {
        right: 11px;
        bottom: 10px;
        width: 20px;
        height: 20px;
    }

}


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

@media (max-width: 380px) {

    .area-showcase-section {
        padding: 55px 12px 60px;
    }

    .area-showcase-grid {
        gap: 8px;
    }

    .area-mini-card {
        height: 118px;
        padding: 14px 12px;
    }

    .area-mini-card::before {
        left: 12px;
    }

    .area-mini-main {
        gap: 8px;
    }

    .area-mini-icon {
        width: 31px;
        height: 31px;
    }

    .area-mini-main h2 {
        font-size: 14px;
    }

    .area-mini-main p {
        font-size: 6.5px;
    }

}

/* =========================================
   LOCATION INFORMATION
========================================= */

.location-info-section {
    position: relative;

    width: 100%;

    padding: 40px 20px 85px;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 88% 50%,
            rgba(215, 25, 63, 0.06),
            transparent 30%
        ),
        #07080b;
}


.location-info-container {
    width: min(1050px, 100%);

    margin: 0 auto;

    display: grid;

    grid-template-columns: 1.2fr .8fr;

    gap: 65px;

    align-items: center;
}


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

.location-info-content {
    max-width: 700px;
}


.location-info-label {
    display: inline-flex;

    align-items: center;

    gap: 9px;

    margin-bottom: 14px;

    font-family: Arial, sans-serif;

    font-size: 9px;

    font-weight: 700;

    letter-spacing: 2.7px;

    color: #d7193f;
}


.location-info-label::before {
    content: "";

    width: 30px;
    height: 1px;

    background: #d7193f;
}


.location-info-content h2 {
    margin: 0 0 20px;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: clamp(34px, 4vw, 48px);

    font-weight: 700;

    line-height: 1.12;

    letter-spacing: -.7px;

    color: #ffffff;
}


.location-info-content h2 span {
    display: block;

    color: #d7193f;
}


.location-info-content p {
    max-width: 680px;

    margin: 0 0 15px;

    font-family: Arial, sans-serif;

    font-size: 11px;

    line-height: 1.85;

    color: #989ca7;
}


.location-info-content p strong {
    font-weight: 600;

    color: #d0d2d8;
}


.location-info-line {
    width: 60px;

    height: 2px;

    margin-top: 22px;

    background:
        linear-gradient(
            90deg,
            #d7193f,
            transparent
        );
}


/* =========================================
   INFO BOX
========================================= */

.location-info-box {
    position: relative;

    min-height: 230px;

    padding: 25px;

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

    border-radius: 19px;

    background:
        linear-gradient(
            145deg,
            rgba(20,21,28,.97),
            rgba(9,10,14,.99)
        );

    box-shadow:
        0 20px 50px rgba(0,0,0,.32);

    overflow: hidden;
}


.location-info-box::before {
    content: "";

    position: absolute;

    top: 0;
    left: 25px;

    width: 65px;
    height: 2px;

    background:
        linear-gradient(
            90deg,
            #d7193f,
            transparent
        );
}


.location-info-box::after {
    content: "";

    position: absolute;

    right: -70px;
    bottom: -80px;

    width: 180px;
    height: 180px;

    border-radius: 50%;

    background:
        rgba(215,25,63,.055);

    filter: blur(40px);

    pointer-events: none;
}


/* =========================================
   BOX HEAD
========================================= */

.location-info-box-head {
    position: relative;

    z-index: 2;

    display: flex;

    align-items: center;

    justify-content: space-between;

    padding-bottom: 15px;

    border-bottom:
        1px solid rgba(255,255,255,.06);
}


.location-info-box-head span {
    font-family: Arial, sans-serif;

    font-size: 8px;

    font-weight: 700;

    letter-spacing: 2px;

    color: #d7193f;
}


.location-info-box-head i {
    font-size: 14px;

    color: #d7193f;
}


/* =========================================
   BOX MAIN
========================================= */

.location-info-box-main {
    position: relative;

    z-index: 2;

    display: flex;

    align-items: center;

    gap: 15px;

    padding: 28px 0;
}


.location-info-box-main strong {
    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 58px;

    font-weight: 700;

    line-height: 1;

    color: #ffffff;
}


.location-info-box-main span {
    font-family: Arial, sans-serif;

    font-size: 9px;

    font-weight: 600;

    line-height: 1.5;

    letter-spacing: 1px;

    text-transform: uppercase;

    color: #7d818c;
}


/* =========================================
   BOX BOTTOM
========================================= */

.location-info-box-bottom {
    position: relative;

    z-index: 2;

    display: flex;

    align-items: center;

    justify-content: space-between;

    padding-top: 14px;

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


.location-info-box-bottom span {
    font-family: Arial, sans-serif;

    font-size: 6.5px;

    font-weight: 700;

    letter-spacing: 1.6px;

    color: #626671;
}


.location-info-box-bottom i {
    font-size: 10px;

    color: #d7193f;
}


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

@media (max-width: 850px) {

    .location-info-container {
        grid-template-columns: 1fr;

        gap: 35px;
    }

    .location-info-box {
        width: min(500px, 100%);
    }

}


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

@media (max-width: 650px) {

    .location-info-section {
        padding: 25px 15px 65px;
    }

    .location-info-container {
        gap: 30px;
    }

    .location-info-label {
        font-size: 8px;

        letter-spacing: 2.2px;
    }

    .location-info-content h2 {
        font-size: 32px;
    }

    .location-info-content h2 span {
        display: inline;
    }

    .location-info-content p {
        font-size: 10px;

        line-height: 1.8;
    }

    .location-info-box {
        min-height: 205px;

        padding: 22px;

        border-radius: 17px;
    }

    .location-info-box::before {
        left: 22px;
    }

    .location-info-box-main {
        padding: 24px 0;
    }

    .location-info-box-main strong {
        font-size: 50px;
    }

}


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

@media (max-width: 380px) {

    .location-info-section {
        padding-left: 12px;
        padding-right: 12px;
    }

    .location-info-content h2 {
        font-size: 29px;
    }

    .location-info-box {
        min-height: 195px;

        padding: 19px;
    }

    .location-info-box-main strong {
        font-size: 45px;
    }

}