﻿* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    color: #FAFAFA;
    font-family: 'Jost', sans-serif;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Lora', serif;
    font-weight: 600;
}

p, a, li, button, input, label {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    font-size: 1.1rem;
}

/* Accessibility Assistance Section */
.accessibility-assistance {
    background: #356666;
    color: #fff;
    text-align: center;
    font-size: 1.2rem;
    font-weight: bold;
    padding: 15px;
    border-top: 2px solid #fff;
}

.accessibility-assistance a {
    color: #f3d67f;
    text-decoration: none;
    font-weight: bold;
}

.accessibility-assistance a:hover {
    color: white;
    text-decoration: underline;
}

/* Reservation Section */
.reservation-section {
    text-align: center;
}

.reservation-box {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    padding: 20px;
    background: #132F30;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: visible;
}

@keyframes gradientBG {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.reservation-row-container {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    align-items: center;
}

.reservation-title {
    text-align: center;
    margin-bottom: 20px;
    color: white;
    font-size: 24px;
    font-weight: bold;
    border-bottom: 2px solid #757f9f;
    padding-bottom: 10px;
}

.reservation-row {
    flex: 1;
    min-width: 180px;
}

.reservation-input {
    width: 100%;
    padding: 10px;
    margin: 5px 0;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 16px;
    text-align: center;
    box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.reservation-input:focus {
    border-color: #132F30;
    box-shadow: 0 0 5px rgba(255, 215, 0, 0.5);
    outline: none;
}

.reservation-btn {
    padding: 12px 20px;
    background: #f3d67f;
    color: black;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.reservation-btn:hover {
    background: white;
}

label {
    color: white;
}

.reservation-label {
    color: white;
}

@media (max-width: 768px) {
    .reservation-row-container {
        flex-direction: column;
        gap: 10px;
    }

    .reservation-row {
        min-width: 100%;
    }

    .reservation-btn {
        width: 100%;
    }
}

/* Sections Header */
.section-header h4 {
    font-size: 32px;
    color: #0f4c4b;
    text-transform: capitalize;
    text-align: center;
    font-weight: 600;
    position: relative;
    padding-bottom: 15px;
}

.section-header .title {
    font-size: 40px;
    color: #ffffff;
    text-transform: capitalize;
    text-align: center;
    font-weight: 500;
    position: relative;
    padding-bottom: 15px;
}

.section-header h1 {
    font-size: 50px !important;
    color: #ffffff;
    text-transform: capitalize;
    text-align: center;
    font-weight: 600;
    position: relative;
    padding-bottom: 15px;
    animation: floatTitle 6s ease-in-out infinite;
}

.section-header p {
    text-align: center;
    color: white;
    font-size: 19px;
    animation: floatText 8s ease-in-out infinite;
}

p.para {
    color: aliceblue;
}

/* Animations */
@keyframes floatTitle {
    0%, 100% {
        transform: translateY(0) rotate(-1deg);
        text-shadow: 0 5px 15px rgba(249, 185, 51, 0.4);
    }
    50% {
        transform: translateY(-15px) rotate(1deg);
        text-shadow: 0 15px 25px rgba(249, 185, 51, 0.6);
    }
}

@keyframes floatText {
    0%, 100% {
        transform: translateY(0) rotate(0.5deg);
        opacity: 1;
    }
    50% {
        transform: translateY(-10px) rotate(-0.5deg);
        opacity: 0.9;
    }
}

.section-header h1::before,
.section-header h1::after {
    content: "";
    position: absolute;
    display: block;
    left: 50%;
    transform: translateX(-50%);
    animation: floatLine 6s ease-in-out infinite;
}

.section-header h1::before {
    width: 120px;
    height: 1px;
    background: #ddd;
    bottom: 1px;
}

.section-header h1::after {
    width: 40px;
    height: 3px;
    background: #356666;
    bottom: 0;
}

@keyframes floatLine {
    0%, 100% { transform: translate(-50%, 0); }
    50% { transform: translate(-50%, -5px); }
}

/* Section with background */
.section-bg {
    background: #f7f7f7;
}

/* Breadcrumbs */
.breadcrumbs {
    padding: 20px 0;
    background-color: #f7f7f7;
    min-height: 40px;
    margin-top: 80px;
}

.breadcrumbs h2 {
    font-size: 24px;
    margin-bottom: 0;
    font-weight: 400;
}

.breadcrumbs ol {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 14px;
}

.breadcrumbs ol li+li {
    padding-left: 10px;
}

.breadcrumbs ol li+li::before {
    display: inline-block;
    padding-right: 10px;
    color: #6c757d;
    content: "/";
}

/* Featured Services Section */
#featured-services .box {
    padding: 30px 20px;
}

#featured-services .box-bg {
    background-image: linear-gradient(0deg, #781e20 0%, #781e20 50%, #781e20 100%);
}

#featured-services i {
    color: #f3d67f;
    font-size: 48px;
    display: inline-block;
    line-height: 1;
    animation: floatIcon 5s ease-in-out infinite;
}

#featured-services .title {
    font-weight: 400;
    margin: 15px 0;
    font-size: 18px;
    animation: floatTitleSmall 7s ease-in-out infinite;
}

#featured-services .title a {
    color: #fff;
    transition: color 0.3s ease;
}

#featured-services .title a:hover {
    color: #f3d67f;
}

#featured-services p {
    font-size: 14px;
    line-height: 24px;
    color: #fff;
    margin-bottom: 0;
    letter-spacing: 1px;
    animation: floatTextSmall 9s ease-in-out infinite;
}

/* Featured Services Animations */
@keyframes floatIcon {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes floatTitleSmall {
    0%, 100% { transform: translateY(0) rotate(0.5deg); }
    50% { transform: translateY(-8px) rotate(-0.5deg); }
}

@keyframes floatTextSmall {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

/* About Us Section */

#about {
    background: linear-gradient(rgba(20, 20, 20, 0.85), rgba(10, 10, 10, 0.9)), 
                url("../images/about-bg.jpg") center/cover no-repeat fixed;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

#about .container {
    position: relative;
    z-index: 10;
}

#about .about-col {
    background: rgba(255, 255, 255, 0.96);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    margin-bottom: 30px;
    transition: all 0.4s ease;
    overflow: hidden;
    border: none;
    position: relative;
}

#about .about-col:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.35);
}

#about .about-col::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.05);
    z-index: -1;
    border-radius: 12px;
}

#about .about-col .img {
    position: relative;
    overflow: hidden;
    height: 220px;
}

#about .about-col .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

#about .about-col .img::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.3), transparent);
}

#about .about-col .icon {
    width: 70px;
    height: 70px;
    position: absolute;
    background: linear-gradient(135deg, #f9b933, #e67e22);
    border-radius: 50%;
    border: 4px solid #fff;
    left: calc(50% - 35px);
    bottom: -35px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    z-index: 11;
}

#about .about-col .content {
    padding: 60px 30px 30px;
    position: relative;
}

#about .about-col h2 {
    color: #222;
    font-weight: 700;
    font-size: 24px;
    margin-bottom: 20px;
    text-align: center;
    letter-spacing: 0.5px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

#about .about-col p {
    color: #444;
    line-height: 1.8;
    font-size: 16px;
    margin-bottom: 0;
    text-align: center;
}

#about .about-col h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: #f9b933;
    margin: 15px auto;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* Services Section */
#services {
    background: #fff;
    background-size: cover;
    padding: 60px 0 40px 0;
}

#services .box {
    margin-bottom: 30px;
    animation: floatServiceBox 9s ease-in-out infinite;
}

#services .icon {
    float: left;
}

#services .icon i {
    color: #f9b933;
    font-size: 36px;
    line-height: 0;
    transition: 0.5s;
    animation: floatServiceIcon 6s ease-in-out infinite;
}

#services .title {
    margin-left: 80px;
    font-weight: 500;
    margin-bottom: 15px;
    font-size: 16px;
    color: #000;
    animation: floatServiceTitle 7s ease-in-out infinite;
}

#services .title a {
    color: #111;
    transition: color 0.3s ease;
}

#services .box:hover .title a {
    color: #f9b933;
}

#services .description {
    font-size: 14px;
    margin-left: 80px;
    line-height: 24px;
    margin-bottom: 0;
    animation: floatServiceDesc 8s ease-in-out infinite;
}

/* Services Animations */
@keyframes floatServiceBox {
    0%, 100% { transform: translateY(0) rotate(0.5deg); }
    50% { transform: translateY(-8px) rotate(-0.5deg); }
}

@keyframes floatServiceIcon {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes floatServiceTitle {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

@keyframes floatServiceDesc {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-3px); }
}

/* Responsive Adjustments */
@media (max-width: 1200px) {
    .section-header h1 { font-size: 42px; }
    .section-header .title { font-size: 36px; }
    #about { padding: 50px; }
}

@media (max-width: 992px) {
    .section-header h1 { font-size: 38px; }
    .section-header .title { font-size: 32px; }
    .section-header p { font-size: 17px; }
    #about { padding: 40px; }
    #featured-services .box { padding: 25px 15px; }
}

@media (max-width: 768px) {
    .section-header h1 { font-size: 32px; }
    .section-header .title { font-size: 28px; }
    .section-header h4 { font-size: 26px; }
    .section-header p { font-size: 16px; }
    .breadcrumbs { margin-top: 60px; padding: 15px 0; }
    .breadcrumbs h2 { font-size: 20px; }
    .breadcrumbs ol { font-size: 13px; }
    #about { padding: 30px; }
    #about .about-col h2 { font-size: 18px; margin: 30px 0 10px 0; }
    #about .about-col p { font-size: 13px; padding: 0 15px 15px 15px; }
    #services { padding: 40px 0 30px 0; }
    #services .icon i { font-size: 32px; }
    #services .title { margin-left: 60px; font-size: 15px; }
    #services .description { margin-left: 60px; font-size: 13px; }
}

@media (max-width: 576px) {
    .section-header h1 { font-size: 28px; padding-bottom: 10px; }
    .section-header .title { font-size: 24px; }
    .section-header h4 { font-size: 22px; }
    .section-header p { font-size: 15px; }
    .section-header h1::before { width: 100px; }
    .section-header h1::after { width: 35px; }
    .breadcrumbs { margin-top: 50px; padding: 10px 0; }
    .breadcrumbs h2 { font-size: 18px; }
    .breadcrumbs ol { font-size: 12px; }
    #featured-services .box { padding: 20px 10px; }
    #featured-services i { font-size: 40px; }
    #featured-services .title { font-size: 16px; }
    #featured-services p { font-size: 13px; }
    #about { padding: 20px; }
    #about .about-col .icon { width: 50px; height: 50px; left: calc(50% - 25px); bottom: -25px; }
    #about .about-col i { font-size: 22px; }
    #services { padding: 30px 0 20px 0; }
    #services .icon { float: none; margin-bottom: 10px; }
    #services .title,
    #services .description { margin-left: 0; }
    #services .box { margin-bottom: 20px; }
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: #f3d67f;
    color: #f3d67f;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    font-size: 24px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    z-index: 1000;
    visibility: hidden;
    opacity: 0;
}

.back-to-top:hover {
    background-color: #f3d67f;
    transform: translateY(-5px);
}

.back-to-top i {
    color: White;
}

.back-to-top.visible {
    visibility: visible;
    opacity: 1;
}

/* Mobile & Tablet Header */
.mobile-header-row {
    display: none;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    position: relative;
    padding: 12px 15px;
    transform: translateY(2px);
}

.mobile-book-btn {
    background: #356666;
    color: white;
    padding: 12px 25px;
    border-radius: 8px;
    font-weight: bold;
    text-decoration: none;
    font-size: 16px;
    text-transform: uppercase;
    white-space: nowrap;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    position: absolute;
    left: 50%;
    transform: translateX(-50%) translateY(2px);
}

.mobile-logo {
    z-index: 1;
    transform: translateY(2px);
}

.mobile-logo img {
    height: 45px;
    width: auto;
}

/* Calendar Popup */
.ui-datepicker,
.calendar-popup, 
.datepicker-dropdown {
    position: absolute !important;
    z-index: 9999 !important;
    background: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Main Slider */
.slider-container {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.slider-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.slider-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 1.5s ease, transform 1.5s ease;
    transform: scale(1.1);
    background-size: cover;
    background-position: center;
}

.slider-slide.active {
    opacity: 1;
    z-index: 1;
    transform: scale(1);
}

.slider-content {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: rgba(0, 0, 0, 0.3);
}

.slide-caption {
    max-width: 800px;
    padding: 20px;
    transform: translateY(50px);
    opacity: 0;
    transition: all 0.8s ease 0.3s;
}

.slider-slide.active .slide-caption {
    transform: translateY(0);
    opacity: 1;
}

.slide-title {
    color: #fff;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.6);
}

.slide-description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.4rem;
    line-height: 1.6;
    margin-bottom: 30px;
}

/* Slider Navigation */
.slider-nav {
    position: absolute;
    bottom: 30px;
    left: 0;
    right: 0;
    z-index: 10;
    text-align: center;
}

.slider-dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    margin: 0 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot.active {
    background: #fff;
    transform: scale(1.3);
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
}

.slider-arrow:hover {
    background: rgba(0, 0, 0, 0.8);
    transform: translateY(-50%) scale(1.1);
}

.arrow-left {
    left: 30px;
}

.arrow-right {
    right: 30px;
}

/* Booking CTA */
.booking-cta {
    margin-top: 20px;
}

.cta-btn {
    background: #f3d67f;
    color: Black;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.cta-btn:hover {
    background: #fff;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    color: #000;
}

/* Responsive Adjustments */
@media (min-width: 993px) {
    .mobile-header-row,
    .mobile-book-btn {
        display: none !important;
    }
}

@media (max-width: 992px) {
    .mobile-header-row {
        display: flex;
    }
    .desktop-logo,
    .desktop-nav {
        display: none !important;
    }
}

@media (max-width: 768px) {
    .mobile-book-btn {
        padding: 10px 20px;
        font-size: 15px;
    }
    .mobile-logo img {
        height: 40px;
    }
    .slider-container {
        height: 80vh;
    }
    .slide-title {
        font-size: 2rem;
    }
    .slider-arrow {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .mobile-header-row {
        padding: 10px;
    }
    .mobile-book-btn {
        padding: 8px 15px;
        font-size: 14px;
        transform: translateX(-25%) translateY(20px);
    }
    .mobile-logo img {
        height: 35px;
    }
    .hamburger {
        font-size: 24px;
    }
    .slider-container {
        height: 70vh;
    }
    .slide-title {
        font-size: 1.8rem;
        margin-bottom: 15px;
    }
    .slide-description {
        font-size: 1rem;
        margin-bottom: 20px;
    }
    .cta-btn {
        padding: 10px 25px;
        font-size: 0.9rem;
    }
    .slider-arrow {
        width: 40px;
        height: 40px;
    }
    .arrow-left {
        left: 15px;
    }
    .arrow-right {
        right: 15px;
    }
}

/* 3D Section Styles */
.three-d-section {
    perspective: 1000px;
    overflow: hidden;
}

.container-3d {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* 3D Button */
.btn-3d-container {
    text-align: center;
    perspective: 1000px;
}

.btn-3d {
    position: relative;
    width: 200px;
    height: 60px;
    border: none;
    background: transparent;
    color: white;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transform-style: preserve-3d;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 12px;
    outline: none;
}

.btn-3d.flipped {
    transform: rotateX(180deg);
}

.btn-3d .front,
.btn-3d .back {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    backface-visibility: hidden;
    border-radius: 12px;
    top: 0;
    left: 0;
}

.btn-3d .front {
    background: #356666;
    transform: translateZ(30px);
}

.btn-3d .back {
    background: #356666;
    transform: rotateX(180deg) translateZ(30px);
}

/* 3D Content Panel */
.content-3d-panel {
    display: none;
    transform-style: preserve-3d;
    transition: all 0.5s ease;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px;
}

.content-visible {
    display: block;
    animation: slideUp 0.8s ease forwards;
}

.scene-3d {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 40px;
  justify-content: center;
}

/* 3D Cards */
.card-3d {
  flex: 1 1 calc(50% - 30px);
  min-width: 300px;
  max-width: 600px;
  min-height: 400px;
  position: relative;
  transform-style: preserve-3d;
  transition: transform 1.5s cubic-bezier(0.4, 0.2, 0.2, 1);
  cursor: pointer;
  margin-bottom: 30px;
}

.card-3d:hover {
  transform: rotateY(15deg) rotateX(5deg) translateZ(20px);
}

.card-3d.rotated {
  transform: rotateY(180deg);
}

.card-face {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-sizing: border-box;
  transition: all 0.8s cubic-bezier(0.4, 0.2, 0.2, 1);
}

.card-front {
  background: white;
  border: 1px solid rgba(74, 107, 255, 0.2);
}

.card-back {
  background-color: #2c328d;
  color: white;
  transform: rotateY(180deg);
}

/* 3D Typography */
.parallax-title-3d {
  font-size: clamp(22px, 3vw, 28px);
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
  color: #ef2127;
}

.card-back .parallax-title-3d {
  color: #ef2127;
}

.parallax-title-3d:after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 50px;
  height: 3px;
  background: #2c328d;
}

.card-back .parallax-title-3d:after {
  background: white;
}

.parallax-desc-3d p {
  font-size: clamp(14px, 2vw, 16px);
  line-height: 1.6;
  margin-bottom: 15px;
  color: #000000;
  word-break: break-word;
  overflow-wrap: break-word;
}

.card-back .parallax-desc-3d p {
  color: white;
}

/* 3D Facts Section */
.facts-3d-container {
  background: white;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.05);
  transform: translateZ(20px);
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
}

.facts-title-3d {
  text-align: center;
  margin-bottom: 30px;
  font-size: 24px;
  color: #333;
}

.facts-grid-3d {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

.fact-box-3d {
  background: #f8faff;
  padding: 25px;
  border-radius: 10px;
  transition: all 0.3s ease;
  transform-style: preserve-3d;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.fact-box-3d:hover {
  background: #2c328d !important;
  transform: translateY(-5px) translateZ(10px);
  box-shadow: 0 10px 25px rgba(255, 215, 0, 0.3);
}

.fact-box-3d:hover p,
.fact-box-3d:hover .fact-icon-3d {
  color: white !important;
}

.fact-icon-3d {
  font-size: 30px;
  margin-bottom: 15px;
  color: #2c328d;
  transition: color 0.3s ease;
}

.fact-box-3d p {
  font-size: 15px;
  line-height: 1.5;
  color: #000000;
  margin: 0;
  transition: color 0.3s ease;
}

/* Animations */
@keyframes slideUp {
  from { opacity: 0; transform: translateY(50px); }
  to { opacity: 1; transform: translateY(0); }
}

/*--------------------------------------------------------------
# Responsive Adjustments
--------------------------------------------------------------*/
@media (max-width: 1024px) {
  .parallax-desc-3d p {
    font-size: clamp(15px, 2vw, 16px);
  }
}

@media (max-width: 820px) {
  .card-3d {
    min-height: 350px;
  }
  .card-face {
    padding: 20px;
  }
}

@media (max-width: 768px) {
  .card-3d {
    flex: 1 1 100%;
    max-width: 100%;
  }
  .facts-grid-3d {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .card-3d {
    min-height: 300px;
  }
  .card-face {
    padding: 15px;
  }
  .parallax-title-3d {
    font-size: 20px;
  }
  .facts-3d-container {
    padding: 25px;
  }
}

@media (max-width: 360px) {
  .card-3d {
    min-height: 280px;
  }
  .parallax-title-3d {
    font-size: 18px;
  }
  .parallax-desc-3d p {
    font-size: 14px;
  }
}


/*--------------------------------------------------------------
# Amenities Section
--------------------------------------------------------------*/


/*--------------------------------------------------------------
# Elegant Photo Gallery
--------------------------------------------------------------*/
.elegant-photo-gallery {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 60px 0;
}

.section-video-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  background: #000 url('gallery/images/video-poster.jpg') no-repeat center center;
  background-size: cover;
}

.gallery-content-container {
  background-color: rgba(255, 255, 255, 0.9);
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.gallery-title {
  text-align: center;
  font-size: 2.5rem;
  color: #2c3e50;
  margin-bottom: 30px;
}

.gallery-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.gallery-main {
  position: relative;
  height: 500px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.main-image {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: background-image 0.5s ease;
}

.image-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 15px;
  text-align: center;
  font-size: 1.2rem;
  text-transform: capitalize;
}

.gallery-thumbnails-container {
  padding-bottom: 10px;
  width: 100%;
  -webkit-overflow-scrolling: touch;
}

.gallery-thumbnails {
  display: flex;
  gap: 15px;
  padding: 10px 0;
  width: max-content;
  min-width: 100%;
}

.thumbnail {
  min-width: 150px;
  height: 100px;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease;
  background-size: cover;
  background-position: center;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
  flex-shrink: 0;
}

.thumbnail:hover, 
.thumbnail.active {
  transform: scale(1.05);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.thumbnail.active {
  border: 3px solid #3498db;
}

.thumbnail-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 8px;
  text-align: center;
  font-size: 0.9rem;
  text-transform: capitalize;
}

/* Scrollbar styling */
.gallery-thumbnails-container::-webkit-scrollbar {
  height: 5px;
}

.gallery-thumbnails-container::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}

.gallery-thumbnails-container::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 10px;
}

/*--------------------------------------------------------------
# Responsive Adjustments
--------------------------------------------------------------*/
@media (max-width: 1024px) {
  .gallery-thumbnails {
    justify-content: flex-start;
  }
}

@media (max-width: 768px) {
  .amenities-section {
    padding: 80px 0 100px;
  }
  
  .section-title {
    font-size: 2.2rem;
  }
  
  .section-description {
    font-size: 1rem;
  }
  
  .amenities-grid {
    grid-template-columns: 1fr;
  }
  
  .amenity-item {
    padding: 25px;
  }
  
  .amenities-container {
    transform: translateY(5%);
  }
  
  .gallery-content-container {
    padding: 20px;
  }
  
  .gallery-title {
    font-size: 2rem;
  }
  
  .gallery-main {
    height: 350px;
  }
  
  .thumbnail {
    min-width: 120px;
    height: 80px;
  }
  
  .section-video-background {
    display: inline !important;
    opacity: 1 !important;
  }
}

@media (max-width: 480px) {
  .section-title {
    font-size: 1.8rem;
  }
  
  .amenity-icon {
    font-size: 2rem;
    min-width: 50px;
  }
  
  .amenity-name {
    font-size: 1.2rem;
  }
  
  .amenities-container {
    transform: translateY(3%);
  }
  
  .gallery-title {
    font-size: 1.8rem;
  }
  
  .gallery-main {
    height: 300px;
  }
  
  .image-caption {
    font-size: 1rem;
    padding: 10px;
  }
  
  .thumbnail {
    min-width: 100px;
    height: 70px;
  }
  
  .thumbnail-overlay {
    font-size: 0.8rem;
    padding: 5px;
  }
}



 /*--------------------------------------------------------------
# Font Awesome Icons
--------------------------------------------------------------*/
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css');

/*--------------------------------------------------------------
# Unique Room Slider
--------------------------------------------------------------*/
.unique-room-slider {
  padding: 60px 20px;
  background: #f8f9fa;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.unique-slider-title {
  text-align: center;
  font-size: 2.5rem;
  color: #132F30;
  margin-bottom: 50px;
  position: relative;
}

.unique-slider-title:after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: #f3d67f ;
}

.unique-rooms-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.unique-room-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.unique-room-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.unique-room-image {
  position: relative;
  height: 250px;
  overflow: hidden;
  flex-shrink: 0;
}

.unique-room-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.unique-room-card:hover .unique-room-image img {
  transform: scale(1.05);
}

.unique-room-details {
  padding: 25px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.unique-room-details h3 {
  font-size: 1.5rem;
  color: #132F30;
  margin-bottom: 10px;
}

.unique-description {
  color: black;
  margin-bottom: 20px;
  line-height: 1.5;
  flex-grow: 1;
}

.unique-features {
  list-style: none;
  padding: 0;
  margin-bottom: 25px;
  flex-grow: 1;
}

.unique-features li {
  margin-bottom: 10px;
  color: #132F30;
  display: flex;
  align-items: center;
}

.unique-features i {
  width: 25px;
  margin-right: 10px;
  font-size: 1.1rem;
  color: #f3d67f;
}

.unique-book-btn {
  padding: 15px;
  background: #132F30;
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: auto;
}

.unique-book-btn:hover {
  background: #f3d67f;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(44, 50, 141, 0.4);
}

/*--------------------------------------------------------------
# 3D Contact Section
--------------------------------------------------------------*/
.contact-3d-section {
  background: url('../images/exterior.jpg') center/cover no-repeat;
  perspective: 1000px;
  overflow: hidden;
  position: relative;
}

.parallax-container {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  max-width: 1400px;
  margin: 0 auto;
  padding: 20px;
}

.card-3d {
  width: 500px;
  height: 400px;
  position: relative;
  transform-style: preserve-3d;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
  overflow: hidden;
  background: rgba(255,255,255,0.9);
  animation: jiggle 8s infinite ease-in-out;
}

.video-card {
  animation-delay: 0.5s;
}

.card-content {
  padding: 25px;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.glowing-text {
  color: #356666;
  text-shadow: 0 0 10px rgba(26, 42, 108, 0.3);
  font-size: 28px;
  margin-bottom: 15px;
}

.location-text {
  color: #000000;
  font-size: 16px;
  margin-bottom: 20px;
}

.map-3d-container,
.video-3d-container {
  flex-grow: 1;
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transform: translateZ(30px);
}

.map-3d-container iframe,
.video-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 60px;
  height: 60px;
  background: rgba(230, 57, 70, 0.8);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}

.play-button::after {
  content: '';
  width: 0;
  height: 0;
  border-top: 15px solid transparent;
  border-left: 25px solid white;
  border-bottom: 15px solid transparent;
  margin-left: 5px;
}

.video-3d-container:hover .play-button {
  opacity: 1;
}

/*--------------------------------------------------------------
# Contact Page
--------------------------------------------------------------*/
  /* Contact Section - Isolated Styles */
  .contact-section-root {
    --hampton-blue: #00724f;
    --hampton-gold: #e26811;
    --dark-gray: #333;
  }
  
  .contact-section-container * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  .contact-section-body {
    line-height: 1.6;
    font-family: 'Montserrat', sans-serif;
  }
  
  .contact-section-header {
    padding: 40px 0;
    text-align: center;
  }
  
  .contact-section-header h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    animation: contactFadeIn 1s ease-out;
  }
  
  .contact-section-header p {
    font-size: 1.2rem;
    opacity: 0.9;
    animation: contactFadeIn 1s ease-out 0.2s forwards;
    opacity: 0;
  }
  
  @keyframes contactFadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
  }
  
  .contact-content-wrapper {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    padding: 0 20px;
    max-width: 1200px;
    margin: 0 auto 40px;
  }
  
  .contact-section {
    padding: 0px;
  }

  .contact-info-card {
    flex: 1;
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    animation: contactSlideUp 0.8s ease-out 0.4s forwards;
    opacity: 0;
    transform: translateY(20px);
    height: 450px;
  }
  
  @keyframes contactSlideUp {
    to { opacity: 1; transform: translateY(0); }
  }
  
  .contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  }
  
  .contact-info-card h2 {
    color: #132F30;
    font-size: 1.8rem;
    position: relative;
    margin-bottom: 20px;
  }
  
  .contact-info-card h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--hampton-gold);
  }
  
  .contact-info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
  }
  
  .contact-info-item i {
    color: #f3d67f;
    font-size: 1.5rem;
    margin-right: 15px;
    margin-top: 3px;
  }
  
  .contact-info-text h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: var(--hampton-blue);
  }
  
  .contact-info-text p, 
  .contact-info-text a {
    font-size: 1.1rem;
    color: var(--dark-gray);
    text-decoration: none;
    transition: color 0.3s;
  }
  
  .contact-info-text a:hover {
    color: var(--hampton-blue);
  }
  
  .contact-map-container {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    animation: contactSlideUp 0.8s ease-out 0.6s forwards;
    opacity: 0;
    transform: translateY(20px);
    height: 450px;
  }
  
  .contact-map-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  }
  
  .contact-map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
  }
  
  .contact-assistance-text {
    text-align: center; 
    color: black; 
    font-size: 20px; 
    width: 100%;
    margin: 20px auto;
    padding: 0 20px;
  }
  
  .contact-assistance-link {
    color: #132F30; 
    text-decoration: none; 
    font-weight: bold;
    transition: all 0.3s ease;
  }
  
  .contact-assistance-link:hover {
    color: #f3d67f;
    text-decoration: underline;
  }
  
  @media (max-width: 768px) {
    .contact-section-header h1 {
      font-size: 2rem;
    }
    
    .contact-content-wrapper {
      flex-direction: column;
      padding: 0 15px;
    }
    
    .contact-info-card, 
    .contact-map-container {
      width: 100%;
      height: auto;
    }
    
    .contact-info-card {
      height: auto;
      margin-bottom: 30px;
    }
    
    .contact-map-container {
      height: 350px;
    }
    
    .contact-assistance-text {
      font-size: 18px;
    }
  }

/*--------------------------------------------------------------
# Video Attraction Section
--------------------------------------------------------------*/
.video-attraction-section {
  background: linear-gradient(135deg, #356666 0%, #5b9999 100%);
  padding: 60px 5%;
  font-family: 'Poppins', sans-serif;
  text-align: left;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  position: relative;
}

.video-attraction-section h2 {
  font-size: 40px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.2);
}

.video-attraction-section .top-attractions {
  font-size: 24px;
  color: #e0f7fa;
  font-weight: 600;
}

.attraction-list {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}

.attraction-card {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  width: 30%;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/*--------------------------------------------------------------
# Animations
--------------------------------------------------------------*/
@keyframes jiggle {
  0%, 100% { transform: rotateY(-2deg) rotateX(1deg) translateY(0); }
  25% { transform: rotateY(3deg) rotateX(-1deg) translateY(-5px); }
  50% { transform: rotateY(-1deg) rotateX(2deg) translateY(0); }
  75% { transform: rotateY(2deg) rotateX(-2deg) translateY(-3px); }
}

/*--------------------------------------------------------------
# Responsive Adjustments
--------------------------------------------------------------*/
@media (max-width: 1100px) {
  .parallax-container {
    flex-direction: column;
    align-items: center;
  }
  
  .card-3d {
    width: 90%;
    max-width: 500px;
  }
  
  @keyframes jiggle {
    0%, 100% { transform: rotateY(0deg) rotateX(1deg) translateY(0); }
    25% { transform: rotateY(1deg) rotateX(-1deg) translateY(-5px); }
    50% { transform: rotateY(-1deg) rotateX(1deg) translateY(0); }
    75% { transform: rotateY(1deg) rotateX(-1deg) translateY(-3px); }
  }
}

@media (max-width: 768px) {
  .unique-rooms-container {
    grid-template-columns: 1fr;
    max-width: 500px;
  }
  
  .unique-slider-title {
    font-size: 2rem;
  }
  
  .footer-top {
    flex-direction: column;
    gap: 30px;
  }
  
  .footer-middle {
    flex-direction: column;
  }
  
  .footer-links ul {
    columns: 1;
  }
  
  .attraction-card {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .unique-slider-title {
    font-size: 1.8rem;
  }
  
  .video-attraction-section h2 {
    font-size: 2rem;
  }
  
  .video-attraction-section .top-attractions {
    font-size: 1.2rem;
  }
}



/*--------------------------------------------------------------
# Attraction Cards
--------------------------------------------------------------*/
.video-attraction-section .attraction-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-attraction-section .attraction-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.2);
}

.video-attraction-section .attraction-card i {
  font-size: 40px;
  color: #356666;
  margin-bottom: 15px;
  transition: color 0.3s ease;
}

.video-attraction-section .attraction-card p {
  font-size: 16px;
  color: #356666;
  line-height: 1.5;
  font-weight: 600;
}


/* Self-contained styles for highlights section only */
  .highlights-section.video-attraction-section {
    background-color: #132F30;
    padding: 60px 5%;
    font-family: 'Poppins', sans-serif;
    text-align: left;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    position: relative;
    isolation: isolate; /* Prevents mixing with other sections */
  }

  /* Sparkle background - won't affect other sections */
  .highlights-section.video-attraction-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='100%25' height='100%25' xmlns='http://www.w3.org/2000/svg'%3E%3Cdefs%3E%3Cfilter id='sparkle' x='-20%25' y='-20%25' width='140%25' height='140%25'%3E%3CfeGaussianBlur stdDeviation='2' result='blur'/%3E%3CfeComposite in='SourceGraphic' in2='blur' operator='over'/%3E%3C/filter%3E%3C/defs%3E%3Crect width='100%25' height='100%25' fill='%23132F30'/%3E%3Cg fill='%23f3d67f' filter='url(%23sparkle)' opacity='0.8'%3E%3Ccircle cx='10%25' cy='15%25' r='1.5'/%3E%3Ccircle cx='25%25' cy='30%25' r='1'/%3E%3Ccircle cx='75%25' cy='20%25' r='1.2'/%3E%3Ccircle cx='85%25' cy='40%25' r='0.8'/%3E%3Ccircle cx='15%25' cy='65%25' r='1.1'/%3E%3Ccircle cx='50%25' cy='80%25' r='1.3'/%3E%3Ccircle cx='90%25' cy='70%25' r='0.9'/%3E%3Ccircle cx='30%25' cy='90%25' r='1'/%3E%3Ccircle cx='60%25' cy='50%25' r='1.5'/%3E%3Ccircle cx='40%25' cy='25%25' r='0.7'/%3E%3C/g%3E%3C/svg%3E");
    z-index: -1;
    animation: sparkleAnimation 8s ease-in-out infinite alternate;
  }

  @keyframes sparkleAnimation {
    0% { opacity: 0.5; }
    50% { opacity: 0.9; }
    100% { opacity: 0.7; }
  }

  /* Rest of your existing styles for this section */
  .highlights-section .facility-title {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 40px;
    position: relative;
    display: inline-block;
    font-weight: bold;
    text-shadow: 0 0 10px rgba(243, 214, 127, 0.3);
  }

  .highlights-section .facility-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: #f3d67f;
    margin: 10px auto;
    border-radius: 2px;
    box-shadow: 0 0 8px rgba(243, 214, 127, 0.5);
  }

  .highlights-section .facility-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .highlights-section .facility-column {
    background-color: rgba(255, 255, 255, 0.95);
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    backdrop-filter: blur(2px);
  }

  .highlights-section .facility-column:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
  }

  .highlights-section .facility-column h3 {
    font-size: 1.6rem;
    color: #132F30;
    margin-bottom: 10px;
    font-weight: bold;
    text-transform: uppercase;
    border-bottom: 2px solid #f3d67f;
    padding-bottom: 8px;
  }

  .highlights-section .facility-list {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .highlights-section .facility-list li {
    font-size: 1.2rem;
    color: #333;
    padding: 10px 0;
    display: flex;
    align-items: center;
    font-weight: 500;
    transition: all 0.3s ease;
  }

  .highlights-section .facility-list li em {
    font-size: 1.5rem;
    color: #132F30;
    margin-right: 10px;
    min-width: 30px;
    text-align: center;
    transition: transform 0.3s ease;
  }

  .highlights-section .facility-list li:hover {
    background-color: rgba(243, 214, 127, 0.2);
    border-radius: 5px;
    padding-left: 10px;
  }
  .highlights-section .facility-list li:hover em {
    transform: scale(1.2);
    color: #f3d67f;
  }

  /* Responsive adjustments */
  @media (max-width: 768px) {
    .highlights-section .facility-grid {
      grid-template-columns: 1fr;
    }
    
    .highlights-section .facility-title {
      font-size: 2rem;
    }
  }

  @media (max-width: 480px) {
    .highlights-section .facility-title {
      font-size: 1.8rem;
    }
    
    .highlights-section .facility-column h3 {
      font-size: 1.4rem;
    }
    
    .highlights-section .facility-list li {
      font-size: 1rem;
    }
  }

/*--------------------------------------------------------------
# New Facility Section
--------------------------------------------------------------*/
.new-facility-section {
  text-align: center;
  color: black;
}

.new-facility-title {
  font-size: 2.5rem;
  color: #e30404;
  margin-bottom: 40px;
  position: relative;
}

.new-facility-title::after {
  content: '';
  display: block;
  width: 100px;
  height: 4px;
  background-color: #83CFC0;
  margin: 15px auto;
}

.facility-grid-creative {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  justify-items: center;
}

.facility-box-creative {
  background-color: #fff;
  border-radius: 15px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  width: 100%;
  max-width: 300px;
}

.facility-box-creative:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.icon-background {
  background: #0047b5;
  padding: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 3rem;
  color: #fff;
  border-bottom: 5px solid #CAC9CB;
  transition: background 0.3s ease;
}

.facility-box-creative:hover .icon-background {
  background: linear-gradient(145deg, #2B81A2, #83CFC0);
}

.facility-info {
  padding: 30px;
  text-align: center;
}

.facility-info h3 {
  font-size: 1.6rem;
  color: #e30404;
  margin-bottom: 15px;
}

.facility-info p {
  font-size: 1.1rem;
  color: #000000;
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# General Facilities Section
--------------------------------------------------------------*/
.facility-section {
  text-align: center;
}

.facility-container {
  max-width: 1200px;
  margin: 0 auto;
}

.facility-title {
  font-size: 2.5rem;
  color: #fff;
  margin-bottom: 40px;
  position: relative;
  display: inline-block;
  font-weight: bold;
}

.facility-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #f3d67f;
  margin: 10px auto;
  border-radius: 2px;
}

.facility-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.facility-column {
  background-color: #fff;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.facility-column:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.facility-column h3 {
  font-size: 1.6rem;
  color: #f3d67f;
  margin-bottom: 10px;
  font-weight: bold;
  text-transform: uppercase;
  border-bottom: 2px solid #83CFC0;
  padding-bottom: 8px;
}

.facility-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.facility-list li {
  font-size: 1.1rem;
  color: #000000;
  padding: 10px 0;
  display: flex;
  align-items: center;
  font-weight: 500;
  transition: all 0.3s ease;
}

.facility-list li em {
  font-size: 1.5rem;
  color: #356666;
  margin-right: 10px;
}

.facility-list li:hover {
  background-color: #d0e7f7;
  border-radius: 5px;
  padding-left: 10px;
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about-container {
  max-width: 100%;
  margin: auto;
  color: #333;
}

.about-fullwidth h1 {
  font-size: 50px;
  margin-bottom: 10px;
  color: #132F30;
  text-align: center;
  font-weight: bold;
}

.about-fullwidth h2 {
  font-size: 40px;
  margin-bottom: 20px;
  color: #132F30;
  text-align: center;
}

.about-fullwidth .intro,
.more-content {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 15px;
}

.more-content {
  display: none;
}

#aboutToggleBtn {
  margin-top: 20px;
  padding: 10px 24px;
  background-color: #132F30;
  color: #fff;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
  display: none;
}

#aboutToggleBtn:hover {
  background-color: #f3d67f;
}

/*--------------------------------------------------------------
# Responsive Adjustments
--------------------------------------------------------------*/
@media (max-width: 992px) {
  .facility-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .video-attraction-section .attraction-list {
    flex-direction: column;
    align-items: center;
  }

  .video-attraction-section .attraction-card {
    width: 80%;
    margin-bottom: 20px;
  }

  .video-attraction-section h2 {
    font-size: 30px;
  }

  .video-attraction-section .top-attractions {
    font-size: 20px;
  }

  .facility-grid-creative {
    grid-template-columns: 1fr 1fr;
  }

  .facility-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .facility-grid-creative {
    grid-template-columns: 1fr;
  }

  .facility-box-creative {
    max-width: 100%;
  }

  .icon-background {
    padding: 20px;
  }

  .about-fullwidth h1 {
    font-size: 2.5rem;
  }

  .about-fullwidth h2 {
    font-size: 2rem;
  }
}



/*--------------------------------------------------------------
# Custom Amenities Container
--------------------------------------------------------------*/
.custom-amenities-container {
  --amenities-primary-color: #132F30;
  --amenities-accent-color: #f3d67f;
  --amenities-light-color: #f8f9fa;
  --amenities-text-color: #132F30;
  --amenities-text-light: #5a6d6e;
}

.custom-amenities-container .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.custom-amenities-container .attractions-header {
  color: #132F30;
  font-family: 'Arial', sans-serif;
  font-size: 2.8rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  padding: 20px;
  text-align: center;
  position: relative;
  transition: all 0.3s ease;
  margin: 0 0 20px;
  font-weight: 700;
  text-shadow: 1px 1px 3px rgba(19, 47, 48, 0.1);
}

.custom-amenities-container .attractions-header::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 120px;
  height: 5px;
  background-color: #f3d67f;
  border-radius: 3px;
  box-shadow: 0 2px 5px rgba(243, 214, 127, 0.3);
}

.custom-amenities-container .section-subtitle {
  text-align: center;
  font-family: 'Arial', sans-serif;
  font-size: 1.5rem;
  color: #5a6d6e;
  margin-bottom: 50px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.custom-amenities-container .amenities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 40px;
  margin-top: 40px;
}

.custom-amenities-container .amenity-card {
  background: white;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(19, 47, 48, 0.1);
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  border: 1px solid rgba(243, 214, 127, 0.3);
}

.custom-amenities-container .amenity-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 15px 35px rgba(19, 47, 48, 0.15);
  border-color: rgba(243, 214, 127, 0.6);
}

.custom-amenities-container .amenity-icon {
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #132F30;
  font-size: 5rem;
  position: relative;
  overflow: hidden;
  background-color: rgba(243, 214, 127, 0.1);
}

.custom-amenities-container .amenity-icon i {
  transition: all 0.4s ease;
  text-shadow: 2px 2px 4px rgba(19, 47, 48, 0.1);
}

.custom-amenities-container .amenity-card:hover .amenity-icon i {
  transform: scale(1.15);
  color: #f3d67f;
}

.custom-amenities-container .amenity-info {
  padding: 30px;
  text-align: center;
}

.custom-amenities-container .amenity-info h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: #132F30;
  position: relative;
  display: inline-block;
  font-weight: 700;
}

.custom-amenities-container .amenity-info h3::after {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 4px;
  background: #f3d67f;
  transition: all 0.3s ease;
  border-radius: 2px;
}

.custom-amenities-container .amenity-card:hover .amenity-info h3::after {
  width: 80px;
  background: #132F30;
}

.custom-amenities-container .amenity-info p {
  color: #5a6d6e;
  line-height: 1.7;
  margin-bottom: 20px;
}

/*--------------------------------------------------------------
# Nearby Attractions
--------------------------------------------------------------*/
.nearby-content-container {
  padding: 0 5%;
  margin: 0 auto;
  font-family: 'Montserrat', sans-serif;
}

.nearby-category-title {
  font-size: 28px;
  font-weight: 600;
  margin: 50px 0 20px;
  color: #2d2d2d;
  position: relative;
  padding-left: 20px;
}

.nearby-category-title:before {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  height: 80%;
  width: 5px;
  background: #2a5e55;
  border-radius: 5px;
}

.nearby-section {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  margin-bottom: 40px;
  gap: 20px;
  transform-style: preserve-3d;
  perspective: 1200px;
}

.nearby-list-box, 
.nearby-image-box {
  width: calc(50% - 10px);
  aspect-ratio: 1/1;
  min-height: 280px;
  max-height: 350px;
  display: flex;
  transition: all 0.5s ease;
  overflow: hidden;
}

.nearby-list-box {
  background: white;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 15px 5px 25px -10px rgba(0,0,0,0.15);
  transform: rotateY(-10deg);
  border: 1px solid #f0f0f0;
  flex-direction: column;
}

.nearby-image-box {
  border-radius: 12px;
  box-shadow: -15px 5px 25px -10px rgba(0,0,0,0.15);
  transform: rotateY(10deg);
  border: 1px solid #f0f0f0;
}

.nearby-section:hover .nearby-list-box {
  transform: rotateY(-15deg) translateX(-5px);
}

.nearby-section:hover .nearby-image-box {
  transform: rotateY(15deg) translateX(5px);
}

.nearby-column {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.nearby-section-headline {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #3a3a3a;
  text-align: center;
  padding: 0 10px;
}

.nearby-column ul {
  list-style-type: none;
  padding: 0 10px;
  margin: 0;
  flex-grow: 1;
}

.nearby-column ul li {
  margin-bottom: 12px;
  color: black;
  padding: 8px 0;
  position: relative;
  padding-left: 25px;
  transition: all 0.3s ease;
}

.nearby-column ul li:before {
  content: "→";
  color: #2a5e55;
  position: absolute;
  left: 0;
  font-weight: bold;
}

.nearby-column ul li:hover {
  transform: translateX(8px);
  color: #f3d67f;
}

.nearby-image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.nearby-section:hover .nearby-image-box img {
  transform: scale(1.05);
}

/*--------------------------------------------------------------
# Carousel
--------------------------------------------------------------*/
#carousel-container {
  width: 100%;
  margin: 0 auto;
  background: transparent;
}

#carousel {
  padding-top: 220px;
  position: relative;
  width: 100%;
  height: 200px;
  perspective: 2000px;
  margin: 0 auto;
  overflow: visible;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
}

.carousel-card {
  position: absolute;
  width: 420px;
  height: 300px;
  background-color: #00724f;
  border-radius: 25px;
  box-shadow: 0 15px 35px rgba(0, 114, 79, 0.7);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: 600;
  user-select: none;
  transition: box-shadow 0.3s ease;
  transform-origin: center center;
}

.carousel-card:hover {
  box-shadow: 0 25px 50px rgba(0, 114, 79, 0.9);
}

.carousel-attractions-header {
  color: #2a5e55;
  font-size: 2.5rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin: 30px 0;
  padding: 40px 0;
  text-align: center;
  position: relative;
  transition: all 0.3s ease;
}

.carousel-attractions-header::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 15px;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background-color: #ffaaa5;
  border-radius: 2px;
}

/*--------------------------------------------------------------
# Responsive Adjustments
--------------------------------------------------------------*/
@media (max-width: 1100px) {
  #carousel {
    perspective: 1800px;
  }
  .carousel-card {
    width: 380px;
    height: 260px;
    font-size: 1.5rem;
  }
}

@media (max-width: 768px) {
  .custom-amenities-container .attractions-header {
    font-size: 2rem;
  }
  
  .custom-amenities-container .section-subtitle {
    font-size: 1rem;
  }
  
  .custom-amenities-container .amenities-grid {
    grid-template-columns: 1fr;
  }

  .nearby-content-container {
    padding: 30px 15px;
  }
  
  .nearby-category-title {
    font-size: 24px;
    margin: 30px 0 15px;
  }
  
  .nearby-section {
    flex-direction: column;
    perspective: none;
  }
  
  .nearby-list-box, 
  .nearby-image-box {
    width: 100%;
    aspect-ratio: unset;
    height: auto;
    min-height: 250px;
    max-height: none;
    transform: none !important;
  }
  
  .nearby-image-box {
    height: 250px;
    order: -1;
  }
  
  .nearby-section-headline {
    font-size: 18px;
  }

  #carousel {
    height: 200px;
    perspective: 1600px;
    padding-top: 180px;
  }
  .carousel-card {
    width: 320px;
    height: 220px;
    font-size: 1.3rem;
  }
}

@media (max-width: 480px) {
  #carousel {
    height: 200px;
    perspective: 1400px;
    padding-top: 150px;
  }
  .carousel-card {
    width: 260px;
    height: 180px;
    font-size: 1.1rem;
  }
  
  .carousel-attractions-header {
    font-size: 2rem;
    padding: 30px 0;
  }
}

body {
      font-family: Arial, sans-serif;
      margin: 0;
      padding: 0;
      background-color: #f4f4f4;
    }
    #featured-services {
      padding: 40px 0;
    }
    .container {
      width: 90%;
      max-width: 1200px;
      margin: 0 auto;
    }
    .testimonials-wrapper {
      display: flex;
      justify-content: space-between;
      align-items: stretch;
      flex-wrap: wrap;
      gap: 20px;
      transform-style: preserve-3d;
      perspective: 1000px;
    }
    .testimonial-item {
      background-color: #142f30;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
      border-radius: 10px;
      padding: 20px;
      text-align: center;
      flex: 1;
      min-width: 280px;
      height: 250px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      position: relative;
      backface-visibility: hidden;
      -webkit-backface-visibility: hidden;
      transform: rotateY(0deg);
      transition: transform 0.8s ease;
    }
    .testimonial-content {
      width: 100%;
      height: 100%;
      display: flex;
      flex-direction: column;
      transform-style: preserve-3d;
    }
    .testimonial-item .title a {
      font-size: 1.25rem;
      font-weight: bold;
      color: #fff;
      text-decoration: none;
    }
    .testimonial-item .description {
      font-size: 1rem;
      color: #ddd;
      padding-top: 10px;
      flex-grow: 1;
      text-align: center;
      transform: translateZ(30px);
    }
    @media (max-width: 768px) {
      .testimonials-wrapper {
        flex-direction: column;
        gap: 20px;
      }
      .testimonial-item {
        width: 100%;
        min-width: auto;
      }
    }



















    /* Header-specific styles - won't affect other sections */
.header-section * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Top Bar Styles */
.header-section .top-bar {
    background-color: #0a1a1a;
    color: #f3d67f;
    padding: 10px 0;
    font-size: 14px;
    border-bottom: 1px solid rgba(243, 214, 127, 0.1);
    transition: all 0.3s ease;
}

.header-section .top-bar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.header-section .contact-info {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header-section .phone-number {
    display: flex;
    align-items: center;
    gap: 8px;
}

.header-section .phone-number i {
    font-size: 16px;
}

.header-section .social-icons {
    display: flex;
    gap: 20px;
}

.header-section .social-icons a {
    color: #f3d67f;
    font-size: 16px;
    transition: all 0.3s ease;
}

.header-section .social-icons a:hover {
    color: #fff;
    transform: translateY(-2px);
}

/* Main Header Styles */
.header-section {
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
}

.header-section header {
    background-color: #132F30;
    color: #f3d67f;
    transition: all 0.3s ease;
}

/* Sticky header styles */
.header-section.sticky .top-bar {
    height: 0;
    padding: 0;
    overflow: hidden;
    border-bottom: none;
}

.header-section.sticky header {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.header-section .header-container {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    gap: 30px;
    transition: all 0.3s ease;
}

.header-section.sticky .header-container {
    padding: 10px 40px;
}

/* Navigation Columns */
.header-section .nav-column {
    display: flex;
    align-items: center;
}

.header-section .nav-left {
    justify-content: flex-start;
}

.header-section .nav-right {
    justify-content: flex-end;
}

/* Logo Styles */
.header-section .logo-container {
    display: flex;
    justify-content: center;
    padding: 0 20px;
    z-index: 10;
}

.header-section .logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: transform 0.3s ease;
    height: 100%;
}

.header-section .logo:hover {
    transform: scale(1.03);
}

.header-section .logo-img {
    height: 110px;
    width: auto;
    max-width: 140px;
    transition: all 0.3s ease;
    object-fit: contain;
}

.header-section.sticky .logo-img {
    height: 80px;
}

/* Navigation Styles */
.header-section nav ul {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 30px;
}

.header-section nav ul li {
    position: relative;
}

.header-section nav ul li a {
    color: #f3d67f;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s ease;
    padding: 12px 0;
    position: relative;
    letter-spacing: 0.5px;
    display: inline-block;
}

.header-section nav ul li a:hover {
    color: #fff;
}

.header-section nav ul li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: #f3d67f;
    bottom: 8px;
    left: 0;
    transition: width 0.3s ease;
}

.header-section nav ul li a:hover::after {
    width: 100%;
}

.header-section .reservation-btn {
    background-color: #f3d67f;
    color: #132F30;
    padding: 14px 32px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 18px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    letter-spacing: 0.5px;
    margin-left: 10px;
}

.header-section .reservation-btn:hover {
    background-color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

/* Mobile Menu Styles */
.header-section .hamburger {
    display: none;
    cursor: pointer;
    width: 32px;
    height: 24px;
    flex-direction: column;
    justify-content: space-between;
    z-index: 100;
    position: relative;
}

.header-section .hamburger span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: #f3d67f;
    transition: all 0.3s ease;
    border-radius: 3px;
    transform-origin: center;
}

/* When menu is active (open) */
.header-section .hamburger.active span:nth-child(1) {
    transform: translateY(10.5px) rotate(45deg);
}

.header-section .hamburger.active span:nth-child(2) {
    opacity: 0;
}

.header-section .hamburger.active span:nth-child(3) {
    transform: translateY(-10.5px) rotate(-45deg);
}

.header-section .mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(19, 47, 48, 0.98);
    padding: 140px 40px 40px;
    z-index: 99;
    overflow-y: auto;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.header-section .mobile-menu.active {
    display: block;
    opacity: 1;
}

.header-section .mobile-menu ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.header-section .mobile-menu ul li {
    width: 100%;
    text-align: center;
}

.header-section .mobile-menu ul li a {
    color: #f3d67f;
    text-decoration: none;
    font-size: 24px;
    font-weight: 600;
    display: block;
    padding: 15px;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(243, 214, 127, 0.2);
}

.header-section .mobile-menu ul li a:hover {
    color: #fff;
    background-color: rgba(243, 214, 127, 0.1);
}

.header-section .mobile-menu .reservation-btn {
    display: inline-block;
    margin: 40px auto 0;
    padding: 16px 40px;
    font-size: 22px;
    width: 100%;
    max-width: 300px;
}

.header-section .mobile-contact-info {
    display: none;
    text-align: center;
    margin-top: 40px;
    color: #f3d67f;
    padding: 20px 0;
    border-top: 1px solid rgba(243, 214, 127, 0.2);
}

.header-section .mobile-social-icons {
    display: none;
    justify-content: center;
    gap: 25px;
    margin-top: 30px;
    padding: 20px 0;
}

.header-section .mobile-social-icons a {
    color: #f3d67f;
    font-size: 24px;
    transition: all 0.3s ease;
}

.header-section .mobile-social-icons a:hover {
    color: #fff;
    transform: translateY(-2px);
}

.header-section .close-btn {
    position: absolute;
    top: 40px;
    right: 40px;
    color: #f3d67f;
    font-size: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.header-section .close-btn:hover {
    transform: rotate(90deg);
    color: #fff;
}

/* Active Link Styles - 3D Effect */
.header-section nav ul li.active a,
.header-section .mobile-menu ul li.active a {
    color: #fff !important;
    text-shadow: 0 0 8px rgba(243, 214, 127, 0.7);
    transform: perspective(500px) translateZ(20px);
    position: relative;
}

.header-section nav ul li.active a::before,
.header-section .mobile-menu ul li.active a::before {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, #f3d67f, transparent);
    border-radius: 50%;
    filter: blur(2px);
    transform: perspective(500px) rotateX(45deg) translateZ(10px);
    opacity: 0.8;
}

.header-section nav ul li.active a::after,
.header-section .mobile-menu ul li.active a::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #f3d67f;
    box-shadow: 0 0 10px #f3d67f, 0 0 20px rgba(243, 214, 127, 0.5);
    transform: scaleX(1);
    transition: none;
}

/* Gold particle effect for active link */
.header-section nav ul li.active a:hover::after,
.header-section .mobile-menu ul li.active a:hover::after {
    animation: goldSparkle 1.5s infinite;
}

@keyframes goldSparkle {
    0% {
        box-shadow: 0 0 5px #f3d67f, 0 0 10px rgba(243, 214, 127, 0.5);
    }
    50% {
        box-shadow: 0 0 15px #f3d67f, 0 0 30px rgba(243, 214, 127, 0.8);
    }
    100% {
        box-shadow: 0 0 5px #f3d67f, 0 0 10px rgba(243, 214, 127, 0.5);
    }
}

/* Mobile active link adjustments */
.header-section .mobile-menu ul li.active a {
    background-color: rgba(243, 214, 127, 0.1);
    border-bottom: 1px solid #f3d67f;
    transform: perspective(300px) translateZ(15px);
}

.header-section .mobile-menu ul li.active a::before {
    bottom: -1px;
    height: 4px;
    transform: perspective(300px) rotateX(45deg) translateZ(8px);
}

/* Reservation button active state */
.header-section .reservation-btn.active {
    background-color: #fff;
    color: #132F30;
    box-shadow: 0 0 15px rgba(243, 214, 127, 0.8), 
                0 0 30px rgba(243, 214, 127, 0.4),
                0 4px 12px rgba(0, 0, 0, 0.2);
    transform: translateY(-2px) perspective(500px) translateZ(20px);
    animation: pulseGold 2s infinite;
}

@keyframes pulseGold {
    0% {
        box-shadow: 0 0 15px rgba(243, 214, 127, 0.8), 
                    0 0 30px rgba(243, 214, 127, 0.4),
                    0 4px 12px rgba(0, 0, 0, 0.2);
    }
    50% {
        box-shadow: 0 0 25px rgba(243, 214, 127, 0.9), 
                    0 0 45px rgba(243, 214, 127, 0.6),
                    0 6px 18px rgba(0, 0, 0, 0.3);
    }
    100% {
        box-shadow: 0 0 15px rgba(243, 214, 127, 0.8), 
                    0 0 30px rgba(243, 214, 127, 0.4),
                    0 4px 12px rgba(0, 0, 0, 0.2);
    }
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .header-section .header-container,
    .header-section .top-bar-container {
        padding: 0 30px;
    }
    
    .header-section nav ul {
        gap: 25px;
    }
    
    .header-section nav ul li a {
        font-size: 17px;
    }
    
    .header-section .reservation-btn {
        padding: 12px 28px;
        font-size: 17px;
    }
}

@media (max-width: 992px) {
    .header-section .header-container {
        grid-template-columns: auto 1fr auto;
        padding: 0 25px;
        gap: 20px;
    }
    
    .header-section .nav-left,
    .header-section .nav-right {
        display: none;
    }
    
    .header-section .hamburger {
        display: flex;
        grid-column: 3;
    }
    
    .header-section .logo-container {
        grid-column: 2;
        justify-self: center;
    }
    
    .header-section .logo-img {
        height: 100px;
        max-width: 130px;
    }
    
    .header-section.sticky .logo-img {
        height: 70px;
    }
    
    .header-section .mobile-contact-info,
    .header-section .mobile-social-icons {
        display: block;
    }
}

@media (max-width: 768px) {
    .header-section header {
        padding: 15px 0;
    }
    
    .header-section .header-container,
    .header-section .top-bar-container {
        padding: 0 20px;
    }
    
    .header-section .top-bar {
        font-size: 13px;
        padding: 8px 0;
    }
    
    .header-section .contact-info,
    .header-section .social-icons {
        gap: 15px;
    }
    
    .header-section .logo-img {
        height: 90px;
        max-width: 120px;
    }
    
    .header-section.sticky .logo-img {
        height: 60px;
    }
    
    .header-section .mobile-menu {
        padding: 120px 30px 30px;
    }
    
    .header-section .mobile-menu ul li a {
        font-size: 22px;
    }
    
    .header-section .mobile-menu .reservation-btn {
        font-size: 20px;
        padding: 14px 30px;
    }
}

@media (max-width: 576px) {
    .header-section .logo-img {
        height: 80px;
        max-width: 110px;
    }
    
    .header-section.sticky .logo-img {
        height: 50px;
    }
    
    .header-section .mobile-menu ul li a {
        font-size: 20px;
        padding: 12px;
    }
    
    .header-section .mobile-menu .reservation-btn {
        font-size: 18px;
        padding: 12px 25px;
    }
    
    .header-section .close-btn {
        top: 30px;
        right: 30px;
        font-size: 26px;
    }
    
    .header-section .mobile-social-icons {
        gap: 20px;
    }
    
    .header-section .top-bar {
        font-size: 12px;
    }
    
    .header-section .contact-info,
    .header-section .social-icons {
        gap: 12px;
    }
}

/* Testimonials Section Styles */
.testimonials-section {
    position: relative;
    padding: 50px 0;
    overflow: hidden;
    width: 100%;
}

.section-title {
    text-align: center;
    color: #132F30;
    margin: 0 auto 40px;
    font-size: 2.5rem;
    position: relative;
    z-index: 5;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.testimonials-container {
    position: relative;
    z-index: 3;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.testimonials-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    perspective: 1000px;
}

.testimonial-item {
    flex: 1 1 300px;
    max-width: 400px;
    background: rgba(19, 47, 48, 0.9);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(2px);
    border: 1px solid rgba(243, 214, 127, 0.2);
}

.testimonial-corner {
    position: absolute;
    top: 0;
    right: 0;
    width: 60px;
    height: 60px;
    background: #f3d67f;
    clip-path: polygon(0 0, 100% 0, 100% 100%);
}

.testimonial-title {
    margin-bottom: 15px;
}

.testimonial-title a {
    color: #f3d67f;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.testimonial-content {
    color: #fff;
    line-height: 1.6;
    position: relative;
    padding-left: 20px;
}

.quote-icon {
    position: absolute;
    left: 0;
    top: 5px;
    width: 15px;
    height: 15px;
    fill: #f3d67f;
}

/* Background Animation Elements */
.floating-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.shape {
    position: absolute;
    opacity: 0.1;
}

.triangle {
    width: 80px;
    height: 80px;
    background: #f3d67f;
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    animation: float 15s ease-in-out infinite;
}

.circle {
    width: 60px;
    height: 60px;
    background: #f3d67f;
    border-radius: 50%;
    animation: float 12s ease-in-out infinite reverse;
}

.square {
    width: 70px;
    height: 70px;
    background: #f3d67f;
    animation: float 18s ease-in-out infinite 2s;
}

.bubbles {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.bubble {
    position: absolute;
    background-color: rgba(243, 214, 127, 0.1);
    border-radius: 50%;
    animation: bubble linear infinite;
}

/* Animations */
@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

@keyframes bubble {
    0% { transform: translateY(0) scale(1); opacity: 0; }
    20% { opacity: 0.2; }
    100% { transform: translateY(-100vh) scale(1.5); opacity: 0; }
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Hover Effects */
.testimonial-item:hover {
    transform: translateY(-10px) rotateY(5deg);
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
    border-color: rgba(243, 214, 127, 0.4);
}

.testimonial-title a:hover {
    color: #fff;
    text-shadow: 0 0 5px rgba(243, 214, 127, 0.5);
}

/* Responsive */
@media (max-width: 768px) {
    .testimonials-wrapper {
        flex-direction: column;
        align-items: center;
    }

    .testimonial-item {
        flex: 1 1 100%;
        max-width: 100%;
    }

    .floating-shapes .shape {
        display: none;
    }
}

/* Amenities Section Styles */
#unique-amenities-section {
    position: relative;
    padding: 80px 0;
    overflow: hidden;
    background-color: #f8f9fa;
    font-family: 'Arial', sans-serif;
    box-sizing: border-box;
}
  
#unique-amenities-section .amenities-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: opacity 1s ease-in-out;
    z-index: 0;
}
  
#unique-amenities-section .amenities-background.secondary {
    opacity: 0;
}
  
#unique-amenities-section .amenities-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    z-index: 1;
}
  
#unique-amenities-section .section-header {
    text-align: center;
    margin-bottom: 50px;
}
  
#unique-amenities-section .section-header h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 15px;
}
  
#unique-amenities-section .section-header p {
    font-size: 1.1rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}
  
#unique-amenities-section .amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}
  
#unique-amenities-section .amenity-item {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}
  
#unique-amenities-section .amenity-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #132F30 0%, #132F30 100%);
    transition: height 0.3s ease;
    z-index: -1;
}
  
#unique-amenities-section .amenity-item:hover::before {
    height: 100%;
}
  
#unique-amenities-section .amenity-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    color: white;
}
  
#unique-amenities-section .amenity-item:hover .amenity-icon {
    color: white;
}
  
#unique-amenities-section .amenity-item:hover .amenity-name,
#unique-amenities-section .amenity-item:hover .amenity-description {
    color: white;
}
  
#unique-amenities-section .amenity-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #f3d67f;
    transition: all 0.3s ease;
}
  
#unique-amenities-section .amenity-name {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #333;
    transition: all 0.3s ease;
}
  
#unique-amenities-section .amenity-description {
    font-size: 18px;
    color: #000000;
    line-height: 1.6;
    transition: all 0.3s ease;
}
  
@media (max-width: 1200px) {
    #unique-amenities-section .amenities-grid {
      grid-template-columns: repeat(2, 1fr);
    }
}
  
@media (max-width: 768px) {
    #unique-amenities-section .amenities-grid {
      grid-template-columns: 1fr;
    }
    
    #unique-amenities-section .section-header h2 {
      font-size: 2rem;
    }
}

/* Rooms Section Styles */
.unique-room-slider {
    padding: 60px 20px;
    background-color: #f9f9f9;
}

.unique-slider-title {
    text-align: center;
    font-size: 2.5rem;
    color: #132F30;
    margin-bottom: 40px;
    position: relative;
}

.unique-slider-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: #f3d67f;
}

.unique-rooms-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.unique-room-card {
    width: 100%;
    max-width: 400px;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.unique-room-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

.unique-room-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.unique-room-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.unique-room-card:hover .unique-room-image img {
    transform: scale(1.05);
}



.unique-room-details {
    padding: 25px;
}

.unique-room-details h3 {
    font-size: 2.0rem;
    color: #132F30;
    margin-bottom: 15px;
}

.unique-description {
    color: #000000;
    margin-bottom: 20px;
    line-height: 1.6;
}

.unique-features {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
}

.unique-features li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    color: #000000;
}

.unique-features li i {
    margin-right: 10px;
    color: #f3d67f;
}

.unique-book-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 12px 20px;
    background-color: #132F30;
    color: white;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.unique-book-btn i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.unique-book-btn:hover {
    background-color: #f3d67f;
    color: #132F30;
}

.unique-book-btn:hover i {
    transform: translateX(5px);
}

@media (max-width: 768px) {
    .unique-rooms-container {
        flex-direction: column;
        align-items: center;
    }
    
    .unique-room-card {
        max-width: 100%;
    }
}

/* Gallery Section Styles */
.elegant-photo-gallery {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.section-video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.gallery-content-container {
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 15px;
    max-width: 1200px;
    margin: 40px auto;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.gallery-title {
    text-align: center;
    font-size: 2.5rem;
    color: #132F30;
    margin-bottom: 40px;
    position: relative;
}

.gallery-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: #f3d67f;
}

.gallery-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.gallery-main {
    position: relative;
    height: 500px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.main-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: background-image 0.5s ease;
}

.image-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    color: white;
    font-size: 1.5rem;
    text-align: center;
    text-transform: capitalize;
}

.gallery-thumbnails-container {
    padding-bottom: 20px;
}

.gallery-thumbnails {
    display: flex;
    gap: 15px;
    padding: 10px 0;
}

.thumbnail {
    flex: 0 0 150px;
    height: 100px;
    border-radius: 5px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.thumbnail:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.thumbnail.active {
    border: 3px solid #f3d67f;
    transform: translateY(-5px);
}

.thumbnail-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 10px;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    text-align: center;
    font-size: 0.9rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.thumbnail:hover .thumbnail-overlay {
    transform: translateY(0);
}

@media (max-width: 768px) {
    .gallery-content-container {
        padding: 40px 20px;
        margin: 20px;
    }
    
    .gallery-main {
        height: 350px;
    }
    
    .thumbnail {
        flex: 0 0 120px;
        height: 80px;
    }
}

/* Attractions Section Styles */
.attractions-header {
    text-align: center;
    margin-bottom: 40px;
}

.attractions-container {
    max-width: 1400px;
    margin: 50px auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.attraction-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: #fff;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    width: 100%;
    border-radius: 8px;
    transition: transform 0.5s cubic-bezier(0.25, 0.1, 0.25, 1),
      box-shadow 0.5s ease;
    transform-style: preserve-3d;
    position: relative;
    height: 100%;
}

.attraction-card:hover {
    box-shadow: 0 50px 80px rgba(0, 0, 0, 0.3);
}

.attraction-card img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    transition: transform 0.5s ease;
    transform-origin: center center;
}

.attraction-info {
    padding: 25px;
    transform: translateZ(40px);
    background: white;
}

.attraction-title {
    font-weight: 300;
    margin: 10px 0;
    transition: all 0.4s ease;
}

.attraction-card:hover .attraction-title {
    color: #142f30;
    transform: translateZ(60px) scale(1.05);
}

.attraction-description {
    font-size: 16px;
    color: #000000;
    line-height: 1.5;
    margin-bottom: 15px;
    transition: transform 0.4s ease;
}

.attraction-card:hover .attraction-description {
    transform: translateZ(40px);
}

.read-more-btn {
    padding: 12px 25px;
    background: #132F30;
    color: #fff;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    overflow: hidden;
    transform: translateZ(50px);
}

.read-more-btn:hover {
    background: #f3d67f;
    transform: translateY(-8px) translateZ(70px);
    box-shadow: 0 20px 40px rgba(53, 102, 102, 0.5);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .attractions-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .attractions-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .attraction-card {
        transform: none !important;
    }
}

/* Contact Section Styles */
.contact-3d-section {
    position: relative;
    background-color: #f8f9fa;
    overflow: hidden;
}

.parallax-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
    perspective: 1000px;
}

.card-3d {
    width: 100%;
    max-width: 600px;
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.5s ease, box-shadow 0.5s ease;
    position: relative;
    overflow: hidden;
}

.card-3d::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #f3d67f, #132F30);
    transition: height 0.3s ease;
}

.card-3d:hover::before {
    height: 10px;
}

.card-content {
    position: relative;
    z-index: 1;
}

.glowing-text {
    font-size: 2rem;
    color: #132F30;
    margin-bottom: 20px;
    text-align: center;
    position: relative;
    display: inline-block;
}

.glowing-text::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background-color: #f3d67f;
}

.location-text {
    text-align: center;
    color: #666;
    margin-bottom: 25px;
    font-size: 1.1rem;
}

.map-3d-container {
    position: relative;
    width: 100%;
    height: 400px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.map-3d-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.map-pin {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 30px;
    height: 30px;
    background-color: #f3d67f;
    border-radius: 50% 50% 50% 0;
    transform: rotate(-45deg) translate(-50%, -50%);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: rotate(-45deg) translate(-50%, -50%) scale(1); }
    50% { transform: rotate(-45deg) translate(-50%, -50%) scale(1.2); }
    100% { transform: rotate(-45deg) translate(-50%, -50%) scale(1); }
}

.video-3d-container {
    position: relative;
    width: 100%;
    height: 400px;
    background-color: #132F30;
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.coming-soon-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(19, 47, 48, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: white;
}

.coming-soon-content {
    text-align: center;
    padding: 20px;
}

.coming-soon-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: inline-block;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-30px); }
    60% { transform: translateY(-15px); }
}

.countdown-text {
    margin-top: 20px;
    font-size: 1.2rem;
    color: #f3d67f;
}

@media (max-width: 768px) {
    .parallax-container {
        flex-direction: column;
        align-items: center;
    }
    
    .card-3d {
        max-width: 100%;
    }
    
    .map-3d-container,
    .video-3d-container {
        height: 300px;
    }
}

/* Footer Section Styles */
.footer-section {
    background-color: #132F30;
    color: #ffffff;
    padding: 50px 20px 20px;
    font-family: 'Poppins', sans-serif;
    position: relative;
    overflow: hidden;
}

.footer-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #f3d67f, #132F30, #f3d67f);
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Footer Top Section */
.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 30px;
    margin-bottom: 30px;
    position: relative;
}

.footer-top::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(243, 214, 127, 0.5), transparent);
}

/* Logo Area - Replaced with text */
.footer-logo-area {
    flex: 1;
    min-height: 60px;
    display: flex;
    align-items: center;
}

.drac-motel-text {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 600;
    letter-spacing: 1px;
    color: #f3d67f;
    text-decoration: none;
    text-transform: uppercase;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
}

.drac-motel-text:hover {
    opacity: 0.9;
    text-shadow: 0 0 12px rgba(243, 214, 127, 0.4);
}

.drac-motel-text::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #f3d67f;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s ease;
}

.drac-motel-text:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

/* Social Media */
.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(243, 214, 127, 0.1);
    color: #f3d67f;
    border-radius: 50%;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(243, 214, 127, 0.3);
}

.footer-social a:hover {
    transform: translateY(-3px);
    background-color: #f3d67f;
    color: #132F30;
    box-shadow: 0 4px 12px rgba(243, 214, 127, 0.3);
}

/* Middle Section */
.footer-middle {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 20px 0;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-address,
.footer-links {
    flex: 1;
    min-width: 250px;
}

.footer-address h3,
.footer-links h3 {
    color: #f3d67f;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-address h3::after,
.footer-links h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background-color: #f3d67f;
}

/* Address Section */
.footer-address p {
    color: #e0e0e0;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    line-height: 1.6;
}

.address-icon,
.phone-icon {
    color: #f3d67f;
    font-size: 1.1rem;
    margin-top: 3px;
    min-width: 16px;
}

.footer-address .phone-link {
    color: #f3d67f;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-address .phone-link:hover {
    color: #ffffff;
    text-decoration: underline;
}

/* Quick Links */
.footer-links ul {
    list-style: none;
    padding: 0;
    columns: 2;
    column-gap: 30px;
}

.footer-links ul li {
    margin-bottom: 12px;
    position: relative;
    padding-left: 20px;
    break-inside: avoid;
}

.footer-links ul li::before {
    content: '→';
    color: #f3d67f;
    position: absolute;
    left: 0;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.footer-links ul li:hover::before {
    transform: translateX(5px);
}

.footer-links ul li a {
    color: #e0e0e0;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    display: inline-block;
}

.footer-links ul li a:hover {
    color: #f3d67f;
    padding-left: 5px;
}

/* Footer Bottom */
.footer-bottom {
    text-align: center;
    padding-top: 20px;
    position: relative;
}

.divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(243, 214, 127, 0.3), transparent);
    margin: 20px auto;
    width: 80%;
}

.credits {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.credits p {
    margin-bottom: 10px;
}

.credits a {
    color: #f3d67f;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    margin: 0 5px;
}

.credits a:hover {
    color: #ffffff;
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer-top {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-middle {
        flex-direction: column;
        gap: 30px;
    }
    
    .footer-links ul {
        columns: 1;
    }
    
    .drac-motel-text {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .drac-motel-text {
        font-size: 24px;
    }
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: #132F30;
    color: #f3d67f;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: #f3d67f;
    color: #132F30;
    transform: translateY(-5px);
}


/* Targets ONLY the attractions-header (high-specificity) */
.custom-amenities-container h2.attractions-header {
  color: #132F30;
  font-family: 'Arial', sans-serif;
  font-size: 2.8rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  padding: 20px;
  text-align: center;
  position: relative;
  transition: all 0.3s ease;
  margin: 0 0 20px;
  font-weight: 600;
  text-shadow: 1px 1px 3px rgba(19, 47, 48, 0.1);
}

/* Underline effect (only for attractions-header) */
.custom-amenities-container h2.attractions-header::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 120px;
  height: 5px;
  background-color: #f3d67f;
  border-radius: 3px;
  box-shadow: 0 2px 5px rgba(243, 214, 127, 0.3);
}


/* Facilities Section */
        .facility-section {
            padding: 60px 20px;
            background-color: #f9f9f9;
        }

        .facility-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .facility-title {
            font-size: 2.5rem;
            color: #2a5e55;
            margin-bottom: 40px;
            text-align: center;
            position: relative;
        }

        .facility-title::after {
            content: '';
            display: block;
            width: 60px;
            height: 3px;
            background-color: #2a5e55;
            margin: 10px auto;
            border-radius: 2px;
        }

        .facility-description {
            text-align: center;
            color: #000000;
            font-size: 1.1em;
            margin-bottom: 30px;
        }

        .facility-grid {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 20px;
        }

        .facility-column {
            flex: 1 1 45%;
            min-width: 300px;
            background-color: #ffffff;
            border-radius: 8px;
            padding: 20px;
            box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
        }

        .facility-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .facility-list li {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 15px;
            font-size: 1em;
            color: #333333;
        }

        .facility-list em {
            font-size: 1.5em;
            color: #f3d67f;
        }

        /* Form & Map Section */
        .form-image-section {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            max-width: 1200px;
            margin: 40px auto;
            padding: 0 20px;
        }

        .form-container, .image-container {
            flex: 1 1 45%;
            min-width: 300px;
        }

        .info-card {
            background: #ffffff;
            padding: 30px;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }

        .info-title {
            color: #2a5e55;
            font-size: 1.8em;
            margin-bottom: 15px;
        }

        .info-subtitle {
            color: #000000;
            margin-bottom: 20px;
        }

        .coordinates {
            margin: 20px 0;
        }

        .coordinate-item {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 10px;
        }

        .icon {
            color: #f3d67f;
            font-size: 1.2em;
        }

        .direction-form {
            margin-top: 30px;
        }

        .form-group {
            margin-bottom: 15px;
        }

        .form-control {
            width: 100%;
            padding: 10px;
            border: 1px solid #ddd;
            border-radius: 4px;
            font-size: 1em;
        }

        .get-directions-btn {
            background-color: #132F30;
            color: white;
            border: none;
            padding: 12px 25px;
            border-radius: 4px;
            cursor: pointer;
            transition: background-color 0.3s;
            font-size: 1em;
            width: 100%;
        }

        .get-directions-btn:hover {
            background-color: #f3d67f;
        }

        .responsive-image {
            border-radius: 8px;
            height: auto;
            max-width: 100%;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            object-fit: cover;
            height: 100%;
            min-height: 400px;
        }

        /* Animations */
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }
        
        @keyframes fadeInUp {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        @keyframes fadeInDown {
            from { opacity: 0; transform: translateY(-20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.05); }
            100% { transform: scale(1); }
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .facility-grid, .form-image-section {
                flex-direction: column;
            }

            .facility-column, .form-container, .image-container {
                flex: 1 1 100%;
                min-width: 100%;
            }

            .facility-title {
                font-size: 1.8em;
            }

            .responsive-image {
                min-height: 300px;
            }
        }

        @media (max-width: 480px) {
            .facility-title {
                font-size: 1.5em;
            }

            .facility-description {
                font-size: 0.9em;
            }

            .facility-list li {
                font-size: 0.9em;
            }

            .facility-list em {
                font-size: 1.2em;
            }
        }


         /* FAQ Section Styles */
        .faq-section {
            margin: 50px auto;
            padding: 0 20px;
        }
        
        .faq-header {
            text-align: center;
            margin-bottom: 40px;
        }
        
        .faq-header h2 {
            color: #00724f;
            font-size: 36px;
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }
        
        .faq-header h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(to right, #00724f, #e26811);
            border-radius: 2px;
        }
        
        .faq-header p {
            color: #666;
            font-size: 18px;
            max-width: 700px;
            margin: 0 auto;
        }
        
        .faq-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
            gap: 25px;
        }
        
        .faq-card {
            background: white;
            border-radius: 12px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
            overflow: hidden;
            transition: all 0.3s ease;
            border-top: 4px solid #00724f;
        }
        
        .faq-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(0,0,0,0.12);
        }
        
        .faq-question {
            padding: 25px;
            background: #f9f9f9;
            display: flex;
            align-items: center;
        }
        
        .faq-icon {
            width: 40px;
            height: 40px;
            background: #e26811;
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
            flex-shrink: 0;
            font-size: 18px;
        }
        
        .faq-question-text {
            font-size: 18px;
            font-weight: 600;
            color: #333;
        }
        
        .faq-answer {
            padding: 25px;
            position: relative;
        }
        
        .faq-answer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 25px;
            right: 25px;
            height: 1px;
            background: linear-gradient(to right, transparent, #00724f, transparent);
        }
        
        .faq-answer p {
            margin: 0;
            font-size: 16px;
            line-height: 1.6;
            color: #000000;
        }
        
        .faq-answer a {
            color: #e26811;
            font-weight: 600;
            text-decoration: none !important;
        }
        
        .faq-answer a:hover {
            color: #00724f;
            border-bottom-color: #00724f;
        }
        
        .faq-answer .fa-caret-right {
            color: #e26811;
            margin-right: 8px;
        }
        
        @media (max-width: 600px) {
            .faq-grid {
                grid-template-columns: 1fr;
            }
            
            .faq-header h2 {
                font-size: 28px;
            }
            
            .faq-question {
                padding: 20px;
            }
            
            .faq-answer {
                padding: 20px;
            }
        }








        .nav-container {
        display: flex;
        justify-content: center;
        padding: 20px;
    }
    
    .nav-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
        max-width: 1000px;
    }
    
    .nav-card {
        background: white;
        border-radius: 12px;
        padding: 25px;
        text-align: center;
        box-shadow: 0 4px 12px rgba(0,0,0,0.08);
        transition: all 0.3s ease;
        border: 2px solid #132F30;
        position: relative;
        overflow: hidden;
    }
    
    .nav-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 4px;
        background: #f3d67f;
        transform: scaleX(0);
        transform-origin: left;
        transition: transform 0.3s ease;
    }
    
    .nav-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 20px rgba(0,0,0,0.12);
    }
    
    .nav-card:hover::before {
        transform: scaleX(1);
    }
    
    .nav-icon {
        font-size: 28px;
        margin-bottom: 15px;
        color: #132F30;
        transition: all 0.3s ease;
    }
    
    .nav-card:hover .nav-icon {
        color: #132F30;
        transform: scale(1.1);
    }
    
    .nav-title {
        font-size: 18px;
        font-weight: 700;
        margin-bottom: 8px;
        color: #132F30;
        transition: all 0.3s ease;
    }
    
    .nav-desc {
        font-size: 14px;
        color: #000000;
        transition: all 0.3s ease;
    }
    
    .nav-card:hover .nav-title {
        color: #f3d67f;
    }
    
    .nav-card:hover .nav-desc {
        color: #132F30;
    }
    
    .nav-link {
        text-decoration: none;
        display: block;
        height: 100%;
    }
    
    @media (max-width: 900px) {
        .nav-grid {
            grid-template-columns: repeat(2, 1fr);
        }
    }
    
    @media (max-width: 500px) {
        .nav-grid {
            grid-template-columns: 1fr;
        }
    }