/* ============================================
   MODERN DESIGN OVERRIDES
   ============================================ */
:root {
    /* Enhanced Palette - Logo Colors */
    --primary-gold: #B48C58;
    /* Logo Gold */
    --primary-gold-dark: #8c6a3d;
    --deep-green: #006951;
    /* Logo Green */
    --rich-black: #1a1a1a;
    --off-white: #f9f9f9;
    --pure-white: #ffffff;
    --text-grey: #4a4a4a;

    /* Modern Fonts */
    --font-heading: 'Tenor Sans', sans-serif;
    --font-body: 'Josefin Sans', sans-serif;

    /* Shadows */
    --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 15px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 25px rgba(0, 0, 0, 0.15);

    /* Spacing */
    --section-spacing: 100px;
}

body {
    font-family: var(--font-body);
    background-color: var(--off-white);
    color: var(--text-grey);
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6,
.section-heading,
.section-small-title {
    font-family: var(--font-heading);
    letter-spacing: -0.02em;
}


/* ============================================
   UNIFIED HERO STYLES
   ============================================ */
.common-hero {
    position: relative;
    min-height: 75vh;
    /* Increased height slightly for better spacing */
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    margin-bottom: 0;
}

/* Gradient Overlay */
.common-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.6) 100%);
    /* More refined gradient */
    z-index: 1;
}

.common-hero .container {
    position: relative;
    z-index: 2;
    padding-top: 80px;
    /* Push content down to avoid nav overlap */
}

/* Standardized Page Hero Title */
.page-hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 4.5vw, 3.8rem);
    /* Reduced size per request */
    font-weight: 400;
    line-height: 1.2;
    color: var(--pure-white);
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
    letter-spacing: 0.03em;
    animation: fadeInUp 1s cubic-bezier(0.2, 0.8, 0.2, 1);
    /* Smoother animation */
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-hero-description {
    font-size: clamp(1rem, 1.5vw, 1.15rem);
    /* Slightly smaller description */
    color: rgba(255, 255, 255, 0.95);
    max-width: 700px;
    /* Tighter width for better readability */
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 2.5rem;
    font-weight: 400;
    line-height: 1.7;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

/* Hero Buttons */
.hero-content .btn {
    padding: 12px 35px;
    border-radius: 50px;
    font-family: var(--font-body);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    animation: fadeInUp 0.8s ease-out 0.4s backwards;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

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

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

/* ============================================
   GLOBAL UTILITIES
   ============================================ */
.section-padding {
    padding: var(--section-spacing) 0;
}

.section-padding-bottom {
    padding-bottom: var(--section-spacing);
}

.section-small-title {
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    color: var(--primary-gold);
    /* Updated to variable */
    /* Gold/Earth tone */
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    display: block;
    font-family: var(--font-heading);
}

.section-heading {
    font-family: var(--font-heading);
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 400;
    /* Lighter weight */
    color: var(--deep-green);
    /* Updated to variable */
    margin-bottom: 1rem;
    line-height: 1.2;
    text-transform: uppercase;
    /* Added to match reference */
    letter-spacing: -0.01em;
    /* Added to match reference */
}

.display-5 {
    font-family: var(--font-heading);
    font-size: clamp(1.4rem, 2vw, 1.95rem) !important;
    /* Further reduced */
    letter-spacing: 0.02em;
    font-weight: 400;
    color: var(--deep-green) !important;
    /* Updated to variable */
    text-transform: uppercase;
    margin-bottom: 1.5rem !important;
}

/* Removed heavy underline to match clean resort aesthetic */
/* Small elegant underline for heading */
.display-5::after {
    content: '';
    display: block;
    width: 70px;
    height: 1px;
    background-color: var(--primary-gold);
    /* Updated to variable */
    /* Gold tone */
    margin-top: 10px;
    /* Reduced space */
}

.section-description {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #5a5a5a;
    font-family: var(--font-body);
    font-weight: 300;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn-primary,
.custom-btn {
    background-color: var(--primary-gold);
    border-color: var(--primary-gold);
    font-family: var(--font-body);
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 0.1em;
    padding: 12px 30px;
    border-radius: 0;
    transition: all 0.3s ease;
}

.btn-primary:hover,
.custom-btn:hover {
    background-color: var(--primary-gold-dark);
    border-color: var(--primary-gold-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline-light {
    border: 1px solid rgba(255, 255, 255, 0.8);
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 12px 30px;
    border-radius: 0;
}

.btn-outline-light:hover {
    background-color: white;
    color: var(--rich-black);
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */
.main-header.fixed-header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.nav-items a {
    font-family: var(--font-body);
    font-weight: 500;
    letter-spacing: 0.05em;
    font-size: 0.9rem;
}

/* ============================================
   HERO SECTION RELOADED
   ============================================ */
/* We will restructure the HTML, but these styles support the new look */
#hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

#hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.6) 100%);
    pointer-events: none;
    z-index: 1;
}

.hero-overlay-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 900px;
    padding: 0 20px;
    animation: fadeInUp 1s ease-out;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-family: var(--font-body);
    font-size: clamp(1rem, 2vw, 1.5rem);
    font-weight: 300;
    margin-bottom: 3rem;
    opacity: 0.9;
    letter-spacing: 0.05em;
}

/* ============================================
   CARDS & HOVERS
   ============================================ */
.package-card,
.dining-card,
.blog-card {
    border-radius: 8px;
    overflow: hidden;
    background: white;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: var(--shadow-sm);
}

.package-card:hover,
.dining-card:hover,
.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.package-card img,
.dining-card img,
.blog-card img {
    /* height: 300px; Removed to respect original aspect ratios */
    /* object-fit: cover; Removed to respect original aspect ratios */
    transition: transform 0.8s ease;
}

.package-card:hover img,
.dining-card:hover img,
.blog-card:hover img {
    transform: scale(1.05);
}

/* Overlay Styles for Package Card */
.package-card .overlay {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0) 100%);
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    opacity: 1;
    /* Always visible gradient */
    transition: opacity 0.3s ease;
}

.package-card h3 {
    color: white;
    font-family: var(--font-heading);
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.package-card p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease 0.1s;
    height: 0;
    overflow: hidden;
}

.package-card:hover p {
    opacity: 1;
    transform: translateY(0);
    height: auto;
    margin-bottom: 1rem;
}

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

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

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-image-wrapper img {
    min-height: 450px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 2rem;
    /* Reduced from default */
}

.about-text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-grey);
    text-align: justify;
}

.about-features-icon {
    font-size: 1.25rem;
    color: var(--primary-gold);
    margin-bottom: 0.5rem;
}

/* ============================================
   INNER PAGE ELEMENTS (Migrated)
   ============================================ */

/* Hero Sections */
/* ============================================
   HERO SECTIONS (Legacy Support & Specific Overrides)
   ============================================ */
/* Most pages now use .common-hero and .page-hero-title */

/* Keep only if absolutely necessary for specific unique layouts not covered by common-hero */


/* ============================================
   CARDS & COMPONENTS
   ============================================ */

/* Feature Cards (Used in Experiences, About, etc.) */
.feature-card {
    background: var(--pure-white);
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.feature-card .icon {
    margin-bottom: 1.5rem;
}

.feature-card h4 {
    color: var(--deep-green);
    font-weight: 600;
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--text-grey);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Service/Facility Cards */
.service-card,
.facility-card,
.activity-card,
.experience-card,
.benefit-card {
    background: var(--pure-white);
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    height: 100%;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover,
.facility-card:hover,
.activity-card:hover,
.experience-card:hover,
.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.facility-card img,
.activity-card img,
.experience-card img,
.tour-card img {
    transition: transform 0.5s ease;
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.facility-card:hover img,
.activity-card:hover img,
.experience-card:hover img,
.tour-card:hover img {
    transform: scale(1.05);
}

.service-header h3,
.activity-info h3,
.experience-info h3,
.tour-info h3 {
    color: var(--deep-green);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.service-item h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--deep-green);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price,
.service-item h4 .price {
    color: var(--primary-gold);
    font-weight: 700;
}

/* Offers & Packages */
.offer-card,
.package-card,
.deal-card {
    background: var(--pure-white);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    overflow: hidden;
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
}

.offer-card:hover,
.package-card:hover,
.deal-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.offer-badge,
.package-tag,
.deal-discount {
    background: var(--primary-gold);
    color: var(--pure-white);
    font-family: var(--font-body);
    font-weight: 600;
}

.package-tag {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 5px 12px;
    border-radius: 4px;
    font-size: 0.8rem;
    text-transform: uppercase;
}

.offer-features ul,
.package-features,
.membership-features {
    list-style: none;
    padding-left: 0;
    margin-bottom: 20px;
}

.offer-features li,
.package-features li,
.membership-features li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 8px;
    color: var(--text-grey);
}

.offer-features li:before,
.package-features li:before,
.membership-features li:before {
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--primary-gold);
}

/* Testimonials */
.testimonial-card,
.testimonial {
    background: var(--pure-white);
    border-radius: 12px;
    padding: 30px;
    box-shadow: var(--shadow-sm);
    text-align: center;
}

.testimonial-text {
    font-style: italic;
    color: var(--text-grey);
    position: relative;
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.rating {
    color: #FFC107;
    margin-bottom: 10px;
}

/* Breadcrumbs (Standardized) */
.breadcrumb-area {
    background: #f8f9fa;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

.breadcrumb-item a {
    color: var(--deep-green);
    text-decoration: none;
}

.breadcrumb-item a:hover {
    color: var(--primary-gold);
}

.breadcrumb-item.active {
    color: var(--text-grey);
}

/* Room Listings */
.room-listing {
    padding: 60px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.room-listing:last-child {
    border-bottom: none;
}

.room-gallery .main-image {
    height: 400px;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
}

.thumbnail-images .img-thumbnail {
    width: 100px;
    height: 100px;
    object-fit: cover;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    border-radius: 8px !important;
}

.thumbnail-images .img-thumbnail:hover,
.thumbnail-images .img-thumbnail.active {
    border-color: var(--primary-gold);
    transform: scale(1.05);
}

.feature-badge {
    background-color: var(--off-white);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.9rem;
    color: var(--primary-gold-dark);
    font-weight: 500;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

/* Amenities Section */
.amenity-card {
    background: white;
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    padding: 2rem;
    height: 100%;
}

.amenity-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

/* Special Offers */
.offer-card {
    height: 350px;
}

.offer-overlay {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.2) 100%);
    color: white;
    opacity: 1;
    /* Always visible for better UX */
    transition: opacity 0.3s ease;
}

.price-badge {
    background: rgba(255, 255, 255, 0.2);
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 600;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* ============================================
   FOOTER FIXES
   ============================================ */
.footer-wrapper a,
footer a {
    text-decoration: none !important;
    border-bottom: none !important;
    position: relative;
    display: inline-block;
}

.footer-wrapper a:hover,
footer a:hover {
    text-decoration: none !important;
}

/* Custom underline effect */
.footer-wrapper a::after,
footer a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -2px;
    left: 0;
    background-color: var(--primary-gold);
    transition: width 0.3s ease;
}

.footer-wrapper a:hover::after,
footer a:hover::after {
    width: 100%;
}

/* ============================================
   WELLNESS SECTION IMPROVEMENTS
   ============================================ */
.wellness .slider-content {
    height: 100%;
    min-height: 100%;
}

.wellness .slider-content img {
    height: 100%;
    min-height: 650px;
    /* Increased to match text height */
    object-fit: cover;
}

.wellness .slick-list,
.wellness .slick-track {
    height: 100%;
}

/* Quote Section Refined */
.quote {
    position: relative;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    /* Parallax effect */
    padding: 100px 0;
    overflow: hidden;
}

.quote::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    /* Dark overlay for image */
}

.quote .container {
    position: relative;
    z-index: 2;
}

.quote svg path {
    fill: var(--primary-gold) !important;
    opacity: 1;
}

.quote blockquote {
    margin: 0;
    padding: 30px;
    background: rgba(0, 61, 48, 0.7);
    /* Transparent Deep Green bg on text */
    border-top: 3px solid var(--primary-gold);
    border-bottom: 3px solid var(--primary-gold);
    border-radius: 4px;
    /* Slight rounded corners */
}

.quote blockquote q {
    font-family: var(--font-heading);
    font-size: clamp(1.1rem, 2vw, 1.35rem);
    /* Smaller, readable size */
    line-height: 1.8;
    color: var(--pure-white);
    font-style: italic;
    font-weight: 400;
    position: relative;
    display: inline-block;
}

.quote blockquote q::before,
.quote blockquote q::after {
    display: none;
}

/* Restaurant Gallery */
.restaurant-gallery img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 12px;
}

.gallery-thumbnails .img-thumbnail {
    width: 80px;
    height: 80px;
    object-fit: cover;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.gallery-thumbnails .img-thumbnail:hover,
.gallery-thumbnails .img-thumbnail.active {
    border-color: var(--primary-gold);
}

/* Hours & Location Cards */
.hours-card,
.location-card {
    background: var(--pure-white);
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    padding: 1.5rem;
}

.map-container {
    height: 100%;
    box-shadow: var(--shadow-md);
    border-radius: 12px;
    overflow: hidden;
}

/* Common Text Utilities for Cards */

/* Venue Cards */
.venue-card {
    background: var(--pure-white);
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    height: 100%;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.venue-card:hover {
    transform: translateY(-5px);
}

.venue-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.venue-info h3 {
    color: var(--deep-green);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.venue-meta {
    color: var(--text-grey);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.venue-features h5 {
    color: var(--primary-gold);
    font-size: 1rem;
    font-weight: 600;
}

.venue-features ul {
    padding-left: 20px;
    color: var(--text-grey);
    font-size: 0.9rem;
}

/* Event Enquiry & Contact */
.enquiry-form .card {
    border: none;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}


/* Newsletter */


/* Newsletter */
.newsletter-card {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: var(--pure-white);
    padding: 2rem;
    border-radius: 12px;
}

/* Gallery Page */
/* Gallery Page Components */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 1.5rem;
    padding-bottom: 2rem;
}

.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease;
    height: 250px;
}

.gallery-item:hover {
    transform: translateY(-5px);
}

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

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

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: var(--pure-white);
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-caption {
    transform: translateY(0);
}

.gallery-filter {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.5rem 1.5rem;
    border: 1px solid var(--primary-gold);
    background: transparent;
    color: var(--deep-green);
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn.active,
.filter-btn:hover {
    background: var(--primary-gold);
    color: var(--pure-white);
}

/* Contact Page */
.contact-info-box,
.contact-form-box {
    padding: 2.5rem;
    background: var(--pure-white);
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    height: 100%;
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.info-item .icon {
    width: 50px;
    height: 50px;
    background: var(--off-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.5rem;
    color: var(--primary-gold);
}

.contact-form-box label {
    font-weight: 500;
    color: var(--deep-green);
}

/* ============================================
   BOOKING PROCESS STYLES
   ============================================ */
/* Enhanced flatpickr styling */
.flatpickr-calendar {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border: 1px solid #e0e6ed;
}

.flatpickr-day.selected,
.flatpickr-day.selected:focus,
.flatpickr-day.selected:hover {
    background: #007bff;
    border-color: #007bff;
    color: white;
}

.flatpickr-day.today {
    background: #e3f2fd;
    border-color: #2196f3;
    color: #1976d2;
}

.flatpickr-day.today:hover {
    background: #1976d2;
    border-color: #1976d2;
    color: white;
}

.flatpickr-months {
    background: #007bff;
    border-radius: 8px 8px 0 0;
}

.flatpickr-months .flatpickr-month {
    color: white;
}

.flatpickr-weekdays {
    background: #f8f9fa;
    border-radius: 0 0 8px 8px;
}

.flatpickr-current-month {
    color: white;
}

.flatpickr-current-month input.cur-year {
    color: white;
}

.flatpickr-next-month,
.flatpickr-prev-month {
    color: white;
}

.flatpickr-next-month:hover,
.flatpickr-prev-month:hover {
    background: rgba(255, 255, 255, 0.2);
}

.flatpickr-innerContainer {
    border-radius: 0 0 8px 8px;
}

.flatpickr-rContainer {
    border-radius: 0 0 8px 8px;
}

.booking-progress {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
    position: relative;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.progress-step {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 2;
}

/* Enhanced progress line */
.progress-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 28px;
    right: -50%;
    width: 100%;
    height: 4px;
    background: linear-gradient(to right, #e9ecef 0%, #e9ecef 100%);
    z-index: -1;
    border-radius: 2px;
    transition: all 0.4s ease;
}

.progress-step.active:not(:last-child)::after,
.progress-step.completed:not(:last-child)::after {
    background: linear-gradient(to right, #007bff 0%, #28a745 100%);
    box-shadow: 0 2px 8px rgba(0, 123, 255, 0.3);
}

.progress-step.completed {
    text-decoration: none !important;
}

.progress-step.completed::after {
    background: linear-gradient(to right, #28a745 0%, #28a745 100%);
    box-shadow: 0 2px 8px rgba(40, 167, 69, 0.3);
}

/* Unique Diamond-shaped step indicators */
.step-circle {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    color: #6c757d;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.75rem;
    font-weight: 700;
    font-size: 1.2rem;
    position: relative;
    transition: all 0.4s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border: 3px solid #dee2e6;
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
    transform: rotate(45deg);
}

.step-circle.active {
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    color: white;
    transform: rotate(45deg) scale(1.08);
    box-shadow: 0 6px 20px rgba(0, 123, 255, 0.5);
    border-color: #007bff;
}

.step-circle.completed {
    background: linear-gradient(135deg, #28a745 0%, #1e7e34 100%);
    color: white;
    transform: rotate(45deg) scale(1.05);
    box-shadow: 0 6px 20px rgba(40, 167, 69, 0.5);
    border-color: #28a745;
}

/* Inner content for diamond */
.step-circle .step-number,
.step-circle .fa-check {
    transform: rotate(-45deg);
    z-index: 2;
}

/* Step labels enhancement */
.progress-step div:last-child {
    font-weight: 500;
    color: #495057;
    font-size: 0.95rem;
    line-height: 1.4;
    padding: 0 0.5rem;
}

.progress-step.active div:last-child {
    color: #007bff;
    font-weight: 600;
}

.progress-step.completed div:last-child {
    color: #28a745;
    font-weight: 600;
}

/* Enhanced hover effects for diamond shapes */
.progress-step:hover .step-circle {
    transform: rotate(45deg) scale(1.03);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.progress-step.active:hover .step-circle {
    transform: rotate(45deg) scale(1.12);
    box-shadow: 0 8px 24px rgba(0, 123, 255, 0.6);
}

.progress-step.completed:hover .step-circle {
    transform: rotate(45deg) scale(1.08);
    box-shadow: 0 8px 24px rgba(40, 167, 69, 0.6);
}

/* Progress percentage indicator */
.progress-percentage {
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.8rem;
    font-weight: 600;
    color: #007bff;
    background: white;
    padding: 0.25rem 0.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    border: 1px solid #e9ecef;
}

/* Unique connecting line enhancement for diamond design */
.progress-step:not(:last-child)::before {
    content: '';
    position: absolute;
    top: 28px;
    right: -25%;
    width: 50%;
    height: 4px;
    background: linear-gradient(to right, transparent 0%, #e9ecef 30%, #e9ecef 70%, transparent 100%);
    z-index: -2;
    border-radius: 2px;
}

.progress-step.active:not(:last-child)::before,
.progress-step.completed:not(:last-child)::before {
    background: linear-gradient(to right, transparent 0%, #007bff 30%, #28a745 70%, transparent 100%);
}

/* Mobile responsive adjustments for diamond design */
@media (max-width: 768px) {
    .booking-progress {
        margin-bottom: 2rem;
        padding: 0 1rem;
    }

    .step-circle {
        width: 52px;
        height: 52px;
        font-size: 1rem;
    }

    .progress-step:not(:last-child)::after {
        top: 26px;
        height: 3px;
    }

    .progress-step:not(:last-child)::before {
        top: 26px;
    }

    .progress-step div:last-child {
        font-size: 0.85rem;
        padding: 0 0.25rem;
    }

    .progress-percentage {
        top: -35px;
        font-size: 0.75rem;
        padding: 0.2rem 0.4rem;
    }
}

@media (max-width: 576px) {
    .booking-progress {
        flex-direction: column;
        gap: 1.5rem;
    }

    .progress-step {
        width: 100%;
        display: flex;
        align-items: center;
        text-align: left;
    }

    .step-circle {
        margin: 0;
        margin-right: 1rem;
        flex-shrink: 0;
    }

    .progress-step:not(:last-child)::after,
    .progress-step:not(:last-child)::before {
        display: none;
    }

    .progress-step div:last-child {
        flex: 1;
    }
}

.room-card {
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
}

.room-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.room-card.selected {
    border-color: #007bff;
    background-color: #f8f9fa;
}

.extra-item {
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.extra-item:hover {
    border-color: #007bff;
    background-color: #f8f9fa;
}

.extra-item.selected {
    border-color: #007bff;
    background-color: #e3f2fd;
}

.price-summary {
    position: sticky;
    top: 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.total-price {
    font-size: 1.5rem;
    font-weight: bold;
    color: #28a745;
}

.loading-spinner {
    display: none;
}

.loading-spinner.show {
    display: inline-block;
}

.room-images {
    max-height: 200px;
    object-fit: cover;
}

.step-content {
    display: none;
}

.step-content.active {
    display: block;
}

.selected-dates-display {
    margin-bottom: 1.5rem;
}

.selected-dates-display .alert {
    border-left: 4px solid #28a745;
}

.selected-dates-display h5 {
    color: #28a745;
}

/* Booking Info Badge */
.hero-booking-badge {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 1.5rem 2.5rem;
    border-radius: 16px;
    margin-top: 1rem;
    animation: fadeInUp 0.8s ease-out 0.6s backwards;
}

.hero-booking-badge .label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    opacity: 0.9;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.hero-booking-badge .price {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 400;
    color: var(--primary-gold);
    line-height: 1;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.hero-booking-badge .price small {
    font-size: 1rem;
    color: var(--pure-white);
    font-family: var(--font-body);
    font-weight: 400;
}

.hero-booking-badge .availability {
    font-size: 0.9rem;
    background: rgba(0, 105, 81, 0.8);
    /* deep green */
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 1.25rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.hero-booking-badge .btn {
    box-shadow: 0 4px 15px rgba(180, 140, 88, 0.3);
    /* gold shadow */
    min-width: 200px;
}