@font-face {
    font-family: 'Nunito';
    src: url('fonts/Nunito-VariableFont_wght.ttf') format('truetype');
    font-weight: 100 1000;
    font-style: normal;
}

* {
    text-decoration: none;
    box-sizing: border-box;
}

html,
body {
    height: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    max-width: 1024;
}

body {
    min-height: 100vh;
    max-width: 1024;
    background-color: rgb(247, 242, 237);
    font-family: 'Nunito', sans-serif;
}

main {
    margin-top: 100px;
    flex: 1;
}

li {
    list-style: none;
    display: inline-block;
}

li a {
    display: block;
    padding: 10px 20px;
    color: white;
    font-size: 18px;
    font-weight: bold;
    margin-right: 25px;
    transition: background-color 0.3s, color 0.3s;
}

h1 {
    color: rgb(247, 242, 237);
    font-size: 2em;
    text-shadow: 2px 2px 8px #362e25;
    margin-left: 180px;
}

h2 {
    font-size: 28px;
    color: #362e25;
    text-align: center;
}

p {
    color: #362e25;
    font-size: 20px;
    padding-left: 2.5em;
    text-align: center;
}

/* logo settings*/
.container {
    position: relative;

}

.logo {
    position: fixed;
    top: -30px;
    left: 30px;
    z-index: 2000;
    padding: 10px;
    height: 115px;
    width: auto;
    overflow: hidden;
}

.logo img {
    height: 130px;
    width: auto;
    display: block;
}

/* navigation settings */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgb(8, 32, 91);
    font-family: calibri;
    padding-right: 15px;
    padding-left: 15px;
    height: 90px;
}

.navbar li:hover {
    background-color: rgb(247, 242, 237);
    border-radius: 5px;
    transition: background-color 0.4s ease, transform 0.3s, box-shadow 0.3s;
}

.navbar li:hover a {
    color: rgb(8, 32, 91);
    text-decoration: none;
}

nav a:visited {
    color: rgb(223, 201, 178);
}

.navdiv {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navdiv ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

.navdiv ul li {
    position: relative;
}

.hamburger {
    display: none;
    font-size: 24px;
    cursor: pointer;
}

/*sign in icon*/
.signin-link {
    display: inline-block;
    padding-left: 30px;
    line-height: 24px;
    background: url("images/signin-icon.png") no-repeat left center;
    background-size: 30px 30px;

}

/*hover for sign in icon*/
.signin-link:hover {
    background: url("images/signin-icon-hover.png") no-repeat left center;
    background-size: 30px 30px;
}

/* Dropdown container */
.dropdown-nav {
    position: relative;
    display: inline-block;
}

/* Dropdown content hidden by default */
/* Hide by default */
.dropdown-nav-content {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: rgb(247, 242, 237);
    min-width: 120px;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
    border-radius: 5px;
    z-index: 1001;
    transition: max-height 0.4s ease, opacity 0.4s ease;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

/* Show dropdown when parent has 'active' */
.dropdown-nav.active .dropdown-nav-content {
    max-height: 500px;
    opacity: 1;
}

/* Accommodation, Services dropdown opens on hover */
.navbar .hover-dropdown:hover .dropdown-nav-content {
    max-height: 500px;
    opacity: 1;
    visibility: visible;
}

/* Links inside dropdown */
.dropdown-nav-content li {
    list-style: none;
}

.dropdown-nav-content li a {
    display: block;
    padding: 10px;
    color: rgb(8, 32, 91);
    text-decoration: none;
}

.dropdown-nav-content li a:hover {
    background-color: rgb(223, 201, 178);
}


#loginBtn {
    padding-right: 10px;
    cursor: pointer;
}

/* Arrow rotation when active */
#loginBtn::after {
    content: " ▼";
    margin-left: 6px;
    font-size: 0.8em;
}

.dropdown-nav.active #loginBtn::after {
    content: " ▲";
    /* change arrow */
}

/* footer settings */
footer {
    background-color: rgb(8, 32, 91);
    color: rgb(247, 242, 237);
    text-align: center;
    padding: 20px 0;
    font-family: 'Nunito', sans-serif;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 10px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 20px;
}

.f-socmed-acc img {
    width: 32px;
    height: 32px;
    margin: 0 8px;
    transition: transform 0.3s ease;
}

.f-socmed-acc img:hover {
    transform: scale(1.1);
}

.footer-contact p {
    margin: 5px 0;
    font-size: 0.95em;
    color: rgb(247, 242, 237);
    text-align: left;
}

.footer-contact a {
    display: inline-block;
    font-size: 0.95em;
    color: rgb(247, 242, 237);
    text-align: left;
    transition: all 0.3s ease;
    text-decoration: none;
}

.footer-contact a:hover {
    color: rgb(208, 228, 225);
    transform: scale(1.02);
}

.footer-bottom {
    width: 100%;
    margin-top: 15px;
    border-top: 1px solid rgb(210, 210, 210);
    padding-top: 10px;
    font-size: 0.85em;
}

.footer-bottom p {
    color: rgb(247, 242, 237);
    font-size: 18px;
}

/* HOME PAGE / INDEX */

/* video settings */
.video-container {
    position: relative;
    width: 100%;
    height: 70vh;
    overflow: hidden;
    z-index: 0;
    margin-top: -90px;
    margin-bottom: 150px;
}

.video-container video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    transform: translate(-50%, -50%);
    z-index: -2;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(8, 32, 91, 0.4);
    z-index: -1;
}

.video-overlay-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;

    z-index: 1;
    padding: 30px;
}

.video-overlay-text h2 {
    font-size: 2.8rem;
    font-weight: 700;
    color: rgb(210, 210, 210);
    margin: 0 auto;
    text-shadow: 5px 2px 8px #362e25;
}

.video-overlay-text p {
    font-size: 1.5rem;
    color: rgb(180, 180, 180);
    margin-top: 15px;
    padding: 20px;
    text-shadow: 5px 2px 8px #362e25;
}

/* Video background like parallax */
.parallax-video {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: clamp(40px, 6vw, 100px);
}

/* Fade at bottom */
.parallax-video::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 150px;
    /* fade height */
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgb(247, 242, 237) 100%);
    pointer-events: none;
    z-index: 2;
}

/* Fade at top */
.parallax-video::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 120px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0) 0%, rgb(247, 242, 237) 100%);
    pointer-events: none;
    z-index: 2;
}

.parallax-video-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 0;
    transition: transform 0.3s ease;
}

/* Dark overlay on top of video */
.parallax-video-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 1;
}

/* Text on top of video */
.parallax-video-content {
    position: relative;
    z-index: 2;
    max-width: 1000px;
}

.parallax-video-content h2 {
    font-size: 3rem;
    font-weight: 700;
    padding-top: -200px;
    text-align: center;
    color: rgb(210, 210, 210);
    text-shadow: 5px 2px 8px #362e25;
}

.parallax-video-content p {
    font-size: 2rem;
    margin: 2rem 0;
    color: rgb(180, 180, 180);
    text-shadow: 5px 2px 8px #362e25;
    padding-top: 100px;
}

.left {
    text-align: left;
}

.right {
    text-align: right;
}

.center {
    text-align: center;
}

/* Fade-in + fade-out effect */
.fade-text {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1.2s ease-out, transform 1.2s ease-out;
}

.fade-text.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Controls styling */
.video-controls {
    position: absolute;
    bottom: 20px;
    right: 20px;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(0, 0, 0, 0.4);
    padding: 8px 12px;
    border-radius: 8px;
}

.video-controls button {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: white;
    cursor: pointer;
}

.video-controls button:hover {
    color: #ffcc00;
    transform: scale(1.2);
}

.video-controls input[type="range"] {
    width: 100px;
    cursor: pointer;
    filter: brightness(1.2)
}

/* swiper slides image gallery settings */
.slideshow-container {
    max-width: 1000px;
    position: relative;
    margin: auto;
    margin-top: clamp(40px, 6vw, 100px);
}

.slides-attractions {
    display: none;
}

.slides-attractions img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 10px;
}

.prev,
.next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    margin-top: -22px;
    padding: 16px;
    color: white;
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
}

.next {
    right: 0;
    border-radius: 3px 0 0 3px;
}

.prev:hover,
.next:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

.text-attractions {
    color: #362e25;
    font-size: 15px;
    padding: 8px 12px;
    position: relative;
    bottom: 8px;
    width: 100%;
    text-align: center;
}

.num-attractions {
    color: #f2f2f2;
    font-size: 12px;
    padding: 8px 12px;
    position: absolute;
    top: 0;
}

.dot {
    cursor: pointer;
    height: 15px;
    width: 15px;
    margin: 0 2px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
    margin-bottom: 100px;
}

.active,
.dot:hover {
    background-color: #717171;
}

.fade {
    animation-name: fade;
    animation-duration: 1.5s;
}

@keyframes fade {
    from {
        opacity: .4;
    }

    to {
        opacity: 1;
    }
}

/* for "why choose jet5holiday" settings */
.highlights {
    padding: 60px 20px;
    background-color: rgb(208, 228, 225);
    text-align: center;
}

.highlights h2 {
    font-size: 2.2em;
    margin-bottom: 40px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.features {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
}

.feature-card {
    background-color: #e7e0d8;
    border-radius: 12px;
    padding: 25px;
    max-width: 300px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.feature-card img {
    width: 100%;
    height: 55%;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0px 4px 12px #362e25;
}

.feature-card h3 {
    font-size: 1.5em;
    color: #362e25;
    margin-bottom: 10px;
}

.feature-card p {
    font-size: 1em;
    color: #362e25;
    padding: 1em;
}

.feature-link {
    display: block;
    text-decoration: none;
    color: inherit;
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 10;
    cursor: pointer;
}

.feature-link:hover {
    text-decoration: none;
    color: inherit;
}

.feature-link img,
.feature-link h3,
.feature-link p {
    position: relative;
    z-index: 11;
    pointer-events: none;
}

/* our branches */
.our-branches {
    padding: 60px 20px;
    background-color: rgb(247, 242, 237);
    text-align: center;
}

.our-branches h2 {
    font-size: 2.2em;
    color: #362e25;
    margin-bottom: 40px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.branches-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.branches-card {
    background-color: rgb(223, 201, 178);
    border-radius: 12px;
    padding: 20px;
    width: 280px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.branches-card:hover {
    transform: translateY(-5px);
    box-shadow: 0px 4px 12px #362e25;
}

.branches-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
}

.branches-card h3 {
    color: #362e25;
    font-size: 1.4em;
    margin: 10px 0 5px;
}

.branches-card p {
    color: #362e25;
    font-size: 0.95em;
    margin: 0;
    padding: 1em;
}

/* book button settings */
.book-btn-container {
    text-align: center;
    margin: 40px 0;
}

.book-btn {
    background-color: rgb(112, 150, 209);
    color: #fff;
    padding: 15px 30px;
    font-size: 1.1em;
    font-weight: bold;
    border: none;
    border-radius: 8px;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: background-color 0.4s ease, transform 0.3s, box-shadow 0.3s;
}

.book-btn:hover {
    background-color: rgb(8, 32, 91);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px #362e25;
}

/* SERVICES */

/* FAQ Section Styles */
.faq-section {
    padding: 60px 20px;
    text-align: center;
}

.faq-section h2 {
    font-size: 2.2em;
    color: #362e25;
    margin-bottom: 40px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 15px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.faq-question {
    width: 100%;
    padding: 20px;
    text-align: left;
    background-color: rgb(112, 150, 209);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    border: none;
    color: rgb(247, 242, 237);
    font-size: 1.1em;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: rgb(8, 32, 91);
    box-shadow: 0 4px 10px #362e25;
}

.toggle-icon {
    font-size: 1.5em;
    font-weight: bold;
}

.faq-answer {
    background-color: #e7e0d8;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer p {
    padding: 20px;
    margin: 0;
    text-align: left;
    color: #362e25;
}

.faq-item.active>.faq-answer {
    max-height: 300px;
}

.faq-item.active>.toggle-icon {
    transform: rotate(45deg);
}

/* ACCOMMODATIONS */

/*Intro Section*/
.intro {
    background-color: #fff;
    position: relative;
}

.border-default {
    display: block;
    width: 80px;
    height: 4px;
    background-color: #fff;
    margin-bottom: 20px;
}

.intro__title {
    font-family: 'Arial', sans-serif;
    font-size: 3rem;
    position: relative;
    text-align: center;
    margin: 20px 0;
    text-transform: uppercase;
    letter-spacing: 4px;
    text-shadow: none;
    color: #054e21;

}

.intro__subtitle {
    font-size: 1.25rem;
    color: #726f6f;
    margin-bottom: 25px;
    font-weight: 400;
}

.intro__entry p {
    font-size: 1.10rem;
    color: #3a3838;
    line-height: 1.8;
    text-align: justify;
    padding: 0 40px 50px;
}

.intro__entry h3 {
    font-size: 1.10rem;
    color: #bbb9b9;
    text-align: center;
    padding: 0 40px 50px;
}

.intro img {
    width: 100%;
    height: 80vh;
}

/* Rooms Section */
h1 s {
    text-align: center;
    font-size: 2.5rem;
    margin: 60px 0 40px;
    color: #054e21;
    position: relative;
}

h1 s:after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: #c8a97e;
}

/* Flex Container for Rooms */
.flex-row-container {
    display: flex;
    flex-wrap: column;
    justify-content: center;
    gap: 25px;
    height: 100%;
    padding-bottom: 1rem;
}

.box {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    max-width: 400px;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    /* ensures image and text stack vertically */
    justify-content: center;
}

.box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.image-container {
    overflow: hidden;
    height: 250px;
}

.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    margin: 0;
}

.box:hover .image-container img {
    transform: scale(1.05);
}

.text-container {
    display: flex;
    flex-direction: column;
    text-align: center;
    flex-grow: 1;
    padding: 1rem;
    /* add padding for spacing */
    justify-content: space-between;
}

.text-container P {
    margin: 0.5rem 0;
}

.text-container .numOfPeople {
    margin-top: 1rem;
}

.text-container p:first-child {
    font-size: 1.4rem;
    color: #222;
    text-align: left;
}

.text-container p:nth-child(2) {
    font-size: medium;
    color: #777;
    text-align: left;

}

.text-container p:nth-child(3) {
    font-size: 1.25rem;
    color: #c8a97e;
    font-weight: 600;
    text-align: left;
}

.text-container p:last-child {
    text-align: left;
}

.standard-intro p {
    font-size: 1.1rem;
    color: #3a3838;
    line-height: 1.8;
    text-align: justify;
    max-width: 100%;
    margin: 0 auto 1rem;
    padding: 0 20px;
    letter-spacing: 0.3px;
}


@media (min-width: 768px) {
    .standard-intro p {
        padding: 0 80px 15px;
    }
}


@media (min-width: 1200px) {
    .standard-intro p {
        padding: 0 200px 15px;
    }
}


.features li {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    background: #f0f0f0;
    border-radius: 20px;
    font-size: 1.1rem;
}


/*Room Description*/
.description-with-price {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 30px;
    align-items: flex-start;
}

.standard-intro {
    flex: 2.5;
    min-width: 300px;
}

.button-booknow {
    flex: 0.5;
    min-width: 250px;
    padding: 50px;
    text-align: left;
    top: 20px;
    margin-left: auto;
    /* This pushes it to the right */
    order: 2;
    /* Ensures it stays on the right */
}

.book-now-btn {
    background-color: #054e21;
    color: white;
    border: none;
    padding: 18px 35px;
    margin-top: 15px;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s;
}

.book-now-btn:hover {
    background-color: #0a6b2d;
}

/* Position the image container (needed to position the left and right arrows) */
.image-slideshow {
    position: relative;
    max-width: 800px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin: 0 auto;
    padding: 20px 0;

}

/* Hide the images by default */
.mySlides {
    display: none;
}

/* Add a pointer when hovering over the thumbnail images */
.cursor {
    cursor: pointer;
}

/* Next & previous buttons */
.prev,
.next {
    cursor: pointer;
    position: absolute;
    bottom: 13%;
    transform: translateY(50%);
    width: 60px;
    height: 60px;
    padding: 0;
    color: #c8a97e;
    font-weight: bold;
    font-size: 2rem;
    user-select: none;
    margin: 0 20px;
    background-color: rgba(0, 0, 0, 0.5);
    border: 2px solid #c8a97e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    z-index: 10;
}

.prev {
    left: -100px;
}

.next {
    right: -90px;
}

.prev:hover,
.next:hover {
    background-color: rgba(0, 0, 0, 0.8);
    color: #fff;
    transform: translateY(50%) scale(1.1);
    border-color: #fff;
    box-shadow: 0 6px 25px rgba(200, 169, 126, 0.4);
    animation: pulse 1.5s infinite, float 3s ease-in-out infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(200, 169, 126, 0.4);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(200, 169, 126, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(200, 169, 126, 0);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(50%) scale(1.1);
    }

    50% {
        transform: translateY(45%) scale(1.1);
    }
}


.row {
    display: flex;
    justify-content: center;
    margin: 15px auto 0;
    max-width: 800px;
    /* Match main slideshow */
    width: 100%;
    /* Same as main slideshow */
    flex-wrap: nowrap;
    gap: 10px;
}

.row:after {
    content: "";
    display: table;
    clear: both;
}

/*columns side by side */
.column {
    max-width: 150px;
}

.column img {
    width: 100%;
    height: 150px;
    /* Fixed height for consistency */
    object-fit: cover;
    /* Ensures images cover the area without distortion */
    cursor: pointer;
    transition: transform 0.2s;
    /* Optional: adds hover effect */

}

.column img:hover {
    transform: scale(1.02);
    /* Optional: slight zoom on hover */
}

/* Add a transparency effect for thumnbail images */
.demo {
    opacity: 0.6;
    width: 100%;
    /* Ensures the images fill their container */
    border-radius: 5px;
    /* Optional: adds rounded corners to the images */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    /* Optional: adds a soft shadow for better appearance */
}

.active,
.demo:hover {
    opacity: 1;
}


/* Specific styling for the "Read More" and "Book Now" links */
.text-container p a {
    color: #2d6a4f;
    /* Set initial color */
    font-size: 18px;
    text-decoration: none;
    /* Remove underline initially */
    font-weight: bold;
    transition: color 0.3s ease;
    /* Smooth color transition */
}

/* Underline and change color on hover */
.text-container p a:hover {
    text-decoration: underline;
    /* Underline the text */
    color: #1e4d39;
    /* Change color when hovered */
}

.others h2 {
    font-size: 40px;
    color: #054e21;
    font-weight: bold;
    text-align: center;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-family: 'Arial', sans-serif;
    position: relative;
}

.others h3 {
    font-size: 20px;
    color: #555;
    /* A softer gray color for the subheading */
    text-align: center;
    margin-bottom: 30px;
    font-weight: 400;
    /* Normal weight for the subheading */
    font-style: italic;
    /* Italicize to create a contrast with the h2 */
}

/* Button hover effect */
.book-now-btn:hover {
    background-color: #1e4d39;
    /* Darker green on hover */
    transform: translateY(-3px);
    /* Slight lift effect on hover */
}

/* Button active effect (when clicked) */
.book-now-btn:active {
    transform: translateY(0);
    /* Button returns to normal position */
}

/* LOGIN AND REGISTRATION */

#form-container {
    background: white;
    padding: 40px 60px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    width: 80%;
    max-width: 750px;
    margin: 40px auto;
}


.form {
    display: flex;
    flex-direction: column;
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.5s ease, transform 0.4s ease;
}


.form.fade-out {
    opacity: 0;
    transform: translateY(-20px);
}

.form h2 {
    text-align: center;
    margin-bottom: 15px;
}

.form p {
    margin-top: 20px;
    margin-bottom: 5px;
    text-align: center;
}

.form a {
    display: block;
    text-align: center;
    margin-top: 5px;
}


.form input {
    margin: 5px 0;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.form button {
    padding: 10px;
    background: #2f80ed;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease
}

.form button:hover {
    background: #1b5fbf;
}

/* for register button, it will enable the button when all the validation pass*/
.form button:hover:enabled {
    background: #1b5fbf;
}

/* for register button, it will stays grayed out and cannot be clicked until you completed the registration */
.form button:disabled {
    background: #a8c6f0;
    cursor: not-allowed;
    opacity: 0.7;
}

.hidden {
    display: none;
}

form input {
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    width: 100%;
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

form input:hover {
    box-shadow: 0 0 8px #1b5fbf;
    border-color: #2f80ed;
}

.form-message {
    font-size: 14px;
    margin-top: 5px;
    text-align: center;
}

.form-message.error {
    font-weight: bold;
    color: red;
}

.form-message.success {
    font-weight: bold;
    color: green;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.fade-out {
    animation: fadeOut 1s forwards;
}

@keyframes fadeOut {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
    }
}

.valid {
    color: green;
    font-weight: bold;
}

.invalid {
    color: red;
    font-weight: bold;
}

.spinner {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.8);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.spinner-circle {
    border: 6px solid #ddd;
    border-top: 6px solid #4CAF50;
    /* jet5holiday theme color */
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
    margin-bottom: 15px;
}

.spinner p {
    margin-left: -30px;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.hidden {
    display: none !important;
}

/* Chat Widget */
.chat-widget {
    position: fixed;
    bottom: 80px;
    right: 20px;
    width: 300px;
    height: 400px;
    background: #fff;
    border: 2px solid #daa520;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    display: none;
    z-index: 9999;
}

.chat-header {
    background: linear-gradient(135deg, #daa520, #ffcc70);
    padding: 10px;
    font-weight: bold;
    color: #111;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chat-header span {
    cursor: pointer;
}

.chat-body {
    flex: 1;
    padding: 10px;
    overflow-y: auto;
    background: #f9f9f9;
}

.chat-message {
    margin: 5px 0;
    padding: 8px 12px;
    border-radius: 8px;
    max-width: 80%;
    word-wrap: break-word;
    animation: fadeIn 0.3s ease;
}

.chat-message.user {
    background: #daa520;
    color: #111;
    margin-left: auto;
}

.chat-message.bot {
    background: #eee;
    color: #000;
    margin-right: auto;
}

.chat-input {
    display: flex;
    padding: 8px;
    background: #f1f1f1;
    border-top: 1px solid #ddd;
}

.chat-input input {
    flex: 1;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.chat-input button {
    margin-left: 8px;
    padding: 8px 15px;
    border: none;
    background: #daa520;
    color: #111;
    border-radius: 5px;
    cursor: pointer;
}

.chat-input button:hover {
    background: #ffcc70;
}

.chat-option {
    background: #ffcc70 !important;
    color: #111 !important;
    margin: 6px 0;
    text-align: center;
    border-radius: 6px;
    padding: 8px;
}

.chat-option:hover {
    background: #daa520 !important;
    color: #fff !important;
}

/* Floating Chat Button */
.chat-toggle {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #daa520;
    color: #111;
    border: none;
    padding: 15px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    z-index: 9999;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(5px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}







/* Review Page Specific Styles */
.review-page-body {
    background: linear-gradient(135deg, #ebd59d 0%, #aac2f5 100%);
    min-height: 100vh;
    color: #333;
    line-height: 1.6;
    padding: 0;
    margin: 0;
}

.review-main-content {
    padding: 20px 0;
}

.review-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.review-header {
    text-align: left;
    margin-left: 250px;
    margin-bottom: 3rem;
    padding-top: 20px;
}

.review-grid {
    display: grid;
    gap: 2rem;
}

.hotel-card {
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.review-card {
    background: white;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.review-form {
    background: rgba(255, 255, 255, 0.98);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 24px;
}

.star-rating {
    color: #ffd700;
    text-shadow: 0 0 2px rgba(0, 0, 0, 0.3);
}

.rating-stars {
    cursor: pointer;
    font-size: 1.5rem;
}

/* Layout Utilities */
.grid-cols-1 {
    grid-template-columns: 1fr;
}

.grid-cols-2 {
    grid-template-columns: 1fr 1fr;
}

.grid-cols-3 {
    grid-template-columns: 1fr 1fr 1fr;
}

.flex {
    display: flex;
}

.flex-col {
    flex-direction: column;
}

.flex-row {
    flex-direction: row;
}

.items-center {
    align-items: center;
}

.items-start {
    align-items: flex-start;
}

.justify-between {
    justify-content: space-between;
}

.justify-center {
    justify-content: center;
}

.flex-1 {
    flex: 1;
}

/* Spacing */
.gap-1 {
    gap: 0.25rem;
}

.gap-2 {
    gap: 0.5rem;
}

.gap-3 {
    gap: 0.75rem;
}

.gap-4 {
    gap: 1rem;
}

.gap-6 {
    gap: 1.5rem;
}

.gap-8 {
    gap: 2rem;
}

.space-y-1>*+* {
    margin-top: 0.25rem;
}

.space-y-2>*+* {
    margin-top: 0.5rem;
}

.space-y-3>*+* {
    margin-top: 0.75rem;
}

.space-y-4>*+* {
    margin-top: 1rem;
}

.space-y-6>*+* {
    margin-top: 1.5rem;
}

.mb-2 {
    margin-bottom: 0.5rem;
}

.mb-3 {
    margin-bottom: 0.75rem;
}

.mb-4 {
    margin-bottom: 1rem;
}

.mb-6 {
    margin-bottom: 1.5rem;
}

.mb-8 {
    margin-bottom: 2rem;
}

.mb-12 {
    margin-bottom: 3rem;
}

.mr-1 {
    margin-right: 0.25rem;
}

.mr-2 {
    margin-right: 0.5rem;
}

.mr-3 {
    margin-right: 0.75rem;
}

.ml-2 {
    margin-left: 0.5rem;
}

.mt-1 {
    margin-top: 0.25rem;
}

.mt-4 {
    margin-top: 1rem;
}

.px-2 {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
}

.px-4 {
    padding-left: 1rem;
    padding-right: 1rem;
}

.px-6 {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.py-1 {
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
}

.py-2 {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

.py-3 {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
}

.py-4 {
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.py-8 {
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.p-4 {
    padding: 1rem;
}

.p-6 {
    padding: 1.5rem;
}

.p-8 {
    padding: 2rem;
}

/* Typography */
.text-center {
    text-align: center;
}

.text-sm {
    font-size: 0.875rem;
}

.text-base {
    font-size: 1rem;
}

.text-lg {
    font-size: 1.125rem;
}

.text-xl {
    font-size: 1.25rem;
}

.text-2xl {
    font-size: 1.5rem;
}

.text-3xl {
    font-size: 1.875rem;
}

.text-4xl {
    font-size: 2.25rem;
}

.text-5xl {
    font-size: 3rem;
}

.font-bold {
    font-weight: 700;
}

.font-semibold {
    font-weight: 600;
}

.font-medium {
    font-weight: 500;
}

.text-white {
    color: rgb(255, 255, 255);
}

.text-gray-600 {
    color: #0f0e0e;
}

.text-gray-700 {
    color: #4a5568;
}

.text-gray-800 {
    color: #2d3748;
}

.text-blue-600 {
    color: #000000;
}

.text-blue-800 {
    color: #2c5282;
}

.text-green-800 {
    color: #276749;
}

.opacity-90 {
    opacity: 0.9;
}

/* Form Elements */
input,
textarea {
    width: 100%;
    padding: 0.5rem 1rem;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    transition: all 0.3s ease;
}

input:focus,
textarea:focus {
    outline: none;
    border-color: #3182ce;
    box-shadow: 0 0 0 2px rgba(49, 130, 206, 0.2);
}

button {
    background: #3182ce;
    color: white;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    transform: scale(1);
}

button:hover {
    background: #2c5282;
    transform: scale(1.05);
}

/* Badges and Labels */
.bg-blue-50 {
    background-color: #ebf8ff;
}

.bg-green-100 {
    background-color: #f0fff4;
}

.bg-gray-50 {
    background-color: #f7fafc;
}

.rounded-lg {
    border-radius: 8px;
}

.rounded-xl {
    border-radius: 12px;
}

.rounded-2xl {
    border-radius: 16px;
}

.rounded-full {
    border-radius: 9999px;
}

/* Images and Media */
.object-cover {
    object-fit: cover;
}

.overflow-hidden {
    overflow: hidden;
}

.shadow-lg {
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

/* Responsive Design */
@media (min-width: 768px) {
    .md\:grid-cols-3 {
        grid-template-columns: 1fr 1fr 1fr;
    }

    .md\:grid-cols-2 {
        grid-template-columns: 2fr 1fr;
    }

    .md\:flex-row {
        flex-direction: row;
    }

    .md\:col-span-2 {
        grid-column: span 2;
    }

    .md\:col-span-1 {
        grid-column: span 1;
    }

    .md\:text-5xl {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .grid-cols-2 {
        grid-template-columns: 1fr;
    }

    .grid-cols-3 {
        grid-template-columns: 1fr;
    }
}

/* Additional Styles */
.w-full {
    width: 100%;
}

.h-32 {
    height: 128px;
}

.h-64 {
    height: 256px;
}

.placeholder-sm {
    font-size: 0.875rem;
    color: #a0aec0;
}


/* DINING */

/* Combined Dining Banner Styles */
.page-banner.dining-banner {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

/* Dark overlay for better text readability */
.page-banner.dining-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
            rgba(0, 0, 0, 0.6) 0%,
            rgba(0, 0, 0, 0.4) 50%,
            rgba(0, 0, 0, 0.7) 100%);
    z-index: 1;
}

/* Banner content container */
.banner-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    animation: fadeInUp 1s ease-out;
}

/* Main heading */
.banner-content h1 {
    font-size: 5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px #964B00;
    letter-spacing: 2px;
    text-transform: uppercase;
    background: linear-gradient(45deg, #fff, #f0f0f0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: left;
}

/* Main subtitle */
.banner-content>p {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 3rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    opacity: 0.95;
    color: white;
    text-align: center;
}

/* Dining intro content section */
.dining-intro-content {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 3rem 2.5rem;
    margin-top: 3rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    animation: slideInUp 1.2s ease-out 0.3s both;
}

/* Secondary heading */
.dining-intro-content h2 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    position: relative;
}

/* Decorative underline for h2 */
.dining-intro-content h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    border-radius: 2px;
}

/* Paragraph styles */
.dining-intro-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    font-weight: 300;
}

/* Last paragraph (dining hours) styling - using your blue */
.dining-intro-content p:last-child {
    font-size: 1.2rem;
    font-weight: 500;
    color: #FFDEAD;
    text-shadow: 5px 2px 8px #362e25;
    background: rgba(0, 82, 155, 0.1);
    padding: 1rem 1.5rem;
    border-radius: 10px;
    border-left: 4px solid #2894f3;
    margin-bottom: 0;
    text-align: center;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(80px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-banner.dining-banner {
        min-height: 90vh;
        background-attachment: scroll;
    }

    .banner-content h1 {
        font-size: 2.5rem;
        letter-spacing: 1px;
    }

    .banner-content>p {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }

    .dining-intro-content {
        padding: 2rem 1.5rem;
        margin-top: 2rem;
    }

    .dining-intro-content h2 {
        font-size: 2rem;
    }

    .dining-intro-content p {
        font-size: 1rem;
    }

    .dining-intro-content p:last-child {
        font-size: 1.1rem;
        padding: 0.8rem 1rem;
    }
}

@media (max-width: 480px) {
    .banner-content {
        padding: 0 15px;
    }

    .banner-content h1 {
        font-size: 2rem;
    }

    .banner-content>p {
        font-size: 1rem;
    }

    .dining-intro-content {
        padding: 1.5rem 1rem;
    }

    .dining-intro-content h2 {
        font-size: 1.8rem;
    }
}

/* Hover effects for enhanced interactivity */
.dining-intro-content:hover {
    transform: translateY(-5px);
    transition: all 0.3s ease;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
}

/* Subtle pulse animation for the accent line */
.dining-intro-content h2::after {
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.7;
    }
}

/* Cuisine Navigation */
.cuisine-nav {
    background-color: #00529b;
    padding: 15px 0;
}

.cuisine-nav ul {
    display: flex;
    justify-content: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

.cuisine-nav li {
    margin: 0 15px;
}

.cuisine-link {
    color: white;
    text-decoration: none;
    font-weight: 600;
    padding: 8px 15px;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.cuisine-link:hover,
.cuisine-link.active {
    background-color: rgba(255, 255, 255, 0.2);
}

/* Cuisine Sections */
.cuisine-section {
    display: none;
    padding: 60px 0;
}

.cuisine-section.active {
    display: block;
}

.cuisine-section h2 {
    color: #00529b;
    text-align: center;
    margin-bottom: 15px;
}

.cuisine-description {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 40px;
    color: #666;
}

.menu-category {
    margin-bottom: 40px;
}

.menu-category h3 {
    color: #00529b;
    border-bottom: 2px solid #00529b;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.menu-items {
    display: grid;
    grid-template-columns: repeat(3, 300px);
    /* Fixed 3 columns */
    gap: 25px;
    place-content: center;
    /* Centers the entire grid */
    width: 100%;
}

.menu-item {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.menu-item:hover {
    transform: translateY(-5px);
}

.menu-item h4 {
    color: #00529b;
    margin-bottom: 10px;
}

.menu-item p {
    color: #666;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.menu-item-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
}

.price {
    font-weight: bold;
    color: #00529b;
    font-size: 1.1rem;
}

/* Beverage Section */
.beverage-section {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.beverage-section h2 {
    color: #00529b;
    text-align: center;
    margin-bottom: 40px;
}

/* Dining Info Section */
.dining-info {
    position: relative;
    padding: 60px 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #fff;
    /* text stays visible */
}

.dining-info::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.3);
    /* same translucent overlay as cuisine */
    z-index: 0;
}

.dining-info>* {
    position: relative;
    z-index: 1;
    /* keep text above overlay */
}


.dining-info .container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.info-box {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.info-box h3 {
    color: #8B4513;
    margin-bottom: 15px;
}

.info-box p {
    margin-bottom: 20px;
    color: #666;
}

.cta-button {
    display: inline-block;
    background-color: #00529b;
    color: white;
    padding: 10px 20px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s;
}

.cta-button:hover {
    background-color: #003a6d;
}

/* Responsive Design */
@media (max-width: 768px) {
    .cuisine-nav ul {
        flex-direction: column;
        align-items: center;
    }

    .cuisine-nav li {
        margin: 5px 0;
    }

    .menu-items {
        grid-template-columns: 1fr;
    }

    .dining-info .container {
        grid-template-columns: 1fr;
    }
}

/* Background image containers */
.cuisine-section {
    position: relative;
    overflow: hidden;
    padding: 80px 0;
}

.background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.15;
    /* Adjust opacity as needed */
    z-index: 0;
}



/* Cuisine Sections */
.cuisine-section {
    position: relative;
    display: none;
    padding: 60px 0;
    background-size: cover;
    /* keeps full cover */
    background-position: center;
    /* centers image */
    background-repeat: no-repeat;
    background-attachment: scroll;
    /* set to fixed for parallax effect */
    color: #222;
    /* default text color */
}

.cuisine-section.active {
    display: block;
}

/* Overlay for better clarity */
.cuisine-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.3);
    /* light overlay to brighten */
    z-index: 0;
}

/* Keep content above overlay */
.cuisine-section>* {
    position: relative;
    z-index: 1;
}

.cuisine-section h2 {
    color: #FFDEAD;
    text-shadow: 5px 2px 8px #362e25;
    text-align: center;
    margin-bottom: 15px;
}

.cuisine-description {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 40px;
    color: #ffffff;
}


/* Menu Items Grid */
.menu-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    place-content: center;
    width: 100%;
}

.menu-item {
    background: rgba(255, 255, 255, 0.9);
    /* slight transparency to blend with bg */
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.menu-item:hover {
    transform: translateY(-5px);
}

.menu-item h4 {
    color: #8B4513;
    margin-bottom: 10px;
}

.menu-item p {
    color: #555;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.menu-item-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
}

.price {
    font-weight: bold;
    color: #00529b;
    font-size: 1.1rem;
}


/* For a more decorative approach with pattern overlay */
.pattern-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.4;
    z-index: 0;
}

/* ====== Events Page Styling (Light Blue Theme) ====== */
.page-banner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.events-banner .banner-content {
    text-align: center;
    padding: 100px 250px;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 12px;
    margin: 30px auto;
    max-width: 1000px;
    color: #ffffff;
    /* light blue text */
}

.events-banner .banner-content h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
    color: #ffffff;
    /* slightly deeper light blue for heading */
}

.events-banner .banner-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #ffffff;
    /* paragraph text */
}



/* Event Types Grid */
.events-type {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    padding: 50px 20px;
    max-width: 1100px;
    margin: auto;
}

.event-card {
    background: #ffffff;
    border: 2px solid #b3e0ff;
    /* light blue border */
    border-radius: 15px;
    box-shadow: 0 6px 14px rgba(0, 153, 255, 0.15);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.event-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 18px rgba(0, 153, 255, 0.25);
}

.event-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-bottom: 2px solid #b3e0ff;
}

.event-card h3 {
    font-size: 1.4rem;
    color: #007acc;
    /* light-mid blue */
    margin: 15px;
}

.event-card p {
    font-size: 1rem;
    color: #333;
    padding: 0 15px 20px;
    line-height: 1.5;
}

.event-price {
    padding: 15px 20px;
    background: #f8f9fa;
    border-top: 1px solid #e9ecef;
    text-align: center;
    font-weight: bold;
    color: #0077b6;
    font-size: 1.3rem;
}

.event-button {
    display: block;
    background: #0077b6;
    color: white;
    text-align: center;
    padding: 12px 20px;
    margin: 15px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s ease;
}

.event-button:hover {
    background: #023e8a;
}

.event-checkboxes {
    margin: 15px 0;
}

.event-checkbox-item {
    display: flex;
    align-items: center;
    margin: 10px 0;
    padding: 8px;
    background: #f8f9fa;
    border-radius: 6px;
    border: 1px solid #e9ecef;
}

.event-checkbox-item input[type="checkbox"] {
    margin-right: 10px;
    width: 18px;
    height: 18px;
}

.event-checkbox-item label {
    font-weight: normal;
    margin: 0;
    cursor: pointer;
    flex: 1;
}

/* Spa Page Specific Styles */
.spa-hero {
    background: url('images/Spa-centre.webp') center/cover no-repeat;
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 0 20px;
    margin-top: -90px;
    height: 80vh;
}

.spa-hero-content h1 {
    font-size: 4rem;
    margin-right: 20px;
    margin-left: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);


}

.spa-hero-content p {
    font-size: 1.5rem;
    margin-bottom: 30px;
    max-width: 700px;
    text-align: right;
}

.spa-intro {
    padding: 80px 0;
    text-align: center;
    background-color: #f8fcff;
}

.spa-intro h2 {
    color: #1e88e5;
    margin-bottom: 20px;
}

.spa-intro p {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #555;
}

.spa-services {
    padding: 80px 0;
    background-color: white;
}

.spa-services h2 {
    text-align: center;
    color: #1e88e5;
    margin-bottom: 50px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: white;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(30, 136, 229, 0.2);
}

.service-image {
    height: 200px;
    background-size: cover;
    background-position: center;
}

.service-content {
    padding: 20px;
}

.service-content h3 {
    color: #1e88e5;
    margin-bottom: 15px;
}

.service-content p {
    margin-bottom: 15px;
    color: #666;
}

.service-content ul {
    list-style-type: none;
    margin-bottom: 25px;
    width: 100%;
}

.service-content li {
    padding: 12px 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #eaeaea;
    transition: background-color 0.3s ease;
}

.service-content li:last-child {
    border-bottom: none;
}

.spa-features {
    padding: 80px 0;
    background: linear-gradient(to bottom, #e3f2fd, #bbdefb);
}

.spa-features h2 {
    text-align: center;
    color: #1e88e5;
    margin-bottom: 50px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature {
    text-align: center;
    padding: 30px 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(30, 136, 229, 0.1);
    transition: all 0.3s ease;
    /* smooth transition */
    cursor: pointer;
}

.feature:hover {
    transform: translateY(-10px);
    /* lift effect */
    box-shadow: 0 10px 25px rgba(30, 136, 229, 0.2);
    /* stronger shadow */
}

.feature:hover h3 {
    color: #1e88e5;
    /* change title color on hover */
}

.feature:hover .feature-icon {
    transform: scale(1.2);
    /* make icon bigger */
    transition: transform 0.3s ease;
}


.feature-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.feature h3 {
    color: #1e88e5;
    margin-bottom: 15px;
}

.feature p {
    color: #666;
    line-height: 1.6;
}

.spa-testimonials {
    padding: 80px 0;
    background-color: white;
}

.spa-testimonials h2 {
    text-align: center;
    color: #1e88e5;
    margin-bottom: 50px;
}

.testimonials-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial {
    background: #e3f2fd;
    padding: 30px;
    border-radius: 10px;
    position: relative;
}

.testimonial:before {
    content: "";
    font-size: 5rem;
    color: #1e88e5;
    opacity: 0.2;
    position: absolute;
    top: 10px;
    left: 20px;
    line-height: 1;
}

.testimonial p {
    font-style: italic;
    margin-bottom: 20px;
    color: #555;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    font-weight: bold;
    color: #1e88e5;
}

.spa-cta {
    padding: 80px 0;
    text-align: center;
    background: linear-gradient(to right, #1e88e5, #42a5f5);
    color: white;
}

.spa-cta h2 {
    margin-bottom: 20px;
}

.spa-cta p {
    margin-bottom: 30px;
    font-size: 1.2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-button {
    display: inline-block;
    padding: 15px 30px;
    background: white;
    color: #1e88e5;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    transition: all 0.3s ease;
    border: 2px solid white;
}

.cta-button:hover {
    background: transparent;
    color: white;
}

.cta-button.secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.cta-button.secondary:hover {
    background: white;
    color: #1e88e5;
}

.spa-section {
    margin: 15px 0;
    padding: 10px;
    background: #f8f9fa;
    border-radius: 6px;
    border: 1px solid #e9ecef;
}

.spa-section h4 {
    margin: 0 0 10px 0;
    color: #0077b6;
}

.spa-checkboxes {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.spa-checkbox-item {
    display: flex;
    align-items: center;
    padding: 8px;
    background: white;
    border-radius: 4px;
    border: 1px solid #ddd;
    position: relative;
}

.deselect-package {
    background: none;
    border: none;
    color: #999;
    cursor: pointer;
    font-size: 16px;
    margin-left: 10px;
    padding: 2px 6px;
    border-radius: 3px;
}

.deselect-package:hover {
    background: #f0f0f0;
    color: #d32f2f;
}

/* Hide deselect buttons when radio is not checked */
.spa-checkbox-item:not(:has(.spa-package:checked)) .deselect-package {
    display: none;
}

.spa-checkbox-item input[type="checkbox"],
.spa-checkbox-item input[type="radio"] {
    margin-right: 10px;
    width: 18px;
    height: 18px;
}

.spa-checkbox-item label {
    font-weight: normal;
    margin: 0;
    cursor: pointer;
    flex: 1;
}

.treatment-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
    border-bottom: 1px solid #eaeaea;
    gap: 10px;
}

.treatment-name {
    flex: 1;
}

.treatment-price {
    min-width: 80px;
    text-align: right;
    font-weight: bold;
}

.treatment-item button {
    margin-left: 10px;
}


/* Responsive Design */
@media (max-width: 768px) {
    .spa-hero-content h1 {
        font-size: 2.5rem;
    }

    .spa-hero-content p {
        font-size: 1.2rem;
    }

    .services-grid,
    .features-grid,
    .testimonials-container {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-button {
        width: 200px;
        text-align: center;
    }
}




/* history */
/* Container */
.history-container {
    max-width: 900px;
    margin: 40px auto;
    padding: 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* History Card */
.history-card {
    background: #fafafa;
    border: 1px solid #ddd;
    border-radius: 12px;
    padding: 20px 25px;
    margin-bottom: 20px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
    color: #333;
}

/* Make summary clickable */
.history-card summary {
    cursor: pointer;
    padding: 10px 0;
    font-weight: normal;
    font-size: 1.1rem;
    color: #222;
    list-style: none;
    /* Removes default disclosure triangle */
    position: relative;
}

/* Add custom disclosure arrow */
.history-card summary::marker {
    content: "";
}

.history-card summary::before {
    content: "▶";
    display: inline-block;
    margin-right: 10px;
    transition: transform 0.3s ease;
    color: #0073e6;
}

.history-card details[open] summary::before {
    transform: rotate(90deg);
}

/* Hover effect on summary */
.history-card summary:hover {
    color: #0073e6;
}

/* Booking Info and Payment Info container */
.history-card>details>div {
    margin-top: 15px;
    line-height: 1.5;
}

/* Section Titles */
.history-card h4 {
    margin-bottom: 10px;
    font-weight: 600;
    border-bottom: 2px solid #0073e6;
    padding-bottom: 4px;
    color: #005bb5;
}

/* Text alignment */
.history-card p {
    margin: 6px 0;
    display: flex;
    justify-content: space-between;
    text-align: left;
    font-size: 0.95rem;
}

/* Bold the label part */
.history-card p strong {
    font-weight: 600;
    flex: 1 0 140px;
    /* fixed width for label */
    color: #444;
}

/* Align value to left, wrap if needed */
.history-card p:not(:first-child) {
    flex: 2 1 auto;
}

/* No history message */
.no-history {
    text-align: center;
    font-size: 1.1em;
    color: #666;
    margin-top: 40px;
}

.history-details {
    margin-top: 10px;
    padding: 15px;
    background-color: #f9f9f9;
    border-radius: 8px;
    border-left: 4px solid #007BFF;
}

.history-section {
    margin: 10px 0;
    padding: 10px;
    background-color: #fff;
    border-radius: 5px;
    border: 1px solid #eee;
}

.history-items {
    margin-top: 5px;
    padding-left: 15px;
}

.history-item-detail {
    display: flex;
    justify-content: space-between;
    margin-bottom: 5px;
    padding: 5px 0;
}

.history-item-detail span:first-child {
    text-align: left;
}

.history-item-detail span:last-child {
    font-weight: bold;
    margin-left: 10px;
}

.history-pricing {
    margin: 15px 0;
    padding: 10px;
    background-color: #f0f8ff;
    border-radius: 5px;
    border: 1px solid #d1e7ff;
}

.history-pricing p {
    margin: 5px 0;
}



/* ABOUT US */

/* --- About Us Section --- */

.about-page .about-hero-wrapper * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.about-page .about-hero {
    position: relative;
    height: 80vh;
    margin-top: -90px;
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 60%, #f8f9fa 100%), url("images/aboutBanner.jpg");
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Overlay override stays at the bottom so it always wins */
.about-page .about-hero .hero-overlay {
    background: linear-gradient(to bottom, rgba(0,0,0,0) 60%, #f8f9fa 100%) !important;
}

.about-page .about-hero .hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 20px;
    animation: fadeUp 1.5s ease forwards;
    opacity: 0;
    transform: translateY(30px);
}

.about-page .hero-content h1 {
    font-family: 'Outfit', sans-serif;
    font-size: 3.2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 15px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
    letter-spacing: -0.5px;
}

.about-page .hero-content p {
    font-family: 'Outfit', sans-serif;
    font-size: 1.1rem;
    color: #eeeeee;
    margin-bottom: 35px;
    line-height: 1.6;
    text-shadow: 0.5px 0.5px 2px rgba(0, 0, 0, 0.2);
}

.about-page .hero-btn {
    padding: 12px 28px;
    font-size: 0.95rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    border: 2px solid white;
    color: white;
    background: transparent;
    text-decoration: none;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.about-page .hero-btn:hover {
    background: white;
    color: #000;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.about-page .about-story-section {
    padding: 120px 5% 80px;
    background: #f8f9fa;
}

/* responsive tweak for Mobile to give more room */
@media (max-width: 768px) {
    .about-page .about-story-section {
        padding-top: 150px;
    }
}

.about-page .about-story-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    max-width: 1200px;
    margin: auto;
    gap: 40px;
}

.about-page .about-image img {
    width: 100%;
    max-width: 500px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.about-page .about-text {
    max-width: 600px;
    font-family: 'Outfit', sans-serif;
    text-align: center;
}

.about-page .about-text .hero-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 28px;
    font-size: 1rem;
    font-weight: 600;
    font-family: 'Outfit', sans-serif;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
    background-color: #080a72;
    border: 2px solid #89adee;
    color: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.about-page .about-text .hero-btn:hover {
    background-color: #fff;
    color: #89adee;
    border: 2px solid #89adee;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
    transform: translateY(-2px);
}

.about-page .about-text h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #080a72;
}

.about-page .about-text p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #333;
    margin-bottom: 20px;
}

.about-page .about-cta {
    text-align: center;
    margin-top: 2rem;
}

/* --- Quote Section --- */
.quote-section {
    text-align: center;
    margin: 80px auto 40px;
    font-family: 'Outfit', sans-serif;
}

.changing-quote {
    font-size: 3.6rem;
    font-weight: 700;
    color: #080a72;
    letter-spacing: 2px;
    white-space: nowrap;
}

.word-wrapper {
    display: inline-block;
    min-width: 220px;
    text-align: center;
    padding: 0 30px;
}

.changing-word {
    color: #d6b75d;
    display: inline-block;
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.changing-word.fade-out {
    opacity: 0;
    transform: translateY(20px);
}

.changing-word.fade-in {
    opacity: 1;
    transform: translateY(0);
}

/* --- Extended Story Section ---  */
.extended-story {
    margin: 100px auto;
    width: 100%;
}

/* Each block */
.story-block {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    padding: 100px 5%;
    min-height: 80vh;
    width: 100%;
    position: relative;
}

.story-block .story-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
}

.story-block.reverse .story-inner {
    flex-direction: row-reverse;
}

/* reverse layout */
.story-block.reverse .story-text {
    text-align: left;
}

/* Background alternating colors */
.story-block:nth-child(1) {
    background: #e9e7de;
}

.story-block:nth-child(2) {
    background: #eaf2fb;
}

.story-block:nth-child(3) {
    background: #faf8dc;
}

.story-block:nth-child(4) {
    background: #ddd9cb;
}

.story-block:nth-child(5) {
    background: #d7dde2;
}

.story-block:nth-child(6) {
    background: #f9fbff;
}

.story-media {
    position: relative;
    flex: 1;
    height: 420px;
    overflow: hidden;
    border-radius: 14px;
}

.story-media img,
.story-media video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 110%;
    height: auto;
    min-height: 100%;
    transform: translate(-50%, -50%) scale(1.05);
    object-fit: cover;
    transition: transform 0.2s ease-out;
    will-change: transform;
}

.story-text {
    flex: 1;
    font-family: 'Questrial', sans-serif;
    line-height: 1.8;
}

.story-text h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #080a72;
    margin-bottom: 16px;
}

.story-text p {
    font-size: 1.05rem;
    color: #333;
    text-align: justify;
}

/* Fade in / out */
.fade-in {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 768px) {

    .story-block,
    .story-block.reverse {
        flex-direction: column;
    }

    .story-media {
        width: 100%;
        height: 300px;
    }
}

.journey-btn {
    background-color: #f8f9fa;
    color: black;
    border-color: #f8f9fa;
}

.journey-btn:hover {
    background-color: rgb(208, 228, 225);
    color: black;
}

.milestone-header {
    text-align: center;
    margin: 60px auto 20px;
    max-width: 860px;
    position: relative;
    z-index: 2;
}

.milestone-title-section {
    font-family: 'Outfit', sans-serif;
    font-size: 2.4rem;
    font-weight: 700;
    color: #080a72;
    margin: 0 0 10px;
}

.milestone-layout {
    position: relative;
    width: 100%;
    padding: 64px 0;
    min-height: 70vh;
    display: block;
}

.milestone-background {
    position: absolute;
    inset: 0;
    background: url('images/progressBar1.jpg') center/cover no-repeat;
    filter: brightness(0.4);
    z-index: 0;
    --bg-new: url('images/progressBar1.jpg');
}

.milestone-background::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: var(--bg-new);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: brightness(0.4);
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
    z-index: 1;
    pointer-events: none;
}

/* Trigger fade-in */
.milestone-background.bg-transition::after {
    opacity: 1;
}

/* Layout Grid */
.milestone-container {
    position: relative;
    display: grid;
    grid-template-columns: 80px 1fr 2fr;
    gap: 40px;
    height: 100%;
    padding: 60px;
    z-index: 1;
    color: white;
    align-items: start;
}

/* Sidebar */
.milestone-sidebar {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 22px;
}

.sidebar-item {
    margin-bottom: 25px;
    cursor: pointer;
    background: transparent;
}

.sidebar-item img {
    width: 50px;
    height: 50px;
    opacity: 0.6;
    transition: transform 0.3s ease, opacity 0.3s ease, filter 0.3s ease;
}

/* Hover effect */
.sidebar-item:hover img {
    opacity: 1;
    transform: scale(1.1);
}

/* Active state */
.sidebar-item.active img {
    opacity: 1;
    transform: scale(1.15);
    filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.8));
}

/* Center Info */
.milestone-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    gap: 8px;
    min-height: 340px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

/* Tablet */
@media (max-width: 1024px) {
    .milestone-container {
        grid-template-columns: 70px 1fr 1.6fr;
        gap: 24px;
    }

    .milestone-carousel {
        min-height: clamp(280px, 28vw, 360px);
    }

    .carousel-image {
        width: clamp(440px, 48vw, 600px);
    }

    .milestone-info {
        min-height: 320px;
    }
}

/* Mobile */
@media (max-width: 720px) {
    .milestone-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .milestone-sidebar {
        flex-direction: row;
        justify-content: center;
        gap: 14px;
        order: 1;
    }

    .milestone-info {
        order: 2;
        min-height: 0;
        padding: 0 6px;
        align-items: center;
        text-align: center;
    }

    .milestone-carousel {
        order: 3;
        min-height: auto;
        gap: 16px;
    }

    .carousel-image {
        width: 88vw;
    }
}

/* Animation Keyframes */
@keyframes fadeSlideIn {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeSlideOut {
    0% {
        opacity: 1;
        transform: translateY(0);
    }

    100% {
        opacity: 0;
        transform: translateY(20px);
    }
}

/* Animation Classes */
.milestone-info.animate-in {
    animation: fadeSlideIn 0.5s ease forwards;
}

.milestone-info.animate-out {
    animation: fadeSlideOut 0.3s ease forwards;
}

.milestone-year {
    font-family: 'Outfit', sans-serif;
    font-size: 2.8rem;
    margin-bottom: 10px;
    font-weight: 700;
    align-self: center;
    text-align: center;
    width: 100%;
    color: #fff;
}

.milestone-title {
    font-family: 'Outfit', sans-serif;
    font-size: 2rem;
    margin-bottom: 12px;
    font-weight: 700;
    align-self: center;
    text-align: center;
    width: 100%;
    color: #fff;
}

.milestone-description {
    font-family: 'Questrial', sans-serif;
    font-size: 1.2rem;
    font-weight: 400;
    max-width: 550px;
    line-height: 1.8;
    color: #eaeaea;
}

.fade-out {
    opacity: 0;
    transform: translateY(20px);
}

/* --- Carousel Section --- */
.milestone-carousel {
    align-self: center;
    min-height: clamp(320px, 30vw, 440px);
    width: 100%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 32px;
    margin: 0 auto;
}

.milestone-carousel::-webkit-scrollbar {
    display: none;
}

.milestone-carousel::before {
    content: "";
    display: block;
    min-width: 40px;
}

.carousel-image {
    width: clamp(520px, 45vw, 720px);
    aspect-ratio: 16 / 9;
    height: auto;
    object-fit: cover;
    border-radius: 18px;
    opacity: 0.7;
    transform: scale(0.94);
    transition: all 0.4s ease;
}

.carousel-main {
    transform: scale(1.08);
    z-index: 2;
    opacity: 1;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.carousel-side {
    transform: scale(0.92);
    z-index: 1;
    opacity: 0.7;
    filter: grayscale(12%) brightness(0.95);
}

.carousel-image.active {
    transform: scale(1.1);
    opacity: 1;
    filter: none;
    z-index: 2;
}

/* Triggered after append */
.carousel-image.fade-in {
    opacity: 1;
    transform: scale(1);
    animation: carouselFade 0.4s ease forwards;
}

.milestone-carousel .carousel-image {
    -webkit-mask-image: none;
    mask-image: none;
    box-shadow:
        0 8px 20px rgba(0, 0, 0, 0.35),
        inset 0 0 22px rgba(0, 0, 0, 0.15);
}

/* Fade ONLY the outside edge of the LEFT side image */
.carousel-image.fade-left {
    -webkit-mask-image: linear-gradient(to right,
            rgba(0, 0, 0, 0) 0%,
            rgba(0, 0, 0, 1) 16%,
            rgba(0, 0, 0, 1) 100%);
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-size: cover;

    mask-image: linear-gradient(to right,
            rgba(0, 0, 0, 0) 0%,
            rgba(0, 0, 0, 1) 16%,
            rgba(0, 0, 0, 1) 100%);
    mask-repeat: no-repeat;
    mask-size: cover;
}

/* Fade ONLY the outside edge of the RIGHT side image */
.carousel-image.fade-right {
    -webkit-mask-image: linear-gradient(to left,
            rgba(0, 0, 0, 0) 0%,
            rgba(0, 0, 0, 1) 16%,
            rgba(0, 0, 0, 1) 100%);
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-size: cover;

    mask-image: linear-gradient(to left,
            rgba(0, 0, 0, 0) 0%,
            rgba(0, 0, 0, 1) 16%,
            rgba(0, 0, 0, 1) 100%);
    mask-repeat: no-repeat;
    mask-size: cover;
}

/* Center image stays crisp */
.milestone-carousel .carousel-main {
    -webkit-mask-image: none;
    mask-image: none;
}

@keyframes carouselFade {
    from {
        opacity: 0;
        transform: translateX(20px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* --- About Us Team Section --- */
.about-page .team-section {
    padding: 0 16px;
    background: #f8f9fa;
}

.about-page .team-header {
    margin: 120px auto 32px;
    text-align: center;
    max-width: 760px;
}

.about-page .team-header h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: #0a0c72;
    margin-bottom: 8px;
}

.about-page .team-header p {
    font-family: 'Questrial', sans-serif;
    color: #444;
}

.about-page .team-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
    max-width: 1200px;
    margin: 24px auto 0;
}

@media (max-width: 1024px) {
    .team-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .team-grid {
        grid-template-columns: 1fr;
    }
}

.about-page .team-card {
    display: flex;
    flex-direction: column;
    background: #ecebe6;
    border: 1px solid #e7ecf4;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(10, 12, 114, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-page .team-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.about-page .team-photo img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 400 / 470;
    object-fit: cover;
}

.about-page .team-body {
    padding: 16px 18px 6px;
}

.about-page .team-name {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 1.15rem;
    color: #111;
    margin: 0 0 4px;
}

.about-page .team-role {
    font-family: 'Questrial', sans-serif;
    color: #4b5563;
    font-size: .95rem;
    margin: 0 0 10px;
}

.about-page .team-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0 0 10px;
    padding: 0;
    list-style: none;
}

.about-page .team-badges li {
    font-family: 'Questrial', sans-serif;
    font-size: .82rem;
    color: #0a0c72;
    background: #eaf1ff;
    border: 1px solid #cfe0ff;
    padding: 4px 10px;
    border-radius: 999px;
}

.about-page .team-bio {
    font-family: 'Questrial', sans-serif;
    color: #2c2c2c;
    font-size: .95rem;
    line-height: 1.6;
    margin: 4px 0 0;
}

.about-page .team-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 18px 18px;
    gap: 10px;
}

.about-page .team-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 999px;
    border: 2px solid #89adee;
    color: #0a0c72;
    background: #fff;
    transition: background .2s ease, transform .2s ease, box-shadow .2s ease;
}

.about-page .team-icon:hover {
    background: #f2f6ff;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(10, 12, 114, 0.15);
}

.about-page .team-icon svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.about-page .team-cta {
    margin-left: auto;
    text-decoration: none;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: .95rem;
    padding: 10px 16px;
    border-radius: 999px;
    color: #fff;
    background: #080a72;
    border: 2px solid #89adee;
    box-shadow: 0 4px 12px rgba(0, 0, 0, .15);
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
}

.about-page .team-cta:hover {
    background: #89adee;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, .2);
}

.about-page .team-footer {
    margin-top: 22px;
    text-align: center;
}

.about-page .team-viewall {
    display: inline-block;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    text-decoration: none;
    color: #0a0c72;
    border-bottom: 2px solid transparent;
    padding-bottom: 2px;
    margin-top: 30px;
    transition: color .2s ease, border-color .2s ease, transform .2s ease;
}

.about-page .team-viewall:hover {
    color: #1736a9;
    border-color: #1736a9;
    transform: translateY(-1px);
}

/* --- About Us Values Section --- */
.about-page.values-section {
    padding: 96px 16px 72px;
    background: #d6f4ff;
    margin-top: 60px;
    margin-bottom: 60px;
}

.about-page .values-header {
    max-width: 860px;
    margin: 0 auto 28px;
    margin-bottom: 28px;
    text-align: center;
}

.about-page .values-title {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(2.2rem, 2.6vw + 1.6rem, 2.6rem);
    font-weight: 700;
    color: #0a0c72;
    margin: 0 0 8px;
}

.about-page .values-subtitle {
    font-family: 'Questrial', sans-serif;
    color: #475569;
    line-height: 1.7;
    margin: 0 auto;
    font-size: 1.05rem;
    max-width: 880px;
}

/* Grid */
.about-page .values-grid {
    max-width: 1200px;
    margin: 18px auto 0;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 28px;
}

@media (max-width: 1024px) {
    .about-page .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .about-page .values-grid {
        grid-template-columns: 1fr;
    }
}

/* Flip Card Base */
.about-page .flip-card {
    perspective: 1000px;
    /* enables 3D effect */
    height: 280px;
    outline: none;
}

.about-page .flip-inner {
    position: relative;
    height: 100%;
    border-radius: 16px;
    transform-style: preserve-3d;
    transition: transform .6s ease;
    box-shadow: 0 10px 22px rgba(0, 0, 0, .08);
}

@media (min-width: 1200px) {
    .about-page .flip-card {
        height: 300px;
    }
}

/* Front / Back faces */
.about-page .flip-front,
.about-page .flip-back {
    position: absolute;
    inset: 0;
    backface-visibility: hidden;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 18px;
}

/* Front face styling */
.about-page .flip-front {
    background: linear-gradient(135deg, #eaf1ff 0%, #ffffff 100%);
    border: 1px solid #e7ecf4;
}

.about-page .flip-front img {
    width: 120px;
    height: 90px;
    object-fit: contain;
    margin-bottom: 14px;
    filter: drop-shadow(0 2px 4px rgba(10, 12, 114, 0.15));
}

.about-page .flip-front h3 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    color: #0a0c72;
    margin: 8px 0 0;
    font-size: 1.2rem;
}

/* Back face styling */
.about-page .flip-back {
    background: #d4cbb9;
    color: #000;
    transform: rotateY(180deg);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 28px;
    border-radius: 16px;
    text-align: left;
}

.about-page .flip-back p {
    font-family: 'Outfit', sans-serif;
    font-size: 1.06rem;
    line-height: 1.85;
    letter-spacing: 0.3px;
    margin-right: 30px;
    max-width: 340px;
}

/* Flip triggers: hover and keyboard focus */
.about-page .flip-card:hover .flip-inner,
.about-page .flip-card:focus .flip-inner,
.about-page .flip-card:focus-visible .flip-inner {
    transform: rotateY(180deg);
}

.about-page .flip-card:hover {
    transform: translateY(-2px);
    transition: transform .2s ease;
}

/* visible focus ring for accessibility */
.about-page .flip-card:focus-visible .flip-inner {
    box-shadow: 0 0 0 3px rgba(137, 173, 238, .6), 0 10px 22px rgba(0, 0, 0, .1);
}

/* --- About Us Awards Section --- */

/* Awards Section Part 1 */
.awards-section {
    padding: 80px 16px;
    background: #ffffff;
}

.awards-grid-1 {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 520px 1fr;
    gap: 48px;
    align-items: center;
}

.awards-copy .eyebrow {
    font-family: 'Outfit', sans-serif;
    color: #d6b75d;
    letter-spacing: .15em;
    font-weight: 700;
    font-size: .85rem;
    margin: 0 0 10px;
}

.awards-copy h2 {
    font-family: 'Outfit', sans-serif;
    color: #080a72;
    font-weight: 700;
    font-size: 2rem;
    margin: 0 0 10px;
}

.awards-copy p {
    font-family: 'Questrial', sans-serif;
    color: #2b2b2b;
    line-height: 1.8;
    margin: 0 0 18px;
}

.awards-copy {
    text-align: center;
}

.awards-copy h2,
.awards-copy p {
    max-width: 600px;
    margin: 0 auto 18px;
}

.btn-container {
    margin-top: 24px;
}

.btn-outline {
    display: inline-block;
    border: 2px solid #080a72;
    color: #080a72;
    padding: 10px 16px;
    border-radius: 999px;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    text-decoration: none;
    transition: transform .2s ease, background .2s ease, color .2s ease, box-shadow .2s ease;
}

.btn-outline:hover {
    background: #080a72;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(8, 10, 114, .18);
}

/* Photo stack (polaroid feel) */
.photo-stack {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    outline: none;
}

.stack-photo {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 14px;
    box-shadow: 0 14px 34px rgba(0, 0, 0, .18);
    transition: transform .35s ease, opacity .35s ease, filter .35s ease;
    transform-origin: center;
}

/* slight varied rotations like loose prints */
.photo-stack .stack-photo:nth-child(1) {
    transform: rotate(-4deg) translateY(4px);
    z-index: 3;
}

.photo-stack .stack-photo:nth-child(2) {
    transform: rotate(3deg) scale(.98);
    z-index: 2;
    filter: brightness(.97);
}

.photo-stack .stack-photo:nth-child(3) {
    transform: rotate(-1deg) scale(.96) translateY(-3px);
    z-index: 1;
    filter: brightness(.95);
}

/* “Slide up” animation for the card being moved to the back */
.stack-photo.slide-up {
    transform: translateY(-18%) rotate(-8deg) scale(.98);
    opacity: 0;
}

/* Accessibility: respect reduced motion */
@media (prefers-reduced-motion: reduce) {

    .stack-photo,
    .btn-outline {
        transition: none !important;
    }
}

@media (max-width: 980px) {
    .awards-grid-1 {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .photo-stack {
        max-width: 620px;
        margin: 0 auto;
    }

    .awards-copy h2 {
        font-size: 1.8rem;
    }
}

/* Awards Section Part 2 */
.awards-showcase {
    position: relative;
    overflow: hidden;
    padding: 100px 20px;
    clip-path: ellipse(100% 100% at 50% 50%);
}

.awards-showcase::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0.55) 0%,
            rgba(0, 0, 0, 0.35) 40%,
            rgba(0, 0, 0, 0.55) 100%);
    z-index: 1;
}

.awards-showcase .bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.awards-overlay {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    color: #fff;
    text-align: center;
}

.awards-grid-2 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.award-item {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    padding: 32px 20px;
    border-radius: 16px;
    transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}

.award-item img {
    max-height: 110px;
    width: auto;
    margin-bottom: 16px;
    filter: brightness(0) invert(1);
}

.award-item h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
}

.award-item p {
    font-family: 'Questrial', sans-serif;
    font-size: .95rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
}

/* Hover effect */
.award-item:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: #d6b75d;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.45), 0 0 12px rgba(214, 183, 93, .6);
}

/* Responsive */
@media (max-width: 992px) {
    .awards-grid-2 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .awards-grid-2 {
        grid-template-columns: 1fr;
    }

    .award-item img {
        max-height: 80px;
    }
}

/* Awards Section Part 3 */
.awards-cards {
    width: 100%;
    padding: 40px 0 80px;
    background: #fff;
}

.cards-flex {
    display: flex;
    gap: 20px;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    height: 420px;
}

.award-card {
    flex: 1;
    border-radius: 0;
    overflow: hidden;
    position: relative;
    transition: flex 0.4s ease, transform 0.4s ease;
    cursor: pointer;
    border-radius: 0;
}

.award-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.award-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
    opacity: 0.4;
    transition: opacity .3s ease;
    z-index: 1;
}

.award-card:hover::before {
    opacity: 0.6;
}

.card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0));
    padding: 20px;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    min-height: 140px;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.7);
    z-index: 2;
}

.card-overlay h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.3rem;
    margin: 0 0 6px;
    text-align: left;
}

.card-overlay p {
    font-family: 'Questrial', sans-serif;
    font-size: .95rem;
    margin: 0 0 10px;
    color: #fff;
    text-align: left;
}

.read-more {
    font-weight: 600;
    color: #d6b75d;
    transition: color 0.3s ease, background 0.3s ease, padding 0.3s ease;
    background: transparent;
    border-radius: 4px;
    padding: 2px 4px;
}

.award-card:hover .read-more {
    color: #fff;
    background: #d6b75d;
    padding: 2px 8px;
}

/* Hover scale + flex grow/shrink */
.cards-flex:hover .award-card {
    flex: 0.9;
}

.cards-flex:hover .award-card:hover {
    flex: 1.4;
}

.award-card:hover img {
    transform: scale(1.1);
}

/* Responsive */
@media (max-width: 992px) {
    .cards-flex {
        flex-direction: column;
        height: auto;
    }

    .award-card {
        flex: 1 !important;
        height: 300px;
    }
}

/* --- About Us Experiences Section --- */
.experience-header {
    text-align: center;
    padding: 60px 20px 40px;
    max-width: 900px;
    margin: 0 auto;
}

.experience-header h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 2.4rem;
    font-weight: 700;
    color: #080a72;
    margin-bottom: 18px;
}

.experience-header p {
    font-family: 'Questrial', sans-serif;
    font-size: 1.1rem;
    color: #444;
    line-height: 1.7;
}

/* Section wrapper */
.experience-section {
    width: 100%;
    overflow: hidden;
    background: #fff;
    position: relative;
}

/* Carousel container */
.experience-carousel {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
}

/* Slides */
.experience-slide {
    display: none;
    grid-template-columns: 55% 45%;
    align-items: center;
    min-height: 80vh;
    gap: 40px;
    padding: 40px 5%;
}

.experience-slide.active {
    display: grid;
}

/* Video */
.video-wrapper {
    border-radius: 14px;
    overflow: hidden;
}

.video-wrapper video {
    width: 100%;
    height: 100%;
    border-radius: 14px;
    object-fit: cover;
}

/* Text area */
.experience-text {
    padding: 40px;
    background: #f9f9f9;
    border-radius: 14px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.experience-text h2 {
    font-size: 2rem;
    color: #080a72;
    margin-bottom: 20px;
    font-family: 'Outfit', sans-serif;
}

.experience-text p {
    font-size: 1rem;
    color: #333;
    line-height: 1.8;
    margin-bottom: 24px;
    font-family: 'Questrial', sans-serif;
}

/* Button wrapper */
.experience-text .btn-container {
    display: flex;
    justify-content: flex-start;
}

/* Use your outline button style */
.experience-text .btn-outline {
    display: inline-block;
    background: #080a72;
    color: #fff;
    border: 2px solid #080a72;
    padding: 12px 24px;
    border-radius: 999px;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    margin: 0 auto;
    text-align: center;
}

.experience-text .btn-outline:hover {
    background: transparent;
    color: #080a72;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(8, 10, 114, .2);
}

/* Navigation buttons */
.experience-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: 5px solid #080a72;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 50;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.experience-carousel .experience-prev,
.experience-carousel .experience-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #fff;
    border: 3px solid #080a72;
    color: #d6b75d;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    font-size: 1.8rem;
    font-weight: bold;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease, transform 0.25s ease;
}

.experience-carousel .experience-prev {
    left: -80px;
}

.experience-carousel .experience-next {
    right: -80px;
}

.experience-carousel .experience-prev:hover,
.experience-carousel .experience-next:hover {
    background: #080a72;
    color: #fff;
    border: 3px solid white;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 10px 24px rgba(8, 10, 114, 0.3);
}

/* Dots */
.experience-dots {
    text-align: center;
    margin: 20px 0;
}

.experience-dots span {
    display: inline-block;
    width: 12px;
    height: 12px;
    background: #ccc;
    border-radius: 50%;
    margin: 0 5px;
    cursor: pointer;
}

.experience-dots span.active {
    background: #080a72;
}

/* Responsive */
@media (max-width: 992px) {
    .experience-slide {
        grid-template-columns: 1fr;
    }

    .video-wrapper {
        height: 300px;
    }
}

/* --- About Us Event Section --- */
.about-page .event-section {
    padding: 80px 20px;
    background: #f9f9f9;
}

.about-page .event-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
}

.about-page .event-header h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 2.4rem;
    font-weight: 700;
    color: #080a72;
    margin-bottom: 16px;
}

.about-page .event-header p {
    font-family: 'Questrial', sans-serif;
    font-size: 1.1rem;
    color: #444;
    line-height: 1.7;
}

/* Icon Bar */
.about-page .event-icons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    /* more breathing space */
    margin-bottom: 60px;
}

.about-page .icon-item {
    text-align: center;
    flex: 0 0 120px;
    /* consistent width */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-page .icon-item img {
    width: 64px;
    /* unified size */
    height: 64px;
    margin-bottom: 12px;
    transition: transform 0.3s ease;
}

.about-page .icon-item span {
    display: block;
    font-size: 1rem;
    font-family: 'Questrial', sans-serif;
    color: #333;
    transition: color 0.3s ease;
}

/* Hover effect */
.about-page .icon-item:hover {
    transform: scale(1.08);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.about-page .icon-item:hover img {
    transform: scale(1.1);
}

.about-page .icon-item:hover span {
    color: #080a72;
    /* theme blue */
    font-weight: 600;
}

/* Container */
.about-page .event-carousel {
    margin-top: 50px;
    display: flex;
    flex-direction: column;
    gap: 50px;
}

/* Event rows */
.about-page .event-row {
    position: relative;
    overflow: hidden;
    max-width: 100%;
}

/* Event track */
.about-page .event-track {
    display: flex;
    gap: 20px;
}

/* Cards */
.about-page .event-card {
    min-width: 320px;
    height: 220px;
    border-radius: 14px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}

/* Overlay */
.about-page .event-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    color: #fff;
    opacity: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 24px;
    box-sizing: border-box;
    transition: opacity .4s ease;
    backdrop-filter: blur(4px);
    /* adds subtle blur behind text */
}

.about-page .event-card:hover .event-overlay {
    opacity: 1;
    background: rgba(52, 52, 56, 0.65);
}

/* Title styling */
.about-page .event-overlay h3 {
    font-size: 1.35rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    margin: 0 0 12px;
    max-width: 90%;
    letter-spacing: 0.5px;
    color: #ffd84d;
    /* brighter highlight */
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}

/* Description text */
.about-page .event-overlay p {
    font-size: 1rem;
    font-family: 'Questrial', sans-serif;
    line-height: 1.6;
    color: #f5f5f5;
    max-width: 90%;
    margin: 0 0 12px;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.6);
}

/* Subtle entrance animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Nav buttons */
.event-section .event-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #fff;
    border: 3px solid #080a72;
    color: #080a72;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    font-size: 1.4rem;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
    z-index: 2;
}

.event-section .event-nav:hover {
    background: #080a72;
    color: #fff;
}

.event-section .row1-prev,
.event-section .row2-prev {
    left: 10px;
}

.event-section .row1-next,
.event-section .row2-next {
    right: 10px;
}

/* Reset hover effects ONLY for About page event cards */
.about-page .event-card {
    transform: none !important;
    box-shadow: none !important;
    border: none !important;
    transition: none !important;
}

/* Keep only the overlay fade-in effect */
.about-page .event-card:hover .event-overlay {
    opacity: 1;
    background: rgba(52, 52, 56, 0.65);
}

/* --- About CTA Section --- */
/* CTA wrapper */
.event-cta {
    text-align: center;
    margin-top: 40px;
}

/* CTA button */
.event-btn {
    display: inline-block;
    padding: 14px 28px;
    font-size: 1.1rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    color: #fff;
    background: #080a72;
    border: 2px solid #080a72;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.event-btn:hover {
    background: transparent;
    color: #080a72;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* --- Testimonial Section --- */
.about-page .testimonial-section {
    position: relative;
    min-height: 45vh;
    padding: 30px 20px;
    color: #fff;
    text-align: center;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-page .testimonial-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

.about-page .testimonial-section .overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
    z-index: -1;
}

.about-page .testimonial-content {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    position: relative;
    z-index: 1;
    /* make sure text is above video */
}

/* Heading + description */
.about-page .testimonial-content h2 {
    font-size: 2.2rem;
    margin-bottom: 12px;
    font-weight: 700;
    color: #f0f0f0;
}

.about-page .testimonial-content p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #f0f0f0;
    line-height: 1.6;
}

/* Grid layout below */
.about-page .testimonial-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    justify-content: center;
}

/* Left: postcard */
.testimonial-left img {
    width: 100%;
    border-radius: 16px;
    transition: transform 0.3s;
    max-width: 450px;
}

.testimonial-left img:hover {
    transform: scale(1.05);
}

/* Right: stats */
.about-page .stats {
    display: flex;
    justify-content: space-evenly;
    gap: 20px;
    margin-bottom: 25px;
}

.about-page .stat {
    text-align: center;
}

.about-page .stat .number {
    font-size: 3.2rem;
    font-weight: 700;
    margin-left: 50px;
    color: #ddcc30;
    display: inline-block;
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.about-page .stat p {
    font-size: 1.25rem;
    margin-top: 6px;
}

.about-page .stat .number.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Button */
.btn-rate {
    display: inline-block;
    padding: 12px 28px;
    background: #080a72;
    color: #fff;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: background 0.3s;
}

.btn-rate:hover {
    background: #92a9e9;
    color: #ffffff;
}

/* --- Mission Section --- */
.mission-section {
    padding: 60px 20px;
    text-align: center;
}

.mission-section h2 {
    font-size: 2.4em;
    color: #080a72;
    margin-bottom: 40px;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
}

.mission-container {
    max-width: 800px;
    margin: 0 auto;
}

/* Items */
.mission-item {
    margin-bottom: 15px;
    border-radius: 10px;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

/* Question */
.mission-question {
    width: 100%;
    padding: 18px 20px;
    text-align: left;
    background: #6d83c5;
    border: none;
    color: #ffffff;
    font-size: 1.2em;
    font-weight: 600;
    font-family: 'Outfit', sans-serif;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mission-question:hover {
    background: #8fa5e2;
    color: #ffffff;
    box-shadow: none;
    transform: none;
    transition: background-color 0.3s ease;
}

.mission-question .toggle-icon {
    font-size: 1.1em;
    transition: transform 0.3s ease;
}

.mission-item.active .toggle-icon {
    transform: rotate(180deg);
}

/* Answer */
.mission-answer {
    background-color: #f1eee0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.mission-answer p {
    padding: 18px 22px;
    margin: 0;
    text-align: left;
    color: #333;
    font-size: 1rem;
    line-height: 1.6;
    font-family: 'Questrial', sans-serif;
}

.mission-item.active>.mission-answer {
    max-height: 400px;
}

/* --- About Video Section --- */
.about-video {
    padding: 60px 20px;
    text-align: center;
    background: #f9f9f9;
}

/* Section Heading */
.about-video .video-title {
    font-size: 2.2rem;
    margin-bottom: 15px;
    color: #080a72;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
}

/* Section Description */
.about-video .video-subtext {
    font-size: 1.15rem;
    font-family: 'Questrial', sans-serif;
    color: #333;
    max-width: 780px;
    margin: 0 auto 45px;
    line-height: 1.7;
    text-align: center;
}

/* Video styling */
.about-video video {
    width: 100%;
    max-width: 900px;
    border-radius: 14px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
    overflow: hidden;
}

/* Default captions styling */
::cue {
    background: rgba(0, 0, 0, 0.45);
    color: #fdfdfd;
    font: 1.25em 'Questrial', sans-serif;
    padding: 6px 12px;
    border-radius: 6px;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.8);
    line-height: 1.4;
}

/* Special title captions */
::cue(.Main) {
    background: none;
    font-size: 2.2rem;
    font-weight: 700;
    font-family: 'Outfit', sans-serif;
    color: #ffd84d;
    text-shadow: 2px 3px 8px rgba(0, 0, 0, 0.9);
    letter-spacing: 1px;
}

/* --- About Us Partners / Sponsors Section --- */
.about-page.partners-section,
.partners-section {
    padding: 88px 16px 104px;
    background: #ffffff;
    border-top: 1px solid rgba(8, 10, 114, 0.06);
}

.partners-header {
    max-width: 980px;
    margin: 0 auto 20px;
    margin-bottom: 30px;
    text-align: center;
}

.partners-title {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(2rem, 2.3vw + 1.4rem, 2.4rem);
    font-weight: 700;
    color: #080a72;
    margin: 0 0 8px;
}

.partners-subtitle {
    font-family: 'Questrial', sans-serif;
    color: #475569;
    margin: 0 auto;
    max-width: 820px;
    line-height: 1.7;
}

.partners-grid {
    max-width: 1280px;
    margin: 22px auto 0;
    display: grid;
    gap: 28px 36px;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    align-items: center;
    justify-items: center;
}

.partner {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 18px 16px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 14px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.partner img {
    display: block;
    max-width: 100%;
    height: 56px;
    width: auto;
    object-fit: contain;
    filter: none;
    opacity: 1;
    transition: transform .25s ease, filter .25s ease;
}

.partner:hover {
    transform: translateY(-3px);
    background: #f1f0dd;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.partner:hover img {
    transform: scale(1.06);
    filter: brightness(1.08) contrast(1.02);
}

@media (max-width: 720px) {
    .about-page.values-section {
        padding: 72px 14px 56px;
    }

    .about-page .values-grid {
        gap: 18px;
    }

    .about-page .flip-card {
        height: 240px;
    }

    .about-page .partners-section {
        padding: 64px 14px 80px;
    }

    .about-page .partners-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 20px 22px;
    }

    .about-page .partner img {
        height: 44px;
    }
}

/* --- Anniversary Section --- */
.anniversary-section {
    padding: 60px 20px;
    background: #f3f3dd;
    text-align: center;
}

.anniversary-header h2 {
    font-size: 2.4em;
    color: #080a72;
    margin-bottom: 10px;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
}

.anniversary-header p {
    font-size: 1.1rem;
    margin-bottom: 40px;
    color: #555;
}

.anniversary-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
}

.anniversary-left img {
    width: 100%;
    max-width: 400px;
    border-radius: 12px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.anniversary-left img:hover {
    transform: scale(1.05);
}

.anniversary-right p {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #333;
}

/* Countdown */
#countdown {
    display: flex;
    justify-content: center;
    gap: 25px;
}

#countdown div {
    text-align: center;
}

#countdown span {
    font-size: 2.5rem;
    font-weight: bold;
    margin-left: 30px;
    color: #ddcc30;
}

#countdown p {
    font-size: 0.9rem;
    margin-top: 5px;
    color: #555;
}

.anniversary-cta .calendar-btn {
    display: inline-block;
    padding: 14px 28px;
    font-size: 1.1rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    color: #fff;
    background: #080a72;
    border: 2px solid #080a72;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
    margin-left: 30px;
}

.anniversary-cta .calendar-btn:hover {
    background: #8fa5e2;
    color: white;
    border: 2px solid white;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* --- CTA Section --- */
.cta-section {
    margin: 60px 0;
    text-align: center;
}

.cta-wrapper {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 20px;
}

.cta-banner {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 18px;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.cta-bg {
    width: 100%;
    height: 320px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.cta-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
    transition: background 0.4s ease;
}

.cta-overlay h2 {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(1.8rem, 2.5vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 10px;
    color: white;
}

.cta-overlay p {
    font-family: 'Questrial', sans-serif;
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    margin-bottom: 20px;
    color: white;
}

.cta-btn {
    display: inline-block;
    background: #d6b75d;
    color: #080a72;
    font-weight: 600;
    padding: 12px 28px;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.cta-btn:hover {
    background: #fff;
    color: #080a72;
}

/* Hover Effects */
.cta-banner:hover .cta-bg {
    transform: scale(1.08);
}

.cta-banner:hover .cta-overlay {
    background: rgba(0, 0, 0, 0.55);
}

/* --- Flyer Section --- */
.flyer-section {
    background: #dff3f8;
    padding: 60px 20px;
    border-radius: 12px;
}

.flyer-container {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    align-items: center;
}

.flyer-left img {
    display: block;
    max-width: 100%;
    height: auto;
    border: none;
    box-shadow: none;
    border-radius: 0;
}

.flyer-left img:hover {
    transform: scale(1.03);
}

.flyer-right h2 {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(1.8rem, 2.5vw, 2.4rem);
    color: #080a72;
    margin-bottom: 15px;
}

.flyer-right p {
    font-family: 'Questrial', sans-serif;
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.flyer-right a {
    color: #d6b75d;
    font-weight: 600;
    text-decoration: none;
}

.flyer-right a:hover {
    text-decoration: underline;
}

/* Contact list */
.flyer-contacts p {
    font-size: 1rem;
    margin: 8px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.flyer-contacts .icon {
    font-size: 1.2rem;
}

/* TEAM */

/* --- Team Table Section --- */
.team-page .team-hero {
    position: relative;
    text-align: center;
    height: 500px;
    margin-top: -90px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background:
        linear-gradient(to bottom, rgba(0, 0, 0, 0) 60%, #f8f9fa 100%),
        url("images/team-banner.jpg") center/cover no-repeat;
    color: white;
    overflow: hidden;
}

.team-page .team-heading {
    font-family: 'Outfit', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: #fff;
    margin: 0 auto 10px;
    text-align: center;
    text-shadow: 0 2px 8px rgba(0, 0, 0, .35);
}

.team-page .team-subheading {
    font-family: 'Questrial', sans-serif;
    font-size: 1.2rem;
    color: #fcff5b;
    max-width: 820px;
    margin: 0 auto;
    line-height: 1.8;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, .75);
}

.team-page .team-section-title {
    font-family: 'Outfit', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #080a72;
    text-align: center;
    margin: 20px auto 14px;
}

/* Card-like table */
.team-page .team-table {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto 56px;
    border-collapse: collapse;
    border-spacing: 0;
    border-radius: 14px;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(255, 255, 255, .88) 0%, rgba(255, 255, 255, .82) 100%);
    box-shadow: 0 6px 20px rgba(0, 0, 0, .08);
    backdrop-filter: saturate(120%) blur(2px);
    -webkit-backdrop-filter: saturate(120%) blur(2px);
    font-family: 'Outfit', sans-serif;
    color: #1c1c1c;
}

.team-page .team-table th {
    padding: 14px 16px;
    font-weight: 700;
    color: #fff;
    background: #080a72;
    letter-spacing: .2px;
    border: none;
}

.team-page .team-table td {
    padding: 16px;
    vertical-align: top;
    border: none;
}

/* subtle row separators */
.team-page .team-table tbody tr {
    box-shadow: inset 0 -1px rgba(8, 10, 114, .07);
}

.team-page .team-table tbody tr:last-child {
    box-shadow: none;
}

.team-page .team-table tr:nth-child(odd) {
    background: #f4f8ff;
}

.team-page .team-table tr:nth-child(even) {
    background: #eaf2fb;
}

.team-page .team-table tbody tr:hover {
    background: rgba(66, 84, 119, 0.14);
}

/* bio rows (the wide colspan row) */
.team-page .team-table td[colspan="4"] {
    background: #d3d1c8;
    font-family: 'Questrial', sans-serif;
    font-size: .95rem;
    text-align: justify;
    line-height: 1.7;
}

/* photos in table */
.team-page .team-table img {
    display: block;
    width: 120px;
    height: 140px;
    object-fit: cover;
    border-radius: 14px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, .15);
}

/* tiny comfort padding on narrow screens */
@media (max-width: 720px) {

    .team-page .team-table th,
    .team-page .team-table td {
        padding: 12px;
    }
}

/* --- Team CTA Section --- */
.team-cta-section {
    background: url("images/team-cta.jpg") center/cover no-repeat;
    padding: 100px 20px;
    text-align: center;
    position: relative;
    border-radius: 12px 12px 0 0;
    margin-top: 60px;
}

.team-cta-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(8, 10, 114, 0.55);
    z-index: 1;
}

.team-cta-overlay {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    color: #fff;
}

.team-cta-overlay h2 {
    font-size: 2.2rem;
    font-family: 'Outfit', sans-serif;
    color: white;
    font-weight: 700;
    margin-bottom: 15px;
}

.team-cta-overlay p {
    font-size: 1.15rem;
    font-family: 'Questrial', sans-serif;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #f1f1f1;
}

.team-cta-btn {
    display: inline-block;
    padding: 14px 36px;
    font-size: 1.15rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    color: #080a72;
    background: #d6b75d;
    border: 2px solid #080a72;
    border-radius: 40px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.team-cta-btn:hover {
    background: white;
    color: #080a72;
    border-color: #ffd84d;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* AWARD */

/* --- Hero Section --- */
.award-page .award-hero {
    position: relative;
    height: 70vh;
    margin-top: -90px;
    /* pulls up under nav */
    background: url("images/award-banner.jpg") center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    overflow: hidden;
}

.award-page .award-hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.35);
    /* darker mask */
    z-index: 0;
}

.award-page .award-hero::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, #ffffff 100%);
    pointer-events: none;
}

.award-page .award-hero-text {
    position: relative;
    z-index: 2;
    text-align: center;
}

.award-page .award-hero-text h1 {
    font-family: 'Outfit', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.6);
    margin: 0 auto;
}

.award-page .award-hero-text p {
    margin-top: 15px;
    font-size: 1.2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    color: #fff;
    text-align: center;
}

/* --- Overview Section --- */
.award-page .award-overview {
    padding: 60px 20px;
    text-align: center;
    background: #f9f9f9;
}

.award-page .award-overview h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 2rem;
    color: #080a72;
    margin-bottom: 20px;
}

.award-page .award-overview p {
    max-width: 900px;
    margin: 0 auto 30px;
    font-size: 1rem;
    line-height: 1.6;
}

.award-page .award-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
}

.award-page .award-stats div {
    font-size: 1.1rem;
    text-align: center;
}

.award-page .award-stats span {
    font-size: 2rem;
    font-weight: bold;
    color: #d6b75d;
    display: block;
    margin-left: 40px;
    margin-bottom: 5px;
}

/* --- Article Section --- */
.award-page .award-article {
    padding: 70px 20px;
    background: #fff;
    max-width: 1200px;
    margin: 0 auto;
}

.award-page .award-article h2 {
    text-align: center;
    font-size: 2.2rem;
    color: #080a72;
    margin-bottom: 50px;
    font-family: 'Outfit', sans-serif;
}

.award-page .award-article-block {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 60px;
}

.award-page .award-article-block.reverse {
    flex-direction: row-reverse;
}

.award-page .award-article-block img {
    width: 45%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
}

.award-page .award-article-text {
    flex: 1;
}

.award-page .award-article-text h3 {
    font-size: 1.5rem;
    color: #d6b75d;
    margin-bottom: 15px;
}

.award-page .award-article-text p {
    font-size: 1rem;
    line-height: 1.6;
    color: #333;
}

/* --- Two-Column Layout (Scrollbox + Article/Image) --- */
.award-page .award-article-two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    max-width: 1200px;
    margin: 60px auto;
    padding: 60px 20px;
    align-items: center;
    background: #e9e3d6;
    border-radius: 10px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
}

.award-page .award-scrollbox-wrapper {
    text-align: center;
}

.award-page .award-scrollbox-wrapper h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    font-family: 'Outfit', sans-serif;
    color: #080a72;
    font-weight: 700;
}

.award-page .award-article-text {
    text-align: center;
}

.award-page .award-article-img {
    width: 100%;
    max-width: 500px;
    height: auto;
    margin: 0 auto 20px;
    border-radius: 8px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

@media (max-width: 768px) {
    .award-page .award-article-two-col {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 40px 15px;
    }

    .award-page .award-article-img {
        max-width: 90%;
    }
}

/* Scrollbox Wrapper */
.award-page .award-scrollbox-wrapper {
    text-align: center;
    margin-bottom: 30px;
}

.award-page .award-scrollbox-wrapper h3 {
    font-size: 1.4rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    color: #080a72;
    margin-bottom: 15px;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.1);
}

/* Scrollbox itself */
.award-page .award-scrollbox {
    width: 100%;
    max-width: 500px;
    height: 220px;
    overflow: hidden;
    margin: 0 auto;
    border-radius: 10px;
    padding: 15px 0;
    background: #ffffff;
    border: 1px solid #e0e0e0;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
    position: relative;
}

.award-page .award-scrollbox ul {
    list-style: none;
    margin: 0;
    padding: 0;
    animation: scrollUp 18s linear infinite;
}

.award-page .award-scrollbox:hover ul {
    animation-play-state: paused;
}

.award-page .award-scrollbox li {
    padding: 12px 20px;
    font-size: 1rem;
    color: #333;
    border-bottom: 1px solid #f0f0f0;
    transition: background 0.3s, transform 0.2s, color 0.3s;
}

.award-page .award-scrollbox li:last-child {
    border-bottom: none;
}

.award-page .award-scrollbox li:hover {
    background: #f9f9f9;
    transform: translateX(4px);
    color: #d6b75d;
    cursor: pointer;
}

/* Smooth vertical scroll */
@keyframes scrollUp {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-50%);
    }
}

/* Fix article image */
.award-page .award-article-text {
    text-align: center;
}

.award-page .award-article-img {
    width: 70%;
    max-width: 500px;
    height: auto;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

/* --- Main Section (Sidebar + Timeline) --- */
.award-page .award-main {
    display: flex;
    max-width: 1200px;
    margin: 50px auto;
    padding: 0 20px;
    gap: 40px;
}

/* Sidebar */
.award-page .award-sidebar {
    flex: 0 0 200px;
    position: sticky;
    top: 100px;
    align-self: flex-start;
    background: #fff;
    padding: 20px;
    border-left: 3px solid #d6b75d;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.award-page .award-sidebar ul {
    list-style: none;
    padding: 0;
}

.award-page .award-sidebar li {
    margin: 12px 0;
}

.award-page .award-sidebar a {
    text-decoration: none;
    font-size: 1rem;
    color: #080a72;
    transition: color 0.3s;
}

.award-page .award-sidebar a:hover {
    color: #d6b75d;
    font-weight: 600;
}

/* Timeline */
.award-page .award-timeline {
    flex: 1;
}

.award-page .award-year {
    margin-bottom: 60px;
    scroll-margin-top: 120px;
}

.award-page .award-year h2 {
    font-size: 1.8rem;
    color: #080a72;
    margin-bottom: 20px;
    border-bottom: 2px solid #eee;
    padding-bottom: 8px;
}

.award-page .award-card {
    display: flex;
    align-items: center;
    gap: 20px;
    background: #fff;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.award-page .award-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.award-page .award-card img {
    width: 120px;
    height: auto;
    object-fit: cover;
    border-radius: 6px;
}

.award-page .award-card h3 {
    margin: 0;
    font-size: 1.2rem;
    color: #080a72;
}

.award-page .award-card p {
    margin-top: 6px;
    font-size: 0.95rem;
    color: #444;
}

/* Special highlight for HAPA Awards */
.award-page .award-card.hapa {
    border-left: 5px solid #d6b75d;
    background: linear-gradient(135deg, #fff 0%, #fff9e6 100%);
}

/* --- Two-column multimedia Section --- */
.award-page .award-media-two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
}

/* Video style */
.award-page .award-media-video video {
    width: 100%;
    max-width: 500px;
    height: 800px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

/* Right side text block with background */
.award-page .award-media-text {
    background: #f9f9f9;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
}

.award-page .award-media-text h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: #080a72;
    /* brand color */
}

.award-page .award-media-text p {
    font-size: 1rem;
    line-height: 1.6;
    color: #333;
    margin-bottom: 15px;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .award-page .award-media-two-col {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .award-page .award-media-video video {
        margin: 0 auto 20px;
    }
}

/* --- Mini Table Section --- */
.award-page .award-table {
    padding: 60px 20px;
    max-width: 1000px;
    margin: 0 auto;
    margin-bottom: 50px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

.award-page .award-table h2 {
    text-align: center;
    margin-top: -30px;
    margin-bottom: 25px;
    font-size: 2rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    color: #080a72;
    /* brand color */
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.1);
}

.award-page .award-table table {
    width: 100%;
    border-collapse: collapse;
    overflow: hidden;
    border-radius: 8px;
}

.award-page .award-table th,
.award-page .award-table td {
    padding: 15px 18px;
    font-size: 0.95rem;
}

.award-page .award-table th {
    background: #080a72;
    color: #fff;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.award-page .award-table td:first-child {
    font-weight: bold;
    color: #080a72;
    /* highlight year */
}

.award-page .award-table tr:nth-child(even) {
    background: #f9f9f9;
}

.award-page .award-table tr:hover {
    background: #eef2ff;
    transition: background 0.3s ease;
}

/* Status badges */
.award-page .status {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.award-page .status.winner {
    background: #d6b75d;
    color: #080a72;
}

.award-page .status.nominated {
    background: #e6eaff;
    color: #080a72;
}

/* --- Scrollbox Wrapper --- */
.award-page .award-scrollbox-wrapper {
    text-align: center;
    margin-bottom: 30px;
}

.award-page .award-scrollbox-wrapper h3 {
    font-size: 1.5rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    color: #080a72;
    margin-bottom: 20px;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.1);
}

/* --- Scrollbox --- */
.award-page .award-scrollbox {
    width: 100%;
    max-width: 500px;
    height: 220px;
    overflow: hidden;
    margin: 0 auto;
    border-radius: 12px;
    padding: 15px 0;
    background: #ffffff;
    border: 1px solid #e0e0e0;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    position: relative;
}

.award-page .award-scrollbox ul {
    list-style: none;
    margin: 0;
    padding: 0;
    animation: scrollUp 18s linear infinite;
}

.award-page .award-scrollbox:hover ul {
    animation-play-state: paused;
}

.award-page .award-scrollbox li {
    padding: 12px 20px;
    font-size: 1rem;
    color: #333;
    border-bottom: 1px solid #f0f0f0;
    transition: background 0.3s, transform 0.2s, color 0.3s;
}

.award-page .award-scrollbox li:last-child {
    border-bottom: none;
}

.award-page .award-scrollbox li:hover {
    background: #f9f9f9;
    transform: translateX(5px);
    color: #d6b75d;
    cursor: pointer;
}

/* Smooth vertical scroll */
@keyframes scrollUp {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-50%);
    }
}

/* --- Article Image --- */
.award-page .award-article-text {
    text-align: center;
}

.award-page .award-article-img {
    width: 70%;
    max-width: 500px;
    height: auto;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

/* --- Award CTA Section --- */
.award-page .award-cta {
    background: url("images/awardpage-cta.jpg") center/cover no-repeat;
    padding: 80px 20px;
    text-align: center;
    position: relative;
    color: #fff;
}

.award-page .award-cta::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(8, 10, 114, 0.342);
    /* dark blue overlay for readability */
    z-index: 0;
}

.award-page .award-cta-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
}

.award-page .award-cta h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
    color: #fff;
}

.award-page .award-cta p {
    font-size: 1.1rem;
    margin-bottom: 25px;
    color: #f1f1f1;
}

.award-page .award-cta .btn {
    display: inline-block;
    padding: 12px 30px;
    background: #d6b75d;
    font-weight: 600;
    text-decoration: none;
    border-radius: 6px;
    transition: background 0.3s, transform 0.2s;
}

.award-page .award-cta .btn:hover {
    background: #b99c49;
    transform: translateY(-2px);
}

/* prevent purple visited link */
.award-page .award-cta .btn:visited {
    color: #fff;
    background: #d6b75d;
}

/* SERVICES */
/* --- Services Page Hero Section --- */
.services-page .services-hero {
    position: relative;
    height: 70vh;
    margin-top: -90px;
    background: url("images/services-banner.jpg") center/cover no-repeat;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    overflow: hidden;
}

.services-page .services-hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.35);
    /* dark overlay */
    z-index: 0;
}

.services-page .services-hero::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, #ffffff 100%);
    pointer-events: none;
}

.services-page .services-hero-text {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    /* ensure horizontal centering */
    text-align: center;
    /* center the text */
}

.services-page .services-hero-text h1 {
    font-family: 'Outfit', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.6);
    margin: 0;
    /* reset default margin */
}

.services-page .services-hero-text p {
    margin-top: 15px;
    font-size: 1.2rem;
    color: #fff;
    line-height: 1.6;
}

/* --- Services Page: Icon Bar --- */
.services-page .services-icon-bar {
    padding: 60px 20px;
    text-align: center;
    background: #f9f9f9;
    /* soft background */
}

.services-page .services-icon-bar h2 {
    font-size: 2rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    color: #080a72;
    margin-bottom: 10px;
}

.services-page .services-icon-bar p {
    font-size: 1rem;
    color: #444;
    margin-bottom: 40px;
}

.services-page .services-icons {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.services-page .service-item {
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    padding: 20px;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

.services-page .service-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.15);
}

.services-page .service-item img {
    width: 80px;
    height: 80px;
    margin-bottom: 15px;
}

.services-page .service-item h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #080a72;
}

/* --- Services Description Section --- */
.services-page .services-description {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
}

.services-page .service-block {
    display: flex;
    align-items: stretch;
    gap: 0;
    margin: 0;
    border-radius: 0;
}

.services-page .service-block.reverse {
    flex-direction: row-reverse;
}

.services-page .service-img,
.services-page .service-text {
    flex: 1;
}

.services-page .service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.services-page .service-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 70px 60px;
    color: #fff;
    font-family: 'Outfit', sans-serif;
}

/* Headings */
.services-page .service-text h2 {
    font-size: 2.4rem;
    font-weight: 700;
    margin-bottom: 18px;
    letter-spacing: 0.5px;
    color: #ffffff;
    text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.25);
}

/* Paragraphs */
.services-page .service-text p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #f8f8f8;
    margin-bottom: 28px;
    max-width: 550px;
}

/* Sleek Underlined Link (Final Fix) */
.services-page .service-text .btn {
    position: relative;
    display: inline-block;
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
    text-decoration: none;
    line-height: 1.4;
    cursor: pointer;
    margin-top: 10px;
}

/* Short underline that matches text width */
.services-page .service-text .btn::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 100%;
    /* underline fits text width only */
    height: 2px;
    background: #ffffff;
    transform: scaleX(0.4);
    /* shorten underline by scaling */
    transform-origin: left center;
    transition: transform 0.3s ease, background 0.3s ease;
}

.services-page .service-text .btn:hover {
    color: #d6b75d;
}

.services-page .service-text .btn:hover::after {
    transform: scaleX(0.7);
    /* slightly longer on hover */
    background: #d6b75d;
}

/* Background gradients */
.services-page .service-block.dining .service-text {
    background: linear-gradient(135deg, #0a2540 0%, #080a72 100%);
}

.services-page .service-block.spa .service-text {
    background: linear-gradient(135deg, #d6b75d 0%, #b99c49 100%);
}

.services-page .service-block.event .service-text {
    background: linear-gradient(135deg, #14213d 0%, #0a2540 100%);
}

/* Mobile */
@media (max-width: 768px) {

    .service-block,
    .service-block.reverse {
        flex-direction: column;
    }

    .service-img img {
        height: 300px;
    }
}

/* --- Services Overview Section --- */
.services-page .services-overview {
    position: relative;
    padding: 100px 20px;
    text-align: center;
    background: url("images/servicespage-offer-bckgrd.jpg") no-repeat center center/cover;
    overflow: hidden;
    margin-top: 80px;
}

/* Mask overlay */
.services-page .services-overview::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(30, 30, 30, 0.65);
    z-index: 0;
}

/* Ensure content sits above mask */
.services-page .services-overview h2,
.services-page .services-overview p,
.services-page .services-cards {
    position: relative;
    z-index: 1;
}

.services-page .services-overview h2 {
    font-size: 2.2rem;
    color: #fff;
    margin-bottom: 15px;
    font-family: 'Outfit', sans-serif;
}

.services-page .services-overview p {
    max-width: 800px;
    margin: 0 auto 40px;
    font-size: 1.05rem;
    color: #f1f1f1;
    line-height: 1.7;
}

.services-page .services-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.services-page .service-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    padding: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.services-page .service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.35);
}

.services-page .service-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 6px;
    margin-bottom: 15px;
}

.services-page .service-card h3 {
    font-size: 1.3rem;
    color: #080a72;
    margin-bottom: 10px;
}

.services-page .service-card p {
    font-size: 0.95rem;
    color: #333;
    margin-bottom: 15px;
}

.services-page .service-card .btn-link {
    display: inline-block;
    padding: 8px 20px;
    background: #d6b75d;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-size: 0.9rem;
    transition: background 0.3s;
}

.services-page .service-card .btn-link:hover {
    background: #b99c49;
}

/* Mobile */
@media (max-width: 900px) {
    .services-page .services-cards {
        grid-template-columns: 1fr;
    }
}

/* --- Service Highlight Section --- */
.services-highlight {
    padding: 80px 20px;
    background: #f9f9f9;
}

.highlight-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.highlight-img img {
    width: 100%;
    max-width: 550px;
    border-radius: 12px;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
}

.highlight-text h2 {
    font-size: 2.2rem;
    font-family: 'Outfit', sans-serif;
    color: #080a72;
    margin-bottom: 20px;
}

.highlight-text p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #444;
    margin-bottom: 18px;
}

.highlight-text .highlight-btn {
    display: inline-block;
    margin-top: 40px;
    padding: 12px 36px;
    /* wider padding for pill look */
    background: #080a72;
    /* switch to theme blue */
    color: #fff;
    border-radius: 50px;
    /* pill shape */
    font-weight: 600;
    font-size: 1rem;
    font-family: 'Outfit', sans-serif;
    text-decoration: none;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
    /* subtle shadow */
    transition: all 0.3s ease;
}

.highlight-text .highlight-btn:hover {
    background: #0a3aa1;
    /* lighter blue on hover */
    transform: translateY(-2px);
    /* hover lift */
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}


/* Responsive */
@media (max-width: 768px) {
    .highlight-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .highlight-img img {
        margin: 0 auto 20px;
    }
}

/* --- Service CTA Section --- */
.services-cta {
    background: url("images/services-img8.jpg") center/cover no-repeat;
    padding: 100px 20px;
    text-align: center;
    position: relative;
    color: #fff;
}

.services-cta::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(8, 10, 114, 0.63);
    z-index: 0;
}

.services-cta-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
}

.services-cta h2 {
    font-size: 2.4rem;
    margin-bottom: 25px;
    color: #fff;
    font-family: 'Outfit', sans-serif;
}

.services-cta .cta-btn {
    display: inline-block;
    padding: 14px 34px;
    background: #d6b75d;
    color: #fff;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.3s ease, transform 0.2s ease;
}

.services-cta .cta-btn:hover {
    background: #b99c49;
    transform: translateY(-3px);
}

/* CONTACT US */

/* --- Contact Hero Section --- */
.contact-hero-wrapper * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.contact-hero {
    position: relative;
    height: 80vh;
    margin-top: -90px;
    /* pulls hero up under navbar */
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 60%, #f8f9fa 100%),
        url("images/contact-banner.jpg");
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.contact-page .contact-hero .hero-overlay {
    background: linear-gradient(to bottom, rgba(0,0,0,0) 60%, #f8f9fa 100%) !important;
    position: absolute;
    inset: 0;
    z-index: 1;
}

.contact-hero .hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
    text-align: center;
    padding: 0 20px;
}

.contact-hero .hero-content h1 {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    text-shadow: 0 3px 6px rgba(0, 0, 0, 0.6);
    font-weight: 700;
    margin-bottom: 15px;
}

.contact-hero .hero-content p {
    font-family: 'Questrial', sans-serif;
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    text-shadow: 0 3px 6px rgba(0, 0, 0, 0.945);
    color:white;
    max-width: 700px;
    margin: 0 auto;
}

/* --- Get in Touch Section --- */
.get-in-touch {
    padding: 60px 20px;
    background-color: #f9f9f9;
}

.get-in-touch-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}

.contact-images {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.contact-images .contact-img {
    border-radius: 10px;
    object-fit: cover;
    display: block;
}

.contact-images .tall {
    width: 45%;
    height: 350px;
}

.contact-images .short {
    width: 45%;
    height: 350px;
    margin-top: 70px;
}

/* Right Side */
.contact-label {
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 2px;
    font-weight: 600;
    color: #b58900;
    margin-bottom: 8px;
}

.contact-heading {
    font-size: 2rem;
    font-weight: 800;
    color: #0a2540;
    margin-bottom: 15px;
    line-height: 1.3;
}

.contact-subtext {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 25px;
}

.contact-contacts p {
    margin: 12px 0;
    font-size: 1rem;
    color: #333;
    display: flex;
    align-items: center;
}

.contact-contacts .icon {
    margin-right: 12px;
    font-size: 1.2rem;
    color: #b58900;
    min-width: 25px;
    /* keeps icons aligned */
    text-align: center;
}

.contact-contacts a {
    color: #0a2540;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-contacts a:hover {
    color: #b58900;
    text-decoration: underline;
}

/* Button */
.contact-btn {
    display: inline-block;
    margin-top: 25px;
    margin-left: 40px;
    padding: 12px 25px;
    border: 2px solid #0a2540;
    border-radius: 25px;
    background: transparent;
    color: #0a2540;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-btn:hover {
    background: #0a2540;
    color: #fff;
}

/* --- Send Us a Message Section --- */
.send-message {
    padding: 60px 20px;
    background-color: #dad7cf;
}

.send-message-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}

.message-form {
    background: #f9f9f9;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.message-form label {
    display: block;
    margin-top: 15px;
    margin-bottom: 5px;
    font-weight: 600;
    font-size: 0.95rem;
    color: #0a2540;
}

.message-form input,
.message-form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 1rem;
    font-family: 'Outfit', sans-serif;
    transition: border 0.3s ease;
}

/* Inputs + Textarea hover */
.message-form input:hover,
.message-form textarea:hover {
    border-color: #1a73e8;
    /* bright blue */
    box-shadow: 0 0 10px rgba(26, 115, 232, 0.6);
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

/* Inputs + Textarea focus */
.message-form input:focus,
.message-form textarea:focus {
    border-color: #1a73e8;
    /* bright blue */
    box-shadow: 0 0 12px rgba(26, 115, 232, 0.75);
    outline: none;
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.send-btn {
    margin-top: 20px;
    padding: 12px 25px;
    background-color: #b58900;
    color: #fff;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.send-btn:hover {
    background-color: #8b6900;
}

.message-image img {
    width: 100%;
    border-radius: 10px;
    object-fit: cover;
}

/* --- Location & Map Section --- */
.location-map {
    padding: 60px 20px;
    background-color: #fff;
}

.location-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}

.location-info {
    padding-right: 20px;
}

.location-info .contact-label {
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 2px;
    font-weight: 600;
    color: #b58900;
    /* gold */
    margin-bottom: 8px;
}

.location-info .contact-heading {
    font-size: 2rem;
    font-weight: 800;
    color: #0a2540;
    /* navy */
    margin-bottom: 15px;
    line-height: 1.3;
}

.location-info .contact-subtext {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
}

.map-link a {
    color: #0a2540;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.map-link a:hover {
    color: #b58900;
}

.map-frame iframe {
    width: 100%;
    height: 400px;
    border-radius: 10px;
}

/* You May Also Like Section */
.you-may-like {
    padding: 70px 20px;
    background: #d8d8da;
    text-align: center;
}

.you-may-like h2 {
    font-size: 2rem;
    margin-bottom: 40px;
    color: #0a2540;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    letter-spacing: -0.5px;
}

/* Row Layout - 5 cards in one line */
.contact-cards-row {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    max-width: 1400px;
    margin: 0 auto;
}

/* Card */
.contact-card {
    position: relative;
    flex: 1;
    overflow: hidden;
    height: 320px;
    background: #000;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.contact-card:hover img {
    transform: scale(1.05);
}

.contact-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

/* Overlay - clean flat style */
.contact-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 18px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.65), transparent 80%);
    color: #fff;
    text-align: left;
}

.contact-card-overlay h3 {
    margin: 0 0 10px;
    font-size: 1.2rem;
    font-weight: 600;
}

/* Button */
.contact-card-btn {
    display: inline-block;
    padding: 6px 12px;
    border: 1px solid #fff;
    color: #fff;
    font-size: 0.9rem;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: background 0.3s ease, color 0.3s ease;
}

.contact-card-btn:hover {
    background: #fff;
    color: #0a2540;
}

/* BACK TO TOP */

/* --- Back to Top Button Section --- */
#backToTop {
    position: fixed;
    bottom: 90px;
    right: 23px;
    width: 55px;
    height: 55px;
    background: #080a72;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease, transform 0.2s ease;
    z-index: 99999;
}

#backToTop.show {
    opacity: 1;
    visibility: visible;
}

#backToTop:hover {
    background: #d6b75d;
    color: #080a72;
    transform: scale(1.08);
}

/* Tooltip */
#backToTop::after {
    content: "Back to Top";
    position: absolute;
    bottom: 70px;
    right: 50%;
    transform: translateX(50%);
    background: #333;
    color: #fff;
    font-size: 0.8rem;
    padding: 6px 10px;
    border-radius: 6px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

#backToTop:hover::after {
    opacity: 1;
}

.accommodation-hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: -90px;
}

.accommodation-hero .hero-title {
    font-size: 4.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    background: linear-gradient(45deg, #ffffff, #ffd700, #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: titleGlow 3s ease-in-out infinite;
    text-align: center;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    transform: translateX(-30px);
}

.accommodation-hero .hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 40px;
    opacity: 0.9;
    line-height: 1.6;
    max-width: 600px;
    transform: translateX(-30px);
}

/* Enhanced Room Cards Section */
.rooms-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.rooms-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.rooms-section .section-title {
    font-size: 3.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 20px;
    background: linear-gradient(45deg, #2c3e50, #3498db, #2c3e50);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.rooms-section .section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(45deg, #ffd700, #ffed4e, #ffd700);
    border-radius: 2px;
}

.rooms-section .section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.rooms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.room-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border: 1px solid rgba(255, 215, 0, 0.1);
}

.room-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.05) 0%, rgba(255, 255, 255, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.room-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.room-card:hover::before {
    opacity: 1;
}

.room-image-container {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.room-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.room-card:hover .room-image {
    transform: scale(1.1);
}

.room-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
}

.room-badge.most-popular {
    background: linear-gradient(45deg, #ff6b6b, #ff8e8e);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
}

.room-badge.premium {
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    color: #2c3e50;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.room-badge.ultra-luxury {
    background: linear-gradient(45deg, #8e44ad, #9b59b6);
    color: white;
    box-shadow: 0 4px 15px rgba(142, 68, 173, 0.3);
}

.room-rating {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.8);
    padding: 4px 8px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 4px;
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
    z-index: 2;
    min-width: fit-content;
}

.room-rating .stars {
    color: #ffd700;
    font-size: 0.85rem;
}

.room-content {
    padding: 30px;
    position: relative;
}

.room-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
    position: relative;
}

.room-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    border-radius: 2px;
}

.room-description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 25px;
    font-size: 1rem;
}

.room-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding: 15px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 12px;
    border: 1px solid rgba(255, 215, 0, 0.1);
}

.room-capacity {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: #2c3e50;
}

.capacity-icon {
    font-size: 1.2rem;
}

.room-size {
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    color: #2c3e50;
    padding: 6px 12px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

.room-amenities {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 25px;
}

.amenity-tag {
    background: linear-gradient(45deg, #3498db, #5dade2);
    color: white;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    box-shadow: 0 2px 8px rgba(52, 152, 219, 0.2);
}

.room-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 2px solid rgba(255, 215, 0, 0.1);
}

.room-price {
    font-size: 1.5rem;
    font-weight: 800;
    color: #2c3e50;
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.view-details-btn {
    background: linear-gradient(45deg, #2c3e50, #34495e);
    color: white;
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.view-details-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    transition: left 0.3s ease;
    z-index: -1;
}

.view-details-btn:hover {
    color: #2c3e50;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(44, 62, 80, 0.3);
}

.view-details-btn:hover::before {
    left: 0;
}

/* Responsive Design for Room Cards */
@media (max-width: 768px) {
    .rooms-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .room-card {
        margin: 0 20px;
    }
    
    .rooms-section .section-title {
        font-size: 2.5rem;
    }
    
    .room-content {
        padding: 20px;
    }
    
    .room-footer {
        flex-direction: column;
        gap: 15px;
        align-items: stretch;
    }
    
    .view-details-btn {
        text-align: center;
    }
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(8, 32, 91, 0.7), rgba(112, 150, 209, 0.5));
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 0 20px;
}

.hero-title {
    font-size: 4rem;
    font-weight: bold;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1s ease-out;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 40px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1s ease-out 0.3s both;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.btn-primary, .btn-secondary {
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary {
    background: linear-gradient(45deg, #ff6b6b, #ff8e8e);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 107, 0.4);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: #08205b;
    transform: translateY(-2px);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    animation: bounce 2s infinite;
}

.scroll-arrow {
    width: 30px;
    height: 30px;
    border-right: 3px solid white;
    border-bottom: 3px solid white;
    transform: rotate(45deg);
}

/* Luxury Particle Effects */
.luxury-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.golden-sparkles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 20%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 40% 60%, rgba(255, 215, 0, 0.05) 0%, transparent 50%);
    animation: sparkle 3s ease-in-out infinite;
    z-index: 2;
}

.luxury-badge {
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    color: #8b4513;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: bold;
    letter-spacing: 2px;
    margin-bottom: 20px;
    display: inline-block;
    animation: luxuryPulse 2s ease-in-out infinite;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.hero-title {
    font-size: 4rem;
    font-weight: bold;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1s ease-out;
}

.title-line {
    display: inline-block;
    background: linear-gradient(45deg, #ffd700, #ffffff, #ffd700);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center;
    margin: 0 auto;
    background-clip: text;
    animation: luxuryShine 3s ease-in-out infinite;
}

.luxury-btn {
    position: relative;
    overflow: hidden;
    border-radius: 50px;
    transition: all 0.4s ease;
}

.btn-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.6s ease;
}

.luxury-btn:hover .btn-shine {
    left: 100%;
}

.luxury-scroll {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.scroll-text {
    color: white;
    font-size: 0.9rem;
    font-weight: 300;
    letter-spacing: 1px;
    opacity: 0.8;
}

.luxury-ornament {
    position: absolute;
    width: 60px;
    height: 60px;
    border: 2px solid rgba(255, 215, 0, 0.3);
    z-index: 3;
}

.luxury-ornament.top-left {
    top: 20px;
    left: 20px;
    border-radius: 0 0 100% 0;
    animation: ornamentFloat 4s ease-in-out infinite;
}

.luxury-ornament.top-right {
    top: 20px;
    right: 20px;
    border-radius: 0 0 0 100%;
    animation: ornamentFloat 4s ease-in-out infinite 1s;
}

.luxury-ornament.bottom-left {
    bottom: 20px;
    left: 20px;
    border-radius: 100% 0 0 0;
    animation: ornamentFloat 4s ease-in-out infinite 2s;
}

.luxury-ornament.bottom-right {
    bottom: 20px;
    right: 20px;
    border-radius: 0 100% 0 0;
    animation: ornamentFloat 4s ease-in-out infinite 3s;
}

/* Luxury Gallery Styles */
.luxury-gallery {
    background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
    position: relative;
}

.luxury-gallery::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.luxury-title {
    color: #ffd700;
    position: relative;
    z-index: 2;
}

.title-decoration {
    color: #ffd700;
    font-size: 2rem;
    margin: 0 20px;
    animation: decorationRotate 2s ease-in-out infinite;
}

.gallery-frame {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.gallery-glow {
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #ffd700, #ffed4e, #ffd700);
    border-radius: 22px;
    z-index: -1;
    animation: glowPulse 2s ease-in-out infinite;
}

.gallery-border {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 3px solid transparent;
    border-radius: 20px;
    background: linear-gradient(45deg, #ffd700, #ffed4e) border-box;
    mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    z-index: 1;
}

.luxury-overlay {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7), rgba(255, 215, 0, 0.1));
}

.overlay-content h3 {
    color: #ffd700;
    font-size: 2rem;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.overlay-content p {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.luxury-features {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.feature-tag {
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    color: #8b4513;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: bold;
    box-shadow: 0 2px 8px rgba(255, 215, 0, 0.3);
}

.luxury-thumbnails {
    gap: 20px;
}

.luxury-thumbnail {
    position: relative;
    width: 140px;
    height: 100px;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s ease;
    pointer-events: auto;
    z-index: 10;
}

.thumbnail-frame {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 15px;
    overflow: hidden;
    pointer-events: auto;
}

.thumbnail-glow {
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    border-radius: 17px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.luxury-thumbnail:hover .thumbnail-glow {
    opacity: 1;
}

.luxury-thumbnail:hover {
    transform: translateY(-10px) scale(1.05);
}

.luxury-thumbnail.active .thumbnail-glow {
    opacity: 1;
}

.thumbnail-label {
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    color: #ffd700;
    font-size: 0.9rem;
    font-weight: bold;
    text-align: center;
    white-space: nowrap;
}

/* Luxury Animations */
@keyframes luxuryPulse {
    0%, 100% { transform: scale(1); box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3); }
    50% { transform: scale(1.05); box-shadow: 0 6px 20px rgba(255, 215, 0, 0.5); }
}

@keyframes luxuryShine {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes sparkle {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.8; }
}

@keyframes ornamentFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(5deg); }
}

@keyframes decorationRotate {
    0%, 100% { transform: rotate(0deg); }
    50% { transform: rotate(180deg); }
}

@keyframes glowPulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

/* Features Section */
.accommodation-features {
    padding: 80px 0;
    background: linear-gradient(135deg, #f7f2ed, #e8dcc6);
    position: relative;
    overflow: hidden;
}

.accommodation-features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: #362e25;
    margin-bottom: 60px;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(45deg, #ff6b6b, #ff8e8e);
    border-radius: 2px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background: linear-gradient(135deg, #ffffff, #f8f9fa);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.feature-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.05), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card:hover::after {
    opacity: 1;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.feature-card:hover::before {
    left: 100%;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
    display: block;
    background: linear-gradient(45deg, #ffd700, #ffed4e, #ffd700);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: luxuryShine 3s ease-in-out infinite;
    filter: drop-shadow(0 2px 4px rgba(255, 215, 0, 0.3));
}

.feature-card h3 {
    font-size: 1.5rem;
    color: #362e25;
    margin-bottom: 15px;
}

.feature-card p {
    color: #666;
    line-height: 1.6;
    padding: 0;
}

/* Gallery Section */
.accommodation-gallery {
    padding: 80px 0;
    background: white;
}

.gallery-container {
    max-width: 1000px;
    margin: 0 auto;
}

.gallery-main {
    position: relative;
    margin-bottom: 30px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.gallery-main img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-main:hover img {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 30px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-main:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-thumbnails {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.thumbnail {
    width: 120px;
    height: 80px;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 3px solid transparent;
}

.thumbnail:hover,
.thumbnail.active {
    border-color: #ff6b6b;
    transform: scale(1.05);
}

.thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Testimonials Section */
.accommodation-testimonials {
    padding: 80px 0;
    background: linear-gradient(135deg, #f7f2ed, #e8dcc6);
    position: relative;
    overflow: hidden;
}

.accommodation-testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(255, 215, 0, 0.1) 0%, transparent 50%);
    z-index: 1;
}

.testimonials-slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
}

.testimonial-card {
    display: none;
    background: linear-gradient(135deg, #ffffff, #f8f9fa);
    padding: 50px 40px;
    border-radius: 25px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    text-align: center;
    position: relative;
    border: 2px solid rgba(255, 215, 0, 0.2);
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ffd700, #ffed4e, #ffd700);
    background-size: 200% 100%;
    animation: luxuryShine 3s ease-in-out infinite;
}

.testimonial-card.active {
    display: block;
    animation: fadeIn 0.5s ease-in;
}

.stars {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.testimonial-content p {
    font-size: 1.2rem;
    color: #666;
    font-style: italic;
    margin-bottom: 30px;
    line-height: 1.6;
    padding: 0;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info h4 {
    margin: 0;
    color: #362e25;
    font-size: 1.1rem;
}

.author-info span {
    color: #666;
    font-size: 0.9rem;
}

.testimonial-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
}

.testimonial-prev,
.testimonial-next {
    background: #ff6b6b;
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.testimonial-prev:hover,
.testimonial-next:hover {
    background: #ff5252;
    transform: scale(1.1);
}

.testimonial-dots {
    display: flex;
    gap: 10px;
}

.testimonial-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonial-dots .dot.active {
    background: #ff6b6b;
    transform: scale(1.2);
}

/* Amenities Section */
.accommodation-amenities {
    padding: 80px 0;
    background: white;
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.amenity-category {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.amenity-category:hover {
    transform: translateY(-5px);
}

.amenity-category h3 {
    font-size: 1.3rem;
    color: #362e25;
    margin-bottom: 20px;
    text-align: center;
}

.amenity-category ul {
    list-style: none;
    padding: 0;
}

.amenity-category li {
    padding: 8px 0;
    color: #666;
    position: relative;
    padding-left: 20px;
}

.amenity-category li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #ff6b6b;
    font-weight: bold;
}

/* CTA Section */
.accommodation-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #08205b, #7096d1, #1a237e);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.accommodation-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: white;
    background: linear-gradient(45deg, #ffffff, #ffd700, #ffffff);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: luxuryShine 3s ease-in-out infinite;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
    padding: 0;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
}

.cta-feature .feature-icon {
    background: #ff6b6b;
    color: white;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Modern Room Cards Section */
.rooms-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.rooms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    align-items: stretch;
}

.room-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.room-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
    border-color: rgba(44, 85, 48, 0.2);
}

.room-image-container {
    position: relative;
    height: 280px;
    overflow: hidden;
    flex-shrink: 0;
}

.room-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.room-card:hover .room-image {
    transform: scale(1.05);
}

.room-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    padding: 10px 18px;
    border-radius: 25px;
    font-size: 0.8rem;
    font-weight: bold;
    color: white;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    z-index: 2;
}

.room-badge.most-popular {
    background: linear-gradient(45deg, #28a745, #20c997);
}

.room-badge.premium {
    background: linear-gradient(45deg, #ffc107, #ff8c00);
}

.room-badge.ultra-luxury {
    background: linear-gradient(45deg, #dc3545, #e83e8c);
}

.room-rating {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.98);
    padding: 10px 14px;
    border-radius: 25px;
    display: flex;
    align-items: center;
    gap: 6px;
    backdrop-filter: blur(15px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    z-index: 2;
}

.stars {
    color: #ffc107;
    font-size: 0.95rem;
    line-height: 1;
}

.rating-score {
    font-weight: 700;
    color: #333;
    font-size: 0.9rem;
    line-height: 1;
    letter-spacing: -0.3px;
}

.room-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.room-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: #2c5530;
    margin-bottom: 12px;
    line-height: 1.3;
}

.room-description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 24px;
    font-size: 0.95rem;
    min-height: 60px;
}

.room-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    padding: 18px 20px;
    background: #f8f9fa;
    border-radius: 12px;
    border: 1px solid #e9ecef;
}

.room-capacity {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #333;
    font-weight: 500;
}

.capacity-icon {
    font-size: 1.1rem;
}

.room-size {
    color: #666;
    font-weight: 500;
    font-size: 0.9rem;
}

.room-amenities {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 28px;
    min-height: 50px;
}

.amenity-tag {
    background: #e9ecef;
    color: #495057;
    padding: 8px 14px;
    border-radius: 18px;
    font-size: 0.8rem;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid #dee2e6;
}

.amenity-tag:hover {
    background: #dee2e6;
    transform: translateY(-1px);
}

.room-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 24px;
    border-top: 1px solid #e9ecef;
    margin-top: auto;
}

.room-price {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1e3a8a;
    letter-spacing: -0.5px;
}

.view-details-btn {
    background: #2c5530;
    color: white;
    padding: 14px 28px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 2px solid transparent;
}

.view-details-btn:hover {
    background: #1e3a2e;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(44, 85, 48, 0.3);
    border-color: #2c5530;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .amenities-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-features {
        flex-direction: column;
        gap: 20px;
    }

    .rooms-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 0 15px;
    }

    .room-card {
        margin: 0;
    }

    .room-content {
        padding: 25px;
    }

    .room-footer {
        flex-direction: column;
        gap: 18px;
        align-items: stretch;
    }

    .view-details-btn {
        text-align: center;
        padding: 16px 24px;
    }
}

/* Deluxe Room Specific Styles */
.deluxe-hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: -90px;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
}

.deluxe-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(120, 119, 198, 0.3) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(255, 119, 198, 0.3) 0%, transparent 50%),
                radial-gradient(circle at 40% 40%, rgba(120, 219, 255, 0.2) 0%, transparent 50%);
    z-index: 1;
}

.deluxe-hero .hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.deluxe-hero .hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.8) contrast(1.1);
}

.deluxe-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(8, 32, 91, 0.8), rgba(112, 150, 209, 0.6), rgba(255, 215, 0, 0.1));
    z-index: 3;
}

.deluxe-hero .hero-content {
    position: relative;
    z-index: 4;
    text-align: center;
    color: white;
    max-width: 900px;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin: 0 auto;
}

.deluxe-hero .hero-title {
    font-size: 4.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    background: linear-gradient(45deg, #ffffff, #ffd700, #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: titleGlow 3s ease-in-out infinite;
    text-align: center;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
}

.deluxe-hero .hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 40px;
    opacity: 0.9;
    line-height: 1.6;
    max-width: 600px;
    transform: translateX(-30px);
}

/* Enhanced Standard Room Styles */
.standard-hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: -90px;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
}

.standard-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(120, 119, 198, 0.3) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(255, 119, 198, 0.3) 0%, transparent 50%),
                radial-gradient(circle at 40% 40%, rgba(120, 219, 255, 0.2) 0%, transparent 50%);
    z-index: 1;
}

.standard-hero .hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.standard-hero .hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.8) contrast(1.1);
}

.standard-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(8, 32, 91, 0.8), rgba(112, 150, 209, 0.6), rgba(255, 215, 0, 0.1));
    z-index: 3;
}

.standard-hero .hero-content {
    position: relative;
    z-index: 4;
    text-align: center;
    color: white;
    max-width: 900px;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin: 0 auto;
}

.luxury-badge {
    background: linear-gradient(45deg, #ffd700, #ffed4e, #ffd700);
    color: #1a1a2e;
    padding: 12px 30px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: bold;
    letter-spacing: 2px;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
    animation: luxuryPulse 2s ease-in-out infinite;
}

@keyframes luxuryPulse {
    0%, 100% { transform: scale(1); box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4); }
    50% { transform: scale(1.05); box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6); }
}

.standard-hero .hero-title {
    font-size: 4.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    background: linear-gradient(45deg, #ffffff, #ffd700, #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: titleGlow 3s ease-in-out infinite;
    text-align: center;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
}

@keyframes titleGlow {
    0%, 100% { filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.3)); }
    50% { filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.6)); }
}

.standard-hero .hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 40px;
    opacity: 0.9;
    line-height: 1.6;
    max-width: 600px;
    transform: translateX(60px);
}

.presidential-hero .hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 40px;
    opacity: 0.9;
    line-height: 1.6;
    max-width: 600px;
    transform: translateX(60px);
}

/* Presidential Hero Styles */
.presidential-hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
}

.presidential-hero .hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.presidential-hero .hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
}

.presidential-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.8) 0%, rgba(22, 33, 62, 0.6) 50%, rgba(15, 52, 96, 0.8) 100%);
    z-index: 2;
}

.presidential-hero .hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: white;
    max-width: 1200px;
    padding: 0 20px;
}

.presidential-hero .hero-title {
    font-size: 4.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    background: linear-gradient(45deg, #ffffff, #ffd700, #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: titleGlow 3s ease-in-out infinite;
    text-align: center;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
}

.penthouse-hero .hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 40px;
    opacity: 0.9;
    line-height: 1.6;
    max-width: 600px;
    transform: translateX(60px);
}

/* Penthouse Hero Styles */
.penthouse-hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
}

.penthouse-hero .hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.penthouse-hero .hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
}

.penthouse-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.8) 0%, rgba(22, 33, 62, 0.6) 50%, rgba(15, 52, 96, 0.8) 100%);
    z-index: 2;
}

.penthouse-hero .hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: white;
    max-width: 1200px;
    padding: 0 20px;
}

.penthouse-hero .hero-title {
    font-size: 4.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    background: linear-gradient(45deg, #ffffff, #ffd700, #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: titleGlow 3s ease-in-out infinite;
    text-align: center;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
}

.room-specs {
    display: flex;
    gap: 25px;
    margin: 40px 0;
    flex-wrap: wrap;
    justify-content: center;
}

.spec-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.15);
    padding: 15px 25px;
    border-radius: 30px;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.spec-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.25);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
}

.spec-icon {
    font-size: 1.4rem;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.luxury-btn {
    position: relative;
    padding: 15px 35px;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-primary {
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    color: #1a1a2e;
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.luxury-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.btn-primary:hover {
    box-shadow: 0 15px 35px rgba(255, 215, 0, 0.6);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

.btn-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.luxury-btn:hover .btn-shine {
    left: 100%;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: white;
    opacity: 0.8;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

.scroll-arrow {
    width: 2px;
    height: 30px;
    background: linear-gradient(to bottom, transparent, #ffd700, transparent);
    animation: arrowMove 2s infinite;
}

@keyframes arrowMove {
    0%, 100% { opacity: 0; transform: translateY(-10px); }
    50% { opacity: 1; transform: translateY(0); }
}

.luxury-ornament {
    position: absolute;
    width: 60px;
    height: 60px;
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 50%;
    z-index: 3;
}

.luxury-ornament::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    background: radial-gradient(circle, #ffd700, transparent);
    border-radius: 50%;
    animation: ornamentPulse 3s ease-in-out infinite;
}

@keyframes ornamentPulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
    50% { transform: translate(-50%, -50%) scale(1.5); opacity: 1; }
}

.luxury-ornament.top-left { top: 20px; left: 20px; }
.luxury-ornament.top-right { top: 20px; right: 20px; }
.luxury-ornament.bottom-left { bottom: 20px; left: 20px; }
.luxury-ornament.bottom-right { bottom: 20px; right: 20px; }

/* Enhanced Feature Cards */
.feature-card.luxury-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8fcff 100%);
    padding: 40px 30px;
    border-radius: 25px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 215, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.feature-card.luxury-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.1), transparent);
    transition: left 0.6s ease;
}

.feature-card.luxury-card:hover::before {
    left: 100%;
}

.feature-card.luxury-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    border-color: rgba(255, 215, 0, 0.4);
}

.feature-card .feature-icon {
    font-size: 3.5rem;
    margin-bottom: 25px;
    display: block;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
    transition: all 0.3s ease;
}

.feature-card.luxury-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}

/* Enhanced Gallery Styles */
.gallery-frame {
    position: relative;
    height: 600px;
    overflow: hidden;
    border-radius: 25px;
}

.gallery-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
    filter: brightness(0.9) contrast(1.1);
}

.gallery-frame:hover img {
    transform: scale(1.08);
    filter: brightness(1) contrast(1.2);
}

.gallery-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 215, 0, 0.2), rgba(255, 255, 255, 0.1), rgba(255, 215, 0, 0.1));
    opacity: 0;
    transition: all 0.4s ease;
    border-radius: 25px;
}

.gallery-frame:hover .gallery-glow {
    opacity: 1;
}

.gallery-border {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 4px solid transparent;
    background: linear-gradient(45deg, #ffd700, #ffffff, #ffd700, #ffffff) border-box;
    border-radius: 25px;
    mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.gallery-frame:hover .gallery-border {
    opacity: 1;
}

/* Enhanced Testimonials */
.testimonial-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8fcff 100%);
    padding: 50px 40px;
    border-radius: 25px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ffd700, #ffed4e, #ffd700);
}

.testimonial-content .stars {
    font-size: 1.8rem;
    margin-bottom: 25px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.testimonial-content p {
    font-size: 1.3rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 35px;
    font-style: italic;
    position: relative;
}

.testimonial-content p::before {
    content: '"';
    font-size: 4rem;
    color: #ffd700;
    position: absolute;
    top: -20px;
    left: -20px;
    font-family: serif;
    opacity: 0.3;
}

.author-avatar {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #2c5530, #4a7c59, #6b8e6b);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: bold;
    box-shadow: 0 8px 20px rgba(44, 85, 48, 0.3);
    transition: all 0.3s ease;
}

.testimonial-card:hover .author-avatar {
    transform: scale(1.1);
    box-shadow: 0 12px 25px rgba(44, 85, 48, 0.4);
}

/* Enhanced Pricing Card */
.pricing-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8fcff 100%);
    border-radius: 25px;
    padding: 50px 40px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.1);
    text-align: center;
    border: 3px solid rgba(255, 215, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, #ffd700, #ffed4e, #ffd700, #ffed4e);
}

.amount {
    font-size: 4.5rem;
    font-weight: 900;
    color: #2c5530;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    position: relative;
}

.amount::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #ffd700, #ffed4e);
    border-radius: 2px;
}

.pricing-features li {
    padding: 15px 0;
    color: #666;
    border-bottom: 1px solid #f0f0f0;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.pricing-features li:hover {
    color: #2c5530;
    padding-left: 10px;
}

.book-now-btn.luxury-btn {
    background: linear-gradient(45deg, #2c5530, #4a7c59);
    color: white;
    padding: 18px 40px;
    font-size: 1.1rem;
    font-weight: 700;
    box-shadow: 0 10px 30px rgba(44, 85, 48, 0.3);
}

.book-now-btn.luxury-btn:hover {
    background: linear-gradient(45deg, #4a7c59, #6b8e6b);
    box-shadow: 0 15px 40px rgba(44, 85, 48, 0.4);
    transform: translateY(-3px);
}

/* Responsive Enhancements */
@media (max-width: 768px) {
    .standard-hero .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .room-specs {
        gap: 15px;
    }
    
    .spec-item {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .luxury-btn {
        width: 200px;
        justify-content: center;
    }
    
    .gallery-frame {
        height: 400px;
    }
    
    .testimonial-card {
        padding: 30px 20px;
    }
    
    .pricing-card {
        padding: 30px 20px;
    }
    
    .amount {
        font-size: 3.5rem;
    }
}