/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
}

/* Navbar Styles */
.navbar {
    background-color: #fff;
    padding: 15px 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Brand Styles */
.navbar-brand h1 {
    font-size: 20px;
    font-weight: 300;
    letter-spacing: 3px;
    color: #5eb3c5;
    margin-bottom: -5px;
}

.navbar-brand p {
    font-size: 11px;
    letter-spacing: 2px;
    color: #666;
    text-transform: uppercase;
}

/* Menu Styles */
.navbar-menu {
    display: flex;
    list-style: none;
    gap: 35px;
    align-items: center;
}

.navbar-menu li {
    position: relative;
}

.navbar-menu > li > a {
    text-decoration: none;
    color: #333;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 10px 0;
    transition: color 0.3s ease;
    display: block;
}

.navbar-menu > li > a:hover,
.navbar-menu > li > a.active {
    color: #5eb3c5;
}

/* Book Now Button */
.btn-book-now {
    background-color: #5eb3c5;
    color: #fff !important;
    padding: 12px 28px !important;
    border-radius: 3px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: color 0.4s ease;
}

.btn-book-now::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: #1a226f;
    z-index: -1;
    transition: left 0.4s ease;
}
.btn-book-now:hover::before {
    left: 0;
}

.btn-book-now:hover {
    color: #fff !important;
}

.btn-book-now.active {
    background-color: #1a5f6f;
}

/* Mobile Toggle Button */
.mobile-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    width: 30px;
    height: 25px;
    position: relative;
}

.mobile-toggle span {
    width: 100%;
    height: 3px;
    background-color: #333;
    transition: all 0.3s ease;
    border-radius: 2px;
}

/* Mobile Toggle Animation */
.mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-20px);
}

.mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Hero Slideshow Section */
.hero-slideshow {
    position: relative;
    width: 100%;
    height: 90vh;
    overflow: hidden;
}

.hero-slideshow::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: zoomOut 8s ease-out forwards;
}

.slide.active img {
    animation: zoomOut 8s ease-out forwards;
}

@keyframes zoomOut {
    0% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
    }
}

/* Hero Content */
.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    z-index: 2;
    width: 90%;
}

.hero-subtitle {
    font-size: 14px;
    letter-spacing: 4px;
    font-weight: 300;
    margin-bottom: 20px;
    opacity: 0;
    animation: fadeInUp 1s ease 0.5s forwards;
}

.hero-title {
    font-size: 72px;
    font-weight: 300;
    letter-spacing: 8px;
    line-height: 1.2;
    margin-bottom: 40px;
    opacity: 0;
    animation: fadeInUp 1s ease 0.8s forwards;
}

.hero-btn {
    display: inline-block;
    padding: 15px 40px;
    border: 2px solid #fff;
    color: #fff;
    text-decoration: none;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0;
    animation: fadeInUp 1s ease 1.1s forwards;
    position: relative;
    overflow: hidden;
    z-index: 1;
    background-color: transparent;
    transition: color 0.4s ease;
}

.hero-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: #fff;
    z-index: -1;
    transition: left 0.4s ease;
}

.hero-btn:hover::before {
    left: 0;
}

.hero-btn:hover {
    color: #333;
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Slide Navigation Dots */
.slide-dots {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 3;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background-color: #fff;
    transform: scale(1.2);
}

.dot:hover {
    background-color: rgba(255, 255, 255, 0.8);
}

/* About Section */
.about-section {
    margin-top: -150px;
    padding: 100px 0;
    background-color: #fff;
    margin-bottom: -50px;
}

.about-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-text {
    padding-right: 20px;
}

.star-rating {
    margin-bottom: 15px;
}

.star-rating span {
    color: #daa520;
    font-size: 20px;
    margin-right: 5px;
}

.about-label {
    font-size: 12px;
    letter-spacing: 3px;
    color: #5eb3c5;
    margin-bottom: 15px;
    font-weight: 400;
}

.about-title {
    font-size: 48px;
    font-weight: 300;
    color: #1a3b5d;
    margin-bottom: 30px;
    line-height: 1.2;
}

.about-description {
    font-size: 15px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 20px;
}

.reservation-info {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 40px;
    padding: 30px;
    background-color: #f8f9fa;
    border-radius: 5px;
}

.phone-icon {
    flex-shrink: 0;
}

.reservation-text {
    display: flex;
    flex-direction: column;
}

.reservation-label {
    font-size: 13px;
    color: #666;
    margin-bottom: 5px;
}

.reservation-number {
    font-size: 28px;
    font-weight: 400;
    color: #5eb3c5;
    text-decoration: none;
    transition: color 0.3s ease;
}

.reservation-number:hover {
    color: #1a5f6f;
}

/* Image Grid */
.image-grid {
    display: grid;
    grid-template-columns: 250px 1fr;
    grid-template-rows: 200px 160px 200px;
    gap: 20px;
    height: auto;
    padding-top: 200px;
}

.image-item {
    overflow: hidden;
    border-radius: 8px;
}

.image-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.image-item:hover img {
    transform: scale(1.1);
}

.image-item.large-top {
    margin-top: 50px;
    margin-left: 30px;
}

.image-item.small-left {
    margin-left: 70px;
    margin-bottom: 70px;
}

.image-item.large-bottom {
    margin-bottom: 30px;
    margin-right: 30px;
}

/* Rooms & Suites Section */
.rooms-section {
    padding: 100px 0;
    background: #f2f4f7;
}

.rooms-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-label {
    font-size: 12px;
    letter-spacing: 3px;
    color: #666;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.section-title {
    font-size: 48px;
    font-weight: 300;
    color: #1a3b5d;
}

.rooms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 40px;
}

.room-card {
    background-color: #fff;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.room-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.room-image {
    position: relative;
    height: 500px;
    overflow: hidden;
}

.room-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.room-card:hover .room-image img {
    transform: scale(1.1);
}

.room-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0);
    transition: background-color 0.3s ease;
    z-index: 1;
}

.room-card:hover .room-image::before {
    background-color: rgba(0, 0, 0, 0.5);
}

.book-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: #5eb3c5;
    color: #fff;
    padding: 10px 20px;
    font-size: 11px;
    letter-spacing: 2px;
    font-weight: 600;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transform: rotate(180deg);
    z-index: 3;
}

.room-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 60%, transparent 100%);
    padding: 40px 30px 30px;
    z-index: 2;
}

.room-content {
    color: #fff;
}

.room-price {
    font-size: 20px;
    letter-spacing: 2px;
    color: #ddd;
    margin-bottom: 10px;
    opacity: 0;
    transform: translateX(-20px);
    transition: all 0.3s ease;
}

.room-card:hover .room-price {
    opacity: 1;
    transform: translateX(0);
}

.room-title {
    font-size: 32px;
    font-weight: 300;
    color: #fff;
    margin-bottom: 20px;
}

.room-amenities {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

.amenity-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.amenity-icon:hover {
    transform: scale(1.2);
}

.room-details-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    text-decoration: none;
    font-size: 12px;
    letter-spacing: 2px;
    font-weight: 600;
    transition: gap 0.3s ease;
    opacity: 0;
    transform: translateX(-20px);
    transition: all 0.3s ease;
    margin-left: auto;
}

.room-card:hover .room-details-btn {
    opacity: 1;
    transform: translateX(0);
}

.room-details-btn:hover {
    gap: 15px;
}

.room-details-btn svg {
    transition: transform 0.3s ease;
}

.room-details-btn:hover svg {
    transform: translateX(5px);
}

/* Facilities Section */
.facilities-section {
    padding: 100px 0;
    background-color: #fff;
}

.facilities-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.facilities-section .section-subtitle {
    font-size: 16px;
    color: #666;
    text-align: center;
    margin-top: 10px;
    font-weight: 400;
}

.facilities-popular {
    margin-bottom: 60px;
}

.facilities-subtitle {
    font-size: 24px;
    font-weight: 400;
    color: #1a3b5d;
    margin-bottom: 30px;
}

.facilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.facility-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    background-color: #f8f9fa;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.facility-item:hover {
    background-color: #5eb3c5;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(94, 179, 197, 0.3);
}

.facility-item svg {
    width: 24px;
    height: 24px;
    stroke: #5eb3c5;
    flex-shrink: 0;
    transition: stroke 0.3s ease;
}

.facility-item:hover svg {
    stroke: #fff;
}

.facility-item span {
    font-size: 14px;
    letter-spacing: 0.5px;
}

.facilities-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.facility-category {
    padding: 30px;
    background-color: #f8f9fa;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.facility-category:hover {
    background-color: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.category-title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 20px;
    font-weight: 500;
    color: #1a3b5d;
    margin-bottom: 20px;
}

.category-title svg {
    width: 24px;
    height: 24px;
    stroke: #5eb3c5;
    flex-shrink: 0;
}

.facility-list {
    list-style: none;
    padding: 0;
}

.facility-list li {
    padding: 10px 0;
    font-size: 14px;
    color: #666;
    border-bottom: 1px solid #e0e0e0;
    position: relative;
    padding-left: 25px;
}

.facility-list li:last-child {
    border-bottom: none;
}

.facility-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #5eb3c5;
    font-weight: bold;
}

.facility-description {
    font-size: 14px;
    line-height: 1.8;
    color: #666;
}

/* Services Section */
.services-section {
    padding: 100px 0;
    background-color: #fff;
}

.services-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.services-header {
    text-align: center;
    margin-bottom: 60px;
}

.services-label {
    font-size: 12px;
    letter-spacing: 3px;
    color: #666;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.services-title {
    font-size: 48px;
    font-weight: 300;
    color: #1a3b5d;
}

.services-grid {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.service-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background-color: #fff;
}

.service-card.service-reverse {
    grid-template-columns: 1fr 1fr;
}

.service-image {
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-content {
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #f8f9fa;
}

.service-card.service-reverse .service-content {
    order: -1;
}

.service-category {
    font-size: 11px;
    letter-spacing: 3px;
    color: #5eb3c5;
    margin-bottom: 15px;
    text-transform: uppercase;
    font-weight: 500;
}

.service-title {
    font-size: 32px;
    font-weight: 300;
    color: #1a3b5d;
    margin-bottom: 20px;
    line-height: 1.2;
}

.service-description {
    font-size: 15px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 30px;
}

.service-btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: #5eb3c5;
    color: #fff;
    text-decoration: none;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
    transition: background-color 0.3s ease;
    align-self: flex-start;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.service-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: #1a2a4a;
    z-index: -1;
    transition: left 0.4s ease;
}

.service-btn:hover::before {
    left: 0;
}

.service-btn:hover {
    background-color: #1a5f6f;
}

/* Testimonials Section */
.testimonials-section {
    padding: 60px 0;
    background-image: url('../img/gallery/2.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.testimonials-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 40px;
    color: #fff;
}

.testimonials-label {
    font-size: 12px;
    letter-spacing: 3px;
    color: #fff;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.testimonials-title {
    font-size: 48px;
    font-weight: 300;
    color: #fff;
    margin-bottom: 25px;
}

.testimonials-description {
    font-size: 15px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.testimonials-slider {
    position: relative;
    overflow: visible;
    padding: 20px 0;
    min-height: 400px;
}

.testimonial-track {
    position: relative;
    width: 100%;
    height: 100%;
}

.testimonial-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    opacity: 0;
    transform: scale(0.8);
    transition: opacity 0.5s ease, transform 0.5s ease;
    pointer-events: none;
}

.testimonial-item.active {
    opacity: 1;
    transform: scale(1);
    pointer-events: auto;
}

.testimonial-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 20px;
    border: 3px solid #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-stars {
    display: flex;
    gap: 5px;
    margin-bottom: 15px;
}

.testimonial-stars span {
    color: #daa520;
    font-size: 16px;
}

.testimonial-name {
    font-size: 16px;
    letter-spacing: 3px;
    color: #fff;
    font-weight: 400;
}

.testimonial-dots {
    display: none;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.testimonial-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease;
}

.testimonial-dot.active {
    background: #5eb3c5;
    transform: scale(1.2);
}

.testimonial-dot:hover {
    background: rgba(94, 179, 197, 0.7);
}

/* Hotel Facilities Section */
.facilities-section {
    padding: 80px 0;
    background-color: #fff;
}

.facilities-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.facilities-header {
    text-align: center;
    margin-bottom: 60px;
}

.facilities-label {
    font-size: 12px;
    letter-spacing: 3px;
    color: #5eb3c5;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.facilities-title {
    font-size: 48px;
    font-weight: 300;
    color: #333;
    margin-bottom: 25px;
}

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

.facility-card {
    border: 2px solid #e0e0e0;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    background-color: #fff;
}

.facility-card:hover {
    border-color: #5eb3c5;
    box-shadow: 0 10px 30px rgba(94, 179, 197, 0.1);
}

.facility-icon {
    margin-bottom: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.facility-icon svg {
    transition: transform 1.2s ease;
}

.facility-card:hover .facility-icon svg {
    animation: flipIcon 1.2s ease;
}

@keyframes flipIcon {
    0% {
        transform: rotateY(0deg);
    }
    50% {
        transform: rotateY(360deg);
    }
    100% {
        transform: rotateY(720deg);
    }
}

.facility-title {
    font-size: 20px;
    font-weight: 500;
    color: #333;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.facility-description {
    font-size: 14px;
    line-height: 1.8;
    color: #666;
}

/* Map Section */
.map-section {
    width: 100%;
    padding: 80px 0;
    background-color: #f8f8f8;
}

.map-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.map-container iframe {
    width: 100%;
    height: 450px;
    border: 0;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* Gallery Slider Section */
.gallery-slider-section {
    width: 100%;
    overflow: hidden;
    background-color: #fff;
    padding: 60px 0;
    position: relative;
}

.gallery-slider-track {
    display: flex;
    width: max-content;
    animation: scrollGallery 30s linear infinite;
}

.gallery-slide {
    flex-shrink: 0;
    width: 400px;
    height: 300px;
    margin-right: 20px;
    overflow: hidden;
}

.gallery-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-slide:hover img {
    transform: scale(1.1);
}

@keyframes scrollGallery {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.gallery-slider-section:hover .gallery-slider-track {
    animation-play-state: paused;
}

/* Contact Form Section */
.contact-form-section {
    background-image: url('../img/gallery/3.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    padding: 0;
}

.contact-form-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(26, 95, 111, 0.95) 0%, rgba(26, 95, 111, 0.85) 100%);
    z-index: 1;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    position: relative;
    z-index: 2;
    min-height: 500px;
}

/* Left Side - Contact Info */
.contact-info {
    padding: 50px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #fff;
}

.star-rating {
    display: flex;
    gap: 6px;
    margin-bottom: 25px;
}

.star-rating span {
    color: #daa520;
    font-size: 16px;
}

.contact-heading {
    font-size: 22px;
    font-weight: 300;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #fff;
}

.reservation-contact {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    margin-bottom: 40px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
}

.phone-icon {
    flex-shrink: 0;
}

.phone-icon svg {
    width: 35px;
    height: 35px;
}

.reservation-details {
    flex: 1;
}

.reservation-label {
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 6px;
    color: rgba(255, 255, 255, 0.8);
}

.reservation-phone {
    font-size: 26px;
    font-weight: 300;
    letter-spacing: 1px;
    margin-bottom: 8px;
    color: #fff;
}

.reservation-note {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
}

.brand-logos {
    display: flex;
    gap: 20px;
    align-items: center;
    flex-wrap: wrap;
}

.brand-logo {
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.brand-logo:hover {
    opacity: 1;
}

.brand-logo img {
    height: 30px;
    width: auto;
    filter: brightness(0) invert(1);
}

/* Right Side - Contact Form */
.contact-form-wrapper {
    background-color: #fff;
    padding: 40px 35px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.form-header {
    margin-bottom: 30px;
}

.form-label {
    font-size: 11px;
    letter-spacing: 2px;
    color: #5eb3c5;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.form-title {
    font-size: 28px;
    font-weight: 300;
    color: #333;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

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

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

.form-group label {
    font-size: 13px;
    color: #333;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 15px;
    border: 1px solid #ddd;
    font-size: 14px;
    color: #333;
    background-color: #fff;
    transition: all 0.3s ease;
    font-family: Arial, Helvetica, sans-serif;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #5eb3c5;
    box-shadow: 0 0 0 3px rgba(94, 179, 197, 0.1);
}

.btn-check-availability {
    padding: 14px 35px;
    background-color: #5eb3c5;
    color: #fff;
    border: none;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 5px;
    font-weight: 600;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-check-availability::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: #1a2a4a;
    z-index: -1;
    transition: left 0.4s ease;
}

.btn-check-availability:hover::before {
    left: 0;
}

.btn-check-availability:hover {
    background-color: #4a9fb5;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(94, 179, 197, 0.3);
}

/* Footer */
.footer {
    background-color: #1a2a4a;
    color: #fff;
    padding: 60px 0 0;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1fr;
    gap: 60px;
    padding-bottom: 40px;
}

.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-title {
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 25px;
    color: #fff;
    letter-spacing: 0.5px;
}

.footer-description {
    font-size: 14px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 25px;
}

.language-selector {
    margin-top: 10px;
}

.language-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background-color: #5eb3c5;
    color: #fff;
    border: none;
    cursor: pointer;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
    width: fit-content;
}

.language-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: #1a2a4a;
    z-index: -1;
    transition: left 0.4s ease;
}

.language-btn:hover::before {
    left: 0;
}

.language-btn:hover {
    background-color: #4a9fb5;
    color: #fff;
}

.language-btn svg {
    width: 18px;
    height: 18px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: #5eb3c5;
    padding-left: 5px;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-address {
    font-size: 14px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.footer-phone,
.footer-email {
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    font-weight: 300;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-phone:hover,
.footer-email:hover {
    color: #5eb3c5;
}

.footer-email {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.social-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background-color: rgba(255, 255, 255, 0.1);
    text-decoration: none;
    transition: all 0.3s ease;
    border-radius: 3px;
}

.social-icon:hover {
    background-color: #5eb3c5;
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 25px 0;
    text-align: center;
}

.footer-bottom p {
    margin: 0;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 0.5px;
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #fff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.scroll-to-top svg:first-child {
    position: absolute;
    color: #5eb3c5;
    z-index: 2;
}

.progress-ring {
    position: absolute;
    top: 0;
    left: 0;
    transform: rotate(-90deg);
    z-index: 1;
}

.progress-ring-circle {
    stroke-dasharray: 163.36;
    stroke-dashoffset: 163.36;
    transition: stroke-dashoffset 0.1s linear;
}

/* WhatsApp Button */
.whatsapp-button {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    text-decoration: none;
    transition: all 0.3s ease;
    animation: jumpBounce 2s ease-in-out infinite;
}

.whatsapp-button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
    animation: none;
}

.whatsapp-button svg {
    position: relative;
    z-index: 2;
}

.whatsapp-pulse {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: rgba(37, 211, 102, 0.7);
    animation: pulse 2s ease-out infinite;
    z-index: 1;
}

@keyframes jumpBounce {
    0%, 100% {
        transform: translateY(0);
    }
    10% {
        transform: translateY(-10px);
    }
    20% {
        transform: translateY(0);
    }
    30% {
        transform: translateY(-5px);
    }
    40% {
        transform: translateY(0);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.3);
        opacity: 0.7;
    }
    100% {
        transform: scale(1.6);
        opacity: 0;
    }
}

/* Page Hero Section (for other pages) */
.page-hero {
    position: relative;
    width: 100%;
    height: 50vh;
    min-height: 400px;
    background-image: url('../img/hero.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    overflow: hidden;
}

.page-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.5));
    z-index: 1;
}

.page-hero-content {
    position: relative;
    z-index: 2;
    text-align: left;
    color: #fff;
    animation: fadeInUp 1s ease forwards;
    max-width: 1200px;
    width: 100%;
    padding: 0 60px;
    margin: 0 auto;
}

.page-hero-subtitle {
    font-size: 12px;
    letter-spacing: 4px;
    font-weight: 300;
    margin-bottom: 15px;
    text-transform: uppercase;
    opacity: 0.9;
}

.page-hero-title {
    font-size: 64px;
    font-weight: 300;
    letter-spacing: 6px;
    line-height: 1.2;
    margin: 0;
    text-transform: capitalize;
}

/* Gallery Page Section */
.gallery-page-section {
    padding: 80px 0;
    background-color: #fff;
}

.gallery-page-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.gallery-header {
    text-align: center;
    margin-bottom: 60px;
}

.gallery-label {
    font-size: 12px;
    letter-spacing: 3px;
    color: #5eb3c5;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.gallery-title {
    font-size: 48px;
    font-weight: 300;
    color: #333;
    margin: 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 4/3;
    border-radius: 8px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease, filter 0.5s ease;
}

.gallery-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(26, 42, 74, 0.8);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.gallery-item:hover::before {
    opacity: 1;
}

.gallery-item:hover img {
    transform: scale(1.15);
}

.gallery-item::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 60px;
    height: 60px;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="60" height="60" viewBox="0 0 24 24" fill="none" stroke="white" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M1 12s4-8 11-8 11 8 11 8-4 8-11 8-11-8-11-8z"/><circle cx="12" cy="12" r="3"/></svg>');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0;
    transition: all 0.4s ease;
    pointer-events: none;
    z-index: 2;
}

.gallery-item:hover::after {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    animation: fadeIn 0.3s ease;
}

.lightbox.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-content {
    max-width: 90%;
    max-height: 85vh;
    object-fit: contain;
    animation: zoomIn 0.3s ease;
}

@keyframes zoomIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 40px;
    color: #fff;
    font-size: 45px;
    font-weight: 300;
    cursor: pointer;
    transition: color 0.3s ease;
    z-index: 10000;
}

.lightbox-close:hover {
    color: #5eb3c5;
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    padding: 16px;
    user-select: none;
    transition: all 0.3s ease;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-prev {
    left: 30px;
}

.lightbox-next {
    right: 30px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: #5eb3c5;
    transform: translateY(-50%) scale(1.1);
}

.lightbox-caption {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    font-size: 16px;
    text-align: center;
    background: rgba(0, 0, 0, 0.7);
    padding: 10px 20px;
    border-radius: 5px;
}

/* Contact Page Section */
.contact-page-section {
    padding: 80px 0;
    background-color: #fff;
}

.contact-page-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

/* Left Side - Info */
.contact-page-info {
    padding-right: 20px;
}

.contact-page-title {
    font-size: 36px;
    font-weight: 300;
    color: #1a2a4a;
    margin-bottom: 25px;
    letter-spacing: 1px;
}

.contact-page-description {
    font-size: 15px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 40px;
}

.contact-info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 35px;
    align-items: flex-start;
}

.contact-icon {
    flex-shrink: 0;
}

.contact-info-details {
    flex: 1;
}

.contact-info-label {
    font-size: 13px;
    color: #999;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-info-value {
    font-size: 20px;
    color: #5eb3c5;
    font-weight: 400;
    line-height: 1.6;
    margin: 0;
}

/* Right Side - Form */
.contact-page-form {
    background-color: #fff;
}

.contact-form-title {
    font-size: 36px;
    font-weight: 300;
    color: #1a2a4a;
    margin-bottom: 30px;
    letter-spacing: 1px;
}

.contact-page-form-fields {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

.contact-page-form-fields .form-group {
    margin: 0;
}

.contact-page-form-fields input,
.contact-page-form-fields textarea {
    width: 100%;
    padding: 15px 18px;
    border: 1px solid #ddd;
    font-size: 14px;
    color: #333;
    background-color: #fff;
    transition: all 0.3s ease;
    font-family: Arial, Helvetica, sans-serif;
}

.contact-page-form-fields input:focus,
.contact-page-form-fields textarea:focus {
    outline: none;
    border-color: #5eb3c5;
    box-shadow: 0 0 0 3px rgba(94, 179, 197, 0.1);
}

.contact-page-form-fields textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-send-btn {
    padding: 16px 45px;
    background-color: #5eb3c5;
    color: #fff;
    border: none;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    width: fit-content;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.contact-send-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: #1a2a4a;
    transition: left 0.3s ease;
    z-index: -1;
}

.contact-send-btn:hover::before {
    left: 0;
}

.contact-send-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(94, 179, 197, 0.3);
}

/* Booking Section */
.booking-section {
    padding: 80px 0;
    background-color: #f5f5f5;
}

.booking-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.booking-header {
    text-align: center;
    margin-bottom: 60px;
}

.booking-main-title {
    font-size: 42px;
    font-weight: 300;
    color: #1a3b5d;
    margin-bottom: 15px;
}

.booking-subtitle {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
}

.booking-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

/* Left Side - Form */
.booking-form-side {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.booking-section-box {
    background-color: #fff;
    padding: 35px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.booking-section-title {
    font-size: 18px;
    font-weight: 600;
    color: #1a3b5d;
    margin-bottom: 25px;
    letter-spacing: 0.5px;
}

.booking-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.booking-form-row:last-child {
    margin-bottom: 0;
}

.booking-form-group {
    display: flex;
    flex-direction: column;
}

.booking-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;
    color: #666;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.booking-input,
.booking-select,
.booking-textarea {
    padding: 14px 16px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    color: #333;
    transition: all 0.3s ease;
    font-family: Arial, Helvetica, sans-serif;
}

.booking-input:focus,
.booking-select:focus,
.booking-textarea:focus {
    outline: none;
    border-color: #5eb3c5;
    box-shadow: 0 0 0 3px rgba(94, 179, 197, 0.1);
}

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

.booking-submit-btn {
    width: 100%;
    padding: 16px 30px;
    background-color: #5eb3c5;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.booking-submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: #1a2a4a;
    z-index: -1;
    transition: left 0.4s ease;
}

.booking-submit-btn:hover::before {
    left: 0;
}

.booking-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(61, 90, 77, 0.3);
}

.booking-submit-btn svg {
    flex-shrink: 0;
}

/* Right Side - Info */
.booking-info-side {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.booking-hotel-image {
    width: 100%;
    height: 300px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.booking-hotel-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.booking-hotel-image:hover img {
    transform: scale(1.05);
}

.booking-why-choose {
    background-color: #fff;
    padding: 35px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.booking-why-title {
    font-size: 20px;
    font-weight: 600;
    color: #1a3b5d;
    margin-bottom: 25px;
}

.booking-feature {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f0f0f0;
}

.booking-feature:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.booking-feature-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.booking-feature-text h4 {
    font-size: 15px;
    font-weight: 600;
    color: #1a3b5d;
    margin-bottom: 5px;
}

.booking-feature-text p {
    font-size: 13px;
    color: #666;
    line-height: 1.6;
}

.booking-additional-info {
    background-color: #fff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.booking-info-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: #333;
}

.booking-info-item svg {
    color: #5eb3c5;
    flex-shrink: 0;
}

/* Room Detail Page */
.room-detail-section {
    padding: 80px 0;
    background-color: #f8f8f8;
}

.room-detail-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
}

/* Left Side - Room Info */
.room-detail-info {
    background-color: #fff;
    padding: 50px;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

.room-detail-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.room-detail-badge {
    font-size: 11px;
    letter-spacing: 2px;
    color: #888;
    text-transform: uppercase;
    font-weight: 600;
}

.room-detail-rating {
    display: flex;
    gap: 5px;
}

.room-detail-rating span {
    color: #daa520;
    font-size: 16px;
}

.room-detail-title {
    font-size: 42px;
    font-weight: 300;
    color: #1a3b5d;
    margin-bottom: 30px;
    line-height: 1.2;
}

.room-detail-description {
    margin-bottom: 40px;
}

.room-detail-description p {
    font-size: 15px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 20px;
}

.room-detail-description p:last-child {
    margin-bottom: 0;
}

/* Check-in/Check-out */
.room-detail-check {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
    padding: 30px 0;
    border-top: 1px solid #e5e5e5;
    border-bottom: 1px solid #e5e5e5;
}

.check-item h3 {
    font-size: 18px;
    font-weight: 600;
    color: #1a3b5d;
    margin-bottom: 15px;
}

.check-item ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.check-item li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: #666;
    margin-bottom: 12px;
    line-height: 1.6;
}

.check-item li:last-child {
    margin-bottom: 0;
}

.check-item li svg {
    flex-shrink: 0;
    margin-top: 3px;
}

/* Special Instructions, Pets, Children */
.room-detail-special,
.room-detail-pets,
.room-detail-children {
    margin-bottom: 35px;
}

.room-detail-special h3,
.room-detail-pets h3,
.room-detail-children h3 {
    font-size: 18px;
    font-weight: 600;
    color: #1a3b5d;
    margin-bottom: 15px;
}

.room-detail-special p,
.room-detail-pets p,
.room-detail-children p {
    font-size: 14px;
    line-height: 1.8;
    color: #666;
}

/* Check Now Button */
.room-detail-check-btn {
    display: inline-block;
    padding: 16px 40px;
    background-color: #5eb3c5;
    color: #fff;
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    border-radius: 4px;
    transition: all 0.3s ease;
    margin-top: 20px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.room-detail-check-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: #1a2a4a;
    z-index: -1;
    transition: left 0.4s ease;
}

.room-detail-check-btn:hover::before {
    left: 0;
}

.room-detail-check-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(61, 90, 77, 0.3);
}

/* Right Side - Amenities */
.room-detail-amenities {
    background-color: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    height: fit-content;
    position: sticky;
    top: 100px;
}

.amenities-title {
    font-size: 24px;
    font-weight: 600;
    color: #1a3b5d;
    margin-bottom: 30px;
}

.amenities-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.amenity-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    border-radius: 6px;
    background-color: #f8f8f8;
    transition: all 0.3s ease;
}

.amenity-item:hover {
    background-color: #e8f5f7;
    transform: translateX(5px);
}

.amenity-item svg {
    flex-shrink: 0;
}

.amenity-item span {
    font-size: 15px;
    color: #333;
    font-weight: 500;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .navbar .container {
        flex-wrap: wrap;
    }

    .mobile-toggle {
        display: flex;
    }

    .navbar-menu {
        display: none;
        width: 100%;
        flex-direction: column;
        gap: 0;
        margin-top: 20px;
        background-color: #f8f8f8;
        padding: 10px;
        border-radius: 5px;
        order: 3;
    }

    .navbar-menu.active {
        display: flex;
    }

    .navbar-menu > li {
        width: 100%;
        border-bottom: 1px solid #ddd;
    }

    .navbar-menu > li:last-child {
        border-bottom: none;
    }

    .navbar-menu > li > a {
        padding: 15px 10px;
    }

    /* Book Now Button in Mobile */
    .btn-book-now {
        display: block;
        text-align: center;
        margin: 10px;
        border-radius: 5px;
    }

    /* Hero Section Mobile */
    .hero-slideshow {
        height: 70vh;
    }

    .hero-title {
        font-size: 36px;
        letter-spacing: 4px;
    }

    .hero-subtitle {
        font-size: 11px;
        letter-spacing: 3px;
    }

    .hero-btn {
        padding: 12px 30px;
        font-size: 11px;
    }

    .slide-dots {
        bottom: 20px;
    }

    /* About Section Mobile */
    .about-section {
        margin-top: 40px;
        padding: 60px 0;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-text {
        padding-right: 0;
    }

    .about-title {
        font-size: 32px;
    }

    .reservation-info {
        padding: 20px;
    }

    .reservation-number {
        font-size: 22px;
    }

    .image-grid {
        margin-top: -150px;
        grid-template-columns: 140px 1fr;
        grid-template-rows: 120px 100px 120px;
        gap: 10px;
    }

    .image-item.large-top {
        grid-column: 1 / 2;
        grid-row: 1 / 3;
    }

    .image-item.large-right {
        grid-column: 2 / 3;
        grid-row: 1 / 2;
    }

    .image-item.small-left {
        grid-column: 1 / 2;
        grid-row: 3 / 4;
    }

    .image-item.large-bottom {
        grid-column: 2 / 3;
        grid-row: 2 / 4;
    }

    /* Rooms Section Mobile */
    .rooms-section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 32px;
    }

    .rooms-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .room-image {
        height: 400px;
    }

    .room-overlay {
        padding: 25px 20px 20px;
    }

    .room-title {
        font-size: 24px;
    }

    .room-amenities {
        gap: 10px;
    }

    .amenity-icon {
        width: 35px;
        height: 35px;
    }

    .room-details-btn {
        opacity: 1;
        transform: translateX(0);
    }

    /* Facilities Section Mobile */
    .facilities-section {
        padding: 60px 0;
    }

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

    .facilities-categories {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .facility-category {
        padding: 20px;
    }

    .category-title {
        font-size: 18px;
    }

    .facilities-subtitle {
        font-size: 20px;
    }

    /* Services Section Mobile */
    .services-section {
        padding: 60px 0;
    }

    .services-title {
        font-size: 32px;
    }

    .service-card {
        grid-template-columns: 1fr;
    }

    .service-card.service-reverse {
        grid-template-columns: 1fr;
    }

    .service-card.service-reverse .service-content {
        order: 0;
    }

    .service-content {
        padding: 40px 20px;
    }

    .service-title {
        font-size: 24px;
    }

    .service-image {
        height: 250px;
    }

    /* Testimonials Section Mobile */
    .testimonials-section {
        padding: 40px 0;
        background-attachment: scroll;
    }

    .testimonials-header {
        margin-bottom: 30px;
    }

    .testimonials-title {
        font-size: 32px;
    }

    .testimonials-description {
        font-size: 14px;
        padding: 0 10px;
    }

    .testimonial-avatar {
        width: 70px;
        height: 70px;
    }

    .testimonial-stars span {
        font-size: 14px;
    }

    .testimonial-name {
        font-size: 14px;
    }

    /* Facilities Section Mobile */
    .facilities-section {
        padding: 60px 0;
    }

    .facilities-title {
        font-size: 32px;
    }

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

    .facility-card {
        padding: 30px 20px;
    }

    .facility-title {
        font-size: 18px;
    }

    .facility-description {
        font-size: 13px;
    }

    /* Map Section Mobile */
    .map-section {
        padding: 50px 0;
    }

    .map-container iframe {
        height: 300px;
        border-radius: 4px;
    }

    /* Gallery Slider Mobile */
    .gallery-slider-section {
        padding: 40px 0;
    }

    .gallery-slide {
        width: 280px;
        height: 220px;
        margin-right: 15px;
    }

    /* Contact Form Section Mobile */
    .contact-form-section {
        background-attachment: scroll;
    }

    .contact-container {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .contact-info {
        padding: 40px 25px;
    }

    .contact-heading {
        font-size: 18px;
    }

    .reservation-contact {
        padding: 15px;
        margin-bottom: 30px;
    }

    .phone-icon svg {
        width: 30px;
        height: 30px;
    }

    .reservation-phone {
        font-size: 20px;
    }

    .brand-logos {
        justify-content: center;
        gap: 15px;
    }

    .brand-logo img {
        height: 25px;
    }

    .contact-form-wrapper {
        padding: 40px 25px;
    }

    .form-title {
        font-size: 24px;
    }

    .contact-form {
        gap: 15px;
    }

    /* Footer Mobile */
    .footer {
        padding: 40px 0 0;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 40px;
        padding-bottom: 30px;
    }

    .footer-title {
        font-size: 18px;
        margin-bottom: 20px;
    }

    .footer-description {
        font-size: 13px;
    }

    .language-btn {
        width: 100%;
        justify-content: center;
    }

    .footer-phone {
        font-size: 16px;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-bottom {
        padding: 20px 15px;
    }

    .footer-bottom p {
        font-size: 12px;
    }

    /* Gallery Page Mobile */
    .gallery-page-section {
        padding: 60px 0;
    }

    .gallery-header {
        margin-bottom: 40px;
    }

    .gallery-title {
        font-size: 32px;
    }

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

    .lightbox-content {
        max-width: 95%;
        max-height: 80vh;
    }

    .lightbox-close {
        top: 15px;
        right: 20px;
        font-size: 35px;
    }

    .lightbox-prev,
    .lightbox-next {
        font-size: 30px;
        width: 50px;
        height: 50px;
        padding: 12px;
    }

    .lightbox-prev {
        left: 10px;
    }

    .lightbox-next {
        right: 10px;
    }

    .lightbox-caption {
        bottom: 15px;
        font-size: 14px;
        padding: 8px 15px;
    }

    /* Contact Page Mobile */
    .contact-page-section {
        padding: 60px 0;
    }

    .contact-page-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .contact-page-info {
        padding-right: 0;
    }

    .contact-page-title,
    .contact-form-title {
        font-size: 28px;
    }

    .contact-page-description {
        font-size: 14px;
    }

    .contact-info-item {
        margin-bottom: 25px;
    }

    .contact-icon svg {
        width: 32px;
        height: 32px;
    }

    .contact-info-value {
        font-size: 18px;
    }

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

    .contact-send-btn {
        width: 100%;
        text-align: center;
    }

    /* Booking Section Mobile */
    .booking-section {
        padding: 50px 0;
    }

    .booking-main-title {
        font-size: 32px;
    }

    .booking-subtitle {
        font-size: 14px;
    }

    .booking-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .booking-section-box {
        padding: 25px;
    }

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

    .booking-hotel-image {
        height: 250px;
    }

    .booking-why-choose {
        padding: 25px;
    }

    .booking-why-title {
        font-size: 18px;
    }

    .booking-feature {
        margin-bottom: 15px;
        padding-bottom: 15px;
    }

    .booking-feature-text h4 {
        font-size: 14px;
    }

    .booking-feature-text p {
        font-size: 12px;
    }

    .booking-submit-btn {
        padding: 14px 25px;
        font-size: 11px;
    }

    /* Room Detail Mobile */
    .room-detail-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .room-detail-info {
        padding: 30px 25px;
    }

    .room-detail-title {
        font-size: 32px;
    }

    .room-detail-check {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .check-item h3 {
        font-size: 16px;
    }

    .check-item li {
        font-size: 13px;
    }

    .room-detail-special h3,
    .room-detail-pets h3,
    .room-detail-children h3 {
        font-size: 16px;
    }

    .room-detail-amenities {
        padding: 30px 25px;
        position: static;
    }

    .amenities-title {
        font-size: 20px;
    }

    .amenity-item {
        padding: 12px;
    }

    .amenity-item span {
        font-size: 14px;
    }

    /* Scroll to Top Mobile */
    .scroll-to-top {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
    }

    .scroll-to-top svg:first-child {
        width: 20px;
        height: 20px;
    }

    .progress-ring {
        width: 50px;
        height: 50px;
    }

    .progress-ring-circle {
        cx: 25;
        cy: 25;
        r: 22;
        stroke-dasharray: 138.23;
        stroke-dashoffset: 138.23;
    }

    /* WhatsApp Button Mobile */
    .whatsapp-button {
        bottom: 20px;
        left: 20px;
        width: 55px;
        height: 55px;
    }

    .whatsapp-button svg {
        width: 28px;
        height: 28px;
    }

    /* Page Hero Mobile */
    .page-hero {
        height: 40vh;
        min-height: 300px;
        background-attachment: scroll;
    }

    .page-hero-content {
        padding: 0 25px;
    }

    .page-hero-subtitle {
        font-size: 10px;
        letter-spacing: 3px;
        margin-bottom: 10px;
    }

    .page-hero-title {
        font-size: 40px;
        letter-spacing: 4px;
    }
}

/* ========================================
   Cookie Consent Banner & Preferences
======================================== */

/* Cookie Banner */
#cookieConsentBanner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #1a2a4a 0%, #2d4a6f 100%);
    color: #ffffff;
    padding: 25px 20px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    z-index: 10000;
    display: none;
    opacity: 0;
    transform: translateY(100%);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

#cookieConsentBanner.show {
    opacity: 1;
    transform: translateY(0);
}

.cookie-banner-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}

.cookie-banner-text {
    flex: 1;
    min-width: 300px;
}

.cookie-banner-text h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 10px;
}

.cookie-banner-text p {
    font-size: 14px;
    line-height: 1.6;
    color: #e0e0e0;
    margin: 0;
}

.cookie-banner-text a {
    color: #5eb3c5;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.cookie-banner-text a:hover {
    color: #7ec9d8;
}

.cookie-banner-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.cookie-btn {
    padding: 12px 28px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.cookie-btn-accept {
    background: linear-gradient(135deg, #5eb3c5 0%, #4a9db0 100%);
    color: #ffffff;
}

.cookie-btn-accept:hover {
    background: linear-gradient(135deg, #4a9db0 0%, #3d8a9d 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(94, 179, 197, 0.4);
}

.cookie-btn-reject {
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.cookie-btn-reject:hover {
    background: rgba(255, 255, 255, 0.1);
}

.cookie-btn-customize {
    background: transparent;
    color: #5eb3c5;
    border: 2px solid #5eb3c5;
}

.cookie-btn-customize:hover {
    background: rgba(94, 179, 197, 0.1);
    border-color: #7ec9d8;
    color: #7ec9d8;
}

.cookie-btn-close {
    background: transparent;
    color: #ffffff;
    border: none;
    padding: 8px;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.cookie-btn-close:hover {
    opacity: 1;
}

/* Cookie Preferences Modal */
#cookiePreferencesModal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 10001;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

#cookiePreferencesModal.show {
    opacity: 1;
}

.cookie-preferences-content {
    background: #ffffff;
    border-radius: 12px;
    max-width: 700px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

#cookiePreferencesModal.show .cookie-preferences-content {
    transform: scale(1);
}

.cookie-preferences-header {
    background: linear-gradient(135deg, #1a2a4a 0%, #2d4a6f 100%);
    color: #ffffff;
    padding: 25px 30px;
    border-radius: 12px 12px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cookie-preferences-header h2 {
    font-size: 24px;
    font-weight: 600;
    margin: 0;
}

.cookie-preferences-body {
    padding: 30px;
}

.cookie-preference-item {
    padding: 20px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.cookie-preference-item:hover {
    border-color: #5eb3c5;
    box-shadow: 0 2px 8px rgba(94, 179, 197, 0.1);
}

.cookie-preference-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.cookie-preference-header h3 {
    font-size: 18px;
    font-weight: 600;
    color: #1a2a4a;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.cookie-preference-badge {
    font-size: 10px;
    padding: 3px 8px;
    border-radius: 4px;
    background: #5eb3c5;
    color: #ffffff;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cookie-preference-badge.always-active {
    background: #95a5a6;
}

.cookie-preference-description {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
    margin: 0;
}

/* Toggle Switch */
.cookie-toggle {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 26px;
}

.cookie-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

.cookie-toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: 0.4s;
    border-radius: 26px;
}

.cookie-toggle-slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: 0.4s;
    border-radius: 50%;
}

.cookie-toggle input:checked + .cookie-toggle-slider {
    background-color: #5eb3c5;
}

.cookie-toggle input:checked + .cookie-toggle-slider:before {
    transform: translateX(24px);
}

.cookie-toggle input:disabled + .cookie-toggle-slider {
    opacity: 0.5;
    cursor: not-allowed;
}

.cookie-preferences-footer {
    padding: 20px 30px;
    border-top: 1px solid #e0e0e0;
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    background: #f8f9fa;
    border-radius: 0 0 12px 12px;
}

.cookie-btn-save {
    background: linear-gradient(135deg, #5eb3c5 0%, #4a9db0 100%);
    color: #ffffff;
}

.cookie-btn-save:hover {
    background: linear-gradient(135deg, #4a9db0 0%, #3d8a9d 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(94, 179, 197, 0.4);
}

/* Cookie Icon */
.cookie-icon {
    font-size: 24px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .cookie-banner-content {
        flex-direction: column;
        align-items: stretch;
        gap: 20px;
    }

    .cookie-banner-text {
        min-width: 100%;
    }

    .cookie-banner-buttons {
        flex-direction: column;
        width: 100%;
    }

    .cookie-btn {
        width: 100%;
        justify-content: center;
    }

    .cookie-preferences-content {
        margin: 10px;
    }

    .cookie-preferences-header {
        padding: 20px;
    }

    .cookie-preferences-header h2 {
        font-size: 20px;
    }

    .cookie-preferences-body {
        padding: 20px;
    }

    .cookie-preference-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .cookie-preferences-footer {
        flex-direction: column;
        padding: 15px 20px;
    }

    .cookie-preferences-footer .cookie-btn {
        width: 100%;
    }
}
