/* =====================================BOOK WITH RUSH VACATIONSMAIN WEBSITE STYLES===================================== */

* {
    box-sizing: border-box;
}

html {scroll-behavior: smooth;}

body {margin: 0;font-family: "Segoe UI", Arial, sans-serif;color: #333;line-height: 1.6;background: #ffffff;}

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

.site-header {position: absolute;top: 0;left: 0;width: 100%;padding: 18px 6%;display: flex;justify-content: space-between;align-items: center;gap: 30px;z-index: 100;

background:
    linear-gradient(
        rgba(0,35,55,.85),
        rgba(0,35,55,.55)
    );

backdrop-filter: blur(4px);

}

/* =====================================BRAND===================================== */

.brand {display: flex;flex-direction: column;line-height: 1;white-space: nowrap;}

.brand-name {color: white;font-size: 29px;font-weight: 800;letter-spacing: 2px;}

.brand-tagline {color: #8ed8ff;font-size: 12px;font-weight: 700;letter-spacing: 4px;text-transform: uppercase;margin-top: 7px;}

/* =====================================NAVIGATION===================================== */

.site-header nav {display: flex;align-items: center;gap: 25px;}

.site-header nav a {color: white;text-decoration: none;font-weight: 600;font-size: 15px;transition: color .2s ease;}

.site-header nav a {color: #8ed8ff;}

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

.hero {height: 100vh;min-height: 650px;

background:
    linear-gradient(
        rgba(0,50,80,.40),
        rgba(0,50,80,.55)
    ),
    url("cruise ships- Home.jpg");

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

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

text-align: center;
color: white;

}

.hero-overlay {max-width: 900px;padding: 40px 25px;}

.hero-small {font-size: 14px;font-weight: 700;letter-spacing: 4px;margin-bottom: 18px;text-transform: uppercase;}

.hero h1 {font-size: clamp(44px, 7vw, 72px);line-height: 1.05;margin: 0 0 22px;font-weight: 800;text-shadow: 0 3px 15px rgba(0,0,0,.35);}

.hero p {font-size: 23px;max-width: 750px;margin: 0 auto;text-shadow: 0 2px 8px rgba(0,0,0,.35);}

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

.button {display: inline-block;margin-top: 30px;padding: 15px 38px;

background: #0077cc;
color: white;

border-radius: 50px;
text-decoration: none;
font-weight: bold;
font-size: 17px;

transition:
    background .2s ease,
    transform .2s ease;

}

.button {background: #005fa3;transform: translateY(-2px);}

/* =====================================SECTIONS===================================== */

section {padding: 90px 8%;}

h2 {text-align: center;color: #004c80;font-size: 42px;line-height: 1.2;margin: 0 0 45px;}

/* =====================================VACATION CARDS===================================== */

.vacations {background: #ffffff;}

.cards {display: flex;flex-wrap: wrap;justify-content: center;gap: 30px;}

.card {width: 320px;background: white;border-radius: 20px;overflow: hidden;

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

transition:
    transform .2s ease,
    box-shadow .2s ease;

}

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

    box-shadow:
    0 15px 35px rgba(0,0,0,.16);
}

.card img {width: 100%;height: 230px;object-fit: cover;}

.card-content {padding-bottom: 5px;}

.card h3 {padding: 20px 25px 0;color: #004c80;line-height: 1.3;}

.card p {padding: 0 25px 25px;margin-bottom: 0;}

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

.about {background: #f4f9fc;text-align: center;}

.about-intro {max-width: 850px;margin: 0 auto 45px;font-size: 20px;}

.features {display: flex;flex-wrap: wrap;justify-content: center;gap: 25px;}

.features div {width: 300px;background: white;padding: 30px;border-radius: 20px;

box-shadow:
    0 5px 20px rgba(0,0,0,.06);

}

.features h3 {color: #004c80;}

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

.booking {background:linear-gradient(180deg,#f5fbff 0%,#eef8fc 100%);}

.booking-intro {text-align: center;max-width: 750px;margin: -20px auto 35px;font-size: 19px;color: #555;}

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

form {max-width: 650px;margin: auto;

background: white;

padding: 40px;

border-radius: 25px;

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

border: 1px solid #e5eef4;

}

/* FORM LABELS */

label {display: block;margin-bottom: 6px;

color: #004c80;
font-weight: 600;
font-size: 15px;

}

/* FORM FIELDS */

input,select,textarea {width: 100%;

padding: 15px;

margin-bottom: 18px;

border-radius: 10px;

border: 1px solid #ccd8e2;

font-size: 16px;
font-family: inherit;

background: #ffffff;

transition:
    border-color .2s ease,
    box-shadow .2s ease,
    background .2s ease;

}

/* PLACEHOLDER */

input::placeholder,textarea::placeholder {color: #8a98a3;}

/* FIELD FOCUS */

input,select,textarea {outline: none;

border-color: #0077cc;

background: #ffffff;

box-shadow:
    0 0 0 3px rgba(0,119,204,.10);

}

/* DATE FIELDS */

input[type="date"] {color: #333;cursor: pointer;}

/* NUMBER FIELDS */

input[type="number"] {appearance: auto;}

/* TEXT AREA */

textarea {height: 150px;resize: vertical;min-height: 120px;}

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

form button {width: 100%;

padding: 17px;

margin-top: 8px;

background: #0077cc;
color: white;

border: none;

border-radius: 50px;

font-size: 18px;
font-weight: bold;

cursor: pointer;

box-shadow:
    0 6px 18px rgba(0,119,204,.20);

transition:
    background .2s ease,
    transform .2s ease,
    box-shadow .2s ease;

}

form button {background: #005fa3;

transform: translateY(-2px);

box-shadow:
    0 9px 22px rgba(0,119,204,.28);

}

form button {transform: translateY(0);}

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

.success {display: none;

max-width: 650px;
margin: 40px auto;

background: white;

padding: 40px;

border-radius: 20px;

text-align: center;

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

}

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

footer {background: #003b63;color: white;text-align: center;padding: 50px 20px;}

footer h3 {margin-top: 0;font-size: 24px;}

footer p {margin: 8px 0;}

/* =====================================MOBILE BOOKING BUTTON===================================== */

.mobile-book {display: none;}

/* =====================================ADMIN TOP MENU===================================== */

.admin-menu {display: flex;flex-direction: row;flex-wrap: wrap;

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

gap: 10px;

width: 100%;
margin: 20px auto;

}

.admin-menu button {width: auto;min-width: 120px;

padding: 12px 18px;

font-size: 15px;

border-radius: 8px;

cursor: pointer;

}

.admin-section {width: 100%;}

.admin-header {text-align: center;width: 100%;}

/* =====================================HIDE OLD CONTACT SECTION===================================== */

.contact-section {display: none !important;}

/* =====================================CONTACT POPUP===================================== */

.contact-modal {display: none;

position: fixed;

top: 0;
left: 0;
right: 0;
bottom: 0;

width: 100%;
height: 100%;

z-index: 9999;

background: rgba(0, 35, 55, 0.70);

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

padding: 20px;

}

.contact-modal.active {display: flex;}

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

.contact-popup-card {position: relative;

width: 100%;
max-width: 430px;

max-height: 90vh;

overflow-y: auto;

background: #ffffff;

border-radius: 20px;

padding: 35px;

text-align: center;

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

animation:
    contactPopupOpen .20s ease-out;

}

/* =====================================POPUP ANIMATION===================================== */

@keyframes contactPopupOpen {

from {
    opacity: 0;
    transform: scale(.90) translateY(10px);
}

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

}

/* =====================================POPUP CLOSE BUTTON===================================== */

.contact-popup-close {position: absolute;

top: 10px;
right: 12px;

width: 40px;
height: 40px;

padding: 0;

background: transparent;

border: none;

color: #555;

font-size: 32px;

line-height: 40px;

cursor: pointer;

z-index: 2;

}

.contact-popup-close {color: #0077cc;}

/* =====================================POPUP TITLE===================================== */

.contact-popup-card h2 {margin: 5px 0 10px;

color: #004c80;

font-size: 32px;

}

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

.contact-popup-intro {margin: 0 auto 20px;

max-width: 340px;

color: #555;

font-size: 16px;

}

/* =====================================POPUP INFORMATION===================================== */

.contact-popup-info {text-align: left;}

.contact-popup-item {display: flex;

align-items: flex-start;

gap: 15px;

padding: 15px 0;

border-bottom: 1px solid #e5edf2;

}

.contact-popup-item {border-bottom: none;}

/* =====================================POPUP ICON===================================== */

.contact-popup-icon {width: 42px;height: 42px;

flex-shrink: 0;

display: flex;

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

background: #eef8fc;

border-radius: 50%;

font-size: 20px;

}

/* =====================================POPUP TEXT===================================== */

.contact-popup-item strong {display: block;

color: #004c80;

margin-bottom: 3px;

}

.contact-popup-item span {display: block;

color: #555;

font-size: 14px;

line-height: 1.5;

}

.contact-popup-item a {color: #0077cc;

text-decoration: none;

font-weight: 600;

}

.contact-popup-item a {text-decoration: underline;}

/* =====================================POPUP EMAIL BUTTON===================================== */

.contact-popup-email {display: block;

margin-top: 20px;

padding: 13px 25px;

background: #0077cc;

color: white;

text-decoration: none;

border-radius: 50px;

font-weight: bold;

}

.contact-popup-email {background: #005fa3;}

/* =====================================SUBMIT BUTTON - POLISHED===================================== */

form button[type="submit"] {width: 100%;padding: 17px 24px;

background: linear-gradient(
    135deg,
    #008fe8,
    #006bb6
);

color: #ffffff;

border: none;
border-radius: 50px;

font-family: inherit;
font-size: 18px;
font-weight: 700;

letter-spacing: 0.3px;

cursor: pointer;

box-shadow:
    0 8px 20px rgba(0, 91, 150, 0.25);

transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;

}

form button[type="submit"] {background: linear-gradient(135deg,#009df5,#0077cc);

transform: translateY(-2px);

box-shadow:
    0 12px 26px rgba(0, 91, 150, 0.32);

}

form button[type="submit"] {transform: translateY(0);

box-shadow:
    0 5px 12px rgba(0, 91, 150, 0.22);

}

/* =====================================PUBLIC CUSTOMER REVIEWS===================================== */

.rush-public-reviews {max-width: 1100px;margin: 50px auto 0;padding: 35px 25px;text-align: center;}

.rush-public-reviews h2 {margin-bottom: 12px;}

.rush-reviews-intro {max-width: 700px;margin: 0 auto 35px;color: #66737d;font-size: 17px;}

/* =====================================PUBLIC REVIEW LISTSHOWS FOUR CARDS ON DESKTOP===================================== */

#publicReviewList {display: grid;

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

gap: 20px;

align-items: stretch;

width: 100%;

}

/* =====================================PUBLIC REVIEW CARD===================================== */

.public-review-card {position: relative;

background: #ffffff;

border-radius: 18px;

padding: 25px 22px 22px;

text-align: left;

border: 1px solid #e7eef3;

box-shadow:
    0 6px 20px rgba(0, 55, 85, 0.07);

display: flex;
flex-direction: column;

min-width: 0;
min-height: 205px;

transition:
    transform .2s ease,
    box-shadow .2s ease,
    border-color .2s ease;

}

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

    border-color: #d5e6ef;

    box-shadow:
    0 12px 28px rgba(0, 55, 85, 0.11);
}

/* =====================================REVIEW STARS===================================== */

.public-review-stars {color: #f4b400;

font-size: 19px;

letter-spacing: 2px;

line-height: 1;

margin-bottom: 15px;

}

/* =====================================REVIEW TEXT===================================== */

.public-review-text {color: #404b52;

font-size: 15px;

line-height: 1.65;

margin: 0 0 20px;

flex-grow: 1;

}

/* =====================================REVIEW NAME===================================== */

.public-review-name {color: #004c80;

font-size: 14px;

font-weight: 700;

margin-top: auto;

}

/* =====================================REVIEW DATE===================================== */

.public-review-date {color: #8a969e;

font-size: 12px;

margin-top: 4px;

}

/* =====================================SEE ALL REVIEWS BUTTONSAME STYLE AS SUBMIT BUTTONSIZE UNCHANGED===================================== */

.see-all-reviews-button {display: block;

position: relative;
left: 50%;
transform: translateX(-50%);

margin-top: 28px;

padding: 12px 27px;

background: linear-gradient(
    135deg,
    #008fe8,
    #006bb6
);

color: #ffffff;

border: none;
border-radius: 50px;

font-family: inherit;
font-size: 15px;
font-weight: 700;

letter-spacing: 0.3px;

cursor: pointer;

box-shadow:
    0 8px 20px rgba(0, 91, 150, 0.25);

transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;

}

.see-all-reviews-button {background: linear-gradient(135deg,#009df5,#0077cc);

transform: translateX(-50%) translateY(-2px);

box-shadow:
    0 12px 26px rgba(0, 91, 150, 0.32);

}

.see-all-reviews-button {transform: translateX(-50%);box-shadow:0 5px 12px rgba(0, 91, 150, 0.22);}

/* =====================================
   ALL REVIEWS POPUP
===================================== */

.all-reviews-popup {
    display: none;

    position: fixed;

    top: 0;
    left: 0;
    right: 0;
    bottom: 0;

    width: 100%;
    height: 100%;

    z-index: 10000;

    background: rgba(0, 35, 55, 0.72);

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

    padding: 25px;

    box-sizing: border-box;

    overflow-y: auto;
}


/* =====================================
   SHOW REVIEWS POPUP
===================================== */

.all-reviews-popup.active {
    display: flex;
}


/* =====================================
   REVIEWS POPUP CARD
===================================== */

.all-reviews-card {
    position: relative;

    width: 100%;
    max-width: 900px;

    max-height: calc(100vh - 50px);

    overflow-y: auto;
    overflow-x: hidden;

    background: #ffffff;

    border-radius: 22px;

    padding: 35px;

    box-sizing: border-box;

    box-shadow:
        0 25px 70px rgba(0, 0, 0, 0.38);

    animation:
        allReviewsPopupOpen 0.20s ease-out;

    overscroll-behavior: contain;
}


/* =====================================
   REVIEWS POPUP ANIMATION
===================================== */

@keyframes allReviewsPopupOpen {

    from {
        opacity: 0;
        transform: scale(0.94) translateY(12px);
    }

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

}

/* =====================================POPUP TITLE===================================== */

.rush-all-reviews-card h2 {margin: 5px 45px 25px;

color: #004c80;

font-size: 34px;

}

/* =====================================POPUP CLOSE BUTTON===================================== */

/* =====================================
ALL REVIEWS POPUP CLOSE BUTTON
MATCH DISCLAIMER POPUP
===================================== */

.rush-all-reviews-close {
    position: absolute;

    top: 10px;
    right: 12px;

    width: 40px;
    height: 40px;

    padding: 0;

    background: transparent;

    border: none;

    color: #0077cc;

    font-size: 32px;

    line-height: 40px;

    cursor: pointer;

    z-index: 2;
}


/* =====================================
ALL REVIEWS X
MATCH DISCLAIMER X
===================================== */

.all-reviews-close {
    position: absolute;

    top: 10px;
    right: 12px;

    width: 40px;
    height: 40px;

    padding: 0;

    background: transparent;

    border: none;

    color: #0077cc;

    font-size: 32px;

    line-height: 40px;

    cursor: pointer;

    z-index: 2;
}





/* =====================================ALL REVIEW CARDS===================================== */

.rush-all-reviews-list {display: grid;

grid-template-columns: repeat(2, minmax(280px, 360px));

justify-content: center;

gap: 20px;

}

/*The popup uses the same.public-review-card createdby JavaScript.*/

.rush-all-reviews-list .public-review-card {background:linear-gradient(180deg,#ffffff 0%,#f8fbfd 100%);

min-height: 190px;

}

.rush-all-reviews-list .public-review-card {transform: none;

box-shadow:
    0 8px 22px rgba(0, 55, 85, 0.08);

}


.rush-all-reviews-list .public-review-card:hover {
    transform: translateY(-5px);

    box-shadow:
    0 15px 35px rgba(0, 55, 85, 0.16);
}

/* =====================================NO REVIEWS MESSAGE===================================== */

.rush-no-reviews,.reviews-loading {text-align: center;

color: #777;

font-size: 16px;

padding: 25px;

}

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

@media (max-width: 1000px) {

.site-header {
    padding: 18px 25px;

    background:
        rgba(0,59,99,.90);

    position: absolute;

    justify-content: center;
}

.brand {
    text-align: center;
}

.brand-name {
    font-size: 24px;
}

.brand-tagline {
    font-size: 10px;
    letter-spacing: 3px;
}

.site-header nav {
    display: none;
}

.hero {
    min-height: 700px;
}

.hero h1 {
    font-size: 44px;
}

.hero p {
    font-size: 19px;
}

section {
    padding: 60px 20px;
}

h2 {
    font-size: 32px;
}

.card {
    width: 100%;
    max-width: 500px;
}

form {
    padding: 25px;
}

input,
select,
textarea {
    font-size: 18px;
    padding: 16px;
}

form button {
    min-height: 55px;
}

.contact-popup-card {
    max-width: 430px;
    padding: 30px 25px;
}

#publicReviewList {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.rush-all-reviews-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.rush-all-reviews-card {
    max-height: calc(100vh - 40px);
}

}

/* =====================================PHONE===================================== */

@media (max-width: 600px) {

.site-header {
    padding: 15px 20px;
}

.brand-name {
    font-size: 22px;
}

.brand-tagline {
    font-size: 9px;
    letter-spacing: 2.5px;
}

.hero {
    min-height: 650px;
}

.hero-overlay {
    padding: 20px 15px;
}

.hero-small {
    font-size: 11px;
    letter-spacing: 2.5px;
}

.hero h1 {
    font-size: 36px;
}

.hero p {
    font-size: 17px;
}

.hero .button {
    padding: 14px 28px;
    font-size: 16px;
}

.card img {
    height: 200px;
}

footer {
    padding-bottom: 100px;
}

.mobile-book {
    display: block;

    position: fixed;

    bottom: 20px;

    left: 20px;
    right: 20px;

    background: #0077cc;

    color: white;

    text-align: center;

    padding: 16px;

    border-radius: 50px;

    font-weight: bold;

    text-decoration: none;

    z-index: 999;

    box-shadow:
        0 5px 20px rgba(0,0,0,.20);
}

/* =================================
   CONTACT POPUP ON PHONE
================================= */

.contact-modal {
    padding: 15px;
}

.contact-popup-card {
    max-width: 100%;

    padding:
        30px 22px;

    border-radius: 18px;
}

.contact-popup-card h2 {
    font-size: 28px;
}

.contact-popup-intro {
    font-size: 15px;
}

/* =================================
   PUBLIC REVIEWS ON PHONE
================================= */

.rush-public-reviews {
    padding:
        25px 10px;
}

#publicReviewList {
    grid-template-columns: 1fr;
    gap: 16px;
}

.public-review-card {
    min-height: 0;

    padding:
        22px 20px;
}

.public-review-stars {
    font-size: 18px;
}

.public-review-text {
    font-size: 15px;
}

/* =================================
   ALL REVIEWS POPUP ON PHONE
================================= */

.rush-all-reviews-modal {
    position: fixed;

    inset: 0;

    width: 100vw;
    height: 100vh;

    padding: 12px;

    display: none;

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

    overflow: hidden;
}

.rush-all-reviews-modal.active {
    display: flex !important;
}

.rush-all-reviews-card {
    width: 100%;

    max-width: 900px;

    max-height: calc(100vh - 24px);

    padding:
        30px 18px;

    border-radius: 18px;

    overflow-y: auto;
    overflow-x: hidden;
}

.rush-all-reviews-card h2 {
    font-size: 28px;

    margin:
        5px 35px 20px;
}

.rush-all-reviews-list {
    grid-template-columns: 1fr;

    gap: 16px;
}

}

/* =====================================HIDE MOBILE BUTTON ON DESKTOP===================================== */

@media (min-width: 601px) {

.mobile-book {
    display: none;
}

}



/* =====================================
ALL REVIEWS POPUP CLOSE BUTTON
===================================== */

.all-reviews-done {
    display: block;

    margin: 30px auto 0;

    padding: 12px 30px;

    background: linear-gradient(
        135deg,
        #008fe8,
        #006bb6
    );

    color: #ffffff;

    border: none;
    border-radius: 50px;

    font-family: inherit;
    font-size: 15px;
    font-weight: 700;

    letter-spacing: 0.3px;

    cursor: pointer;

    box-shadow:
        0 8px 20px rgba(0, 91, 150, 0.25);

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        background 0.2s ease;
}

.all-reviews-done:hover {
    background: linear-gradient(
        135deg,
        #009df5,
        #0077cc
    );

    transform: translateY(-2px);

    box-shadow:
        0 12px 26px rgba(0, 91, 150, 0.32);
}

.all-reviews-done:active {
    transform: translateY(0);

    box-shadow:
        0 5px 12px rgba(0, 91, 150, 0.22);
}