/*======================================
        GOA LOCATIONS
======================================*/

.goa-locations{
    padding:100px 0;
    background:
        radial-gradient(circle at top left,
        rgba(212,175,55,.05),
        transparent 28%),
        linear-gradient(180deg,#0b0b0b,#14100c);
}


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

.goa-locations-heading{
    max-width:760px;
    margin:0 auto 60px;
    text-align:center;
}

.goa-locations-heading h2{
    margin:18px 0 20px;
}

.goa-locations-heading p{
    max-width:650px;
    margin:0 auto;
}


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

.goa-locations-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:28px;
}


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

.goa-location-card{
    background:#111111;
    border:1px solid rgba(212,175,55,.10);
    border-radius:24px;
    overflow:hidden;
    transition:.35s ease;
}

.goa-location-card:hover{
    transform:translateY(-8px);
    border-color:#d4af37;
    box-shadow:0 20px 45px rgba(0,0,0,.35);
}


/* IMAGE */

.goa-location-card img{
    width:100%;
    height:240px;
    display:block;
    object-fit:cover;
    transition:.45s ease;
}

.goa-location-card:hover img{
    transform:scale(1.08);
}


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

.goa-location-content{
    padding:26px;
}

.goa-location-content h3{
    margin-bottom:15px;
}

.goa-location-content p{
    color:#cfcfcf;
    line-height:1.8;
    margin-bottom:22px;
    min-height:88px;
}

.goa-location-content a{
    display:inline-flex;
    align-items:center;
    gap:8px;
    color:#d4af37;
    font-weight:600;
    transition:.3s;
}

.goa-location-content a:hover{
    color:#ffffff;
    gap:14px;
}


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

@media(max-width:991px){

    .goa-locations{
        padding:70px 0;
    }

    .goa-locations-grid{
        grid-template-columns:repeat(2,1fr);
        gap:24px;
    }

}


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

@media(max-width:576px){

    .goa-locations-grid{
        grid-template-columns:1fr;
    }

    .goa-location-card img{
        height:220px;
    }

    .goa-location-content{
        padding:22px;
    }

}
/*======================================
        WHY LOCATIONS
======================================*/

.why-locations{

    padding:100px 0;

}

.why-locations-heading{

    max-width:760px;

    margin:0 auto 60px;

    text-align:center;

}

.why-locations-heading h2{

    margin:18px 0 20px;

}

.why-locations-heading p{

    max-width:650px;

    margin:0 auto;

}


/* GRID */

.why-locations-grid{

    display:grid;

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

    gap:28px;

}


/* CARD */

.why-location-card{

    padding:40px 30px;

    border-radius:24px;

    text-align:center;

    background:#111111;

    border:1px solid rgba(212,175,55,.10);

    transition:.35s ease;

}

.why-location-card:hover{

    transform:translateY(-8px);

    border-color:#d4af37;

    box-shadow:0 20px 45px rgba(0,0,0,.35);

}


/* ICON */

.why-location-icon{

    width:72px;

    height:72px;

    margin:0 auto 24px;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    background:rgba(212,175,55,.10);

    color:#d4af37;

    font-size:30px;

}


/* TEXT */

.why-location-card h3{

    margin-bottom:16px;

}

.why-location-card p{

    color:#cfcfcf;

    line-height:1.8;

}


/* TABLET */

@media(max-width:991px){

    .why-locations{

        padding:70px 0;

    }

    .why-locations-grid{

        grid-template-columns:repeat(2,1fr);

    }

}


/* MOBILE */

@media(max-width:576px){

    .why-locations-grid{

        grid-template-columns:1fr;

    }

}
/*======================================
        LOCATIONS CTA
======================================*/

.locations-cta{

    padding:100px 0;

}

.locations-cta-box{

    max-width:900px;

    margin:auto;

    padding:70px 50px;

    text-align:center;

    border-radius:30px;

    background:
    linear-gradient(
    135deg,
    rgba(212,175,55,.08),
    rgba(255,255,255,.02));

    border:1px solid rgba(212,175,55,.15);

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

}

.locations-cta-box h2{

    margin:20px 0;

}

.locations-cta-box p{

    max-width:680px;

    margin:0 auto;

}

.locations-cta-btns{

    display:flex;

    justify-content:center;

    gap:18px;

    margin-top:35px;

    flex-wrap:wrap;

}


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

@media(max-width:768px){

    .locations-cta{

        padding:70px 0;

    }

    .locations-cta-box{

        padding:45px 25px;

        border-radius:22px;

    }

}

/*======================================
        AREA HIGHLIGHTS
======================================*/

.area-highlights{

    padding:100px 0;

}

.area-highlights-heading{

    max-width:760px;

    margin:0 auto 60px;

    text-align:center;

}

.area-highlights-heading h2{

    margin:18px 0 20px;

}

.area-highlights-heading p{

    max-width:680px;

    margin:auto;

}

.area-highlights-grid{

    display:grid;

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

    gap:30px;

}

.area-highlight-card{

    padding:40px 30px;

    background:#121212;

    border:1px solid rgba(212,175,55,.12);

    border-radius:24px;

    text-align:center;

    transition:.35s;

}

.area-highlight-card:hover{

    transform:translateY(-8px);

    border-color:#d4af37;

    box-shadow:0 20px 40px rgba(0,0,0,.35);

}

.area-highlight-icon{

    width:72px;

    height:72px;

    margin:0 auto 24px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:50%;

    background:rgba(212,175,55,.10);

    color:#d4af37;

    font-size:30px;

}

.area-highlight-card h3{

    margin-bottom:16px;

}

.area-highlight-card p{

    color:#cfcfcf;

    line-height:1.8;

}

@media(max-width:991px){

    .area-highlights{

        padding:70px 0;

    }

    .area-highlights-grid{

        grid-template-columns:repeat(2,1fr);

    }

}

@media(max-width:576px){

    .area-highlights-grid{

        grid-template-columns:1fr;

    }

}

/*======================================
        AREA PROFILES
======================================*/

.area-profiles{

    padding:100px 0;

}

.area-profiles-heading{

    max-width:760px;

    margin:0 auto 60px;

    text-align:center;

}

.area-profiles-grid{

    display:grid;

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

    gap:30px;

}

.area-profile-card{

    overflow:hidden;

    border-radius:24px;

    background:#121212;

    border:1px solid rgba(212,175,55,.12);

    transition:.35s;

}

.area-profile-card:hover{

    transform:translateY(-8px);

    border-color:#d4af37;

    box-shadow:0 20px 45px rgba(0,0,0,.35);

}

.area-profile-card img{

    width:100%;

    height:340px;

    object-fit:cover;

    display:block;

}

.area-profile-content{

    padding:24px;

}

.profile-badge{

    display:inline-block;

    padding:6px 14px;

    margin-bottom:16px;

    border-radius:30px;

    background:rgba(212,175,55,.12);

    color:#d4af37;

    font-size:13px;

    font-weight:600;

}

.area-profile-content h3{

    margin-bottom:10px;

}

.area-profile-content p{

    margin-bottom:20px;

    color:#cfcfcf;

}

.profile-btn{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    width:100%;

    height:48px;

    border-radius:12px;

    background:#d4af37;

    color:#111;

    font-weight:600;

    transition:.3s;

}

.profile-btn:hover{

    background:#fff;

}

@media(max-width:991px){

    .area-profiles{

        padding:70px 0;

    }

    .area-profiles-grid{

        grid-template-columns:repeat(2,1fr);

    }

}

@media(max-width:576px){

    .area-profiles-grid{

        grid-template-columns:1fr;

    }

}

/*======================================
        MORE LOCATIONS
======================================*/

.more-locations{

    padding:100px 0;

}

.more-locations-heading{

    max-width:760px;

    margin:0 auto 60px;

    text-align:center;

}

.more-locations-heading h2{

    margin:18px 0 20px;

}

.more-locations-heading p{

    max-width:680px;

    margin:auto;

}

.more-locations-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:25px;

}

.more-location-card{

    padding:35px;

    border-radius:22px;

    background:#121212;

    border:1px solid rgba(212,175,55,.10);

    text-align:center;

    transition:.35s;

}

.more-location-card:hover{

    transform:translateY(-6px);

    border-color:#d4af37;

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

}

.more-location-card i{

    font-size:34px;

    color:#d4af37;

    margin-bottom:18px;

}

.more-location-card h3{

    margin-bottom:12px;

}

.more-location-card span{

    color:#d4af37;

    font-weight:600;

}

@media(max-width:991px){

    .more-locations{

        padding:70px 0;

    }

    .more-locations-grid{

        grid-template-columns:repeat(2,1fr);

    }

}

@media(max-width:576px){

    .more-locations-grid{

        grid-template-columns:1fr;

    }

}