/* =========================
   RESET
========================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

/* =========================
   BODY
========================= */

body{
    font-family:Arial, Helvetica, 'Poppins', sans-serif;
    color:#333;
    line-height:1.6;
    background:#fff;
    margin:0;
    -webkit-font-smoothing:antialiased;
    -moz-osx-font-smoothing:grayscale;
}

.script {
    font-family: 'Dancing Script', cursive;
}

/* =========================
   CONTAINER
========================= */

.container{
    width:90%;
    max-width:1200px;
    margin:0 auto;
}

/* =========================
   GLOBAL LINKS
========================= */

a{
    transition:0.3s ease;
}

/* =========================
   IMAGES
========================= */

img{
    display:block;
    max-width:100%;
    width:100%;
    height:auto;
}

/* =========================
   TYPOGRAPHY
========================= */

h1,
h2,
h3,
h4,
h5,
h6{
    line-height:1.2;
    font-weight:700;
}

p{
    margin-bottom:1rem;
}

/* =========================
   BUTTONS
========================= */

.btn{
    display:inline-block;
    padding:12px 24px;
    border-radius:6px;
    text-decoration:none;
    transition:0.3s ease;
    cursor:pointer;
}

/* =========================
   HEADER BUTTON
========================= */

.header-btn{
    background:#2A388F;
    color:#fff;
    padding:12px 24px;
    border-radius:6px;
    text-decoration:none;
    transition:0.3s ease;
}

.header-btn:hover{
    background:#1B75BB;
}

/* =========================
   HEADER
========================= */

.header{
    position:sticky;
    top:0;
    width:100%;
    background:#fff;
    z-index:9999;
}

/* =========================
   TOP BAR
========================= */

.top-bar{
    background:#2A388F;
    color:#fff;
    font-size:14px;
    z-index:10000;
}

.top-bar-inner{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:10px 0;
}

.top-bar a{
    color:#fff;
    text-decoration:none;
}

.top-bar a:hover{
    opacity:0.8;
}

.top-social{
    display:flex;
    gap:20px;
}

.top-contact{
    display:flex;
    align-items:center;
    gap:15px;
}

.divider{
    opacity:0.5;
}

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

.main-header{
    background:#fff;
    border-bottom:1px solid #eee;
    box-shadow:0 2px 10px rgba(0,0,0,0.05);
}

.header-inner{
    display:flex;
    justify-content:space-between;
    align-items:center;
    height:90px;
}

.logo{
    font-size:28px;
    font-weight:700;
    text-decoration:none;
    color:#111;
}

.logo:hover{
    opacity:0.8;
}

.nav-menu{
    display:flex;
    align-items:center;
}

.nav-links{
    display:flex;
    align-items:center;
    gap:40px;
    list-style:none;
    margin:0;
    padding:0;
}

.nav-links li{
    list-style:none;
    position:relative;
}

.nav-links a{
    text-decoration:none;
    color:#111;
    font-weight:500;
    transition:0.3s ease;
}

.nav-links a:hover{
    color:#2A388F;
}

/* =========================
   DROPDOWN MENU
========================= */

.nav-links li{
    position:relative;
}

/* PARENT ITEMS WITH CHILDREN */
.menu-item-has-children > a{
    display:flex;
    align-items:center;
    gap:6px;
}

/* OPTIONAL ARROW */
.menu-item-has-children > a::after{
    content:"▼";
    font-size:10px;
    margin-left:4px;
}

/* DROPDOWN CONTAINER */
.sub-menu{
    position:absolute;
    top:140%;
    left:0;

    background:#fff;
    min-width:180px;

    display:flex;
    flex-direction:column;
    gap:10px;

    list-style:none;

    padding:15px 20px;

    border-radius:8px;
    box-shadow:0 10px 25px rgba(0,0,0,0.08);

    opacity:0;
    visibility:hidden;
    transform:translateY(10px);

    transition:all 0.25s ease;

    z-index:999;
}

/* DROPDOWN ITEMS */
.sub-menu li{
    width:100%;
}

/* DROPDOWN LINKS */
.sub-menu a{
    display:block;
    padding:5px 0;
    font-size:0.95rem;
    color:#111;
    text-decoration:none;
    transition:0.3s ease;
}

/* LINK HOVER */
.sub-menu a:hover{
    color:#2A388F;
}

/* SHOW DROPDOWN */
.nav-links li:hover > .sub-menu{
    opacity:1;
    visibility:visible;
    transform:translateY(0);
}

/* =========================
   LOGO
========================= */

.logo img{
    max-height:70px;
    width:auto;
    display:block;
}

.custom-logo-link{
    display:flex;
    align-items:center;
}

/* =========================
   HERO (HOMEPAGE ONLY)
========================= */

.hero{
    position:relative;
    height:85vh;
    min-height:600px;
    overflow:hidden;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    padding:20px;
}

/* SLIDER CONTAINER */

.hero-slider{
    position:absolute;
    inset:0;
    z-index:0;
}

/* EACH SLIDE */

.hero-slide{
    position:absolute;
    inset:0;

    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;

    background-color:#0b1a3a;

    opacity:0;
    transition:opacity 1.5s ease-in-out;

    transform:scale(1);
}

/* ACTIVE SLIDE */

.hero-slide.active{
    opacity:1;
    animation:slowZoom 20s ease-in-out infinite alternate;
}

/* OVERLAY */

.hero::after{
    content:"";
    position:absolute;
    inset:0;
    background:rgba(0,0,0,0.35);
    z-index:1;
}

/* CONTENT */

.hero-content{
    position:relative;
    z-index:2;
    color:#fff;
    max-width:900px;
    width:90%;
    margin:0 auto;
}

.hero h1{
    font-size:3.8rem;
    margin-bottom:20px;
    font-weight:700;
    text-shadow:0 6px 30px rgba(0,0,0,0.7);

    opacity:0;
    transform:translateY(60px);
    animation:heroFadeUp 1s ease forwards 0.2s;
}

.hero p{
    font-size:1.4rem;
    color:#eee;
    text-shadow:0 4px 20px rgba(0,0,0,0.6);

    opacity:0;
    transform:translateY(60px);
    animation:heroFadeUp 1s ease forwards 0.4s;
}

.hero-buttons{
    margin-top:25px;

    opacity:0;
    transform:translateY(60px);
    animation:heroFadeUp 1s ease forwards 0.6s;
}

/* =========================
   HERO CONTROLS
========================= */

.hero-prev,
.hero-next{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    z-index:5;

    width:42px;
    height:42px;

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

    background:rgba(255,255,255,0.15);
    backdrop-filter:blur(6px);

    border-radius:50%;
    cursor:pointer;

    transition:all 0.25s ease;

    color:#fff;
    font-size:18px;
    line-height:1;
}

.hero-prev{
    left:20px;
}

.hero-next{
    right:20px;
}

.hero-prev:hover,
.hero-next:hover{
    background:rgba(255,255,255,0.25);
    transform:translateY(-50%) scale(1.05);
}

/* =========================
   DOTS
========================= */

.hero-dots{
    position:absolute;
    bottom:30px;
    left:50%;
    transform:translateX(-50%);

    display:flex;
    gap:8px;

    z-index:5;
}

.hero-dot{
    width:8px;
    height:8px;

    border-radius:50%;
    background:rgba(255,255,255,0.5);

    cursor:pointer;
    transition:all 0.25s ease;
}

.hero-dot.active{
    background:#1B75BB;
    transform:scale(1.2);
}

.hero-dot:hover{
    background:#fff;
}

/* =========================
   HERO AVAILABILITY BAR
========================= */

.sticky-plan{
    position:absolute;
    bottom:50px;
    left:50%;
    transform:translateX(-50%);
    z-index:10;

    width:90%;
    max-width:1100px;

    background:rgba(255,255,255,0.95);
    backdrop-filter:blur(10px);

    border-radius:12px;
    padding:20px;

    box-shadow:0 15px 40px rgba(0,0,0,0.15);
}

.sticky-plan-form{
    display:flex;
    align-items:flex-end;
    gap:20px;
}

.sticky-field{
    flex:1;
}

.sticky-field label{
    display:block;
    margin-bottom:8px;
    font-size:14px;
    font-weight:600;
    color:#333;
}

.sticky-field input{
    width:100%;
    padding:12px;

    border:1px solid #ddd;
    border-radius:6px;

    font-size:15px;
}

.sticky-btn{
    background:#2A388F;
    color:#fff;

    border:none;
    border-radius:6px;

    padding:14px 30px;

    cursor:pointer;
    transition:0.3s ease;

    font-weight:600;
}

.sticky-btn:hover{
    background:#1B75BB;
}

/* =========================
   ANIMATIONS
========================= */

@keyframes heroFadeUp{

    from{
        opacity:0;
        transform:translateY(60px);
    }

    to{
        opacity:1;
        transform:translateY(0);
    }

}

@keyframes slowZoom{

    from{
        transform:scale(1);
    }

    to{
        transform:scale(1.08);
    }

}

/* =========================
   ABOUT SECTION
========================= */

.about-home{
    padding:100px 0;
    background:#fff;
}

.about-grid{
    display:grid;
    grid-template-columns:minmax(0, 1fr) minmax(0, 1fr);
    gap:80px;
    align-items:center;
}

/* IMAGE SIDE */

.about-image{
    height:650px;
    overflow:hidden;
    border-radius:16px;
    box-shadow:0 20px 40px rgba(0,0,0,0.12);
}

.about-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

/* CONTENT SIDE */

.about-content{
    min-width:0;
    display:flex;
    flex-direction:column;
    justify-content:center;
}

.section-subtitle{
    display:inline-block;
    color:#2A388F;
    font-weight:600;
    margin-bottom:15px;
    text-transform:uppercase;
    letter-spacing:1px;
}

.about-content h2{
    font-size:2.5rem;
    line-height:1.2;
    margin-bottom:20px;
    color:#111;
}

.about-content p{
    margin-bottom:20px;
    color:#555;
    font-size:1.05rem;
    line-height:1.8;
}

.about-btn{
    display:inline-block;
    width:fit-content;

    background:#2A388F;
    color:#fff;

    padding:14px 30px;

    border-radius:6px;
    text-decoration:none;

    transition:0.3s ease;
}

.about-btn:hover{
    background:#1B75BB;
}

/* =========================
   TESTIMONIALS (HERO STYLE)
   ========================= */

.testimonials {
    position: relative;
    padding: 120px 20px;
    text-align: center;
    overflow: hidden;
    color: #fff;
}

/* BACKGROUND IMAGE */
.testimonials::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url(../images/testimonial-bg.webp) center/cover no-repeat;
    background-attachment: fixed;
    animation: slowZoom 20s ease-in-out infinite alternate;
    z-index: 0;
}

/* DARK OVERLAY */
.testimonials::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.55);
    z-index: 1;
}

/* CONTENT ABOVE BACKGROUND */
.testimonials > * {
    position: relative;
    z-index: 2;
}

/* HEADING */
.testimonials h2 {
    font-size: 3.2rem;
    margin-bottom: 50px;
    color: #fff;
    font-weight: 700;
    letter-spacing: -0.5px;
}

/* GRID */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1100px;
    margin: auto;
}

/* WRAPPER */
.testimonial-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.testimonial-item.show {
    opacity: 1;
    transform: translateY(0);
}

/* CARD */
.testimonial-card {
    background: #fff;
    padding: 22px;
    border-radius: 14px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
    text-align: left;
    transition: all 0.35s ease;
    width: 100%;
    position: relative;
}

.testimonial-card::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 30px;
    width: 18px;
    height: 18px;
    background: #fff;
    transform: rotate(45deg);
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 40px rgba(0,0,0,0.12);
}

/* TITLE (FIXED DARK COLOR) */
.testimonial-title {
    font-size: 1.15rem;
    font-weight: 600;
    color: #111;
    margin-bottom: 6px;
    letter-spacing: -0.2px;
}

/* STARS */
.stars {
    color: #f5b50a;
    font-size: 1.6rem;
    margin-bottom: 12px;
    letter-spacing: 2px;
}

/* TEXT */
.testimonial-card p {
    font-size: 0.92rem;
    color: #444;
    line-height: 1.5;
    margin-bottom: 15px;
}

/* USER INFO */
.testimonial-user {
    margin-top: 18px;
    text-align: left;
}

.testimonial-user strong {
    display: block;
    color: #fff;
    font-weight: 500;
}

.testimonial-user span {
    color: rgba(255,255,255,0.7);
    font-size: 0.75rem;
}

/* STAGGER */
.testimonial-item:nth-child(1) { transition-delay: 0.1s; }
.testimonial-item:nth-child(2) { transition-delay: 0.25s; }
.testimonial-item:nth-child(3) { transition-delay: 0.4s; }
.testimonial-item:nth-child(4) { transition-delay: 0.55s; }

/* RESPONSIVE */
@media(max-width: 1024px){
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width: 600px){
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

/* ==================================
   LOCATIONS SECTION
================================== */

.choose {
    padding: 100px 0;
    overflow: hidden;
}

/* SECTION HEADER */

.section-heading {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.section-subtitle {
    display: inline-block;
    color: #1B75BB;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.section-heading h2 {
    margin-bottom: 20px;
}

.section-heading p {
    color: #666;
    line-height: 1.8;
}

/* GRID */

.choose .grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

/* CARD */

.stay-card {
    position: relative;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    color: #fff;
}

/* BACKGROUND IMAGES */

.breeze {
    background-image: url(../images/new-images/003.webp);
    background-size: cover;
    background-position: center;
}

.edge {
    background-image: url(../images/edge/ocean-edge-00.webp);
    background-size: cover;
    background-position: center;
}

/* OVERLAY */

.stay-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0,0,0,0.80),
        rgba(0,0,0,0.45)
    );
    z-index: 1;
    transition: all 0.4s ease;
}

/* ZOOM EFFECT */

.stay-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: inherit;
    background-size: cover;
    background-position: center;
    transition: transform 1.2s ease;
    z-index: 0;
}

.stay-card:hover::after {
    transform: scale(1.08);
}

.stay-card:hover::before {
    background: linear-gradient(
        to top,
        rgba(0,0,0,0.88),
        rgba(0,0,0,0.50)
    );
}

/* CONTENT */

.stay-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 500px;
    padding: 60px;
}

/* LABEL */

.stay-label {
    display: inline-block;
    margin-bottom: 20px;
    padding: 8px 20px;
    border-radius: 999px;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
}

/* TITLE */

.stay-content h3 {
    font-size: clamp(3rem, 5vw, 5rem);
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1;
    color: #fff;
}

/* DESCRIPTION */

.stay-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255,255,255,0.95);
    margin-bottom: 30px;
}

/* FEATURES */

.stay-features {
    list-style: none;
    padding: 0;
    margin: 0 0 35px;
}

.stay-features li {
    margin-bottom: 12px;
    font-size: 1rem;
    color: rgba(255,255,255,0.95);
}

.stay-features li::before {
    content: "•";
    color: #1B75BB;
    margin-right: 10px;
    font-weight: bold;
}

/* BUTTON */

.btn-location {
    background: #fff;
    color: #2A388F;
    padding: 14px 35px;
    border-radius: 999px;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-location:hover {
    transform: translateY(-3px);
}

/* ANIMATIONS */

.fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
}

.fade-up.show {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 {
    transition-delay: 0.2s;
}

.delay-2 {
    transition-delay: 0.4s;
}

.delay-3 {
    transition-delay: 0.6s;
}

/* MOBILE */

@media (max-width: 991px) {

    .choose .grid-2 {
        grid-template-columns: 1fr;
    }

    .stay-card {
        min-height: 600px;
    }

}

@media (max-width: 768px) {

    .choose {
        padding: 80px 0;
    }

    .stay-card {
        min-height: 500px;
    }

    .stay-content {
        padding: 40px 25px;
    }

    .stay-content h3 {
        font-size: 3rem;
    }

    .stay-description {
        font-size: 1rem;
    }

}

/* =========================
   CTA
========================= */

.cta {
    padding: 100px 20px;
    text-align: center;
    background: linear-gradient(
        135deg,
        #2A388F,
        #1B75BB
    );
    color: #fff;
}

.cta h2 {
    color: #fff;
    margin-bottom: 20px;
}

.cta p {
    max-width: 700px;
    margin: 0 auto 35px;
    opacity: 0.95;
    line-height: 1.8;
}

.cta .primary {
    background: #fff;
    color: #2A388F;
    border: none;
}

.cta .primary:hover {
    background: rgba(255,255,255,0.92);
    color: #1B75BB;
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

/* =========================
   INFO PANEL
========================= */

.info-panel {
    background: #f8fafc;
    padding: 80px 0;
}

.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 60px;
    align-items: start;
}

/* LOGO */

.info-left {
    display: flex;
    justify-content: center;
    align-items: center;
}

.info-left img,
.info-left .custom-logo {
    max-width: 220px;
    height: auto;
}

/* CENTER */

.info-center h3,
.info-right h3 {
    margin-bottom: 20px;
    color: #2A388F;
}

.info-center p {
    margin-bottom: 15px;
    line-height: 1.8;
    color: #555;
}

.info-center a {
    color: #1B75BB;
}

/* RIGHT */

.info-right p {
    margin-bottom: 20px;
    color: #555;
}

.info-right form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.info-right input {
    width: 100%;
    padding: 14px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 0.95rem;
}

.info-right input:focus {
    outline: none;
    border-color: #1B75BB;
}

.info-right .btn {
    width: 100%;
}

/* HOVER */

.info-panel a {
    text-decoration: none;
}

.info-panel a:hover {
    color: #2A388F;
}

/* =========================
   FOOTER
========================= */

.footer {
    background: #2A388F;
    color: rgba(255,255,255,0.8);
    padding: 25px 0;
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

/* LEFT */

.footer-left {
    flex: 1;
    text-align: left;
}

/* CENTER */

.social-icons {
    flex: 1;
    display: flex;
    justify-content: center;
    gap: 15px;
}

/* RIGHT */

.footer-right {
    flex: 1;
    text-align: right;
}

/* TEXT */

.footer p {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.6;
}

/* LINKS */

.footer a {
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer a:hover {
    color: #1B75BB;
}

/* SOCIAL ICONS */

.social-icons a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);

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

    color: #fff;
    font-size: 1rem;

    transition: all 0.3s ease;
}

.social-icons a:hover {
    background: #1B75BB;
    color: #fff;
    transform: translateY(-3px);
}

.social-icons i {
    line-height: 1;
}

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

@media (max-width: 991px) {

    .footer-inner {
        gap: 15px;
    }

}

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

@media (max-width: 768px) {

    .footer-inner {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .footer-left,
    .footer-right {
        text-align: center;
    }

    .social-icons {
        order: -1;
    }

    .footer p {
        font-size: 0.85rem;
    }

}

/* ==================================
   EXPERIENCES / OFFERS
================================== */

.offers {
    padding: 120px 0;
}

/* SUBTEXT */

.offers-sub {
    max-width: 700px;
    margin: 0 auto;
    color: #666;
}

/* GRID */

.offers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

/* CARD */

.offer-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;

    box-shadow: 0 10px 30px rgba(0,0,0,0.06);

    transition: all 0.35s ease;
}

.offer-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.10);
}

/* IMAGE */

.offer-image {
    height: 240px;
    overflow: hidden;
}

.offer-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;

    transition: transform 0.8s ease;
}

.offer-card:hover .offer-image img {
    transform: scale(1.08);
}

/* CONTENT */

.offer-content {
    padding: 25px;
}

.offer-content h3 {
    margin-bottom: 12px;
    color: #111;
}

.offer-content p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
}

/* LINK */

.offer-link {
    color: #1B75BB;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.offer-link:hover {
    color: #2A388F;
}

/* RESPONSIVE */

@media (max-width: 1024px) {

    .offers-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}

@media (max-width: 768px) {

    .offers {
        padding: 80px 0;
    }

    .offers-grid {
        grid-template-columns: 1fr;
    }

}

/* ==================================
   EXPERIENCE ENQUIRY FORM
================================== */

.booking-premium {
    position: relative;
    padding: 140px 0 100px;
    background: linear-gradient(
        135deg,
        #2A388F,
        #1B75BB
    );
    text-align: center;
    overflow: hidden;
}

/* LIGHT EFFECT */

.booking-premium::after {
    content: "";
    position: absolute;
    inset: 0;

    background:
        radial-gradient(
            circle at 20% 20%,
            rgba(255,255,255,0.08),
            transparent 45%
        );

    pointer-events: none;
}

/* CONTENT */

.booking-premium .container {
    position: relative;
    z-index: 2;
}

/* HEADING */

.booking-premium h2 {
    font-size: 3.2rem;
    color: #fff;
    margin-bottom: 12px;
}

.booking-premium h2 .script {
    color: #fff;
}

/* SUBTEXT */

.booking-sub {
    max-width: 700px;
    margin: 0 auto 50px;
    color: rgba(255,255,255,0.85);
}

/* FORM */

.booking-form {
    max-width: 850px;
    margin: auto;

    background: #fff;

    padding: 45px;

    border-radius: 18px;

    box-shadow:
        0 25px 60px rgba(0,0,0,0.25);

    display: flex;
    flex-direction: column;
    gap: 18px;

    transition: all .3s ease;
}

.booking-form:hover {
    transform: translateY(-4px);
}

/* GROUP */

.form-group {
    display: flex;
    flex-direction: column;
    text-align: left;
}

/* LABEL */

.form-group label {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 6px;
    color: #444;
}

/* ROWS */

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

/* INPUTS */

.booking-form input,
.booking-form select,
.booking-form textarea {
    width: 100%;

    padding: 14px 16px;

    border: 1px solid #e5e7eb;

    border-radius: 8px;

    background: #f9fafc;

    font-family: inherit;

    font-size: 0.95rem;

    transition: all .3s ease;
}

/* FOCUS */

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
    outline: none;

    border-color: #1B75BB;

    background: #fff;

    box-shadow:
        0 0 0 3px rgba(27,117,187,0.12);
}

/* TEXTAREA */

.booking-form textarea {
    resize: vertical;
    min-height: 150px;
}

/* AUTO SELECTED EXPERIENCE */

.selected-offer-box {
    background: rgba(27,117,187,0.08);

    border: 1px solid rgba(27,117,187,0.15);

    padding: 15px;

    border-radius: 8px;

    color: #1B75BB;

    font-weight: 600;
}

/* EXPERIENCES */

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

/* EXPERIENCE CARD */

.checkbox-item {
    position: relative;

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

    text-align: center;

    padding: 14px;

    border-radius: 10px;

    border: 1px solid #e5e7eb;

    background: #f9fafc;

    cursor: pointer;

    transition: all .25s ease;
}

.checkbox-item:hover {
    transform: translateY(-2px);

    background: #fff;

    box-shadow:
        0 8px 18px rgba(0,0,0,0.06);
}

.checkbox-item input {
    position: absolute;
    opacity: 0;
}

.checkbox-item span {
    font-weight: 500;
    color: #333;
}

/* SELECTED */

.checkbox-item:has(input:checked) {
    background:
        linear-gradient(
            135deg,
            #1B75BB,
            #2A388F
        );

    border-color: transparent;

    box-shadow:
        0 10px 25px rgba(27,117,187,0.35);
}

.checkbox-item:has(input:checked) span {
    color: #fff;
}

/* BUTTON */

.form-actions {
    margin-top: 10px;
}

.btn-booking {
    width: 100%;

    border: none;

    padding: 16px 24px;

    border-radius: 10px;

    background:
        linear-gradient(
            135deg,
            #1B75BB,
            #2A388F
        );

    color: #fff;

    font-size: 1rem;
    font-weight: 600;

    cursor: pointer;

    transition: all .3s ease;
}

.btn-booking:hover {
    transform: translateY(-2px);

    box-shadow:
        0 15px 30px rgba(27,117,187,0.30);
}

/* MOBILE */

@media (max-width: 768px) {

    .booking-premium {
        padding: 100px 20px 70px;
    }

    .booking-premium h2 {
        font-size: 2.2rem;
    }

    .booking-form {
        padding: 25px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .checkbox-grid {
        grid-template-columns: 1fr;
    }

}
/* =========================
   BREEZE / EDGE FEATURES SECTION
========================= */

.breeze-edge-features {
    width: 100%;
    padding: 100px 0;
    background: linear-gradient(
        to bottom,
        #2A388F,
        #1B75BB
    );
    text-align: center;
}

.breeze-edge-features h2 {
    margin-bottom: 60px;
    font-size: 2.2rem;
    font-weight: 600;
    color: #fff;
}

/* SCRIPT CONTROL */
.breeze-edge-features h2 .script {
    font-family: 'Dancing Script', cursive;
    font-weight: 600;
    letter-spacing: 0.5px;
    font-size: 1.6em;
    margin-top: 5px;
    display: inline-block;
    color: #fff;
}

/* GRID */
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

/* ITEM */
.feature-item {
    background: #fff;
    padding: 30px 25px;
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

/* HOVER */
.feature-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

/* ICON */
.feature-item .icon {
    font-size: 28px;
    margin-bottom: 12px;
}

/* TEXT */
.feature-item h4 {
    margin-bottom: 8px;
    font-weight: 600;
}

.feature-item p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
}

/* =========================
   ABOUT OCEANS SECTION
========================= */

.about-oceans {
    padding: 100px 0;
}

/* CONTAINER */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
}

/* GRID */
.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

/* TEXT COLUMN */
.about-text {
    width: 100%;
}

/* TITLE */
.about-title {
    font-size: 2.6rem;
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.1;
    color: #2A388F;
}

/* DEFAULT SPAN COLOR */
.about-title span {
    color: #1B75BB;
}

/* SCRIPT FONT */
.about-title .script {
    font-family: 'Dancing Script', cursive;
    font-weight: 600;
    letter-spacing: 0.5px;
    font-size: 1.6em;
    margin-top: 5px;
    display: inline-block;
    color: #1B75BB;
}

/* TEXT */
.about-text p {
    margin-bottom: 18px;
    line-height: 1.7;
    color: #555;
    font-size: 1rem;
}

/* =========================
   IMAGE FRAME
========================= */

.about-image {
    position: relative;

    max-width: 580px;
    width: 100%;
    margin-left: auto;

    background: #fff;

    padding: 14px;
    padding-bottom: 55px;

    border: 1px solid #e5e5e5;
    border-radius: 18px;

    overflow: hidden; /* FIXES IMAGE BLEEDING */

    box-shadow: 0 12px 30px rgba(0,0,0,0.08);

    transition: all 0.3s ease;
}

/* IMAGE */
.about-image img {
    width: 100%;
    height: 620px;
    object-fit: cover;

    display: block;

    border-radius: 12px;
}

/* HOVER */
.about-image:hover {
    transform: translateY(-4px);

    box-shadow:
        0 18px 40px rgba(0,0,0,0.12);
}

/* LABEL */
.about-label {
    position: absolute;

    left: 50%;
    bottom: 18px;

    transform: translateX(-50%);

    color: #666;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.5px;

    white-space: nowrap;
}

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

@media (max-width: 1024px) {

    .about-image {
        max-width: 650px;
        margin: 0 auto;
    }

    .about-image img {
        height: 580px;
    }
}

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

@media (max-width: 768px) {

    .about-image {
        padding-bottom: 50px;
    }

    .about-image img {
        height: 450px;
    }
}

@media (max-width: 600px) {

    .about-image {
        padding: 10px;
        padding-bottom: 45px;
        border-radius: 14px;
    }

    .about-image img {
        height: 380px;
        border-radius: 10px;
    }

    .about-label {
        bottom: 14px;
        font-size: 0.8rem;
    }
}

/* =========================
   ROOMS SECTION
========================= */

.rooms-section {
    padding: 100px 0;
}

.rooms-title {
    text-align: center;
    margin-bottom: 60px;
    font-size: 2.6rem;
    color: #2A388F;
}

.rooms-title .script {
    color: #1B75BB;
    font-family: 'Dancing Script', cursive;
    font-size: 1.4em;
}

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

.rooms-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

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

.room-card {
    display: grid;
    grid-template-columns: 40% 60%;
    gap: 35px;

    background: #fff;
    padding: 20px;

    border-radius: 18px;

    box-shadow:
        0 10px 30px rgba(0,0,0,0.08);

    transition: all 0.3s ease;
}

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

    box-shadow:
        0 18px 40px rgba(0,0,0,0.12);
}

/* =========================
   IMAGE
========================= */

.room-card-image {
    height: 100%;
}

.room-card-image img {
    width: 100%;
    height: 260px;

    object-fit: cover;
    display: block;

    border-radius: 14px;
}

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

.room-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.room-content h3 {
    font-size: 1.7rem;
    color: #2A388F;
    margin-bottom: 15px;
    line-height: 1.2;
}

.room-content p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 15px;
}

.room-guests {
    font-size: 1rem;
    color: #333;
    margin-bottom: 25px;
}

/* =========================
   BUTTON
========================= */

.room-content .btn {
    display: inline-block;

    background: #2A388F;
    color: #fff;

    text-decoration: none;

    padding: 14px 28px;

    border-radius: 8px;

    font-weight: 600;

    width: fit-content;

    transition: all 0.3s ease;
}

.room-content .btn:hover {
    background: #1B75BB;
    color: #fff;

    transform: translateY(-2px);
}

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

@media (max-width: 1024px) {

    .room-card {
        grid-template-columns: 40% 60%;
        gap: 25px;
    }

    .room-card-image img {
        height: 240px;
    }

    .room-content h3 {
        font-size: 1.5rem;
    }
}

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

@media (max-width: 768px) {

    .rooms-section {
        padding: 70px 0;
    }

    .rooms-title {
        font-size: 2.2rem;
        margin-bottom: 40px;
    }

    .room-card {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .room-card-image img {
        height: 240px;
    }

    .room-content {
        padding: 0;
    }

    .room-content h3 {
        font-size: 1.4rem;
    }

    .room-content .btn {
        width: 100%;
        text-align: center;
    }
}

/* =========================
   ROOM IMAGES
========================= */

.booking-room-images{
    display:flex;
    flex-direction:column;
    gap:20px;
    padding-top:30px;
}

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

.booking-main-image{
    position:relative;
    width:100%;
    height:420px;
    overflow:hidden;
    border-radius:12px;
}

.booking-main-image img{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    object-fit:cover;
    border-radius:12px;

    opacity:1;
    transition:opacity .45s ease;
}

/* Fade state */
.booking-main-image img.fade-out{
    opacity:0;
}

/* =========================
   MINI GALLERY
========================= */

.booking-gallery-thumbs{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:12px;
    margin-bottom:30px;
}

.booking-gallery-thumbs img{
    width:100%;
    height:90px;
    object-fit:cover;
    border-radius:8px;
    cursor:pointer;

    opacity:.75;

    transition:
        transform .25s ease,
        opacity .25s ease,
        box-shadow .25s ease;
}

.booking-gallery-thumbs img:hover{
    transform:translateY(-3px);
    opacity:1;
}

.booking-gallery-thumbs img.active{
    opacity:1;
    box-shadow:0 0 0 3px #1B75BB;
}

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

@media (max-width:768px){

    .booking-main-image{
        height:300px;
    }

    .booking-gallery-thumbs{
        grid-template-columns:repeat(2,1fr);
    }

    .booking-gallery-thumbs img{
        height:100px;
    }

}

/* =========================
   FAQ SECTION
========================= */

.faq-section {
    width: 100%;
    padding: 120px 20px 80px;

    background: linear-gradient(
        to bottom,
        #2A388F,
        #1B75BB
    );
}

.faq-inner {
    max-width: 850px;
    margin: 0 auto;

    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);

    padding: 60px 50px;
    border-radius: 18px;

    box-shadow: 0 20px 60px rgba(0,0,0,0.25);
}

/* TITLE */
.faq-title {
    font-size: 2.4rem;
    margin-bottom: 40px;
    color: #fff;

    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    text-align: center;
}

/* SCRIPT TEXT */
.faq-title .script {
    font-family: 'Dancing Script', cursive;
    font-weight: 600;
    font-size: 1.5em;
    color: #fff;

    display: inline-block;
    margin-left: 5px;
}

/* EACH ITEM */
.faq-item {
    margin-bottom: 25px;
}

/* QUESTION */
.faq-item h3 {
    font-size: 1.1rem;
    color: #ffffff;
    margin-bottom: 10px;
    font-weight: 600;
    line-height: 1.5;
}

/* ANSWER */
.faq-item p {
    color: rgba(255,255,255,0.9);
    line-height: 1.8;
    font-size: 0.95rem;
}

/* SEPARATION */
.faq-item:not(:last-child) {
    border-bottom: 1px solid rgba(255,255,255,0.08);
    padding-bottom: 25px;
}

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

@media (max-width: 1024px) {

    .faq-inner {
        padding: 50px 40px;
    }
}

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

@media (max-width: 768px) {

    .faq-section {
        padding: 90px 20px 60px;
    }

    .faq-inner {
        padding: 35px 25px;
    }

    .faq-title {
        font-size: 2rem;
    }

    .faq-title .script {
        font-size: 1.4em;
    }

    .faq-item h3 {
        font-size: 1rem;
    }

    .faq-item p {
        font-size: 0.9rem;
    }
}

@media (max-width: 600px) {

    .faq-title {
        font-size: 1.8rem;
    }

    .faq-title .script {
        display: block;
        margin-top: 5px;
        margin-left: 0;
    }
}

/* =========================
   PREMIUM MAP SECTION
========================= */

.map-section {
    position: relative;
    height: 450px;
    overflow: hidden;
}

/* MAP BACKGROUND */
.map-section iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* OVERLAY */
.map-section::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.35);
}

/* CONTENT LAYER */
.map-overlay {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
}

/* CARD */
.map-card {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    max-width: 320px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.map-card h3 {
    margin-bottom: 10px;
    color: #2A388F;
}

.map-card p {
    color: #555;
    margin-bottom: 20px;
    line-height: 1.6;
}

/* BUTTON */
.map-card .btn.primary {
    display: inline-block;

    background: #2A388F;
    color: #fff;

    text-decoration: none;

    padding: 12px 24px;
    border-radius: 8px;

    font-weight: 600;
    letter-spacing: 0.3px;

    transition: all 0.3s ease;
}

.map-card .btn.primary:hover {
    background: #1B75BB;
    color: #fff;

    transform: translateY(-2px);
}

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

@media (max-width: 768px) {

    .get-in-touch {
        padding: 80px 0;
    }

    .get-in-touch h2 {
        font-size: 2.2rem;
    }

    .get-in-touch .contact-grid {
        grid-template-columns: 1fr;
        padding: 25px;
        gap: 25px;
    }

    .get-in-touch .contact-info {
        text-align: center;
        padding-top: 0;
    }

    /* PERFORMANCE FIX */
    .get-in-touch::before {
        background-attachment: scroll;
    }

    /* MAP MOBILE */
    .map-section {
        height: 350px;
    }

    .map-overlay {
        justify-content: center;
        text-align: center;
        padding: 0 20px;
    }

    .map-card {
        max-width: 90%;
        width: 100%;
    }

    .map-card .btn.primary {
        width: 100%;
    }
}

/* =========================
GALLERY HERO
========================= */

.gallery-hero-simple {
background: #1B75BB;
padding: 120px 0 80px;
text-align: center;
}

.gallery-hero-simple h1 {
color: #fff;
font-size: 60px;
margin: 0;
}

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

.gallery-intro {
padding: 80px 0 40px;
text-align: center;
}

.gallery-intro .container {
max-width: 900px;
}

/* =========================
GALLERY
========================= */

.gallery-section {
padding: 60px 0 100px;
}

.gallery-section .container {
max-width: 1400px;
}

/* WordPress Gallery Block */

.gallery-section .wp-block-gallery {
gap: 20px;
margin: 0;
}

.gallery-section .wp-block-image {
overflow: hidden;
border-radius: 16px;

```
box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
transition: transform .3s ease, box-shadow .3s ease;
```

}

.gallery-section .wp-block-image:hover {
transform: translateY(-5px);
box-shadow: 0 15px 40px rgba(0, 0, 0, .15);
}

.gallery-section .wp-block-image img {
width: 100%;
height: 300px;
object-fit: cover;
display: block;

```
transition: transform .4s ease;
```

}

.gallery-section .wp-block-image:hover img {
transform: scale(1.08);
}

/* Remove default WP captions spacing */

.gallery-section figcaption {
margin-top: 10px;
font-size: 14px;
text-align: center;
}

/* =========================
LIGHTBOX LINKS
========================= */

.gallery-section .wp-block-image a {
display: block;
overflow: hidden;
border-radius: 16px;
}

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

@media (max-width: 992px) {

```
.gallery-hero-simple h1 {
    font-size: 48px;
}

.gallery-section .wp-block-image img {
    height: 250px;
}
```

}

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

@media (max-width: 767px) {

```
.gallery-hero-simple {
    padding: 100px 0 60px;
}

.gallery-hero-simple h1 {
    font-size: 38px;
    padding: 0 20px;
}

.gallery-intro {
    padding: 60px 0 30px;
}

.gallery-section {
    padding: 40px 0 80px;
}

.gallery-section .wp-block-image img {
    height: 220px;
}
```

}

/* =========================
   ROOM DETAILS
========================= */

.booking-room {
    padding: 80px 0;
}

.booking-room-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.booking-room-image img {
    width: 100%;
    border-radius: 20px;
    display: block;

    box-shadow: 0 15px 40px rgba(0,0,0,.12);
}

.booking-property {
    display: inline-block;
    margin-bottom: 15px;

    color: #0d4f8b;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.booking-room-content h2 {
    margin-bottom: 20px;
    font-size: 42px;
}

.booking-guests {
    margin-bottom: 20px;
    font-size: 18px;
}

.booking-description {
    line-height: 1.8;
    color: #555;
}

/* =========================
   ROOM AMENITIES
========================= */

.booking-room-amenities{
    margin-top:40px;
    padding-top:35px;
    border-top:1px solid #e9eef5;
}

.booking-room-amenities h3{
    margin-bottom:25px;
    font-size:1.5rem;
    color:#2A388F;
}

.amenities-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:18px 30px;
}

.amenity{
    display:flex;
    align-items:center;
    gap:15px;
}

.amenity i{
    width:42px;
    height:42px;

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

    border-radius:50%;

    background:#eef6fc;
    color:#1B75BB;
    font-size:18px;

    flex-shrink:0;
}

.amenity span{
    font-size:1rem;
    color:#444;
    font-weight:500;
    line-height:1.4;
}

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

@media(max-width:768px){

    .amenities-grid{
        grid-template-columns:1fr;
        gap:15px;
    }

}
/* =========================
   BOOKING SUMMARY
========================= */

.booking-summary-section {
    padding: 0 0 80px;
}

.booking-summary {
    max-width: 800px;
    margin: 0 auto;

    background: #fff;
    padding: 40px;
    border-radius: 20px;

    box-shadow: 0 10px 30px rgba(0,0,0,.08);
    border-left: 5px solid #0d4f8b;
}

.booking-summary h3 {
    margin-bottom: 25px;
    color: #0d4f8b;
}

.booking-summary ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.booking-summary li {
    padding: 15px 0;
    border-bottom: 1px solid #eee;
    font-size: 17px;
}

.booking-summary li:last-child {
    border-bottom: none;
}

.booking-summary strong {
    color: #222;
    margin-right: 8px;
}

/* =========================
   AVAILABILITY
========================= */

.booking-calendar {
    padding: 80px 0;
    background: #f8f9fb;
}

.booking-calendar h2 {
    text-align: center;
    margin-bottom: 40px;
}

.calendar-placeholder {
    max-width: 900px;
    margin: 0 auto;

    background: #fff;
    padding: 60px;
    border-radius: 20px;
    text-align: center;

    box-shadow: 0 10px 30px rgba(0,0,0,.08);
}

.calendar-placeholder p {
    margin: 0 0 15px;
    color: #555;
    line-height: 1.8;
    font-size: 17px;
}

.calendar-placeholder p:last-child {
    margin-bottom: 0;
}

/* =========================
   BOOKING FORM
========================= */

.booking {
    padding: 80px 0 120px;
}

.booking h2 {
    text-align: center;
    margin-bottom: 20px;
}

.booking-sub {
    max-width: 750px;
    margin: 0 auto 50px;
    text-align: center;
}

.booking-form {
    max-width: 800px;
    margin: 0 auto;
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
}

.booking-section {
    margin-bottom: 40px;
}

.booking-section-title {
    font-family: "Dancing Script", cursive;
    font-size: 2rem;
    font-weight: 700;
    color: #1B75BC;
    text-align: left;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid #2A388F;
}

.booking-form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.booking-form-row .booking-form-group {
    flex: 1;
}

.booking-form-group {
    margin-bottom: 20px;
}

.booking-form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #2A388F;
    text-align: left;
}

.booking-form input,
.booking-form textarea,
.booking-form select {
    width: 100%;
    padding: 16px 20px;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-size: 16px;
    font-family: inherit;
    transition: all .3s ease;
    background: #fff;
}

.booking-form input:focus,
.booking-form textarea:focus,
.booking-form select:focus {
    outline: none;
    border-color: #1B75BC;
    box-shadow: 0 0 0 3px rgba(27,117,188,.12);
}

.booking-readonly {
    background: #f8f9fb !important;
    color: #555;
    cursor: default;
}

.booking-form textarea {
    resize: vertical;
    min-height: 160px;
}

.booking-form button {
    width: 100%;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 768px) {

    .booking {
        padding: 60px 0 80px;
    }

    .booking-form {
        padding: 30px 25px;
    }

    .booking-form-row {
        flex-direction: column;
        gap: 0;
    }

}
/* =========================
   CALENDAR SELECTION
========================= */

.selected-checkin,
.selected-checkout {
    background: #2A388F !important;
    color: #ffffff !important;
    font-weight: 700;
    border: 1px solid #0d4f8b !important;
}

.selected-range {
    background: #dbe9f8 !important;
    color: #0d4f8b !important;
}

/* =========================
   CALENDAR STATUS COLOURS
========================= */

.calendar-day.available {
    background: #f4f4f4;
    color: #333;
    border: 1px solid #e1e1e1;
    cursor: pointer;
    transition: all .2s ease;
}

.calendar-day.available:hover {
    background: #e7e7e7;
}

.calendar-day.pending {
    background: #fff3cd;
    color: #856404;
    border: 1px solid #ffe69c;
    cursor: not-allowed;
}

.calendar-day.booked {
    background: #d4edda;
    color: #155724;
    border: 1px solid #b7dfc1;
    cursor: not-allowed;
}

.calendar-day.cancelled {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f1b9c0;
    cursor: not-allowed;
}

/* =========================
   ERROR MESSAGE
========================= */

.booking-error {
    background: #dc3545;
    color: #ffffff;
    border: 1px solid #b02a37;
    padding: 18px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-weight: 600;
    text-align: center;
}

/* =========================
   SUCCESS MESSAGE
========================= */

.booking-success {
    background: #198754;
    color: #ffffff;
    border: 1px solid #146c43;
    padding: 18px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-weight: 600;
    text-align: center;
}

/* =========================
   FUTURE CALENDAR CARD
========================= */

.calendar-card {
    background: #fff;
    border-radius: 20px;
    padding: 40px;

    box-shadow: 0 10px 30px rgba(0,0,0,.08);
}

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

@media (max-width: 992px) {

    .booking-room-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .booking-room-content h2 {
        font-size: 34px;
    }

}

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

@media (max-width: 767px) {

    .booking-room {
        padding: 60px 0;
    }

    .booking-summary-section {
        padding: 0 0 60px;
    }

    .booking-calendar {
        padding: 60px 0;
    }

    .booking-form-section {
        padding: 60px 0 80px;
    }

    .booking-form {
        padding: 25px;
    }

    .booking-summary {
        padding: 25px;
    }

    .calendar-placeholder {
        padding: 30px;
    }

    .booking-room-content h2 {
        font-size: 30px;
    }

}

/* =========================
   INTERACTIVE CALENDAR
========================= */

.hidden {
    display: none !important;
}

.booking-calendar-section {
    padding: 40px 0;
    background: #f7f9fc;
}

.calendar-card {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,.08);
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.calendar-nav {
    width: 45px;
    height: 45px;
    border: none;
    border-radius: 50%;
    background: #1B75BC;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    transition: .3s ease;
}

.calendar-nav:hover {
    background: #2A388F;
}

#calendar-month {
    margin: 0;
    color: #2A388F;
    text-align: center;
}

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

.calendar-weekdays,
.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 10px;
}

.calendar-weekdays {
    margin-bottom: 15px;
    font-weight: 600;
    text-align: center;
    color: #2A388F;
}

/* =========================
   DAYS
========================= */

.calendar-day {
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    cursor: pointer;
    transition: .25s ease;
    user-select: none;
}

.calendar-day:hover {
    transform: translateY(-2px);
}

/* AVAILABLE */

.calendar-day.available {
    background: #f4f4f4;
    color: #333;
    border: 1px solid #d9d9d9;
}

.calendar-day.available:hover {
    background: #e7e7e7;
}

/* PAST DATES */

.calendar-day.past {
    background: #f5f5f5;
    color: #b5b5b5;
    border: 1px solid #e6e6e6;
    cursor: not-allowed;
    opacity: .65;
}

.calendar-day.past:hover {
    transform: none;
    background: #f5f5f5;
}

/* PENDING */

.calendar-day.pending {
    background: #fff3cd;
    color: #856404;
    border: 1px solid #ffe69c;
    cursor: not-allowed;
}

/* CONFIRMED */

.calendar-day.booked {
    background: #d4edda;
    color: #155724;
    border: 1px solid #b7dfc1;
    cursor: not-allowed;
}

/* EMPTY */

.calendar-day.empty {
    background: transparent;
    cursor: default;
}

.calendar-day.empty:hover {
    transform: none;
}

/* =========================
   SELECTED DATES
========================= */

.calendar-day.selected-checkin,
.calendar-day.selected-checkout {
    background: #1B75BC !important;
    color: #fff !important;
    border-color: #1B75BC !important;
    font-weight: 700;
}

.calendar-day.selected-range {
    background: rgba(27,117,188,.15);
    border: 1px solid rgba(27,117,188,.3);
}

/* =========================
   LEGEND
========================= */

.calendar-legend {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.legend {
    width: 18px;
    height: 18px;
    border-radius: 50%;
}

.legend.available {
    background: #f4f4f4;
    border: 1px solid #d9d9d9;
}

.legend.pending {
    background: #fff3cd;
    border: 1px solid #ffe69c;
}

.legend.booked {
    background: #d4edda;
    border: 1px solid #b7dfc1;
}

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

@media (max-width:768px) {

    .calendar-card {
        padding: 20px;
    }

    .calendar-weekdays,
    .calendar-grid {
        gap: 5px;
    }

    .calendar-day {
        height: 48px;
        font-size: 14px;
    }

    .calendar-nav {
        width: 40px;
        height: 40px;
    }

    .calendar-legend {
        gap: 15px;
        font-size: 14px;
    }

}
/* ==========================================
   BOOKING SEARCH BAR
========================================== */

.booking-search {
    padding: 40px 0;
    background: #f7f9fc;
}

.booking-search-bar {
    background: #fff;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, .08);
}

.booking-search-form {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    align-items: end;
}

/* ==========================================
   FIELDS
========================================== */

.booking-field {
    display: flex;
    flex-direction: column;
}

.booking-field label {
    margin-bottom: 8px;
    font-weight: 600;
    color: #2A388F;
}

.booking-field input,
.booking-field select {
    height: 52px;
    padding: 0 15px;
    border: 1px solid #d9e2ec;
    border-radius: 6px;
    background: #fff;
    font-size: 15px;
    transition: .3s ease;
}

.booking-field input:focus,
.booking-field select:focus {
    outline: none;
    border-color: #1B75BC;
    box-shadow: 0 0 0 3px rgba(27, 117, 188, .15);
}

/* ==========================================
   BUTTONS
========================================== */

.booking-btn {
    height: 52px;
    padding: 0 24px;
    border: none;
    border-radius: 6px;
    background: #1B75BC;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all .3s ease;
}

.booking-btn:hover {
    background: #2A388F;
}

.booking-btn-secondary {
    background: transparent;
    border: 2px solid #1B75BC;
    color: #1B75BC;
}

.booking-btn-secondary:hover {
    background: #2A388F;
    border-color: #2A388F;
    color: #fff;
}

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

@media (max-width: 768px) {

    .booking-search {
        padding: 30px 0;
    }

    .booking-search-bar {
        padding: 20px;
    }

    .booking-search-form {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .booking-btn {
        width: 100%;
    }

}

/* =====================================================
   PRIVACY POLICY
===================================================== */

/* HERO */

.privacy-hero{

    width:100%;

    padding:160px 20px 90px;

    background:linear-gradient(
        to bottom,
        #2A388F,
        #1B75BC
    );

    text-align:center;

}

.privacy-hero .container{

    max-width:900px;

}

.privacy-hero h1{

    color:#fff;

    margin:20px 0;

    font-size:56px;

}

.privacy-hero p{

    max-width:800px;

    margin:0 auto;

    color:rgba(255,255,255,.95);

}

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

.privacy-content{

    padding:90px 20px;

    background:#f7f9fc;

}

.privacy-inner{

    max-width:900px;

    margin:0 auto;

    background:#fff;

    padding:60px;

    border-radius:16px;

    box-shadow:0 20px 60px rgba(0,0,0,.08);

}

.privacy-inner h2{

    margin:45px 0 15px;

    color:#2A388F;

    font-size:30px;

}

.privacy-inner p{

    margin-bottom:20px;

    line-height:1.9;

    color:#555;

}

.privacy-inner ul{

    margin:0 0 25px 25px;

}

.privacy-inner li{

    margin-bottom:10px;

    line-height:1.8;

    color:#555;

}

.privacy-inner a{

    color:#1B75BC;

    text-decoration:none;

    transition:.3s;

}

.privacy-inner a:hover{

    text-decoration:underline;

}

.privacy-contact{

    margin-top:50px;

    padding-top:30px;

    border-top:1px solid #e5e5e5;

}

.privacy-effective{

    margin-top:40px;

    font-size:14px;

    color:#888;

}

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

@media (max-width:768px){

    .privacy-hero{

        padding:120px 20px 70px;

    }

    .privacy-hero h1{

        font-size:40px;

    }

    .privacy-inner{

        padding:35px 25px;

    }

    .privacy-inner h2{

        font-size:24px;

    }

}