:root {
    --primary-color: #2c5282;
    --secondary-color: #4299e1;
    --accent-color: #f6ad55;
    --text-color: #2d3748;
    --light-bg: #f7fafc;
    --airbnb-color: #FF5A5F;
    --vrbo-color: #00A699;
    --whatsapp-color: #25D366;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    color: var(--text-color);
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Booking Bar */
.booking-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 6px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transform: translateY(-100%);
    transition: transform 0.3s ease;
    z-index: 1000;
}

.booking-bar.visible {
    transform: translateY(0);
}

.booking-bar-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.booking-bar-text {
    display: flex;
    align-items: center;
    gap: 12px;
}

.booking-bar-text h3 {
    margin: 0;
    color: var(--primary-color);
    font-size: 0.9rem;
    white-space: nowrap;
}

.booking-bar-text p {
    margin: 0;
    color: var(--text-color);
    opacity: 0.8;
    font-size: 0.85rem;
    display: none;
}

.booking-options {
    display: flex;
    gap: 8px;
}

.booking-option {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 4px 8px;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 0.85rem;
    white-space: nowrap;
}

.booking-option.airbnb {
    background: rgba(255, 90, 95, 0.1);
    color: var(--airbnb-color);
}

.booking-option.vrbo {
    background: rgba(0, 166, 153, 0.1);
    color: var(--vrbo-color);
}

.booking-option:hover {
    transform: translateY(-2px);
}

.booking-option.airbnb:hover {
    background: var(--airbnb-color);
    color: white;
}

.booking-option.vrbo:hover {
    background: var(--vrbo-color);
    color: white;
}

.booking-option .logo {
    width: 14px;
    height: 14px;
}

.booking-option .logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: filter 0.3s ease;
}

.booking-option.airbnb:hover .logo img {
    filter: brightness(0) invert(1);
}

.booking-option.vrbo:hover .logo img {
    filter: brightness(0) invert(1);
}

/* Mobile Styles */
@media (min-width: 768px) {
    .booking-bar-text p {
        display: block;
    }
}

@media (max-width: 480px) {
    .booking-bar-content {
        flex-direction: column;
        gap: 6px;
        align-items: center;
    }

    .booking-bar-text {
        text-align: center;
    }

    .booking-bar-text h3 {
        font-size: 0.85rem;
    }

    .booking-options {
        flex-direction: row;
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    .booking-option {
        width: auto;
        min-width: 120px;
        justify-content: center;
        padding: 6px 8px;
        font-size: 0.85rem;
    }

    .booking-option .logo {
        width: 14px;
        height: 14px;
    }
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), url('../images/13-pool.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 150px 20px;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    max-width: 800px;
    background: rgba(0,0,0,0.4);
    padding: 40px;
    border-radius: 12px;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

/* Mobile Styles for Hero Section */
@media (max-width: 768px) {
    .hero {
        padding: 100px 20px;
        min-height: 50vh;
    }

    .hero-content {
        padding: 25px;
    }

    .hero h1 {
        font-size: 2.2rem;
        line-height: 1.2;
    }

    .hero p {
        font-size: 1.1rem;
        line-height: 1.4;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 80px 15px;
    }

    .hero-content {
        padding: 20px;
    }

    .hero h1 {
        font-size: 1.8rem;
    }

    .hero p {
        font-size: 1rem;
    }
}

/* Hero Section Specific Styles */
.hero .booking-option {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 15px;
}

.hero .booking-option:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-3px);
}

.hero .logo {
    height: 35px;
    filter: brightness(0) invert(1);
    opacity: 0.9;
}

.hero .cta-button {
    background: transparent;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.5);
    min-width: 180px;
    padding: 10px 25px;
}

.hero .cta-button:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
    transform: translateY(-2px);
}

.hero .cta-button.airbnb:hover {
    background: rgba(255, 90, 95, 0.2);
}

.hero .cta-button.vrbo:hover {
    background: rgba(0, 166, 153, 0.2);
}

/* Sections */
section {
    padding: 60px 0;
}

section:nth-child(even) {
    background-color: var(--light-bg);
}

h2 {
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 40px;
}

/* Property Features Section */
.property-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.property-image {
    position: relative;
    padding-bottom: 75%;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.property-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

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

.image-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0,0,0,0.7);
    color: white;
    padding: 10px;
    text-align: center;
}

@media (max-width: 768px) {
    .property-gallery {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .property-image {
        padding-bottom: 0;
        height: auto;
    }

    .property-image img {
        position: relative;
        height: 250px;
    }

    .image-caption {
        position: relative;
        background: none;
        color: var(--text-color);
        padding: 8px 0;
        font-size: 0.95rem;
        text-align: center;
        border-bottom: 1px solid #e2e8f0;
    }
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.feature-card {
    background: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.feature-card h3 {
    color: var(--primary-color);
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.feature-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-card li {
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.feature-card li:before {
    content: "•";
    color: var(--accent-color);
    position: absolute;
    left: 0;
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
}

/* Activities Section */
.activities-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.activity-card {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    background-color: white;
}

.activity-card .distance {
    color: var(--secondary-color);
    font-weight: 500;
    margin-bottom: 15px;
}

.activity-image {
    position: relative;
    padding-bottom: 66.67%;
    overflow: hidden;
}

.activity-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.activity-content {
    padding: 20px;
    background: white;
}

/* Booking Options */
.booking-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    padding: 0.4em 1.5em;
    border-radius: 12px;
    background: white;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    line-height: 1em;
}

.booking-option:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0,0,0,0.1);
}

.booking-option .logo {
    height: 30px;
    width: auto;
    margin-bottom: 5px;
}

.booking-option .logo img {
    height: 100%;
    width: auto;
    object-fit: contain;
}

.cta-buttons {
    display: flex;
    gap: 30px;
    justify-content: center;
    margin-top: 30px;
    flex-wrap: wrap;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    text-align: center;
    min-width: 200px;
    font-size: 1rem;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.cta-button.airbnb {
    background-color: white;
    color: var(--airbnb-color);
    border: 2px solid var(--airbnb-color);
}

.cta-button.vrbo {
    background-color: white;
    color: var(--vrbo-color);
    border: 2px solid var(--vrbo-color);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.cta-button:hover.airbnb {
    background-color: var(--airbnb-color);
    color: white;
}

.cta-button:hover.vrbo {
    background-color: var(--vrbo-color);
    color: white;
}

/* Pricing Section */
.pricing-section {
    text-align: center;
    padding: 60px 40px;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    color: var(--text-color);
}

.pricing-section h2 {
    color: var(--primary-color);
    margin-bottom: 40px;
    font-size: 2rem;
}

.pricing-section .pricing-booking-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto 40px;
    text-align: left;
}

.pricing-section .pricing-content {
    padding-right: 20px;
}

.pricing-section .pricing-intro {
    font-size: 1.2rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 20px;
    line-height: 1.4;
}

.pricing-section .pricing-content p {
    color: var(--text-color);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.pricing-section .pricing-display {
    display: flex;
    justify-content: center;
}

.pricing-section .price-card {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    border: 1px solid #e2e8f0;
    text-align: center;
    max-width: 280px;
    width: 100%;
}

.pricing-section .price-main {
    margin-bottom: 20px;
}

.pricing-section .price-amount {
    display: block;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 5px;
}

.pricing-section .price-period {
    display: block;
    font-size: 1rem;
    color: var(--text-color);
    opacity: 0.8;
    margin-bottom: 8px;
}

.pricing-section .price-note {
    display: block;
    font-size: 0.9rem;
    color: var(--text-color);
    opacity: 0.6;
}

.pricing-section .price-features {
    text-align: left;
}

.pricing-section .price-features p {
    margin: 8px 0;
    color: var(--text-color);
    font-size: 0.95rem;
    opacity: 0.8;
}

.pricing-section .price-booking {
    margin-top: 25px;
    text-align: center;
}

.pricing-section .price-booking .booking-options {
    display: flex;
    justify-content: center;
}



@media (max-width: 768px) {
    .pricing-section .pricing-booking-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .pricing-section .pricing-content {
        padding-right: 0;
        order: 2;
    }
    
    .pricing-section .pricing-display {
        order: 1;
    }
    
    .pricing-section h2 {
        font-size: 1.8rem;
    }
    
    .pricing-section .price-amount {
        font-size: 2rem;
    }
    
    .pricing-section .price-card {
        max-width: none;
        padding: 25px 20px;
    }
    
    .pricing-section .price-features {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .pricing-section {
        padding: 50px 20px;
    }
    
    .pricing-section h2 {
        font-size: 1.6rem;
        margin-bottom: 30px;
    }
    
    .pricing-section .pricing-booking-grid {
        gap: 25px;
        margin-bottom: 30px;
    }
    
    .pricing-section .price-amount {
        font-size: 1.8rem;
    }
    
    .pricing-section .price-card {
        padding: 20px 15px;
    }
}

/* Booking Section */
.booking-section {
    text-align: center;
    padding: 60px 40px;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    color: var(--text-color);
    margin: 40px 0;
}

.booking-section h2 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 2rem;
}

.booking-section p {
    color: var(--text-color);
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.booking-section .booking-options {
    display: flex;
    gap: 8px;
    justify-content: center;
    flex-wrap: wrap;
}

.booking-section .booking-option {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 0.9rem;
    white-space: nowrap;
    background: white;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    min-width: 160px;
}

.booking-section .booking-option.airbnb {
    background: rgba(255, 90, 95, 0.1);
    color: var(--airbnb-color);
}

.booking-section .booking-option.vrbo {
    background: rgba(0, 166, 153, 0.1);
    color: var(--vrbo-color);
}

.booking-section .booking-option:hover {
    transform: translateY(-2px);
}

.booking-section .booking-option.airbnb:hover {
    background: var(--airbnb-color);
    color: white;
}

.booking-section .booking-option.vrbo:hover {
    background: var(--vrbo-color);
    color: white;
}

.booking-section .booking-option .logo {
    height: 30px;
    width: auto;
    margin-bottom: 5px;
}

.booking-section .booking-option .logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: filter 0.3s ease;
}

.booking-section .booking-option.airbnb:hover .logo img {
    filter: brightness(0) invert(1);
}

.booking-section .booking-option.vrbo:hover .logo img {
    filter: brightness(0) invert(1);
}

/* Final CTA Section */
.final-cta {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 80px 20px;
    color: white;
    text-align: center;
}

.final-cta h2 {
    color: white;
    margin-bottom: 0.5em;
}

.final-cta .booking-options {
    display: flex;
    gap: 8px;
    justify-content: center;
    flex-wrap: wrap;
}

.final-cta .booking-option {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 0.9rem;
    white-space: nowrap;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    min-width: 160px;
    margin-top: 0.5em;
}

.final-cta .booking-option:hover {
    transform: translateY(-2px);
    background: white;
}

.final-cta .booking-option.airbnb:hover {
    color: var(--airbnb-color);
}

.final-cta .booking-option.vrbo:hover {
    color: var(--vrbo-color);
}

.final-cta .booking-option .logo {
    height: 30px;
    width: auto;
    margin-bottom: 5px;
}

.final-cta .booking-option .logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(0) invert(1);
    transition: filter 0.3s ease;
}

.final-cta .booking-option.airbnb:hover .logo img {
    filter: none;
}

.final-cta .booking-option.vrbo:hover .logo img {
    filter: none;
}

/* Mobile Styles */
@media (max-width: 480px) {
    .booking-section .booking-options,
    .final-cta .booking-options {
        flex-direction: row;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }

    .booking-section .booking-option,
    .final-cta .booking-option {
        min-width: 140px;
    }
}

/* FAQ */
.faq-item {
    margin-bottom: 20px;
}

.faq-question {
    font-weight: bold;
    color: var(--primary-color);
}

/* Family-Friendly Activities Section */
.section-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
    font-size: 1.1rem;
    color: var(--text-color);
}

.section-intro.full-width {
    max-width: none;
    width: 100%;
}

/* Location & Getting Here Section */
.location-content {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    flex-wrap: wrap;
}

.location-map {
    flex: 0 0 auto;
    max-width: 400px;
    width: 100%;
    min-width: 0;
}

.location-map img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.location-map-caption {
    text-align: center;
    margin-top: 10px;
    color: #666;
    font-size: 14px;
}

.airport-info {
    flex: 1;
    min-width: 300px;
}

.airport-info h3 {
    margin-top: 0;
    color: #333;
    font-size: 1.5rem;
}

.airport-option {
    margin-bottom: 15px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #007bff;
}

.airport-option.rih {
    border-left-color: #28a745;
}

.airport-option h4 {
    margin: 0 0 8px 0;
    color: #007bff;
    font-size: 1.1rem;
}

.airport-option.rih h4 {
    color: #28a745;
}

.airport-option p {
    margin: 3px 0;
}

.travel-tip {
    padding: 12px;
    background: #fff3cd;
    border-radius: 8px;
    border-left: 4px solid #ffc107;
}

.travel-tip p {
    margin: 0;
    color: #856404;
}

@media (max-width: 768px) {
    .location-content {
        gap: 20px;
        flex-direction: column;
    }
    
    .location-map {
        max-width: none;
    }
}

/* Reviews Section */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.review-card {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 12px;
    border-left: 4px solid #00a699;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.review-stars {
    color: #ffd700;
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.review-card p {
    font-style: italic;
    color: #333;
    line-height: 1.6;
    margin-bottom: 15px;
}

.reviewer {
    font-weight: bold;
    color: #666;
}

.reviews-link {
    text-align: center;
}

.reviews-link a {
    color: #00a699;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    border-bottom: 2px solid #00a699;
    padding-bottom: 2px;
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 8px;
    background-color: var(--whatsapp-color);
    color: white;
    padding: 12px 20px;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
    transition: all 0.3s ease;
    transform: translateY(100px);
    opacity: 0;
}

.whatsapp-float.visible {
    transform: translateY(0);
    opacity: 1;
}

.whatsapp-float:hover {
    transform: translateY(-4px);
}

.whatsapp-float.visible:hover {
    transform: translateY(-4px);
}

.whatsapp-float .logo {
    width: 24px;
    height: 24px;
}

.whatsapp-float .logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

@media (max-width: 480px) {
    .whatsapp-float {
        bottom: 16px;
        right: 16px;
        padding: 12px;
        border-radius: 50%;
    }
    
    .whatsapp-float .logo {
        width: 24px;
        height: 24px;
        margin: 0;
    }

    .whatsapp-float span {
        display: none;
    }
}