:root {
    --off-white: #f8f9fa;
    --runway-gray: #4a5568;
    --coastal-blue: #3498db;
    --coastal-blue-light: #ebf8ff;
    --accent-color: #0ea5e9;
    --text-dark: #1e293b;
    --text-light: #64748b;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--off-white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}

.section-padding {
    padding: 7rem 0;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--coastal-blue);
}

.text-accent {
    color: var(--accent-color);
}

/* Navbar Styles */
.navbar {
    padding: 1rem 0;
    transition: all 0.3s ease;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
}

.navbar-scrolled {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--text-dark);
}

.nav-link {
    font-weight: 500;
    color: var(--text-dark);
    margin: 0 0.5rem;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--coastal-blue);
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)),
                url('assets/images/hero/airport.webp');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(52, 152, 219, 0.2), transparent 60%);
    z-index: 1;
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjAiIGhlaWdodD0iMjAiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGNpcmNsZSBjeD0iMTAiIGN5PSIxMCIgcj0iMSIgZmlsbD0icmdiYSgyNTUsMjU1LDI1NSwwLjMpIi8+PC9zdmc+');
    opacity: 0.4;
    z-index: 1;
    animation: floatingParticles 150s linear infinite;
}

@keyframes floatingParticles {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 1000px 1000px;
    }
}

.hero .container {
    z-index: 2;
}

.hero-row {
    min-height: 80vh;
}

.hero-content {
    animation: fadeInUp 1s ease-out;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transform: translateY(-20px);
    opacity: 0;
    animation: fadeInDown 0.8s ease-out forwards;
    animation-delay: 0.2s;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    transform: translateY(-20px);
    opacity: 0;
    animation: fadeInDown 0.8s ease-out forwards;
    animation-delay: 0.4s;
}

.text-highlight {
    position: relative;
    display: inline-block;
    color: var(--coastal-blue);
    z-index: 1;
}

.text-highlight::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 30%;
    background-color: rgba(52, 152, 219, 0.2);
    z-index: -1;
    transform: translateY(0);
    transition: transform 0.3s ease;
}

.text-highlight:hover::after {
    transform: translateY(-5px);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    max-width: 90%;
    transform: translateY(-20px);
    opacity: 0;
    animation: fadeInDown 0.8s ease-out forwards;
    animation-delay: 0.6s;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 2rem;
    transform: translateY(-20px);
    opacity: 0;
    animation: fadeInDown 0.8s ease-out forwards;
    animation-delay: 0.8s;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
    font-weight: 500;
}

.feature-icon {
    color: var(--coastal-blue);
}

.hero-cta {
    display: flex;
    gap: 1rem;
    transform: translateY(-20px);
    opacity: 0;
    animation: fadeInDown 0.8s ease-out forwards;
    animation-delay: 1s;
}

.hero-image-container {
    position: relative;
    height: 500px;
    transform: translateY(20px);
    opacity: 0;
    animation: fadeInUp 1s ease-out forwards;
    animation-delay: 1.2s;
}

.hero-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    background-size: cover;
    background-position: center;
    position: absolute;
}

.hero-image-main {
    width: 80%;
    height: 400px;
    top: 0;
    right: 0;
    background-image: url('https://images.unsplash.com/photo-1540541338287-41700207dee6?ixlib=rb-4.0.3&auto=format&fit=crop&w=600&q=80');
    z-index: 2;
}

.hero-image-accent {
    width: 60%;
    height: 300px;
    bottom: 0;
    left: 0;
    background-image: url('https://images.unsplash.com/photo-1582719508461-905c673771fd?ixlib=rb-4.0.3&auto=format&fit=crop&w=600&q=80');
    z-index: 1;
}

.hero-floating-badge {
    position: absolute;
    bottom: 30px;
    right: -20px;
    z-index: 3;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
}

.floating-badge-content {
    background: white;
    border-radius: 15px;
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.badge-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--coastal-blue-light);
    color: var(--coastal-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.badge-text {
    display: flex;
    flex-direction: column;
}

.badge-title {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.9rem;
}

.badge-subtitle {
    color: var(--coastal-blue);
    font-weight: 700;
    font-size: 0.8rem;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    color: white;
    opacity: 0;
    animation: fadeIn 1s ease-out forwards 1.5s, bounce 2s ease-in-out infinite 2.5s;
}

.scroll-text {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    font-weight: 500;
    opacity: 0.8;
}

.scroll-icon {
    font-size: 1.2rem;
}

@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);
    }
}

/* Fix for hero section elements */
.hero .container {
    position: relative;
    z-index: 5;
}

.hero-badge, .hero-title, .hero-subtitle, .hero-features, .hero-cta {
    position: relative;
    z-index: 10;
}

.hero-image-container {
    position: relative;
    z-index: 0;
}

/* Ensure hero images are visible on all browsers */
.hero-image-main, .hero-image-accent {
    background-color: var(--coastal-blue-light);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

.btn-primary {
    background-color: var(--coastal-blue);
    border: none;
    padding: 0.8rem 2rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #2980b9;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.btn-outline-light {
    border-radius: 50px;
    padding: 0.8rem 2rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline-light:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.btn-glow {
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: all 0.4s ease;
}

.btn-glow::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, rgba(255,255,255,0) 70%);
    opacity: 0;
    z-index: -1;
    transition: opacity 0.4s ease;
}

.btn-glow:hover::after {
    opacity: 1;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(0.8);
        opacity: 0.8;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.4;
    }
    100% {
        transform: scale(0.8);
        opacity: 0.8;
    }
}

.btn-with-arrow {
    position: relative;
    transition: all 0.3s ease;
}

.btn-with-arrow i {
    transition: transform 0.3s ease;
}

.btn-with-arrow:hover i {
    transform: translateX(5px);
}

/* Responsive Hero Styles */
@media (max-width: 991.98px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        max-width: 100%;
    }
    
    .hero-features {
        gap: 1rem;
    }
    
    .hero-feature {
        font-size: 0.9rem;
    }
    
    .hero-cta {
        flex-direction: column;
        gap: 0.8rem;
    }
    
    .hero-cta .btn {
        width: 100%;
    }
}

@media (max-width: 767.98px) {
    .hero {
        height: auto;
        min-height: 100vh;
        padding: 6rem 0 4rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-features {
        flex-direction: column;
        gap: 0.8rem;
    }
    
    .hero-scroll-indicator {
        display: none;
    }
}

/* About Section */
.about-img {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    height: 100%;
    min-height: 400px;
    background-size: cover;
    background-position: center;
}

.about-img-1 {
    background-image: url('https://images.unsplash.com/photo-1582719508461-905c673771fd?ixlib=rb-4.0.3&auto=format&fit=crop&w=600&q=80');
}

.about-img-2 {
    background-image: url('https://images.unsplash.com/photo-1540541338287-41700207dee6?ixlib=rb-4.0.3&auto=format&fit=crop&w=600&q=80');
    margin-top: 2rem;
}

/* Room Cards */
.room-card {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    border: none;
}

.room-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.room-img {
    height: 250px;
    background-size: cover;
    background-position: center;
}

.room-img-1 {
    background-image: url('https://images.unsplash.com/photo-1590490360182-c33d57733427?ixlib=rb-4.0.3&auto=format&fit=crop&w=600&q=80');
}

.room-img-2 {
    background-image: url('https://images.unsplash.com/photo-1578683010236-d716f9a3f461?ixlib=rb-4.0.3&auto=format&fit=crop&w=600&q=80');
}

.room-img-3 {
    background-image: url('https://images.unsplash.com/photo-1595576508898-0ad5c879a061?ixlib=rb-4.0.3&auto=format&fit=crop&w=600&q=80');
}

.room-img-4 {
    background-image: url('https://images.unsplash.com/photo-1566665797739-1674de7a421a?ixlib=rb-4.0.3&auto=format&fit=crop&w=600&q=80');
}

.room-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(255, 255, 255, 0.9);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--coastal-blue);
}

.room-amenities {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 1rem 0;
}

.amenity-badge {
    background-color: var(--coastal-blue-light);
    color: var(--coastal-blue);
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Nearby Highlights */
.highlights-container {
    overflow-x: hidden;
    padding: 1rem 0;
    position: relative;
    margin: 0 -15px;
}

.highlights-track {
    display: flex;
    gap: 1.5rem;
    transition: transform 0.5s ease;
    animation: scrollHighlights 30s linear infinite;
    padding: 0 15px;
}

.highlights-container:hover .highlights-track {
    animation-play-state: paused;
}

@keyframes scrollHighlights {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-280px * 5 - 1.5rem * 5)); /* Card width + gap, multiplied by number of cards */
    }
}

.highlight-card {
    min-width: 280px;
    max-width: 280px;
    border-radius: 20px;
    padding: 1.5rem;
    background-color: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    text-align: center;
    display: flex;
    flex-direction: column;
}

.highlight-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.highlight-img {
    height: 150px;
    border-radius: 10px;
    background-size: cover;
    background-position: center;
    margin-bottom: 1rem;
}

.highlight-card .btn {
    margin-top: auto;
}

/* Route Modal */
#routeMap {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.highlight-icon {
    font-size: 2rem;
    color: var(--coastal-blue);
    margin-bottom: 1rem;
}

/* Why Stay With Us */
.feature-card {
    padding: 2rem;
    border-radius: 20px;
    background-color: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--coastal-blue);
    margin-bottom: 1.5rem;
}

/* Testimonials */
.testimonial-card {
    padding: 2rem;
    border-radius: 20px;
    background-color: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin: 1rem 0;
    position: relative;
}

.testimonial-card::before {
    content: '\201C';
    position: absolute;
    top: 0;
    left: 20px;
    font-size: 5rem;
    color: var(--coastal-blue-light);
    font-family: Georgia, serif;
    line-height: 1;
}

.stars {
    color: #f39c12;
    margin-bottom: 1rem;
}

.guest-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 1rem;
}

.guest-info {
    display: flex;
    align-items: center;
    margin-top: 1.5rem;
}

/* Island Stories Section */
.blog-card {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    background-color: white;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.blog-img {
    height: 200px;
    background-size: cover;
    background-position: center;
}

.blog-img-1 {
    background-image: url('https://images.unsplash.com/photo-1544550581-5f7ceaf7f992?ixlib=rb-4.0.3&auto=format&fit=crop&w=600&q=80');
}

.blog-img-2 {
    background-image: url('https://images.unsplash.com/photo-1596178065887-1198b6148b2b?ixlib=rb-4.0.3&auto=format&fit=crop&w=600&q=80');
}

.blog-img-3 {
    background-image: url('https://images.unsplash.com/photo-1559599189-fe84dea4eb79?ixlib=rb-4.0.3&auto=format&fit=crop&w=600&q=80');
}

.blog-tag {
    background-color: var(--coastal-blue);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 500;
    display: inline-block;
    margin-bottom: 0.5rem;
}

.blog-date {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.card-body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-card .card-body h4 {
    margin-bottom: 1rem;
    font-size: 1.25rem;
    line-height: 1.4;
}

.blog-card .card-body p {
    margin-bottom: 1.5rem;
}

.blog-card .btn {
    align-self: flex-start;
    margin-top: auto;
}

/* Booking Widget */
.booking-widget {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: white;
    padding: 1.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    z-index: 999;
    max-width: 300px;
    transition: all 0.3s ease;
}

.booking-widget:hover {
    transform: translateY(-5px);
}

/* Pill version of booking widget */
.booking-widget.pill {
    max-width: 180px;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transform: translateY(0);
    width: fit-content;
    min-width: 140px;
}

.booking-widget.pill .widget-title {
    margin-bottom: 0;
    font-size: 1rem;
    padding-bottom: 0;
    white-space: nowrap;
}

.booking-widget.pill .widget-title::after {
    display: none;
}

.booking-widget.pill form {
    display: none;
}

.booking-widget.pill p,
.booking-widget.pill .btn {
    display: none;
}

.widget-title {
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-dark);
    position: relative;
    padding-bottom: 0.5rem;
}

.widget-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--coastal-blue);
}

/* Sidebar Widgets */
.sidebar-widget {
    background-color: white;
    border-radius: 20px;
    padding: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 1.5rem;
}

.search-widget form {
    display: flex;
}

.search-widget input {
    border-radius: 50px 0 0 50px;
    border: 1px solid #e2e8f0;
    padding: 0.8rem 1.2rem;
    flex-grow: 1;
}

.search-widget button {
    border-radius: 0 50px 50px 0;
    background-color: var(--coastal-blue);
    color: white;
    border: none;
    padding: 0 1.5rem;
}

.categories-widget ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.categories-widget li {
    border-bottom: 1px solid #e2e8f0;
    padding: 0.8rem 0;
}

.categories-widget li:last-child {
    border-bottom: none;
}

.categories-widget a {
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s ease;
    display: flex;
    justify-content: space-between;
}

.categories-widget a:hover {
    color: var(--coastal-blue);
}

.recent-post-item {
    display: flex;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e2e8f0;
}

.recent-post-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.recent-post-img {
    width: 70px;
    height: 70px;
    border-radius: 10px;
    object-fit: cover;
    margin-right: 1rem;
}

.recent-post-info h6 {
    margin-bottom: 0.3rem;
    font-size: 0.95rem;
    line-height: 1.4;
}

.recent-post-info a {
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

.recent-post-info a:hover {
    color: var(--coastal-blue);
}

.recent-post-date {
    font-size: 0.8rem;
    color: var(--text-light);
}

.tags-widget .tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tags-widget .tag {
    background-color: var(--coastal-blue-light);
    color: var(--coastal-blue);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.tags-widget .tag:hover {
    background-color: var(--coastal-blue);
    color: white;
}

.newsletter-widget p {
    margin-bottom: 1rem;
}

.newsletter-widget form {
    display: flex;
}

.newsletter-widget input {
    border-radius: 50px 0 0 50px;
    border: 1px solid #e2e8f0;
    padding: 0.8rem 1.2rem;
    flex-grow: 1;
}

.newsletter-widget button {
    border-radius: 0 50px 50px 0;
    background-color: var(--coastal-blue);
    color: white;
    border: none;
    padding: 0 1.5rem;
}

/* Room Detail Page Styles */
.room-detail-hero {
    height: 50vh;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), 
                url('https://images.unsplash.com/photo-1590490360182-c33d57733427?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
}

.room-detail-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease-out;
}

.room-detail-hero p {
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto;
    animation: fadeInUp 1.2s ease-out;
}

.room-gallery {
    margin-bottom: 2rem;
}

.carousel-inner {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.carousel-control-prev, 
.carousel-control-next {
    width: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.8;
}

.carousel-control-prev {
    left: 20px;
}

.carousel-control-next {
    right: 20px;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 20px;
    height: 20px;
}

.carousel-indicators {
    bottom: 20px;
}

.carousel-indicators button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin: 0 5px;
    background-color: rgba(255, 255, 255, 0.5);
}

.carousel-indicators .active {
    background-color: white;
}

.room-description {
    background-color: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

.room-description h2 {
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.room-description p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.amenities-list,
.features-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.amenities-list li,
.features-list li {
    display: flex;
    align-items: center;
}

.amenities-list i,
.features-list i {
    color: var(--coastal-blue);
    margin-right: 0.5rem;
}

.room-policy {
    background-color: var(--coastal-blue-light);
    border-radius: 10px;
    padding: 1.5rem;
    margin-top: 2rem;
}

.room-policy h4 {
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.room-policy ul {
    list-style: none;
    padding: 0;
}

.room-policy li {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: flex-start;
}

.room-policy i {
    color: var(--coastal-blue);
    margin-right: 0.5rem;
    margin-top: 0.3rem;
}

/* Blog Detail Page Styles */
.blog-detail-content {
    background-color: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

.blog-detail-content img {
    border-radius: 10px;
    margin: 1.5rem 0;
    max-width: 100%;
    height: auto;
}

.blog-detail-content h2, 
.blog-detail-content h3, 
.blog-detail-content h4 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.blog-detail-content p {
    margin-bottom: 1.5rem;
    color: var(--text-light);
    line-height: 1.8;
}

.blog-detail-content ul, 
.blog-detail-content ol {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
    color: var(--text-light);
}

.blog-detail-content li {
    margin-bottom: 0.5rem;
}

.blog-detail-content blockquote {
    border-left: 4px solid var(--coastal-blue);
    padding: 1rem 1.5rem;
    background-color: var(--coastal-blue-light);
    margin: 1.5rem 0;
    border-radius: 0 10px 10px 0;
    font-style: italic;
}

.blog-detail-content .caption {
    text-align: center;
    font-size: 0.9rem;
    color: var(--text-light);
    margin-top: -1rem;
    margin-bottom: 1.5rem;
}

.share-post {
    display: flex;
    align-items: center;
    margin: 2rem 0;
    padding-top: 1.5rem;
    border-top: 1px solid #e2e8f0;
}

.share-post span {
    margin-right: 1rem;
    font-weight: 600;
}

.share-post a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--coastal-blue-light);
    color: var(--coastal-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 0.5rem;
    transition: all 0.3s ease;
}

.share-post a:hover {
    background-color: var(--coastal-blue);
    color: white;
}

.author-bio {
    background-color: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
}

.author-img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 1.5rem;
}

.author-info h4 {
    margin-bottom: 0.5rem;
}

.author-info p {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.author-social a {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background-color: var(--coastal-blue-light);
    color: var(--coastal-blue);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 0.5rem;
    transition: all 0.3s ease;
}

.author-social a:hover {
    background-color: var(--coastal-blue);
    color: white;
}

.comments-section {
    background-color: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

.comment {
    display: flex;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e2e8f0;
}

.comment:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.comment-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 1.5rem;
}

.comment-info h5 {
    margin-bottom: 0.3rem;
}

.comment-date {
    font-size: 0.8rem;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.comment-text {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.comment-reply {
    color: var(--coastal-blue);
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s ease;
}

.comment-reply:hover {
    color: #2980b9;
}

.comment-reply-container {
    margin-left: 4rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #e2e8f0;
}

.comment-form {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #e2e8f0;
}

.comment-form h4 {
    margin-bottom: 1.5rem;
}

/* Contact Page Styles */
.contact-info-card {
    padding: 2rem;
    border-radius: 20px;
    background-color: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.contact-info-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: var(--coastal-blue-light);
    color: var(--coastal-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.contact-info-card h4 {
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.contact-info-card p {
    color: var(--text-light);
    margin-bottom: 0;
}

.contact-form {
    background-color: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.map-container-lg {
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.directions-info {
    background-color: white;
    border-radius: 20px;
    padding: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-top: 1.5rem;
}

.directions-info h4 {
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.directions-info p {
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

/* FAQ Accordion Styling */
.accordion-item {
    border: none;
    margin-bottom: 1rem;
    border-radius: 10px !important;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.accordion-button {
    padding: 1.25rem 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    background-color: white;
    border: none;
    box-shadow: none;
}

.accordion-button:not(.collapsed) {
    color: var(--coastal-blue);
    background-color: var(--coastal-blue-light);
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: transparent;
}

.accordion-button::after {
    background-size: 1rem;
    transition: all 0.3s ease;
}

.accordion-body {
    padding: 1.25rem 1.5rem;
    color: var(--text-light);
}

.cta-contact {
    background-color: var(--coastal-blue-light);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    margin-top: 3rem;
}

.cta-contact h3 {
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.cta-contact p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

/* Room Detail Sidebar */
.booking-sidebar form {
    margin-top: 1rem;
}

.contact-sidebar p {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
}

.contact-sidebar i {
    color: var(--coastal-blue);
    margin-right: 0.5rem;
}

.other-room-item {
    display: flex;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e2e8f0;
}

.other-room-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.other-room-img {
    width: 80px;
    height: 80px;
    border-radius: 10px;
    object-fit: cover;
    margin-right: 1rem;
}

.other-room-item h5 {
    font-size: 1rem;
    margin-bottom: 0.3rem;
}

.room-price {
    color: var(--coastal-blue);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.room-price span {
    font-weight: normal;
    color: var(--text-light);
    font-size: 0.8rem;
}

.form-control {
    border-radius: 10px;
    margin-bottom: 1rem;
    padding: 0.8rem;
    border: 1px solid #e2e8f0;
}

/* Footer */
.footer {
    background-color: var(--runway-gray);
    color: white;
    padding: 4rem 0 1rem;
}

.footer h5 {
    color: var(--coastal-blue);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.footer-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
    display: block;
    margin-bottom: 0.5rem;
}

.footer-link:hover {
    color: var(--coastal-blue);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: var(--coastal-blue);
    transform: translateY(-3px);
}

.map-container {
    height: 200px;
    border-radius: 10px;
    overflow: hidden;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Scroll to Top Button */
.scroll-top {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--coastal-blue);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 999;
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    background-color: #2980b9;
    transform: translateY(-3px);
}

/* About Page Cards */
.value-card {
    padding: 2rem;
    border-radius: 20px;
    background-color: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    text-align: center;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.value-icon {
    font-size: 2.5rem;
    color: var(--coastal-blue);
    margin-bottom: 1.5rem;
}

.mission-statement {
    font-style: italic;
    font-size: 1.2rem;
    color: var(--text-dark);
    max-width: 800px;
    margin: 0 auto;
    padding: 1.5rem;
    border-left: 4px solid var(--coastal-blue);
    background-color: var(--coastal-blue-light);
    border-radius: 0 10px 10px 0;
}

.team-card {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    background-color: white;
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.team-img-container {
    overflow: hidden;
    height: 250px;
}

.team-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.team-card:hover .team-img {
    transform: scale(1.05);
}

.team-info {
    padding: 1.5rem;
}

.team-position {
    color: var(--coastal-blue);
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.team-bio {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.team-social {
    display: flex;
    gap: 0.5rem;
}

.team-social a {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background-color: var(--coastal-blue-light);
    color: var(--coastal-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.team-social a:hover {
    background-color: var(--coastal-blue);
    color: white;
}

.award-card {
    padding: 1.5rem;
    border-radius: 20px;
    background-color: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.award-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.award-icon {
    font-size: 2rem;
    color: var(--coastal-blue);
    margin-bottom: 1rem;
}

.award-title {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.award-org {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

/* Blog Styles */
.featured-post {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    background-color: #fff;
    transition: all 0.3s ease;
}

.featured-post:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.featured-img {
    height: 400px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.featured-content {
    padding: 30px;
}

.blog-tag {
    display: inline-block;
    background-color: var(--coastal-blue);
    color: #fff;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    margin-right: 10px;
}

.blog-date {
    font-size: 14px;
    color: var(--text-light);
}

.featured-title {
    font-size: 28px;
    margin: 15px 0;
}

.featured-excerpt {
    color: var(--text-light);
    margin-bottom: 20px;
}

.blog-card {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    background-color: #fff;
    height: 100%;
    transition: all 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.blog-img {
    height: 200px;
    background-size: cover;
    background-position: center;
}

.blog-title {
    font-size: 18px;
    margin: 15px 0 10px;
    line-height: 1.4;
}

.blog-title a {
    color: var(--text-dark);
}

.blog-title a:hover {
    color: var(--coastal-blue);
}

.blog-excerpt {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 15px;
}

.read-more {
    font-size: 14px;
    font-weight: 500;
    color: var(--coastal-blue);
}

.read-more:hover {
    text-decoration: underline;
}

/* Pagination */
.pagination-container {
    margin-top: 50px;
}

.pagination .page-link {
    color: var(--text-dark);
    border: none;
    margin: 0 5px;
    border-radius: 5px;
    padding: 8px 15px;
}

.pagination .page-item.active .page-link {
    background-color: var(--coastal-blue);
    color: #fff;
}

.pagination .page-link:hover {
    background-color: #f0f0f0;
    color: var(--coastal-blue);
}

/* Sidebar */
.sidebar-widget {
    background-color: #fff;
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.widget-title {
    font-size: 20px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
    position: relative;
}

.widget-title::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--coastal-blue);
}

.search-form .form-control {
    border-radius: 5px 0 0 5px;
    border: 1px solid #eee;
    padding: 12px 15px;
}

.search-form .btn {
    border-radius: 0 5px 5px 0;
    padding: 12px 15px;
}

.category-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.category-list li {
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid #f0f0f0;
}

.category-list li:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.category-list a {
    color: var(--text-dark);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.category-list a:hover {
    color: var(--coastal-blue);
}

.category-list .count {
    background-color: #f0f0f0;
    color: var(--text-light);
    padding: 2px 8px;
    border-radius: 20px;
    font-size: 12px;
}

.recent-posts {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.recent-post-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.recent-post-img {
    width: 70px;
    height: 70px;
    border-radius: 5px;
    background-size: cover;
    background-position: center;
    flex-shrink: 0;
}

.recent-post-content h6 {
    font-size: 15px;
    margin-bottom: 5px;
    line-height: 1.4;
}

.recent-post-content .date {
    font-size: 12px;
    color: var(--text-light);
}

.tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tag {
    display: inline-block;
    padding: 5px 12px;
    background-color: #f0f0f0;
    color: var(--text-light);
    border-radius: 20px;
    font-size: 12px;
    transition: all 0.3s ease;
}

.tag:hover {
    background-color: var(--coastal-blue);
    color: #fff;
}

/* Blog Detail Styles */
.blog-detail-content {
    background-color: #fff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.blog-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    color: var(--text-light);
    font-size: 14px;
}

.blog-content {
    margin-top: 20px;
    line-height: 1.8;
}

.blog-content p {
    margin-bottom: 20px;
}

.blog-content h2, .blog-content h3 {
    margin-top: 30px;
    margin-bottom: 15px;
}

.blog-content img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin: 20px 0;
}

.blog-content ul, .blog-content ol {
    margin-bottom: 20px;
    padding-left: 20px;
}

.blog-content li {
    margin-bottom: 10px;
}

.blog-content blockquote {
    border-left: 4px solid var(--coastal-blue);
    padding: 15px 20px;
    background-color: #f9f9f9;
    margin: 20px 0;
    font-style: italic;
}

.blog-tags {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.blog-tags h5 {
    margin-bottom: 15px;
}

.blog-share {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.blog-share h5 {
    margin-bottom: 15px;
}

.social-share {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.social-btn {
    display: inline-flex;
    align-items: center;
    padding: 8px 15px;
    border-radius: 5px;
    color: #fff;
    font-size: 14px;
    transition: all 0.3s ease;
}

.social-btn i {
    margin-right: 8px;
}

.social-btn.facebook {
    background-color: #3b5998;
}

.social-btn.twitter {
    background-color: #1da1f2;
}

.social-btn.linkedin {
    background-color: #0077b5;
}

.social-btn.whatsapp {
    background-color: #25d366;
}

.social-btn:hover {
    opacity: 0.9;
    color: #fff;
}

.author-bio {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 10px;
    margin-top: 30px;
}

.author-img img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info h5 {
    margin-bottom: 10px;
}

.author-social {
    margin-top: 10px;
}

.author-social a {
    display: inline-block;
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    background-color: var(--coastal-blue);
    color: #fff;
    border-radius: 50%;
    margin-right: 5px;
    transition: all 0.3s ease;
}

.author-social a:hover {
    background-color: var(--text-dark);
}

.related-posts {
    margin-top: 40px;
}

/* Mobile Responsiveness */
@media (max-width: 991px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .about-img-2 {
        margin-top: 1rem;
    }
    
    .page-header {
        padding: 100px 0;
    }
    
    .featured-img {
        height: 300px;
    }
    
    .sidebar-widget {
        margin-top: 50px;
    }
}

@media (max-width: 767px) {
    .section-padding {
        padding: 3rem 0;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .about-img {
        margin-bottom: 2rem;
        min-height: 300px;
    }
    
    .about-img-2 {
        display: none;
    }
    
    .room-card {
        margin-bottom: 2rem;
    }
    
    .feature-card {
        margin-bottom: 2rem;
    }
    
    .blog-card {
        margin-bottom: 2rem;
    }
    
    .booking-widget {
        position: fixed;
        bottom: 0;
        right: 0;
        left: 0;
        max-width: 100%;
        border-radius: 20px 20px 0 0;
        display: block;
    }
    
    .booking-widget.pill {
        max-width: 150px;
        bottom: 1rem;
        right: 1rem;
        left: auto;
        border-radius: 50px;
    }
}
