@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;700&family=Playfair+Display:ital,wght@0,400;0,700;1,400&display=swap');

:root {
    --primary: #1a4d2e;
    --primary-light: #4f6f52;
    --accent: #d4af37;
    --bg-light: #f9fbf9;
    --text-dark: #1a1a1a;
    --text-muted: #555;
    --white: #ffffff;
    --glass: rgba(255, 255, 255, 0.8);
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.flip-icon {
    transform: scaleX(-1);
    display: inline-block;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3 {
    font-family: 'Playfair Display', serif;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1.5rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    transition: var(--transition);
}

nav.scrolled {
    background: var(--glass);
    backdrop-filter: blur(10px);
    padding: 1rem 5%;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
    letter-spacing: -1px;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
}

.nav-links a:hover::after {
    width: 100%;
}

/* Nav Phone Info Desktop */
.nav-phone-desktop {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    font-size: 0.85rem;
    font-weight: 600;
}

.nav-phone-desktop a {
    color: var(--primary);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    transition: var(--transition);
}

.nav-phone-desktop a:hover {
    color: var(--accent);
}

.nav-phone-desktop a.support-link {
    color: var(--primary-light);
    margin-top: 0.2rem;
}

.nav-phone-desktop a.support-link:hover {
    color: var(--accent);
}

@media (max-width: 992px) {
    .nav-phone-desktop {
        display: none !important;
    }
}

/* Hero Section */
.hero {
    height: 100vh;
    width: 100%;
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), url('assets/images/7.jpeg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--white);
    padding: 0 1rem;
}

.hero h1 {
    font-size: clamp(3rem, 10vw, 6rem);
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease-out;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    max-width: 600px;
    animation: fadeInUp 1s ease-out 0.2s backwards;
}

.cta-button {
    padding: 1rem 2.5rem;
    background: var(--primary);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    animation: fadeInUp 1s ease-out 0.4s backwards;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(26, 77, 46, 0.3);
    background: var(--primary-light);
}

/* Section Common */
section {
    padding: 100px 5%;
}

.section-title {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title h2 {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.section-title span {
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.9rem;
    font-weight: 600;
}

/* Features/About Section */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.feature-card {
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.03);
    transition: var(--transition);
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-card i {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 1.5rem;
    display: block;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

/* Image Text Section */
.info-section {
    display: flex;
    align-items: center;
    gap: 5%;
    margin-bottom: 5rem;
}

.info-section:nth-child(even) {
    flex-direction: row-reverse;
}

.info-image {
    flex: 1;
    border-radius: 30px;
    overflow: hidden;
    height: 500px;
}

.info-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.info-content {
    flex: 1;
}

.info-content h3 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary);
}

.info-content p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

/* Contact Section */
.contact {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: var(--white);
    border-radius: 40px;
    padding: 80px 5%;
    margin: 50px 5%;
    text-align: center;
}

.contact h2 {
    color: var(--white);
    font-size: 3rem;
    margin-bottom: 3rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.contact-item {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(5px);
    padding: 2rem;
    border-radius: 20px;
    border: 1px border rgba(255,255,255,0.1);
    transition: var(--transition);
}

.contact-item:hover {
    background: rgba(255,255,255,0.2);
    transform: scale(1.05);
}

.contact-item a {
    color: var(--white);
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 500;
}

/* Booking Section */
.booking-section {
    background: #f0f4f1;
}

.booking-container {
    display: flex;
    gap: 4rem;
    align-items: flex-start;
}

.booking-form-wrapper {
    flex: 2;
    background: var(--white);
    padding: 3rem;
    border-radius: 30px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.05);
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: flex;
    gap: 1rem;
}

.form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary);
}

.form-group input, 
.form-group select, 
.form-group textarea {
    padding: 1rem;
    border: 2px solid #eee;
    border-radius: 12px;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus, 
.form-group select:focus, 
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-light);
    box-shadow: 0 0 0 4px rgba(79, 111, 82, 0.1);
}

.booking-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    border-left: 4px solid var(--accent);
}

.info-card i {
    font-size: 1.5rem;
    color: var(--accent);
    margin-bottom: 1rem;
}

.info-card h4 {
    margin-bottom: 0.5rem;
    color: var(--primary);
}

.info-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
}

/* Premium Booking Section */
.premium-booking {
    display: flex;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    background: #fff;
    padding: 3rem;
    border-radius: 40px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.05);
}

.calendar-panel {
    flex: 1.2;
    min-width: 350px;
}

.booking-form-panel {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.calendar-legend {
    display: flex;
    gap: 1.5rem;
    margin-top: 1.5rem;
    justify-content: center;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.dot.available { background: var(--primary); }
.dot.booked { background: #ef5350; }

#bookingForm label {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    margin-bottom: 0.5rem;
    color: var(--primary);
    font-weight: 600;
}

#bookingForm i {
    color: var(--accent);
}

.submit-booking {
    margin-top: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
}

.quick-info {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px dashed #eee;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.info-mini {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.info-mini i {
    color: var(--accent);
}

.info-mini a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
}

/* Flatpickr Inline Mode Styles */
.flatpickr-calendar.inline {
    width: 100% !important;
    box-shadow: none !important;
    border: none !important;
    background: transparent !important;
}

.flatpickr-months .flatpickr-month {
    background: transparent !important;
    color: var(--primary) !important;
}

.flatpickr-current-month .flatpickr-monthDropdown-months {
    font-weight: 700 !important;
}

.flatpickr-day.selected {
    background: var(--primary) !important;
    border-color: var(--primary) !important;
}

.flatpickr-calendar {
    margin: 0 auto;
}

/* Flatpickr Custom Styling for Blocked Dates */
.flatpickr-day.prevMonthDay, 
.flatpickr-day.nextMonthDay {
    display: none !important;
}

.flatpickr-day.is-booked {
    background: #ffebee !important;
    color: #ef5350 !important;
    cursor: not-allowed !important;
    border-color: transparent !important;
    text-decoration: line-through;
}

@media (max-width: 992px) {
    .premium-booking {
        flex-direction: column;
        padding: 2rem;
    }
    .calendar-panel {
        min-width: unset;
    }
}

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

/* Responsive */
@media (max-width: 992px) {
    .booking-container {
        flex-direction: column;
    }
    .booking-form-wrapper, .booking-info {
        width: 100%;
    }
}

/* Footer Styles */
.main-footer {
    background: #111;
    color: var(--white);
    padding: 80px 5% 40px;
    font-size: 0.95rem;
}

.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 4rem;
    margin-bottom: 60px;
}

.footer-column h4 {
    color: var(--accent);
    margin-bottom: 2rem;
    font-size: 1.2rem;
    font-family: 'Outfit', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.footer-column p {
    color: rgba(255,255,255,0.6);
    line-height: 1.8;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.footer-links, .footer-contact {
    list-style: none;
}

.footer-links li, .footer-contact li {
    margin-bottom: 1rem;
}

.footer-links a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--accent);
    padding-left: 5px;
}

.footer-contact li {
    display: flex;
    gap: 1rem;
    color: rgba(255,255,255,0.6);
}

.footer-contact i {
    color: var(--accent);
    margin-top: 5px;
}

.footer-bottom {
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: rgba(255,255,255,0.4);
    font-size: 0.85rem;
}

.footer-bottom a {
    color: var(--white);
    text-decoration: none;
    border-bottom: 1px solid var(--accent);
}

@media (max-width: 992px) {
    .footer-container {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    nav {
        padding: 1rem 5%;
    }
    .nav-links {
        display: none;
    }
    .info-section {
        flex-direction: column !important;
    }
    .info-image {
        width: 100%;
        height: 300px;
        margin-bottom: 2rem;
    }
    .section-title h2 {
        font-size: 2.5rem;
    }
    .form-row {
        flex-direction: column;
    }
    .footer-container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

/* Modal Overlay & Content */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal-overlay.active {
    display: flex;
    opacity: 1;
}

.modal-content {
    background: var(--white);
    padding: 3rem;
    border-radius: 30px;
    width: 90%;
    max-width: 450px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.modal-overlay.active .modal-content {
    transform: translateY(0);
}

.modal-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
}

.modal-content h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.modal-content p {
    color: var(--text-muted);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.success-icon { background: #e8f5e9; color: #2e7d32; }
.error-icon { background: #ffebee; color: #c62828; }

.success-icon::before { content: '\f00c'; font-family: 'Font Awesome 6 Free'; font-weight: 900; }
.error-icon::before { content: '\f00d'; font-family: 'Font Awesome 6 Free'; font-weight: 900; }

/* Nearby Attractions Section */
.attractions-section {
    background: #fdfdfd;
}

.attractions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.attraction-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.03);
    display: flex;
    align-items: center;
    gap: 1.5rem;
    transition: var(--transition);
    border-left: 4px solid var(--accent);
}

.attraction-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.attraction-icon {
    width: 60px;
    height: 60px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--accent);
    flex-shrink: 0;
}

.attraction-info h4 {
    color: var(--primary);
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
}

.attraction-info .distance {
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 500;
    display: inline-block;
    background: #f0f4f1;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
}

/* Accommodations and Rates Section */
.rates-section {
    background: #fdfdfd;
}

.rates-container {
    display: flex;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: stretch;
}

.stay-details-card {
    flex: 1;
    background: var(--white);
    padding: 3rem;
    border-radius: 30px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.03);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.stay-details-card h3 {
    font-size: 2.2rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.stay-desc {
    color: var(--text-muted);
    font-size: 1.05rem;
    margin-bottom: 2rem;
}

.detail-bullets {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.bullet-item {
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
}

.bullet-icon {
    width: 45px;
    height: 45px;
    border-radius: 12px;
    background: rgba(26, 77, 46, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.2rem;
    flex-shrink: 0;
    transition: var(--transition);
}

.bullet-item:hover .bullet-icon {
    background: var(--primary);
    color: var(--white);
    transform: scale(1.05);
}

.bullet-text h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.1rem;
    color: var(--primary);
    margin-bottom: 0.2rem;
}

.bullet-text p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.4;
}

.pricing-cards-container {
    flex: 1.5;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.price-package-card {
    background: var(--white);
    padding: 3rem 2rem;
    border-radius: 30px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.03);
    position: relative;
    border: 1px solid #f0f0f0;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: var(--transition);
}

.price-package-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

.price-package-card.featured {
    border: 2px solid var(--primary);
}

.price-package-card .badge {
    position: absolute;
    top: -15px;
    background: var(--accent);
    color: var(--white);
    padding: 0.4rem 1.2rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.package-icon {
    width: 70px;
    height: 70px;
    background: rgba(26, 77, 46, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    transition: var(--transition);
}

.price-package-card.featured .package-icon {
    background: var(--primary);
    color: var(--white);
}

.price-package-card:hover .package-icon {
    transform: rotateY(180deg);
}

.price-package-card h3 {
    font-size: 1.6rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.package-tagline {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.price-amount {
    margin-bottom: 2rem;
}

.price-amount .currency {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary);
    vertical-align: top;
    position: relative;
    top: 5px;
}

.price-amount .val {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary);
    font-family: 'Playfair Display', serif;
}

.price-amount .period {
    font-size: 0.9rem;
    color: var(--text-muted);
    display: block;
    margin-top: -5px;
}

.package-features {
    list-style: none;
    width: 100%;
    margin-bottom: 2.5rem;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.package-features li {
    font-size: 0.95rem;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.package-features li i {
    font-size: 1.1rem;
}

.package-features li i.fa-check-circle {
    color: var(--primary-light);
}

.package-features li i.fa-times-circle.no {
    color: #ef5350;
}

.select-pkg-btn {
    width: 100%;
    text-align: center;
    padding: 0.8rem 2rem;
    font-size: 0.95rem;
    margin-top: auto;
}

/* Live Price Calculator Styling */
.live-price-summary {
    background: rgba(26, 77, 46, 0.04);
    border: 2px dashed rgba(26, 77, 46, 0.15);
    border-radius: 16px;
    padding: 1.5rem;
    margin-top: 0.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    transition: all 0.3s ease;
}

.live-price-summary.updated {
    animation: pulseBg 0.4s ease-out;
}

@keyframes pulseBg {
    0% { background: rgba(26, 77, 46, 0.04); }
    50% { background: rgba(212, 175, 55, 0.1); }
    100% { background: rgba(26, 77, 46, 0.04); }
}

.price-calc-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.95rem;
    color: var(--text-muted);
}

.price-calc-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--primary);
    border-top: 1px solid rgba(26, 77, 46, 0.1);
    padding-top: 0.8rem;
    margin-top: 0.4rem;
}

.price-calc-total #summaryTotal {
    font-size: 1.5rem;
    color: var(--accent);
    font-family: 'Playfair Display', serif;
}

/* Responsive updates for rates */
@media (max-width: 992px) {
    .rates-container {
        flex-direction: column;
    }
    .pricing-cards-container {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .pricing-cards-container {
        grid-template-columns: 1fr;
    }
    .stay-details-card {
        padding: 2rem;
    }
    .price-package-card {
        padding: 2.5rem 1.5rem;
    }
}

/* Gallery Section */
.gallery-section {
    background: #fdfdfd;
}

.gallery-slider-wrapper {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 30px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.05);
}

.gallery-slider {
    position: relative;
    height: 550px;
    width: 100%;
}

.gallery-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    z-index: 1;
    transition: opacity 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
    border-radius: 30px;
    overflow: hidden;
}

.gallery-slide.active {
    opacity: 1;
    z-index: 2;
}

.gallery-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Gradient overlay for text legibility */
.gallery-slide::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40%;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    z-index: 3;
}

.slide-caption {
    position: absolute;
    bottom: 2.5rem;
    left: 3rem;
    right: 3rem;
    color: var(--white);
    font-size: 1.6rem;
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    z-index: 4;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 55px;
    height: 55px;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.slider-arrow:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 4px 20px rgba(26, 77, 46, 0.4);
}

.slider-arrow.prev {
    left: 2rem;
}

.slider-arrow.next {
    right: 2rem;
}

/* Dots Indicator */
.slider-dots {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.8rem;
    z-index: 10;
}

.slider-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: var(--transition);
}

.slider-dots .dot.active {
    background: var(--white);
    transform: scale(1.3);
}

/* Responsive styles for gallery */
@media (max-width: 768px) {
    .gallery-slider {
        height: 350px;
    }
    .slide-caption {
        font-size: 1.15rem;
        bottom: 1.5rem;
        left: 1.5rem;
        right: 1.5rem;
    }
    .slider-arrow {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
    .slider-arrow.prev { left: 1rem; }
    .slider-arrow.next { right: 1rem; }
}

/* Mobile Menu Toggle Button */
.mobile-menu-btn {
    display: none;
    background: transparent;
    border: none;
    font-size: 1.5rem;
    color: var(--primary);
    cursor: pointer;
    transition: var(--transition);
    padding: 0.5rem;
}

.mobile-menu-btn:hover {
    color: var(--accent);
}

/* Mobile Drawer Overlay */
.mobile-drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    z-index: 2000;
    display: none;
    opacity: 0;
    transition: var(--transition);
}

.mobile-drawer-overlay.active {
    display: block;
    opacity: 1;
}

/* Drawer Content sliding from right */
.drawer-content {
    position: absolute;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100%;
    background: var(--white);
    padding: 4rem 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    box-shadow: -10px 0 35px rgba(0,0,0,0.1);
    transition: right 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.mobile-drawer-overlay.active .drawer-content {
    right: 0;
}

.drawer-close-btn {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: transparent;
    border: none;
    font-size: 1.5rem;
    color: var(--text-dark);
    cursor: pointer;
    transition: var(--transition);
}

.drawer-close-btn:hover {
    color: var(--accent);
    transform: rotate(90deg);
}

.drawer-logo {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    font-family: 'Playfair Display', serif;
}

.drawer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.drawer-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-size: 1.2rem;
    font-weight: 600;
    transition: var(--transition);
}

.drawer-links a:hover {
    color: var(--accent);
    padding-left: 8px;
}

.drawer-cta {
    text-align: center;
    width: 100%;
    margin-top: auto;
}

/* Media Queries adjustment for mobile navigation toggle button visibility */
@media (max-width: 992px) {
    .mobile-menu-btn {
        display: block;
    }
    nav.scrolled .mobile-menu-btn {
        color: var(--primary);
    }
    .nav-cta {
        display: none !important; /* Hide regular CTA on smaller tablets to avoid congestion */
    }
    .nav-links {
        display: none !important; /* Hide regular desktop navigation links under 992px */
    }
}

@media (max-width: 480px) {
    .premium-booking {
        padding: 1rem;
    }
    .live-price-summary {
        padding: 1rem;
    }
    .rates-section, .booking-section, .gallery-section, .contact {
        padding: 60px 5%;
    }
}

/* Nav Phone Icon (Mobile Navigation) */
.nav-phone-icon {
    display: none;
    font-size: 1.2rem;
    color: var(--primary);
    background: rgba(26, 77, 46, 0.08);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: var(--transition);
}

.nav-phone-icon:hover {
    background: var(--primary);
    color: var(--white);
    transform: scale(1.05);
}

@media (max-width: 992px) {
    .nav-phone-icon {
        display: flex;
    }
}

/* Floating Action Bar for Mobile & Desktop */
.floating-contact-bar {
    position: fixed;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%) translateY(0);
    width: 90%;
    max-width: 450px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 40px;
    padding: 0.6rem 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.8rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    z-index: 1999; /* Below mobile drawer but above everything else */
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.floating-contact-bar.hidden {
    transform: translateX(-50%) translateY(150px);
    opacity: 0;
    pointer-events: none;
}

.floating-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 0.75rem 1.2rem;
    border-radius: 30px;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.floating-btn.call-btn {
    background: var(--primary);
    color: var(--white);
    box-shadow: 0 4px 12px rgba(26, 77, 46, 0.2);
}

.floating-btn.call-btn:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
}

.floating-btn.support-btn {
    background: var(--accent);
    color: var(--white);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.25);
}

.floating-btn.support-btn:hover {
    background: #c39f2e;
    transform: translateY(-2px);
}

.floating-btn.wa-btn {
    background: #25d366;
    color: var(--white);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.2);
}

.floating-btn.wa-btn:hover {
    background: #20ba5a;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .floating-contact-bar {
        background: transparent !important;
        border: none !important;
        box-shadow: none !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        width: 100% !important;
        max-width: none !important;
        left: 0 !important;
        transform: translateY(0) !important;
        padding: 0 20px !important;
        bottom: 20px !important;
        pointer-events: none; /* Let clicks pass through transparent space */
        display: flex !important;
        justify-content: space-between !important;
    }
    
    .floating-contact-bar.hidden {
        transform: translateY(120px) !important;
        opacity: 0;
        pointer-events: none;
    }
    
    .floating-btn {
        pointer-events: auto; /* Ensure buttons remain clickable */
        flex: 0 0 55px !important;
        width: 55px !important;
        height: 55px !important;
        border-radius: 50% !important;
        padding: 0 !important;
        font-size: 1.3rem !important;
        box-shadow: 0 4px 15px rgba(0,0,0,0.2) !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }
    
    .floating-btn span {
        display: none !important;
    }
    
    .floating-btn.call-btn {
        order: 2 !important; /* Right position */
    }
    
    .floating-btn.wa-btn {
        order: 1 !important; /* Left position */
    }
}

/* Restored visual changes for contact items grid */
.contact-item .contact-actions {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-top: 1.2rem;
}

.contact-action-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.7rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
}

.contact-action-btn.call {
    background: var(--white);
    color: var(--primary);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.contact-action-btn.call:hover {
    background: var(--accent);
    color: var(--white);
    transform: translateY(-2px);
}

.contact-action-btn.whatsapp {
    background: #25d366;
    color: var(--white);
    box-shadow: 0 4px 10px rgba(37, 211, 102, 0.15);
}

.contact-action-btn.whatsapp:hover {
    background: #20ba5a;
    transform: translateY(-2px);
}

