/* Bliss Location Style */
/* =========================================
   BLISS LOCATIONS SECTION
========================================= */

.bliss-locations-area {
    background: #f8f6f1;
    padding: 90px 0 100px;
    position: relative;
}

.bliss-locations-title {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 55px;
}

.bliss-locations-title h1 {
    margin: 0;
    font-size: 42px;
    line-height: 1.2;
    font-weight: 600;
    color: #222222;
}

.bliss-locations-title h1 span {
    color: #003f1e;
}

.bliss-title-line {
    width: 80px;
    height: 2px;
    background: #c8a45d;
    margin: 18px auto 20px;
    position: relative;
}

.bliss-title-line span {
    display: block;
    width: 8px;
    height: 8px;
    background: #c8a45d;
    border-radius: 50%;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.bliss-locations-title p {
    font-size: 16px;
    line-height: 28px;
    color: #555555;
    margin: 0;
}


/* LOCATION CARD */

.bliss-location-card {
    background: #ffffff;
    margin-bottom: 30px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.07);
    transition: all 0.35s ease;
    overflow: hidden;
    border-radius: 3px;
}

.bliss-location-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}


/* IMAGE */

.bliss-location-image {
    width: 100%;
    height: 330px;
    overflow: hidden;
}

.bliss-location-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.bliss-location-card:hover .bliss-location-image img {
    transform: scale(1.04);
}


/* CONTENT */

.bliss-location-content {
    padding: 32px 35px 38px;
}

.bliss-location-content h2 {
    margin: 0 0 7px;
    color: #222222;
    font-size: 28px;
    line-height: 1.3;
    font-weight: 600;
}

.bliss-location-subtitle {
    color: #003f1e;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 16px;
    letter-spacing: 0.3px;
}

.bliss-location-content p {
    color: #555555;
    font-size: 15px;
    line-height: 27px;
    margin-bottom: 18px;
}

.bliss-location-address {
    color: #333333 !important;
    font-weight: 500;
}

.bliss-location-address i {
    color: #003f1e;
    margin-right: 8px;
}


/* BUTTON */

.bliss-location-btn {
    display: inline-block;
    margin-top: 5px;
    padding: 14px 25px;
    background: #003f1e;
    color: #ffffff !important;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.4px;
    text-decoration: none !important;
    transition: all 0.3s ease;
}

.bliss-location-btn:hover {
    background: #c8a45d;
    color: #ffffff !important;
}


/* =========================================
   MOBILE
========================================= */

@media only screen and (max-width: 767px) {

    .bliss-locations-area {
        padding: 60px 15px 70px;
    }

    .bliss-locations-title {
        margin-bottom: 35px;
    }

    .bliss-locations-title h1 {
        font-size: 30px;
    }

    .bliss-locations-title p {
        font-size: 14px;
        line-height: 24px;
    }

    .bliss-location-image {
        height: 240px;
    }

    .bliss-location-content {
        padding: 25px 22px 30px;
    }

    .bliss-location-content h2 {
        font-size: 24px;
    }

    .bliss-location-content p {
        font-size: 14px;
        line-height: 25px;
    }

    .bliss-location-btn {
        width: 100%;
        text-align: center;
    }
}



/* form select */
#appointment-form select {
    width: 100%;
    height: 50px;
    padding: 0 15px;
    border: 1px solid #e5e5e5;
    background: #fff;
    color: #555;
    font-size: 14px;
    outline: none;
    border-radius: 0;
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
    
    background-image: linear-gradient(45deg, transparent 50%, #003f1e 50%),
                      linear-gradient(135deg, #003f1e 50%, transparent 50%);
    background-position: calc(100% - 20px) 21px,
                         calc(100% - 14px) 21px;
    background-size: 6px 6px, 6px 6px;
    background-repeat: no-repeat;
}

#appointment-form select:focus {
    border-color: #003f1e;
}

#appointment-form select option {
    color: #333;
}

