/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

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

/* Color Palette Inspired by Indonesian Nature */
:root {
    --primary-green: #2d5a27;
    --secondary-green: #4a7c59;
    --accent-gold: #d4af37;
    --warm-brown: #8b4513;
    --light-cream: #faf8f5;
    --soft-gray: #f5f5f5;
    --text-dark: #2c3e50;
    --text-light: #6c757d;
}

/* Promo Banner Styles */
.promo-banner {
    background: linear-gradient(135deg, var(--accent-gold), #f4d03f);
    padding: 20px 0;
    border-top: 3px solid var(--primary-green);
    border-bottom: 3px solid var(--primary-green);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.promo-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.promo-text {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
    min-width: 250px;
}

.promo-icon {
    font-size: 2rem;
    color: var(--primary-green);
    animation: pulse 2s infinite;
}

.promo-text h3 {
    color: var(--primary-green);
    font-size: 1.4rem;
    font-weight: 600;
    margin: 0;
}

.promo-text p {
    color: var(--text-dark);
    margin: 0.2rem 0 0 0;
    font-size: 1rem;
}

.promo-text strong {
    color: var(--primary-green);
    font-weight: 700;
    font-size: 1.1em;
}

.promo-action {
    flex-shrink: 0;
}

.promo-highlight {
    background: var(--primary-green);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(45, 90, 39, 0.2);
}

.btn-accent {
    background: var(--primary-green);
    color: white;
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(45, 90, 39, 0.3);
    border: 2px solid var(--primary-green);
}

.btn-accent:hover {
    background: var(--secondary-green);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(45, 90, 39, 0.4);
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

@media (max-width: 768px) {
    .promo-content {
        flex-direction: column;
        text-align: center;
    }
    
    .promo-text {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .promo-text h3 {
        font-size: 1.2rem;
    }
    
    .promo-text p {
        font-size: 0.9rem;
    }
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(45, 90, 39, 0.95);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
    font-weight: 600;
    font-size: 1.2rem;
}

.nav-logo img {
    height: 40px;
    width: 40px;
    object-fit: cover;
    border-radius: 50%;
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--accent-gold);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-gold);
    transition: width 0.3s ease;
}

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

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: white;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    height: 100vh;
    /* background: linear-gradient(rgba(45, 90, 39, 0.4), rgba(74, 124, 89, 0.4)), url('https://images.unsplash.com/photo-1502680390469-be75c86b636f?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2000&q=80');*/
    background: linear-gradient(rgba(45, 90, 39, 0.4), rgba(74, 124, 89, 0.4)),url('assets/header1.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

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

.btn {
    padding: 12px 30px;
    border: none;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    display: inline-block;
}

.btn-primary {
    background: var(--accent-gold);
    color: var(--text-dark);
}

.btn-primary:hover {
    background: #b8941f;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: var(--primary-green);
    transform: translateY(-2px);
}

/* About Section */
.about {
    padding: 100px 0;
    background: var(--light-cream);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    color: var(--primary-green);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.about-text p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

.features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 2rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--secondary-green);
    font-weight: 500;
}

.feature i {
    color: var(--accent-gold);
    font-size: 1.2rem;
}

.about-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

/* Rooms Section */
.rooms {
    padding: 100px 0;
    background: white;
}

.rooms h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-green);
    margin-bottom: 3rem;
    font-weight: 700;
}

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

/* For 5 rooms, optimize the layout on larger screens */
@media (min-width: 1200px) {
    .rooms-grid {
        grid-template-columns: repeat(5, 1fr);
    }
}

@media (min-width: 900px) and (max-width: 1199px) {
    .rooms-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 600px) and (max-width: 899px) {
    .rooms-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.room-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

.room-info {
    padding: 1.5rem;
}

.room-info h3 {
    color: var(--primary-green);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.room-info p {
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.room-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.room-features span {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    color: var(--secondary-green);
    font-size: 0.9rem;
}

.room-features i {
    color: var(--accent-gold);
}

/* Room Pricing Styles */
.room-pricing {
    margin-top: 1rem;
}

.price-main {
    font-weight: 600;
    color: var(--primary-green);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.price-main .tax-text {
    font-size: 0.8rem;
    font-weight: 400;
    color: var(--text-light);
}

.price-tax {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.price-note {
    font-size: 0.85rem;
    color: var(--text-light);
    font-style: italic;
}

.price-note a {
    color: var(--secondary-green);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.price-note a:hover {
    color: var(--primary-green);
    text-decoration: underline;
}

.room-select-btn {
    width: 100%;
    margin-top: 1rem;
    display: inline-block;
    text-align: center;
    text-decoration: none;
}

/* Footer */
.footer {
    background: var(--primary-green);
    color: white;
    padding: 3rem 0 1rem;
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
    font-size: 1.2rem;
}

.footer-logo img {
    height: 40px;
    width: 40px;
    object-fit: cover;
    border-radius: 50%;
}

.footer-section h4 {
    color: var(--accent-gold);
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-section ul {
    list-style: none;
}

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

.footer-section ul li a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--accent-gold);
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.social-links a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.social-links i {
    font-size: 1.2rem;
    width: 20px;
}

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

/* Contact Form Styles */
.contact-form {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--primary-green);
    font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--secondary-green);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Page Header */
.page-header {
    padding: 120px 0 60px;
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
    color: white;
    text-align: center;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Content Section */
.content-section {
    padding: 80px 0;
}

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

.card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

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

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

.card-content {
    padding: 1.5rem;
}

.card h3 {
    color: var(--primary-green);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Additional styles for contact and other pages */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.section-title {
    color: var(--primary-green);
    margin-bottom: 1.5rem;
}

.contact-info-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
}

.contact-items {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-icon {
    background: var(--accent-gold);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-details h4 {
    color: var(--primary-green);
    margin-bottom: 0.3rem;
}

.contact-details p {
    color: var(--text-light);
    margin: 0;
}

.contact-details small {
    color: var(--text-light);
}

.contact-link {
    color: var(--secondary-green);
    text-decoration: none;
}

.social-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.social-items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.social-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--text-dark);
    text-decoration: none;
    padding: 0.8rem;
    background: var(--soft-gray);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.social-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.map-section {
    margin-top: 4rem;
}

.map-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: center;
}

.map-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.btn-full-width {
    width: 100%;
}

/* Booking page specific styles */
.booking-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
}

.booking-summary {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    position: sticky;
    top: 100px;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #eee;
}

.summary-total {
    font-weight: 600;
    color: var(--primary-green);
    border-top: 2px solid var(--primary-green);
    padding-top: 1rem;
    margin-top: 1rem;
}

/* Additional booking page styles */
.disclaimer-text {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-top: 1rem;
    text-align: center;
}

.includes-section {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #eee;
}

.includes-list {
    list-style: none;
    padding: 0;
}

.includes-item {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.check-icon {
    color: var(--accent-gold);
}

.help-box {
    margin-top: 2rem;
    padding: 1rem;
    background: var(--light-cream);
    border-radius: 10px;
}

.help-title {
    color: var(--primary-green);
    margin-bottom: 0.5rem;
}

.help-text {
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.btn-center {
    width: 100%;
    justify-content: center;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.room-info-section {
    padding: 60px 0;
    background: var(--light-cream);
}

.room-price {
    margin-top: 1rem;
    font-weight: 600;
    color: var(--primary-green);
}

/* Airport Transfer page styles */
.transfer-pricing {
    background: var(--soft-gray);
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 1.5rem;
}

.price-item {
    text-align: center;
    margin-bottom: 1.5rem;
}

.price-header {
    margin-bottom: 0.5rem;
}

.price-header h4 {
    color: var(--primary-green);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.price-amount {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-gold);
    margin-bottom: 0.5rem;
}

.pricing-factors {
    margin-top: 1.5rem;
}

.pricing-factors h5 {
    color: var(--primary-green);
    margin-bottom: 1rem;
    font-size: 1rem;
}

.step-number {
    background: var(--accent-gold);
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1.1rem;
}

/* Icon colors for social media */
.instagram-icon {
    color: #E4405F;
    font-size: 1.5rem;
}

.facebook-icon {
    color: #1877F2;
    font-size: 1.5rem;
}

/* Utility Classes */
.text-center {
    text-align: center;
}

/* Activities Page Improvements */
.activities-section {
    margin-bottom: 4rem;
}

.activities-category {
    margin-bottom: 4rem;
    padding: 2rem 0;
    border-bottom: 2px solid #f0f0f0;
}

.activities-category:last-child {
    border-bottom: none;
}

.category-header {
    text-align: center;
    margin-bottom: 3rem;
}

.category-title {
    font-size: 2.5rem;
    color: var(--primary-green);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.category-title::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--accent-gold);
    border-radius: 2px;
}

.category-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.activities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.activity-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.activity-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.activity-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.activity-content {
    padding: 1.5rem;
}

.activity-content h3 {
    font-size: 1.4rem;
    color: var(--primary-green);
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.activity-content p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1rem;
}

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

.activity-tag {
    background: linear-gradient(135deg, var(--primary-green), #0fa875);
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

.single-activity {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.single-activity img {
    width: 100%;
    max-width: 600px;
    height: 300px;
    object-fit: cover;
    border-radius: 15px;
    margin-bottom: 2rem;
}

.single-activity h3 {
    font-size: 2rem;
    color: var(--primary-green);
    margin-bottom: 1rem;
}

.single-activity p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

/* Transportation and Tips Section */
.info-section {
    background: linear-gradient(135deg, #f8fffe, #f0f9f6);
    padding: 3rem 0;
    margin-top: 4rem;
    border-radius: 20px;
}

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

.info-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.info-card h3 {
    color: var(--primary-green);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    text-align: center;
}

/* Enhanced responsive design */
@media (max-width: 768px) {
    .category-title {
        font-size: 2rem;
    }
    
    .activities-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .activity-card img {
        height: 200px;
    }
    
    .single-activity {
        padding: 1.5rem;
    }
    
    .single-activity img {
        height: 250px;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--primary-green);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.05);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu a {
        padding: 0.5rem;
        display: block;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content p {
        font-size: 1.1rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    /* Fix background image on mobile */
    .hero {
        background-attachment: scroll;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-text {
        order: 2;
    }

    .about-image {
        order: 1;
    }

    .features {
        grid-template-columns: 1fr;
    }

    .rooms-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .social-links {
        align-items: center;
    }

    .contact-layout,
    .booking-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .activities-grid {
        grid-template-columns: 1fr;
    }

    .booking-summary {
        position: static;
    }
}

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

    .hero-content h1 {
        font-size: 2rem;
    }

    .about-text h2,
    .rooms h2 {
        font-size: 2rem;
    }

    .btn {
        padding: 10px 25px;
        font-size: 0.9rem;
    }
}

/* Contact Page Specific Styles */
.contact-quick-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-action-btn {
    width: 100%;
    justify-content: center;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.contact-reasons {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #eee;
}

.contact-reasons h4 {
    color: var(--primary-green);
    margin-bottom: 1rem;
}

.contact-reasons-list {
    list-style: none;
    padding: 0;
    color: var(--text-light);
}

.contact-reasons-list li {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-reasons-list .check-icon {
    color: var(--accent-gold);
}

.contact-method-title {
    color: var(--primary-green);
    margin-bottom: 1.5rem;
}

/* Room Image Slider Styles */
.room-image-container {
    position: relative;
    overflow: hidden;
    border-radius: 15px 15px 0 0;
}

.room-slider {
    display: flex;
    transition: transform 0.3s ease;
    transform: translateX(0%);
}

.room-slider img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    flex-shrink: 0;
    display: block;
}

.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    font-size: 18px;
    border-radius: 50%;
    transition: all 0.3s ease;
    z-index: 10;
}

.slider-nav:hover {
    background: rgba(0, 0, 0, 0.8);
    transform: translateY(-50%) scale(1.1);
}

.slider-prev {
    left: 10px;
}

.slider-next {
    right: 10px;
}

.slider-dots {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot.active {
    background: var(--accent-gold);
    transform: scale(1.2);
}

.slider-dot:hover {
    background: rgba(255, 255, 255, 0.8);
}

/* Common Areas Section Styles */
.common-area-gallery {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.common-slider {
    position: relative;
    height: 300px;
}

.common-slider img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: none;
}

.common-slider img:first-child {
    display: block;
}

.exterior-image {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.exterior-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

/* Common Areas Grid Layout */
.common-areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    align-items: center;
}

.common-area-content h3 {
    margin-bottom: 1.5rem;
    color: var(--primary-green);
    font-size: 1.8rem;
}

.common-area-content p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.feature-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.feature-tag {
    background: var(--light-cream);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    color: var(--primary-green);
    font-weight: 500;
}

/* Common Areas Section */
.common-areas-section {
    padding: 80px 0;
    background: white;
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.common-area-item {
    display: flex;
    align-items: center;
}

/* Enhanced responsive grid for proper ordering */
@media (min-width: 768px) {
    .common-areas-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto;
    }
    
    .common-area-item:nth-child(1) { /* Living room gallery */
        grid-row: 1;
        grid-column: 1;
    }
    
    .common-area-item:nth-child(2) { /* Living room description */
        grid-row: 1;
        grid-column: 2;
    }
    
    .common-area-item:nth-child(3) { /* Exterior description */
        grid-row: 2;
        grid-column: 2;
    }
    
    .common-area-item:nth-child(4) { /* Exterior image */
        grid-row: 2;
        grid-column: 1;
    }
}

/* Room slider in common area gallery */
.common-area-gallery .room-slider {
    display: flex;
    transition: transform 0.3s ease;
    transform: translateX(0%);
    height: 300px;
}

.common-area-gallery .room-slider img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    flex-shrink: 0;
    display: block;
}

/* Activity Image Galleries */
.activity-gallery {
    margin: 1rem 0;
}

.activity-image-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 0.5rem;
    margin: 1rem 0;
}

.activity-image-grid img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.2s ease;
}

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