/* Header Styles with Glass Effect */
.glass-navbar {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.2);
    transition: all 0.4s ease;
    font-weight: 700;
    padding: 8px 0;
    position: fixed !important;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10000;
    min-height: 70px;
    border-radius: 0 0 20px 20px;
}

/* Blue line at the bottom of navbar */
.navbar-bottom-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 5px;
    background: linear-gradient(90deg, #ff4d6d, #7b61ff, #00d2ff, #00f5a0);
    transition: width 0.8s cubic-bezier(0.22, 0.61, 0.36, 1);
    z-index: 10001;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
}

/* Navbar brand styling */
.navbar-brand {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 2.2rem;
    color: #000000;
    padding: 5px 0;
    transition: all 0.3s ease;
    z-index: 10002;
    position: relative;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.15);
    letter-spacing: 2px;
    background: linear-gradient(45deg, #ff4d6d, #7b61ff, #00d2ff, #00f5a0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.navbar-brand:hover {
    color: #2c9caf;
    transform: scale(1.05);
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.25);
}

/* Header logo */
.header-logo {
    height: 70px;
    width: auto;
    transition: all 0.3s ease;
    margin-right: 15px;
    filter: drop-shadow(2px 2px 5px rgba(0, 0, 0, 0.25));
}

.header-logo:hover {
    transform: scale(1.15);
    filter: drop-shadow(2px 2px 10px rgba(0, 0, 0, 0.4));
}

/* Navbar links */
.navbar-nav .nav-link {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 1rem;
    color: #333;
    margin: 0 12px;
    padding: 12px 18px;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 10002;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.navbar-nav .nav-link:hover {
    color: #fff;
    background: linear-gradient(45deg, #2c9caf, #7b61ff);
    transform: translateY(-3px);
    font-weight: 500;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Active link styling */
.navbar-nav .nav-link.active {
    color: #fff;
    background: linear-gradient(45deg, #2c9caf, #7b61ff);
    font-weight: 500;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
}

/* Navbar toggle button */
.navbar-toggler {
    border: none;
    outline: none;
    box-shadow: none;
    z-index: 10002;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    border-radius: 8px;
    padding: 8px 12px;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.8%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Scrolled navbar effect */
.glass-navbar.scrolled {
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 12px 35px 0 rgba(31, 38, 135, 0.4);
    padding: 8px 0;
    border-radius: 0 0 15px 15px;
}

.glass-navbar.scrolled .navbar-bottom-line {
    width: 100%;
    height: 6px;
    box-shadow: 0 3px 20px rgba(0, 0, 0, 0.4);
}

.glass-navbar.scrolled .navbar-brand {
    font-size: 2rem;
}

.glass-navbar.scrolled .navbar-nav .nav-link {
    background: rgba(255, 255, 255, 0.3);
}

.glass-navbar.scrolled .navbar-nav .nav-link:hover {
    background: linear-gradient(45deg, #2c9caf, #7b61ff);
}

/* Global Section Styles */
.section-title {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 2.5rem;
    color: #0A1128;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #2c9caf, #7b61ff);
    border-radius: 2px;
}

/* Booking page specific styles */
.booking-container {
    padding-top: 100px !important;
}

/* Glass effect for booking form */
.booking-form-glass {
    background: rgba(91, 91, 91, 0.15);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.2);
    border-radius: 20px;
    padding: 30px;
    margin-top: 20px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.booking-form-glass::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: rotate(45deg);
    transition: all 0.6s ease;
    z-index: -1;
}

.booking-form-glass:hover::before {
    transform: rotate(45deg) translate(20%, 20%);
}

.booking-form-glass:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px 0 rgba(31, 38, 135, 0.3);
}

.booking-form-title {
    color: #333;
    font-weight: 700;
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
}

.booking-form-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #2c9caf, #7b61ff);
    border-radius: 2px;
}

/* Glass form elements */
.glass-form {
    margin-top: 20px;
}

.glass-form-group {
    margin-bottom: 25px;
    opacity: 0;
    transform: translateY(20px);
}

.glass-form-group label {
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
    display: block;
}

.input-glass {
    position: relative;
}

.input-glass::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border-radius: 12px;
    z-index: -1;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.glass-input {
    background: transparent !important;
    border: none !important;
    color: #333 !important;
    padding: 12px 15px !important;
    border-radius: 12px !important;
    position: relative;
    z-index: 2;
    width: 100%;
    transition: all 0.3s ease;
}

.glass-input:focus {
    box-shadow: 0 0 0 3px rgba(44, 156, 175, 0.3) !important;
    outline: none;
}

.glass-input::placeholder {
    color: rgba(51, 51, 51, 0.7);
}

/* Glass button */
.glass-button {
    background: rgba(44, 156, 175, 0.8);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 12px 30px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(44, 156, 175, 0.3);
}

.glass-button:hover {
    background: rgba(44, 156, 175, 1);
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(44, 156, 175, 0.4);
}

.glass-button:active {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(44, 156, 175, 0.3);
}

.glass-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: all 0.6s ease;
}

.glass-button:hover::before {
    left: 100%;
}

/* Glass alerts */
.alert-glass {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 12px;
    color: #333;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* Homepage Sections */
.hero-section {
    height: 100vh;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 10px;
    position: relative;
    overflow: hidden;
    background: white;
    color: #333;
}

/* Hero Slideshow Styles */
.hero-slideshow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 2s ease-in-out, transform 2s ease-in-out;
    transform: scale(1.05);
    filter: brightness(0.7);
}

.hero-slide.active {
    opacity: 1;
    transform: scale(1);
    filter: brightness(1);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.4));
    z-index: 1;
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
}

.bg-pattern {
    position: absolute;
    inset: 0;
    background-image: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNjAiIGhlaWdodD0iNjAiIHZpZXdCb3g9IjAgMCA2MCA2MCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48ZyBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPjxnIGZpbGw9IiNmZmZmZmYiIGZpbGwtb3BhY2l0eT0iMC4wMyI+PHBhdGggZD0iTTM2IDM0djItMnptMC00djJ6bTAtNHYyem0wLTR2MnptMC00djJ6bTAtNHYyem0wLTR2MnptMC00djJ6bTAtNHYyem0tMiAyaC0ydjJoMnptLTQgMGgtMnYyaDJ6bS00IDBoLTJ2Mmgyem0tNCAwaC0ydjJoMnptLTQgMGgtMnYyaDJ6bS00IDBoLTJ2Mmgyem0tNCAwSDh2Mmgyem0tNCAwSDR2MmgyeiIvPjwvZz48L2c+PC9zdmc+');
    opacity: 0.2;
}

.logo-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #60a5fa 0%, #2563eb 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 15px -3px rgba(37, 99, 235, 0.3);
}

.brand-name {
    font-size: 1.5rem;
    font-weight: 400;
    letter-spacing: -0.025em;
}

.text-blue-accent {
    color: #60a5fa;
}

.subtitle {
    font-size: 0.75rem;
    color: #94a3b8;
    letter-spacing: 0.1em;
}

.badge-premium {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 50px;
    color: #93c5fd;
    font-size: 0.875rem;
    letter-spacing: 0.05em;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 5.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: #2c9caf;
    background: none;
    background-clip: initial;
    -webkit-background-clip: initial;
    -webkit-text-fill-color: initial;
    animation: none;
    background-size: auto;
    letter-spacing: -1px;
    position: relative;
    text-shadow: 0 2px 10px rgba(44, 156, 171, 0.3);
}

/* Gradient text */
.gradient-text {
    background: linear-gradient(90deg, #60a5fa 0%, #93c5fd 50%, #a5f3fc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 1rem;
    line-height: 1.4;
    animation: fadeInUp 1s ease-out 0.3s forwards;
    opacity: 0;
}

.tagline {
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    font-weight: 300;
    margin-bottom: 2.5rem;
    line-height: 1.6;
    max-width: 80%;
    opacity: 0.9;
    animation: fadeInUp 1s ease-out 0.6s forwards;
    opacity: 0;
}

/* Custom Buttons */
.btn-primary-custom {
    padding: 1rem 2rem;
    background: linear-gradient(90deg, #3b82f6 0%, #2563eb 100%);
    border: none;
    border-radius: 0.5rem;
    font-size: 1.125rem;
    font-weight: 500;
    color: white;
    transition: all 0.3s ease;
    box-shadow: 0 10px 15px -3px rgba(59, 130, 246, 0.3);
}

.btn-primary-custom:hover {
    background: linear-gradient(90deg, #2563eb 0%, #1d4ed8 100%);
    box-shadow: 0 20px 25px -5px rgba(59, 130, 246, 0.4);
    transform: translateY(-2px);
    color: white;
}

.btn-secondary-custom {
    padding: 1rem 2rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 0.5rem;
    font-size: 1.125rem;
    font-weight: 500;
    color: white;
    transition: all 0.3s ease;
}

.btn-secondary-custom:hover {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

/* Service Card Styles */
.service-card {
    position: relative;
    overflow: hidden;
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.5s ease;
    height: 100%;
    /* Ensure equal height */
    margin-bottom: 30px;
}

.service-card:hover {
    transform: scale(1.05);
    border-color: rgba(59, 130, 246, 0.5);
    box-shadow: 0 20px 25px -5px rgba(59, 130, 246, 0.2);
}

.service-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.7s ease;
}

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

.service-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, #0f172a 0%, rgba(15, 23, 42, 0.6) 60%, transparent 100%);
    opacity: 0.8;
}

.service-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
}

.service-card-title {
    font-size: 1.5rem;
    color: white;
    margin-bottom: 0.5rem;
}

.service-card-description {
    color: #cbd5e1;
    font-size: 0.875rem;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.learn-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #60a5fa;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.learn-more-btn:hover {
    color: #93c5fd;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #60a5fa;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #94a3b8;
}

/* Service Scrolling Marquee */
.scrolling-wrapper {
    position: relative;
    padding: 20px 0;
    overflow: hidden;
    /* Break out of container to full viewport width */
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    /* Remove mask/shadow as requested */
    mask-image: none;
    -webkit-mask-image: none;
}

.scrolling-content {
    display: inline-flex;
    gap: 30px;
    animation: scroll 40s linear infinite;
    width: max-content;
    will-change: transform;
}

/* Pause on hover (desktop) and touch/active (mobile) */
.scrolling-content:hover,
.scrolling-content:active,
.scrolling-content:focus-within {
    animation-play-state: paused;
}

.service-card-item {
    width: 350px;
    flex-shrink: 0;
}

/* Ensure service card fills the item */
.service-card-item .service-card {
    height: 100%;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Enhanced scrolling for gallery */
.gallery-scroll-wrapper {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 400px;
}

.gallery-scroll-content {
    display: flex;
    gap: 20px;
    animation: galleryScroll 30s linear infinite;
    will-change: transform;
}

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

/* Mobile Responsiveness for Marquee */
@media (max-width: 768px) {
    .scrolling-content {
        animation-duration: 30s;
        /* Slightly faster on small screens if desired, or same */
    }

    .service-card-item {
        width: 300px;
        /* Slightly smaller cards on mobile */
    }
}

/* Nav Link in Hero */
.hero-nav {
    transition: all 0.3s ease;
    z-index: 1000;
    background: transparent;
    box-shadow: none;
}

.hero-nav.scrolled {
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(10px);
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.hero-nav-link {
    color: #cbd5e1;
    text-decoration: none;
    margin-left: 1.5rem;
    transition: color 0.3s;
}

.hero-nav-link:hover {
    color: white;
}

/* Light Navbar version for other pages */
.hero-nav.nav-light .hero-nav-link {
    color: #4b5563;
}

.hero-nav.nav-light .hero-nav-link:hover {
    color: #0f3dde;
}

.hero-nav.nav-light .brand-name {
    color: #000 !important;
}

.hero-nav.nav-light.scrolled {
    background: rgba(255, 255, 255, 0.95);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}


/* Add keyframes for animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
        filter: blur(2px);
    }

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

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
        filter: blur(2px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
        filter: blur(0);
    }
}

@keyframes luxuryGlow {
    0% {
        box-shadow: 0 0 15px rgba(44, 156, 171, 0.2);
    }

    50% {
        box-shadow: 0 0 30px rgba(44, 156, 171, 0.4);
    }

    100% {
        box-shadow: 0 0 15px rgba(44, 156, 171, 0.2);
    }
}

@keyframes textGlow {
    0% {
        text-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    }

    100% {
        text-shadow: 0 5px 20px rgba(255, 255, 255, 0.3), 0 0 30px rgba(123, 97, 255, 0.4);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* Sticky Enquiry Button */
.enquiry-button-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 10000;
}

.enquiry-button {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px 25px;
    background: linear-gradient(135deg, #2c9caf, #7b61ff);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 10px 30px rgba(44, 156, 171, 0.4);
    transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
    animation: float 3s ease-in-out infinite;
    overflow: hidden;
    position: relative;
}

.enquiry-button i {
    margin-right: 8px;
    font-size: 1.2rem;
}

.enquiry-button span {
    display: inline-block;
}

.enquiry-button:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(44, 156, 171, 0.6);
    color: white;
    text-decoration: none;
}

.enquiry-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: 0.5s;
}

.enquiry-button:hover::before {
    left: 100%;
}

/* Responsive adjustments for enquiry button */
@media (max-width: 768px) {
    .enquiry-button-container {
        bottom: 20px;
        right: 20px;
    }

    .enquiry-button {
        padding: 12px 20px;
        font-size: 0.9rem;
    }

    .enquiry-button i {
        margin-right: 6px;
        font-size: 1rem;
    }
}

/* Responsive styles for slideshow */
@media (max-width: 992px) {
    .hero-section {
        flex-direction: column;
        height: auto;
        padding-top: 40px;
        min-height: 100vh;
    }

    .hero-content-column {
        order: 2;
        text-align: center;
        padding: 40px 20px 0 20px;
        width: 100%;
        position: relative;
        z-index: 10;
    }

    .hero-image-column {
        order: 1;
        padding: 0;
        width: 100%;
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .tagline {
        font-size: 1rem;
        max-width: 100%;
    }

    .cta-buttons {
        justify-content: center;
    }

    .hero-slideshow {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
    }

    .hero-slide {
        height: 100vh;
        background-size: cover;
        background-position: center;
    }

    .hero-overlay {
        height: 100vh;
    }

    /* Adjust content to be above slideshow */
    .hero-content-column {
        position: relative;
        z-index: 10;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .tagline {
        font-size: 0.9rem;
    }

    .cta-button {
        padding: 0.8em 2em;
        font-size: 14px;
        margin: 0 5px 10px 5px;
    }

    .hero-slideshow {
        height: 60vh;
    }

    .hero-slide {
        height: 60vh;
        background-size: cover;
        background-position: center;
    }

    .hero-overlay {
        height: 60vh;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-slideshow {
        height: 50vh;
    }

    .hero-slide {
        height: 50vh;
        background-size: cover;
        background-position: center;
    }

    .hero-overlay {
        height: 50vh;
    }

    /* Adjust content to be above slideshow */
    .hero-content-column {
        position: relative;
        z-index: 10;
    }
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

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

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0px);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.02);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes pulseGlow {
    0% {
        box-shadow: 0 0 20px rgba(139, 92, 246, 0.4);
    }

    50% {
        box-shadow: 0 0 40px rgba(139, 92, 246, 0.6);
    }

    100% {
        box-shadow: 0 0 20px rgba(139, 92, 246, 0.4);
    }
}

/* About Us Section - New Design */
.about-section {
    padding: 4rem 0;
    background-color: #ffffff;
    overflow: hidden;
}

.about-heading {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 2rem;
    color: #0f172a;
    letter-spacing: -0.02em;
}

.about-text {
    font-size: 1rem;
    line-height: 1.7;
    color: #334155;
    margin-bottom: 1.25rem;
}

.about-image {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 40px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    transition: transform 0.5s ease;
}

.about-image:hover {
    transform: scale(1.02);
}

.feature-icon-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.feature-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background-color: #f1f5f9;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
}


/* Feature Scroll Item for Mobile */
.feature-scroll-item {
    width: 320px;
    flex-shrink: 0;
    height: 100%;
}

.feature-scroll-item .glass-card {
    height: 100%;
}

.feature-icon-wrapper:hover .feature-icon {
    background-color: #e2e8f0;
    transform: translateY(-5px);
}

.feature-icon i {
    font-size: 1.25rem;
    color: #334155;
}

.feature-text {
    font-size: 0.8rem;
    color: #475569;
    font-weight: 500;
}

.features-row {
    margin-top: 2rem;
    gap: 2rem;
}

@media (max-width: 991px) {
    .about-heading {
        font-size: 2.5rem;
    }

    .about-image {
        height: 350px;
        margin-bottom: 2rem;
    }
}

@media (max-width: 576px) {
    .about-heading {
        font-size: 2rem;
    }

    .features-row {
        gap: 1.5rem;
    }
}


/* Gallery Section - New Design */
.gallery-section {
    background-color: #f8fafc;
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.gallery-subtitle {
    font-size: 0.75rem;
    letter-spacing: 3.6px;
    color: #475569;
    text-transform: uppercase;
    margin-bottom: 1rem;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
}

.gallery-heading {
    font-size: 3.75rem;
    font-family: 'Playfair Display', serif;
    color: #1e3a8a;
    font-weight: 500;
    margin-bottom: 3rem;
}

/* Gallery Scrolling Items */
.gallery-scroll-item {
    width: 300px;
    height: 300px;
    flex-shrink: 0;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

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

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

.gallery-image {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.4s ease;
}

.gallery-image:hover {
    transform: scale(1.03);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}


.gallery-row {
    margin-bottom: 1rem;
}

@media (max-width: 768px) {
    .gallery-heading {
        font-size: 2.5rem;
    }

    .gallery-image {
        height: 200px;
        margin-bottom: 1rem;
    }
}

/* Services Section */
.services-section {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(245, 247, 255, 0.9), rgba(235, 245, 255, 0.9));
}

.service-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(31, 38, 135, 0.15);
    transition: all 0.3s ease;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 40px rgba(31, 38, 135, 0.25);
}

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

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

.service-content {
    padding: 25px;
}

.service-content h3 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    color: #0A1128;
    margin-bottom: 15px;
}

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

.service-content .btn {
    margin-right: 10px;
}

.pricing-info {
    background: linear-gradient(135deg, rgba(44, 156, 175, 0.1), rgba(123, 97, 255, 0.1));
    border-left: 4px solid #2c9caf;
    border-radius: 0 10px 10px 0;
    padding: 20px;
    margin: 25px 0;
}

.pricing-info h5 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    margin-bottom: 10px;
}

.pricing-info p {
    margin-bottom: 0;
    color: #555;
}

/* Features Section - New Design */
.features-section {
    position: relative;
    padding: 6rem 0;
    overflow: hidden;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
}

/* Decorative Pattern Background */
.features-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNjAiIGhlaWdodD0iNjAiIHZpZXdCb3g9IjAgMCA2MCA2MCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48ZyBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPjxnIGZpbGw9IiNmZmZmZmYiIGZpbGwtb3BhY2l0eT0iMC4wMyI+PHBhdGggZD0iTTM2IDM0djItMnptMC00djJ6bTAtNHYyem0wLTR2MnptMC00djJ6bTAtNHYyem0wLTR2MnptMC00djJ6bTAtNHYyem0tMiAyaC0ydjJoMnptLTQgMGgtMnYyaDJ6bS00IDBoLTJ2Mmgyem0tNCAwaC0ydjJoMnptLTQgMGgtMnYyaDJ6bS00IDBoLTJ2Mmgyem0tNCAwSDh2Mmgyem0tNCAwSDR2MmgyeiIvPjwvZz48L2c+PC9zdmc+');
    opacity: 0.2;
    pointer-events: none;
}

.features-content {
    position: relative;
    z-index: 10;
}

.features-heading {
    font-size: 3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
}

.features-subtitle {
    font-size: 1.125rem;
    color: #cbd5e1;
    max-width: 600px;
    margin: 0 auto 3rem;
}

/* Glass Card Effect */
.glass-card {
    position: relative;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 24px;
    padding: 2rem;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
    transition: all 0.5s ease;
    overflow: hidden;
    height: 100%;
}

.glass-card:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    transform: scale(1.05);
}

/* Icon Container */
.feature-icon-container {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: linear-gradient(135deg, #60a5fa, #3b82f6, #2563eb);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.5);
    transition: all 0.5s ease;
}

.glass-card:hover .feature-icon-container {
    transform: scale(1.1);
    box-shadow: 0 15px 35px rgba(96, 165, 250, 0.6);
}

.feature-icon-container i {
    font-size: 2rem;
    color: white;
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: white;
    margin-bottom: 1rem;
    font-family: 'Poppins', sans-serif;
}

.feature-description {
    color: #cbd5e1;
    line-height: 1.7;
}

/* Gradient Glow Effect */
.glow-effect {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(96, 165, 250, 0.2), rgba(147, 51, 234, 0.2));
    opacity: 0;
    transition: opacity 0.5s ease;
    filter: blur(40px);
    pointer-events: none;
}

.glass-card:hover .glow-effect {
    opacity: 1;
}

/* Shine Effect */
.shine-effect {
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: skewX(-12deg);
    transition: left 1s ease;
    pointer-events: none;
}

.glass-card:hover .shine-effect {
    left: 100%;
}

@media (max-width: 768px) {
    .features-heading {
        font-size: 2rem;
    }

    .glass-card {
        margin-bottom: 1.5rem;
    }
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(245, 247, 255, 0.9), rgba(235, 245, 255, 0.9));
}

.accordion-item {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 15px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(31, 38, 135, 0.1);
}

.accordion-button {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    color: #0A1128;
    background: rgba(255, 255, 255, 0.7);
    padding: 20px;
}

.accordion-button:not(.collapsed) {
    color: #2c9caf;
    background: rgba(44, 156, 175, 0.1);
    box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.125);
}

.accordion-body {
    background: rgba(255, 255, 255, 0.5);
    color: #555;
    line-height: 1.8;
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(44, 156, 175, 0.9), rgba(123, 97, 255, 0.9));
    color: white;
    text-align: center;
}

.cta-section h2 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-section .lead {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.btn-cta {
    background: rgba(255, 255, 255, 0.95);
    color: #2c9caf;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.btn-cta:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    color: #2c9caf;
}

.btn-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: all 0.6s ease;
}

.btn-cta:hover::before {
    left: 100%;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(255, 255, 255, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}

.btn-cta {
    animation: pulse 2s infinite;
}

/* My Booking page styles */
.my-booking-container {
    padding-top: 100px !important;
}

.booking-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 15px;
    box-shadow: 0 8px 32px rgba(31, 38, 135, 0.15);
    margin-bottom: 2rem;
    transition: all 0.3s ease;
}

.booking-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(31, 38, 135, 0.25);
}

.booking-card .card-title {
    color: #0A1128;
    font-weight: 600;
    border-bottom: 2px solid rgba(44, 156, 175, 0.3);
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.booking-detail-row {
    margin-bottom: 15px;
    padding: 10px;
    border-radius: 8px;
    background: rgba(44, 156, 175, 0.05);
    transition: all 0.2s ease;
}

.booking-detail-row:hover {
    background: rgba(44, 156, 175, 0.1);
    transform: translateX(5px);
}

.booking-detail-label {
    font-weight: 600;
    color: #034078;
}

.booking-detail-value {
    color: #333;
}

.status-badge {
    padding: 6px 12px;
    border-radius: 20px;
    font-weight: 500;
    font-size: 0.85rem;
}

.btn-cancel-booking {
    background: linear-gradient(45deg, #ff4d6d, #ff758f);
    border: none;
    padding: 10px 25px;
    font-weight: 500;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn-cancel-booking:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 77, 109, 0.4);
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .glass-navbar {
        padding: 12px 0;
        border-radius: 0 0 15px 15px;
    }

    .navbar-nav .nav-link {
        margin: 6px 0;
        padding: 10px 15px;
        font-size: 1rem;
        background: rgba(255, 255, 255, 0.15);
    }

    .glass-navbar.scrolled {
        padding: 12px 0;
    }

    .navbar-brand {
        font-size: 2rem;
    }

    .header-logo {
        height: 60px;
    }

    /* Adjust booking container for medium screens */
    .booking-container {
        padding-top: 90px !important;
    }

    .booking-form-glass {
        padding: 20px;
    }
}

@media (max-width: 768px) {
    .navbar-brand {
        font-size: 1.8rem;
    }

    /* Adjust logo size for mobile */
    .header-logo {
        height: 50px;
    }

    .glass-navbar.scrolled .navbar-brand {
        font-size: 1.6rem;
    }

    .navbar-nav .nav-link {
        font-size: 0.9rem;
        padding: 8px 12px;
    }

    /* Adjust booking container for small screens */
    .booking-container {
        padding-top: 80px !important;
    }

    .booking-form-glass {
        padding: 15px;
    }

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

@media (max-width: 576px) {

    /* Adjust booking container for extra small screens */
    .booking-container {
        padding-top: 70px !important;
    }

    .booking-form-glass {
        padding: 15px 10px;
    }

    .glass-button {
        padding: 10px 25px;
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .my-booking-container {
        padding-top: 80px !important;
    }

    .booking-card {
        padding: 15px;
    }

    .booking-detail-row {
        flex-direction: column;
    }
}

/* Split-Screen Glassmorphism (Login, Signup, Booking) */
.auth-booking-split {
    display: flex;
    min-height: 100vh;
    background: #0a0a0a;
    position: relative;
    overflow: hidden;
}

.split-form-section {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 40px 60px;
    /* Space for fixed navbar */
    z-index: 2;
}

.split-image-section {
    flex: 1;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.split-image-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, #0a0a0a, transparent);
}

.glass-form-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 40px;
    width: 100%;
    max-width: 500px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
    z-index: 5;
}

.glass-form-card h2 {
    color: #fff;
    font-weight: 700;
    margin-bottom: 30px;
    font-family: 'Playfair Display', serif;
}

.glass-form-card .form-label {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.auth-booking-split .form-control,
.auth-booking-split .form-select {
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    color: #fff !important;
    border-radius: 12px !important;
    padding: 12px 16px !important;
}

.auth-booking-split .form-control:focus,
.auth-booking-split .form-select:focus {
    background: rgba(255, 255, 255, 0.08) !important;
    border-color: var(--blue-accent) !important;
    box-shadow: 0 0 0 0.25rem rgba(44, 156, 175, 0.25) !important;
}

.auth-booking-split .btn-primary,
.auth-booking-split .glass-button {
    background: var(--blue-accent);
    border: none;
    border-radius: 12px;
    padding: 12px 30px;
    font-weight: 600;
    color: white;
    transition: all 0.3s ease;
    width: 100%;
}

.auth-booking-split .btn-primary:hover,
.auth-booking-split .glass-button:hover {
    background: #1a7a8a;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(44, 156, 175, 0.4);
}

@media (max-width: 991.98px) {
    .split-image-section {
        display: none;
    }

    .split-form-section {
        padding: 120px 20px 60px;
    }
}