/* Import Variables */
:root {
    --primary-color: #1e3a8a;
    --secondary-color: #0891b2;
    --accent-color: #f59e0b;
    --dark-color: #1f2937;
    --light-color: #ffffff;
    --sand-color: #fef3c7;
    --text-color: #374151;
    --border-radius: 12px;
    --transition: all 0.3s ease;
}

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

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: var(--dark-color);
}

/* Navigation */
.navbar {
    background: rgba(30, 58, 138, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    transition: var(--transition);
    z-index: 1000;
}

.navbar.scrolled {
    background: rgba(30, 58, 138, 0.98);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--light-color) !important;
}

.navbar-brand .logo {
    height: 40px;
    width: auto;
}

.navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.9) !important;
    font-weight: 500;
    margin: 0 0.5rem;
    transition: var(--transition);
    position: relative;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--light-color) !important;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: var(--transition);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 80%;
}

/* Navigation CTA Button */
.nav-cta-btn {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--light-color) !important;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 500;
    transition: var(--transition);
    box-shadow: 0 2px 10px rgba(30, 58, 138, 0.3);
    text-decoration: none;
    display: inline-block;
}

.nav-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(30, 58, 138, 0.4);
    color: var(--light-color) !important;
}

/* Hero Section */
.hero-section {
    height: 100vh;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.hero-slider {
    height: 100%;
    position: relative;
}

.hero-slide {
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    display: none;
}

.hero-slide.active {
    display: block;
}

.hero-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
}

.hero-overlay {
    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.1) 50%, rgba(0, 0, 0, 0.4) 100%);
    z-index: 1;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 800px;
    z-index: 100;
    text-align: center;
    color: var(--light-color);
    pointer-events: auto;
    padding: 0 20px;
    box-sizing: border-box;
    transition: opacity 0.3s ease;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.25rem;
    font-weight: 300;
    margin-bottom: 2rem;
    opacity: 0.95;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    padding: 12px 30px;
    font-weight: 500;
    border-radius: var(--border-radius);
    transition: var(--transition);
    text-decoration: none;
    display: inline-block;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--light-color);
    box-shadow: 0 4px 15px rgba(30, 58, 138, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(30, 58, 138, 0.4);
    color: var(--light-color);
}

.btn-outline-light {
    background: transparent;
    color: var(--light-color);
    border: 2px solid var(--light-color);
}

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

.btn-lg {
    padding: 15px 40px;
    font-size: 1.1rem;
}

/* Section Styles */
section {
    padding: 80px 0;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-color);
    margin-bottom: 3rem;
    opacity: 0.8;
}

.bg-light {
    background-color: #f8fafc;
}

/* About Section */
.about-section img {
    border-radius: var(--border-radius);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.about-section img:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

/* Villa Cards */
.villa-card {
    background: var(--light-color);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    height: 100%;
}

.villa-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.villa-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

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

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

.villa-overlay {
    position: absolute;
    top: 15px;
    right: 15px;
}

.villa-badge {
    background: var(--accent-color);
    color: var(--light-color);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.villa-content {
    padding: 2rem;
}

.villa-content h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.villa-capacity {
    color: var(--secondary-color);
    font-weight: 500;
    margin-bottom: 1rem;
}

.villa-description {
    margin-bottom: 1.5rem;
    opacity: 0.8;
}

.villa-features {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.villa-features span {
    font-size: 0.9rem;
    color: var(--text-color);
}

.villa-features i {
    color: var(--secondary-color);
    margin-right: 5px;
}

.villa-price {
    display: flex;
    align-items: baseline;
    gap: 5px;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.price-label {
    color: var(--text-color);
    font-size: 0.9rem;
}

.price-amount {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.price-period {
    color: var(--text-color);
    font-size: 0.9rem;
}

/* Promo Pricing Styles */
.promo-price {
    color: var(--accent-color) !important;
    font-weight: 700 !important;
    font-size: 1.6rem !important;
}

.original-price {
    text-decoration: line-through;
    opacity: 0.7;
    font-size: 0.9rem;
    color: var(--text-color);
    margin-left: 5px;
}

/* Amenity Cards */
.amenity-card {
    padding: 2rem;
    background: var(--light-color);
    border-radius: var(--border-radius);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    height: 100%;
}

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

.amenity-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light-color);
    font-size: 2rem;
}

.amenity-card h4 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.amenity-card p {
    color: var(--text-color);
    opacity: 0.8;
    margin-bottom: 0;
}

/* Testimonials */
.testimonial-card {
    background: var(--light-color);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    height: 100%;
}

.testimonial-rating {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-image {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-author h6 {
    margin-bottom: 0;
    color: var(--dark-color);
}

.testimonial-author small {
    color: var(--text-color);
    opacity: 0.7;
}

/* Booking CTA */
.booking-cta {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--light-color);
}

.cta-title {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.cta-subtitle {
    opacity: 0.9;
    margin-bottom: 0;
}

.booking-cta .btn-primary {
    background: var(--light-color);
    color: var(--primary-color);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

.booking-cta .btn-primary:hover {
    background: var(--accent-color);
    color: var(--light-color);
}

/* Footer */
.footer {
    background: var(--dark-color);
    color: var(--light-color);
    padding: 60px 0 20px;
}

.footer h5,
.footer h6 {
    color: var(--light-color);
    margin-bottom: 1.5rem;
}

.footer p {
    opacity: 0.8;
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

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

.footer-links a:hover {
    color: var(--accent-color);
}

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

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

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    margin-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.7;
}

/* Floating Buttons */
.floating-buttons {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    display: flex;
    flex-direction: row;
    gap: 15px;
}

.floating-whatsapp,
.floating-book {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light-color);
    font-size: 1.5rem;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
}

.floating-whatsapp {
    background: #25d366;
}

.floating-book {
    background: var(--accent-color);
}

.floating-whatsapp:hover,
.floating-book:hover {
    transform: scale(1.1);
    color: var(--light-color);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .container {
        max-width: 100%;
        padding-left: 20px;
        padding-right: 20px;
    }
}

@media (max-width: 992px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .villa-card {
        margin-bottom: 2rem;
    }
    
    .experience-card-enhanced {
        margin-bottom: 2rem;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .page-title {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .btn-lg {
        width: 200px;
    }
    
    .floating-buttons {
        bottom: 20px;
        right: 20px;
    }
    
    .floating-whatsapp,
    .floating-book {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    /* Responsive Navigation */
    .navbar {
        padding: 1rem 0;
    }
    
    .navbar-nav {
        background: rgba(30, 58, 138, 0.95);
        padding: 1rem;
        border-radius: 8px;
        margin-top: 1rem;
    }
    
    .navbar-nav .nav-link {
        padding: 0.75rem 1rem;
        margin: 0.25rem 0;
        border-radius: 6px;
        transition: var(--transition);
    }
    
    .navbar-nav .nav-link:hover {
        background: rgba(255, 255, 255, 0.1);
    }
    
    /* Responsive Cards */
    .villa-content,
    .testimonial-card,
    .amenity-card {
        padding: 1.5rem;
    }
    
    .experience-card-content {
        padding: 1.5rem;
    }
    
    /* Responsive Gallery */
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1rem;
    }
    
    .gallery-item img {
        height: 200px;
    }

    .guest-experience-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        max-width: 460px;
    }

    .guest-experience-featured {
        grid-column: span 1;
        grid-row: span 1;
    }
    
    /* Responsive Forms */
    .booking-form,
    .contact-form {
        padding: 1.5rem;
    }
    
    .booking-summary {
        padding: 1.5rem;
        position: static;
        margin-top: 2rem;
    }
    
    /* Responsive Map */
    .map-container iframe {
        height: 300px;
    }
    
    /* Responsive Stats */
    .stat-number {
        font-size: 2.5rem;
    }
    
    /* Responsive Team Cards */
    .team-card {
        padding: 1.5rem;
    }
    
    .team-image {
        width: 100px;
        height: 100px;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .page-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    section {
        padding: 60px 0;
    }
    
    .page-header {
        height: 50vh;
        min-height: 350px;
        margin-top: 76px;
    }
    
    /* Mobile Optimizations */
    .container {
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 280px;
    }
    
    .filter-buttons {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }
    
    .filter-buttons .btn {
        width: 100%;
        max-width: 200px;
    }
    
    /* Mobile Villa Cards */
    .villa-features {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .villa-amenities {
        gap: 0.25rem;
    }
    
    .amenity-tag {
        font-size: 0.75rem;
        padding: 3px 8px;
    }
    
    /* Mobile Contact Form */
    .contact-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .contact-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    /* Mobile FAQ */
    .faq-question {
        padding: 1rem;
    }
    
    .faq-question h5 {
        font-size: 1rem;
    }
    
    /* Mobile Footer */
    .footer {
        padding: 40px 0 20px;
    }
    
    .social-links {
        justify-content: center;
    }
    
    /* Mobile Floating Buttons */
    .floating-buttons {
        bottom: 15px;
        right: 15px;
    }
    
    .floating-whatsapp,
    .floating-book {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
    
    /* Mobile Modal */
    .modal-dialog {
        margin: 1rem;
    }
    
    .modal-body {
        padding: 1.5rem;
    }
    
    /* Mobile Gallery */
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .gallery-item img {
        height: 250px;
    }

    .guest-experience-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        max-width: 320px;
        gap: 0.7rem;
    }

    .guest-experience-featured {
        grid-column: span 1;
        grid-row: span 1;
    }
    
    /* Mobile Experience Cards */
    .experience-features {
        flex-direction: column;
        gap: 0.25rem;
    }
    
    .experience-feature-tag {
        font-size: 0.75rem;
        padding: 3px 8px;
    }
    
    /* Mobile Booking Summary */
    .summary-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.25rem;
    }
    
    .summary-item.total {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
}

/* Touch Device Optimizations */
@media (hover: none) and (pointer: coarse) {
    .villa-card:hover,
    .experience-card-enhanced:hover,
    .testimonial-card:hover,
    .amenity-card:hover {
        transform: none;
    }
    
    .villa-overlay,
    .gallery-overlay {
        opacity: 1;
    }
    
    .btn:hover {
        transform: none;
    }
    
    .navbar-nav .nav-link::after {
        display: none;
    }
}

/* High DPI Displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .logo {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
}

/* Modal Villa Cards */
#villaRatesModal .villa-card {
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    height: 100%;
}

#villaRatesModal .villa-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

#villaRatesModal .villa-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

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

#villaRatesModal .villa-card:hover .villa-image img {
    transform: scale(1.05);
}

#villaRatesModal .villa-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.2), rgba(0,0,0,0.7));
    display: flex;
    align-items: flex-end;
    padding: 1rem;
    opacity: 0;
    transition: var(--transition);
}

#villaRatesModal .villa-card:hover .villa-overlay {
    opacity: 1;
}

#villaRatesModal .overlay-content h4 {
    color: white;
    margin-bottom: 0.5rem;
}

#villaRatesModal .overlay-content p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    font-size: 0.9rem;
}

#villaRatesModal .villa-content {
    padding: 1.5rem;
}

#villaRatesModal .villa-content h4 {
    color: var(--dark-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

#villaRatesModal .villa-content p {
    color: var(--text-color);
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

#villaRatesModal .villa-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

#villaRatesModal .feature-tag {
    background: var(--light-color);
    color: var(--primary-color);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

#villaRatesModal .villa-amenities {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

#villaRatesModal .amenity-tag {
    background: rgba(30, 58, 138, 0.1);
    color: var(--primary-color);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
}

#villaRatesModal .villa-price {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 1rem;
    border-radius: var(--border-radius);
    text-align: center;
    color: white;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

#villaRatesModal .price-original {
    text-decoration: line-through;
    opacity: 0.9;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

#villaRatesModal .price-label {
    font-size: 0.8rem;
    opacity: 1;
    color: rgba(255, 255, 255, 0.9);
}

#villaRatesModal .price-amount {
    font-size: 1.5rem;
    font-weight: bold;
    color: white;
}

#villaRatesModal .price-period {
    font-size: 0.9rem;
    opacity: 1;
    color: rgba(255, 255, 255, 0.9);
}

#villaRatesModal .price-comparison {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

#villaRatesModal .price-original {
    text-decoration: line-through;
    opacity: 0.7;
    font-size: 0.9rem;
}

#villaRatesModal .price-label {
    font-size: 0.8rem;
    opacity: 0.9;
}

#villaRatesModal .price-amount {
    font-size: 1.5rem;
    font-weight: bold;
}

#villaRatesModal .price-period {
    font-size: 0.9rem;
    opacity: 0.9;
}

#villaRatesModal .weekday-pricing,
#villaRatesModal .weekend-pricing {
    margin-bottom: 0.5rem;
}

#villaRatesModal .villa-price small {
    color: white !important;
    opacity: 0.9;
}

#villaRatesModal .extra-info-section {
    border-top: 1px solid #e5e7eb;
    padding-top: 1rem;
}

/* Print Styles */
@media print {
    .navbar,
    .floating-buttons,
    .page-header {
        display: none;
    }
    
    .container {
        max-width: 100%;
        padding: 0;
    }
    
    .villa-card,
    .experience-card-enhanced {
        break-inside: avoid;
        page-break-inside: avoid;
    }
    
    .btn {
        display: none;
    }
}

/* Landscape Mobile */
@media (max-width: 768px) and (orientation: landscape) {
    .page-header {
        height: 40vh;
        min-height: 300px;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
    }
    
    section {
        padding: 40px 0;
    }
}

/* Tablet Optimizations */
@media (min-width: 769px) and (max-width: 1024px) {
    .container {
        max-width: 95%;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
    
    .villa-card {
        margin-bottom: 1.5rem;
    }
}

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

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-color);
}

/* Loading Animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: var(--light-color);
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Glassmorphism Effect */
.glass {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Parallax Effect */
.parallax {
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

/* Page Header */
.page-header {
    height: 60vh;
    min-height: 400px;
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--light-color);
    margin-top: 76px;
}

.page-header-overlay {
    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.1) 50%, rgba(0, 0, 0, 0.4) 100%);
}

.page-header-content {
    position: relative;
    z-index: 2;
}

.page-title {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-subtitle {
    font-size: 1.25rem;
    font-weight: 300;
    opacity: 0.9;
}

/* Experience Cards */
.experience-card {
    text-align: center;
    padding: 2rem;
    background: var(--light-color);
    border-radius: var(--border-radius);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    height: 100%;
}

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

.experience-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light-color);
    font-size: 2rem;
}

.experience-card h4 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.experience-card p {
    color: var(--text-color);
    opacity: 0.8;
    margin-bottom: 0;
}

/* Why Choose List */
.why-choose-list {
    margin-top: 2rem;
}

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

.why-item i {
    color: var(--accent-color);
    font-size: 1.5rem;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.why-item h5 {
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.why-item p {
    color: var(--text-color);
    opacity: 0.8;
    margin-bottom: 0;
}

/* Stats Section */
.stats-section {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--light-color);
}

.stat-item {
    padding: 2rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
    color: var(--accent-color);
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 0;
}

/* Team Cards */
.team-card {
    text-align: center;
    padding: 2rem;
    background: var(--light-color);
    border-radius: var(--border-radius);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    height: 100%;
}

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

.team-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1.5rem;
    border: 4px solid var(--secondary-color);
}

.team-card h5 {
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.team-position {
    color: var(--secondary-color);
    font-weight: 500;
    margin-bottom: 1rem;
}

.team-bio {
    color: var(--text-color);
    opacity: 0.8;
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* Gallery Styles */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: var(--transition);
}

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.7) 100%);
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-title {
    color: var(--light-color);
    font-weight: 600;
    margin-bottom: 0;
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
}

.lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: var(--light-color);
    font-size: 2rem;
    cursor: pointer;
    background: none;
    border: none;
}

.lightbox-image {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
}

.lightbox-nav button {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: var(--light-color);
    font-size: 1.5rem;
    padding: 10px 15px;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
}

.lightbox-nav button:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* Booking Form */
.booking-form {
    background: var(--light-color);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.form-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--dark-color);
    font-family: 'Playfair Display', serif;
}

.form-section-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--dark-color);
    font-family: 'Playfair Display', serif;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--secondary-color);
}

.promo-notice {
    background: linear-gradient(135deg, var(--accent-color), #f59e0b);
    color: var(--light-color);
    padding: 1rem;
    border-radius: 8px;
    margin-top: 0.5rem;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 2px 10px rgba(245, 158, 11, 0.2);
}

.promo-notice i {
    font-size: 1.2rem;
}

.promo-notice strong {
    font-weight: 700;
}

/* Booking Summary */
.booking-summary {
    background: var(--light-color);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 100px;
}

.summary-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--dark-color);
    font-family: 'Playfair Display', serif;
}

.summary-content {
    margin-bottom: 2rem;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid #e5e7eb;
}

.summary-item:last-of-type {
    border-bottom: none;
}

.summary-item.total {
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--primary-color);
    padding-top: 1rem;
    border-top: 2px solid var(--primary-color);
}

.summary-label {
    font-weight: 500;
    color: var(--text-color);
}

.summary-value {
    font-weight: 600;
    color: var(--dark-color);
}

/* Recent Guests Experience */
.guest-experience-section {
    background: var(--light-color);
}

.guest-experience-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.7rem;
    max-width: 520px;
    margin: 0 auto;
}

.guest-experience-item {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.12);
    background: #f8fafc;
    aspect-ratio: 1 / 1;
}

.guest-experience-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0), rgba(15, 23, 42, 0.16));
    opacity: 0;
    transition: var(--transition);
}

.guest-experience-item:hover::after {
    opacity: 1;
}

.guest-experience-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.35s ease;
}

.guest-experience-item:hover img {
    transform: scale(1.04);
}

.guest-experience-featured {
    grid-column: span 1;
    grid-row: span 1;
}

/* Support Section */
.support-section {
    background: #f8fafc;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    text-align: center;
}

.support-section h4 {
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.support-section p {
    color: var(--text-color);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

/* Payment Methods */
.payment-methods {
    text-align: center;
}

.payment-methods h5 {
    color: var(--dark-color);
    margin-bottom: 1rem;
    font-size: 0.9rem;
    font-weight: 600;
}

.payment-icons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.payment-icons img {
    height: 30px;
    width: auto;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: var(--transition);
}

.payment-icons img:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.1);
}

/* Trust Badges */
.trust-badge {
    text-align: center;
    padding: 2rem 1rem;
    background: var(--light-color);
    border-radius: var(--border-radius);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    height: 100%;
}

.trust-badge:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.trust-badge i {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.trust-badge h5 {
    color: var(--dark-color);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.trust-badge p {
    color: var(--text-color);
    font-size: 0.9rem;
    margin-bottom: 0;
    opacity: 0.8;
}

/* Payment Page Styles */
.payment-methods-selection {
    margin-top: 1.5rem;
}

.payment-option {
    background: #f8fafc;
    border: 2px solid #e5e7eb;
    border-radius: var(--border-radius);
    margin-bottom: 1rem;
    transition: var(--transition);
    cursor: pointer;
}

.payment-option:hover {
    border-color: var(--secondary-color);
    box-shadow: 0 4px 15px rgba(8, 145, 178, 0.1);
}

.payment-option.selected {
    border-color: var(--primary-color);
    box-shadow: 0 4px 15px rgba(30, 58, 138, 0.2);
}

.payment-option-header {
    padding: 1.5rem;
}

.payment-option-header .form-check {
    margin-bottom: 0;
}

.payment-option-header .form-check-label {
    font-weight: 600;
    color: var(--dark-color);
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.payment-option-header .form-check-label i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.payment-details {
    padding: 0 1.5rem 1.5rem;
    border-top: 1px solid #e5e7eb;
    margin-top: 1rem;
}

.bank-info, .gcash-info {
    background: var(--light-color);
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.bank-info h5, .gcash-info h5 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.bank-item, .gcash-item {
    margin-bottom: 0.75rem;
    padding: 0.5rem;
    background: #f8fafc;
    border-radius: 4px;
}

.bank-item strong, .gcash-item strong {
    color: var(--dark-color);
    display: inline-block;
    min-width: 150px;
}

.gcash-qr {
    text-align: center;
    margin: 1.5rem 0;
    padding: 1rem;
    background: #f8fafc;
    border-radius: 8px;
}

.gcash-qr img {
    border: 2px solid var(--primary-color);
    border-radius: 8px;
    padding: 0.5rem;
    background: white;
}

.gcash-qr p {
    margin-top: 1rem;
    color: var(--text-color);
    font-weight: 500;
}

.bank-instructions, .gcash-instructions {
    margin-top: 1.5rem;
    padding: 1rem;
    background: #fef3c7;
    border-radius: 8px;
    border-left: 4px solid var(--accent-color);
}

.bank-instructions p, .gcash-instructions p {
    color: var(--dark-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.bank-instructions ol, .gcash-instructions ol {
    margin: 0;
    padding-left: 1.5rem;
    color: var(--text-color);
}

.bank-instructions li, .gcash-instructions li {
    margin-bottom: 0.5rem;
}

.booking-summary-details {
    margin-bottom: 2rem;
}

.payment-info-content {
    margin-bottom: 2rem;
}

.info-item {
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: #f8fafc;
    border-radius: 8px;
    border-left: 4px solid var(--secondary-color);
}

.info-item h5 {
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
    font-size: 1rem;
    font-weight: 600;
}

.info-item p {
    color: var(--text-color);
    font-size: 0.9rem;
    margin-bottom: 0;
}

.support-options {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

/* Responsive Payment Page */
@media (max-width: 768px) {
    .payment-option-header {
        padding: 1rem;
    }
    
    .payment-option-header .form-check-label {
        font-size: 1rem;
    }
    
    .payment-details {
        padding: 0 1rem 1rem;
    }
    
    .bank-info, .gcash-info {
        padding: 1rem;
    }
    
    .bank-item strong, .gcash-item strong {
        min-width: auto;
        display: block;
        margin-bottom: 0.25rem;
    }
    
    .gcash-qr img {
        max-width: 150px;
    }
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    font-weight: 500;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.form-control {
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 12px 15px;
    transition: var(--transition);
}

.form-control:focus {
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 0.2rem rgba(8, 145, 178, 0.25);
}

.is-invalid {
    border-color: #dc3545;
}

/* Experience Cards Enhanced */
.experience-card-enhanced {
    background: var(--light-color);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    height: 100%;
}

.experience-card-enhanced:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.experience-card-image {
    height: 200px;
    overflow: hidden;
}

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

.experience-card-enhanced:hover .experience-card-image img {
    transform: scale(1.1);
}

.experience-card-content {
    padding: 2rem;
}

.experience-card-content h4 {
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.experience-card-content p {
    color: var(--text-color);
    opacity: 0.8;
    margin-bottom: 1rem;
}

.experience-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.experience-feature-tag {
    background: var(--sand-color);
    color: var(--dark-color);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

/* Room Cards for Booking Page */
.room-selection-section {
    margin-bottom: 2rem;
}

.room-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.room-card {
    background: var(--light-color);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    cursor: pointer;
    position: relative;
    border: 3px solid transparent;
}

.room-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--secondary-color);
}

.room-card.selected {
    border-color: var(--primary-color);
    box-shadow: 0 15px 40px rgba(30, 58, 138, 0.3);
    transform: translateY(-5px);
}

.room-card-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

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

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

.room-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.9) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.5rem;
    color: var(--light-color);
    transition: var(--transition);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.room-card:hover .room-card-overlay {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.95) 100%);
}

.room-card-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--accent-color);
    color: var(--light-color);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 10px rgba(245, 158, 11, 0.3);
    z-index: 10;
}

.room-card-title {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    font-family: 'Playfair Display', serif;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.9);
    line-height: 1.2;
}

.room-card-capacity {
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
    opacity: 1;
    color: #ffffff;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.room-card-price {
    font-size: 1.2rem;
    font-weight: 600;
    color: #ffffff;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.promo-price {
    color: var(--accent-color);
    font-weight: 700;
}

.original-price {
    text-decoration: line-through;
    opacity: 0.7;
    font-size: 0.9rem;
    margin-left: 5px;
}

/* Responsive Room Cards */
@media (max-width: 768px) {
    .room-cards {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .room-card-image {
        height: 180px;
    }
    
    .room-card-overlay {
        padding: 1rem;
    }
    
    .room-card-title {
        font-size: 1.25rem;
    }
}

@media (max-width: 576px) {
    .room-card-image {
        height: 160px;
    }
    
    .room-card-overlay {
        padding: 0.75rem;
    }
    
    .room-card-title {
        font-size: 1.1rem;
    }
    
    .room-card-capacity,
    .room-card-price {
        font-size: 0.85rem;
    }
}

/* Enhanced Villa Cards */
.villa-card {
    background: var(--light-color);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    height: 100%;
    position: relative;
}

.villa-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.villa-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

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

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

.villa-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.7) 100%);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 1rem;
    opacity: 0;
    transition: var(--transition);
}

.villa-card:hover .villa-overlay {
    opacity: 1;
}

.villa-actions {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
}

.villa-actions button {
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    transition: var(--transition);
}

.villa-content {
    padding: 2rem;
}

.villa-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.villa-rating i {
    color: var(--accent-color);
    font-size: 0.9rem;
}

.rating-text {
    color: var(--text-color);
    font-size: 0.9rem;
    opacity: 0.8;
}

.villa-capacity {
    color: var(--secondary-color);
    font-weight: 500;
    margin-bottom: 1rem;
}

.villa-description {
    margin-bottom: 1.5rem;
    opacity: 0.8;
    font-size: 0.95rem;
}

.villa-features {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.villa-features span {
    font-size: 0.9rem;
    color: var(--text-color);
}

.villa-features i {
    color: var(--secondary-color);
    margin-right: 5px;
}

.villa-amenities {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.amenity-tag {
    background: var(--sand-color);
    color: var(--dark-color);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 4px;
}

.villa-price {
    display: flex;
    align-items: baseline;
    gap: 5px;
    margin-bottom: 1.5rem;
}

.price-label {
    color: var(--text-color);
    font-size: 0.9rem;
}

.price-amount {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.price-period {
    color: var(--text-color);
    font-size: 0.9rem;
}

.villa-actions-bottom {
    margin-top: auto;
}

/* Filter Buttons */
.filter-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.filter-buttons .btn {
    border-radius: 20px;
    padding: 8px 20px;
    font-weight: 500;
    transition: var(--transition);
}

.filter-buttons .btn-outline-primary {
    border-color: var(--secondary-color);
    color: var(--secondary-color);
}

.filter-buttons .btn-outline-primary:hover,
.filter-buttons .btn-outline-primary.active {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
    color: var(--light-color);
}

/* Modal Styles */
.modal-content {
    border-radius: var(--border-radius);
    border: none;
}

.modal-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--light-color);
    border-radius: var(--border-radius) var(--border-radius) 0 0;
}

.modal-body {
    padding: 2rem;
}

.modal-body ul {
    list-style: none;
    padding: 0;
}

.modal-body ul li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #f0f0f0;
}

.modal-body ul li:before {
    content: "✓";
    color: var(--secondary-color);
    font-weight: bold;
    margin-right: 10px;
}

/* Promo Pricing Styles */
.price-comparison {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.price-original {
    text-decoration: line-through;
    color: #999;
    font-size: 0.9rem;
}

.price-amount.promo {
    color: #28a745;
    font-weight: 700;
    font-size: 1.8rem;
}

.weekday-pricing,
.weekend-pricing {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

/* Promo Info Card */
.promo-info-card {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 2px solid var(--primary-color);
}

.promo-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.promo-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--light-color);
    border-radius: var(--border-radius);
    transition: transform 0.3s ease;
}

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

.promo-item i {
    font-size: 2rem;
    color: var(--primary-color);
    min-width: 40px;
}

.promo-item h6 {
    margin: 0;
    color: var(--primary-color);
    font-weight: 600;
}

.promo-item p {
    margin: 0.25rem 0 0 0;
    font-size: 0.9rem;
    color: #666;
}

.important-notes {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: var(--border-radius);
    padding: 1.5rem;
    margin: 2rem 0;
}

.important-notes h5 {
    color: #856404;
    margin-bottom: 1rem;
}

.important-notes ul {
    margin: 0;
    padding-left: 1.5rem;
}

.important-notes li {
    margin-bottom: 0.5rem;
    color: #856404;
}

.extra-person-info {
    background: #e7f3ff;
    border: 1px solid #b3d9ff;
    border-radius: var(--border-radius);
    padding: 1.5rem;
    margin: 2rem 0;
}

.extra-person-info h5 {
    color: #0066cc;
    margin-bottom: 0.5rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .promo-highlights {
        grid-template-columns: 1fr;
    }
    
    .weekday-pricing,
    .weekend-pricing {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.25rem;
    }
    
    .price-amount.promo {
        font-size: 1.5rem;
    }
}
