@charset "utf-8";
/* CSS Document */

/* --------------------------------
GENERAL PAGE STYLING
-------------------------------- */

body {
    overflow-x: hidden;
}
.section-gap {
    padding: 2.25rem 0;
}
.section-uk {
    margin: 60px 0 40px 0;
}
main p {
    line-height: 1.7;
    font-size: 1.05rem;
}
.muted-small {
    color: #6c757d;
    font-size: .95rem;
}
h2 {
    font-weight: 600;
    margin-top: 2.5rem;
}
hr {
    border-top: 1px solid rgba(0,0,0,.06);
}
/* --------------------------------
HERO SECTION
-------------------------------- */

.hero {
    padding: 3.25rem 0;
    background: linear-gradient( 180deg, #f8f9fa 0%, #ffffff 100% );
    border-bottom: 1px solid rgba(0,0,0,.06);
    position: relative;
    box-shadow: 0 12px 30px rgba(0,0,0,.06);
}
.hero h1 {
    font-weight: 700;
    letter-spacing: -0.5px;
}
.hero .btn {
    box-shadow: 0 6px 14px rgba(0,0,0,.08);
}
.hero::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background: linear-gradient( to bottom, rgba(255,255,255,0), rgba(249,250,251,1) );
    pointer-events: none;
}
.hero img {
    border-radius: 12px;
    box-shadow: 0 14px 30px rgba(0,0,0,.12);
}
.hero .col-lg-6:last-child {
    position: relative;
}
.hero .col-lg-6:last-child::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 110%;
    height: 110%;
    background: radial-gradient( circle, rgba(0,0,0,0.04) 0%, rgba(0,0,0,0.02) 40%, rgba(0,0,0,0) 70% );
    z-index: 0;
}
.hero img {
    position: relative;
    z-index: 1;
}
/* --------------------------------
BUTTONS
-------------------------------- */

.cta-row .btn {
    margin: .25rem;
}
.btn-primary {
    border-radius: 30px;
    padding: .65rem 1.6rem;
    font-weight: 600;
}
.btn-outline-primary {
    border-radius: 30px;
    padding: .6rem 1.5rem;
}
.booking-btn {
    font-weight: 600;
    padding: 6px 14px;
}

/* Mobile booking button */
@media (max-width: 768px) {
.booking-btn {
    width: 100%;
    margin-top: 10px;
    font-size: 16px;
    padding: 10px;
}
}
/* --------------------------------
IMAGE GRID
-------------------------------- */

.img-grid img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 18px rgba(0,0,0,.08);
    transition: transform .25s ease;
}
.img-grid img:hover {
    transform: scale(1.02);
}
/* --------------------------------
LIGHT CONTENT PANELS
-------------------------------- */

.bg-light {
    background: #f9fafb !important;
    border: 1px solid rgba(0,0,0,.05);
}
/* --------------------------------
BENEFITS STRIP
-------------------------------- */

.benefits-strip {
    background: #fafafa;
    border-bottom: 1px solid rgba(0,0,0,.08);
    padding: 25px 0;
}
.benefit {
    padding: 10px;
    transition: transform .2s ease;
}
.benefit p {
    margin: 0;
    font-size: .9rem;
    font-weight: 600;
    letter-spacing: .2px;
}
.benefit .icon {
    width: 50px;
    height: 50px;
    line-height: 50px;
    margin: 0 auto 10px auto;
    margin-bottom: 6px;
    font-size: 22px;
    background: #f8f9fa;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0,0,0,.06);
}
/* --------------------------------
FAQ
-------------------------------- */

#faq .btn-link {
    color: #212529;
    text-decoration: none;
    font-weight: 600;
}
#faq .btn-link:hover {
    text-decoration: none;
}
/* --------------------------------
REVIEWS
-------------------------------- */

.review-card {
    background: #ffffff;
    border: 1px solid rgba(0,0,0,.08);
    border-radius: 10px;
    padding: 35px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0,0,0,.08);
    max-width: 700px;
    margin: 0 auto;
}
.stars {
    color: #f4b400;
    font-size: 26px;
    margin-bottom: 10px;
    letter-spacing: 3px;
}
.review-text {
    font-size: 1.15rem;
    font-style: italic;
    margin-bottom: 15px;
}
.review-author {
    font-weight: 600;
    color: #6c757d;
}
.carousel-control-prev-icon, .carousel-control-next-icon {
    filter: invert(0.6);
}

/* --------------------------------
MOBILE OPTIMISATION
-------------------------------- */

@media (max-width:576px) {
.hero h1 {
    font-size: 2rem;
}
.container {
    padding-left: 20px;
    padding-right: 20px;
}
.hero .btn {
    display: block;
    width: 100%;
    margin-bottom: 12px;
}
}