.hero-split {
    padding: 30px 0;
}

/* ================= LEFT CARD ================= */
.hero-info-box {
    background: #000;
    color: #fff;
    padding: 40px 30px;
    border: 2px solid #c89b5e;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-info-box h2 {
    font-size: 26px;
    margin-bottom: 25px;
    line-height: 1.4;
}

.hero-info-list {
    list-style: none;
    padding: 0;
    margin: 0 0 25px;
}

.hero-info-list li {
    margin-bottom: 15px;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.hero-info-list i {
    color: #c89b5e;
}

/* ================= BUTTON GROUP ================= */
.hero-btn-group {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 20px;
}

/* BOOK BUTTON */
.book-btn {
    background: #c89b5e;
    color: #000;
    padding: 12px 22px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

/* DIRECTIONS BUTTON */
.direction-btn {
    background: transparent;
    color: #c89b5e;
    padding: 12px 22px;
    border-radius: 30px;
    border: 1px solid #c89b5e;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

/* HOVER */
.book-btn:hover {
    background: #b8894f;
    color: #000;
}

.direction-btn:hover {
    background: #c89b5e;
    color: #000;
}

/* ================= HERO LAYOUT ================= */
.hero-split .row {
    display: flex;
    align-items: stretch;
}

.hero-split .col-md-5,
.hero-split .col-md-7 {
    display: flex;
}

/* ================= SLIDER ================= */
.hero-slider-new {
    width: 100%;
    height: 100%;
}

/* EACH SLIDE */
.hero-slide {
    position: relative;
    height: 100%;
    display: flex;
}

/* IMAGE FULL HEIGHT */
.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ================= OVERLAY ================= */
.hero-slide::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 55%;
    height: 100%;
    background: linear-gradient(to right, rgba(0,0,0,0.7), transparent);
    z-index: 1;
}

/* ================= TEXT ================= */
.slide-content {
    position: absolute;
    top: 50%;
    left: 40px;
    transform: translateY(-50%);
    color: #fff;
    z-index: 2;
    width: 45%;
}

.slide-content h2 {
    font-size: 28px;
    margin-bottom: 10px;
    color: #c89b5e;
}

.slide-content p {
    font-size: 15px;
    margin-bottom: 15px;
}

/* CTA BUTTON */
.slide-btn {
    display: inline-block;
    background: #c89b5e;
    color: #000;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    margin-top: 10px;
}

.slide-btn:hover {
    background: #b8894f;
    color: #000;
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {

    .hero-split .row {
        flex-direction: column;
    }

    .hero-info-box {
        margin-bottom: 20px;
    }

    .slide-content {
        width: 90%;
        left: 20px;
    }

    .hero-slide::before {
        width: 100%;
    }
}












/* FORCE SAME HEIGHT FOR BOTH COLUMNS */
.hero-split .row {
    display: flex;
    align-items: stretch;
}

/* RIGHT COLUMN FULL HEIGHT */
.hero-slider-new {
    height: 100%;
}

/* SLICK TRACK FIX */
.hero-slider-new .slick-list,
.hero-slider-new .slick-track {
    height: 100%;
}

/* EACH SLIDE FULL HEIGHT */
.hero-slider-new .slick-slide {
    height: 100%;
    display: flex !important;
}

/* SLIDE WRAPPER */
.hero-slide {
    height: 100%;
    width: 100%;
}

/* IMAGE ALWAYS SAME HEIGHT */
.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}







/* ================= SECTION ================= */
.sc-features {
    background: #f5f5f5;
    padding: 60px 20px;
}

/* ================= HEADING ================= */
.sc-heading {
    max-width: 900px;
    margin: 0 auto 40px;
}

.sc-heading h2 {
    font-size: 32px;
    margin-bottom: 15px;
}

.sc-heading p {
    font-size: 16px;
    color: #555;
}

/* ================= GRID ================= */
.sc-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

/* ================= CARD ================= */
.sc-card {
    background: #fff;
    padding: 30px 20px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.sc-card i {
    font-size: 28px;
    color: #212529;
    margin-bottom: 15px;
}

.sc-card p {
    font-size: 15px;
    margin: 0;
}

/* HOVER */
.sc-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

/* ================= BOTTOM TEXT ================= */
.sc-bottom {
    max-width: 900px;
    margin: 30px auto 0;
}

.sc-bottom p {
    font-size: 15px;
    color: #555;
}

/* ================= TABLET ================= */
@media (max-width: 992px) {
    .sc-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ================= MOBILE ================= */
@media (max-width: 576px) {
    .sc-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .sc-heading h2 {
        font-size: 24px;
    }

    .sc-card {
        padding: 25px 15px;
    }

    .sc-card p {
        font-size: 14px;
    }
}







.address-cards {
    padding: 60px 0;
}

/* MAIN CARD */
.contact-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 14px;
    box-shadow: 0 10px 35px rgba(0,0,0,0.06);

    display: flex;
    flex-direction: column;
    gap: 25px;

    height: 100%;
}

/* EACH ITEM */
.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

/* ICON */
.contact-item .icon {
    min-width: 50px;
    height: 50px;
    background: #c89b5a; /* gold tone like your design */
    color: #000;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 10px;
    font-size: 18px;
}

/* TEXT */
.contact-item h5 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
}

.contact-item p {
    margin: 5px 0 0;
    font-size: 14px;
    color: #666;
}

/* MAP */
.map-box {
    width: 100%;
    height: 100%;
    min-height: 350px;

    border-radius: 14px;
    overflow: hidden;

    box-shadow: 0 10px 35px rgba(0,0,0,0.06);
}

/* MOBILE */
@media (max-width: 991px) {
    .map-box {
        margin-top: 30px;
        height: 300px;
    }
}