/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3rem;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.8rem;
}

p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
    font-size: 1rem;
}

.btn-primary {
    background-color: #2c5530;
    color: white;
    border-color: #2c5530;
}

.btn-primary:hover {
    background-color: #1e3a21;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(44, 85, 48, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: #2c5530;
    border-color: #2c5530;
}

.btn-secondary:hover {
    background-color: #2c5530;
    color: white;
}

.btn-white {
    background-color: white;
    color: #2c5530;
}

.btn-white:hover {
    background-color: #f8f9fa;
    transform: translateY(-2px);
}

/* Header & Navigation */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar {
    padding: 1rem 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand .logo {
    text-decoration: none;
    color: #2c5530;
}

.nav-brand h1 {
    font-size: 2rem;
    margin: 0;
}

.nav-menu {
    display: flex;
}

.nav-list {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: #2c5530;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 2px;
    background-color: #2c5530;
}

.nav-cta {
    background-color: #2c5530;
    color: white !important;
    padding: 8px 20px;
    border-radius: 5px;
}

.nav-cta:hover {
    background-color: #1e3a21;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    min-height: 70vh;
    padding: 3rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.hero-content {
    flex: 1;
    padding: 2rem 0;
    padding-left: 25rem;
}

.hero-title {
    font-size: 4rem;
    color: #2c5530;
    margin-bottom: 0.5rem;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: #666;
    font-weight: 400;
    margin-bottom: 1rem;
}

.hero-description {
    font-size: 1.2rem;
    color: #777;
    margin-bottom: 2rem;
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image img {
    max-width: 100%;
    max-height: 500px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    object-fit: cover;
}

/* About Section */
.about {
    padding: 5rem 0;
    background-color: white;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-text h2 {
    color: #2c5530;
    margin-bottom: 1.5rem;
}

.about-text p {
    color: #666;
    margin-bottom: 1.5rem;
}

.features {
    display: grid;
    gap: 1.5rem;
    margin-top: 2rem;
}

.feature h3 {
    color: #2c5530;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.feature p {
    color: #777;
    font-size: 1rem;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

/* Apartments Preview */
.apartments-preview {
    padding: 5rem 0;
    background-color: #f8f9fa;
}

.section-title {
    text-align: center;
    color: #2c5530;
    margin-bottom: 3rem;
}

.apartments-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.apartment-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;
}

.apartment-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.apartment-image {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.apartment-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.apartment-card:hover .apartment-image img {
    transform: scale(1.1);
}

.apartment-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(44, 85, 48, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.apartment-card:hover .apartment-overlay {
    opacity: 1;
}

.apartment-info {
    padding: 2rem;
}

.apartment-info h3 {
    color: #2c5530;
    margin-bottom: 1rem;
}

.apartment-info p {
    color: #666;
    margin-bottom: 1.5rem;
}

.apartment-link {
    color: #2c5530;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.apartment-link:hover {
    color: #1e3a21;
}

/* Location Section */
.location {
    padding: 5rem 0;
    background-color: white;
}

.location-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.location-text h2 {
    color: #2c5530;
    margin-bottom: 1.5rem;
}

.location-text p {
    color: #666;
    margin-bottom: 1.5rem;
}

.location-highlights {
    list-style: none;
    margin-bottom: 2rem;
}

.location-highlights li {
    color: #666;
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.5rem;
}

.location-highlights li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #2c5530;
    font-weight: bold;
}

.map-placeholder {
    background-color: #e9ecef;
    height: 300px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
}

.map-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.map-container:hover iframe {
    transform: scale(1.02);
}

/* Contact CTA */
.contact-cta {
    padding: 5rem 0;
    background: linear-gradient(135deg, #2c5530 0%, #1e3a21 100%);
    color: white;
    text-align: center;
}

.cta-content h2 {
    color: white;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.contact-cta .btn-primary {
    background-color: white;
    color: #2c5530;
}

.contact-cta .btn-primary:hover {
    background-color: #f8f9fa;
}

.contact-cta .btn-secondary {
    border-color: white;
    color: white;
}

.contact-cta .btn-secondary:hover {
    background-color: white;
    color: #2c5530;
}

/* Footer */
.footer {
    background-color: #1a1a1a;
    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-section h3 {
    color: #2c5530;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.footer-section p {
    color: #ccc;
    margin-bottom: 0.5rem;
}

.footer-contact p {
    margin-bottom: 0.5rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #2c5530;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #2c5530;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 1rem;
    text-align: center;
    color: #999;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: white;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        padding: 1rem;
    }

    .nav-menu.active {
        display: block;
    }

    .nav-list {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-toggle {
        display: flex;
    }

    .hero {
        flex-direction: column-reverse;
        text-align: center;
        padding: 2rem 0;
        min-height: 60vh;
    }

    .hero-content {
        padding-left: 1rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .about-content,
    .location-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .apartments-grid {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        display: block;
        text-align: center;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    .container {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .apartment-card {
        margin: 0 10px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }
}

/* Additional Styles for Apartment Pages */
.apartment-hero {
    padding: 6rem 0 3rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.apartment-hero-content {
    text-align: center;
}

.apartment-hero h1 {
    color: #2c5530;
    margin-bottom: 1rem;
}

.apartment-hero p {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto 2rem;
}

.apartment-gallery {
    padding: 3rem 0;
    background-color: white;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    aspect-ratio: 4/3;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.apartment-details {
    padding: 3rem 0;
    background-color: #f8f9fa;
}

.details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.detail-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.detail-card h3 {
    color: #2c5530;
    margin-bottom: 1rem;
}

.amenities-list {
    list-style: none;
}

.amenities-list li {
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.5rem;
}

.amenities-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #2c5530;
    font-weight: bold;
}

/* Individual Apartment Pages */
.hero-features {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1.5rem;
    justify-content: center;
}

.hero-feature {
    background: rgba(44, 85, 48, 0.1);
    color: #2c5530;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    border: 1px solid rgba(44, 85, 48, 0.2);
}

.gallery-item.featured {
    grid-column: 1 / -1;
    max-height: 400px;
}

.gallery-item.featured img {
    height: 400px;
    object-fit: cover;
}

.apartment-features-section {
    padding: 4rem 0;
    background-color: #f8f9fa;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.feature-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-item h3 {
    color: #2c5530;
    margin-bottom: 1rem;
}

.feature-item p {
    color: #666;
    line-height: 1.6;
}

.pricing-section {
    padding: 4rem 0;
    background-color: white;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.pricing-card {
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.pricing-card.featured {
    border-color: #2c5530;
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-5px);
}

.pricing-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #2c5530;
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.pricing-card h3 {
    color: #2c5530;
    margin-bottom: 1rem;
}

.price {
    margin-bottom: 1.5rem;
}

.price .amount {
    font-size: 3rem;
    font-weight: 700;
    color: #2c5530;
}

.price .currency {
    font-size: 1.2rem;
    color: #666;
    margin-left: 0.5rem;
}

.pricing-features {
    list-style: none;
    padding: 0;
}

.pricing-features li {
    padding: 0.5rem 0;
    color: #666;
    border-bottom: 1px solid #f8f9fa;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-notes {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    margin-top: 2rem;
}

.pricing-notes h4 {
    color: #2c5530;
    margin-bottom: 1rem;
}

.pricing-notes ul {
    list-style: none;
    padding: 0;
}

.pricing-notes li {
    color: #666;
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.5rem;
}

.pricing-notes li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #2c5530;
    font-weight: bold;
}

.reviews-section {
    padding: 4rem 0;
    background-color: #f8f9fa;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.review-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
}

.review-rating {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.stars {
    color: #ffc107;
    font-size: 1.2rem;
}

.rating-number {
    background: #2c5530;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.review-text {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.review-author {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.review-author strong {
    color: #2c5530;
}

.review-author span {
    color: #999;
    font-size: 0.9rem;
}

.quick-contact {
    margin-top: 2rem;
    text-align: center;
}

.quick-contact p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
}

.contact-options {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.contact-option {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.contact-option:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

/* Responsive adjustments for apartment pages */
@media (max-width: 768px) {
    .hero-features {
        justify-content: center;
        text-align: center;
    }
    
    .hero-feature {
        flex: 1;
        min-width: 120px;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-5px);
    }
    
    .contact-options {
        flex-direction: column;
        align-items: center;
    }
    
    .contact-option {
        width: 200px;
        text-align: center;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-features {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-feature {
        width: 100%;
        max-width: 200px;
    }
    
    .pricing-card {
        padding: 1.5rem;
    }
    
    .price .amount {
        font-size: 2.5rem;
    }
    
    .feature-item {
        padding: 1.5rem;
    }
    
    .review-card {
        padding: 1.5rem;
    }
}

/* Attractions Page Styles */
.main-attractions {
    padding: 5rem 0;
    background-color: #f8f9fa;
}

.attraction-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.attraction-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;
}

.attraction-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.attraction-card.featured {
    border: 2px solid #2c5530;
}

.attraction-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.attraction-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.attraction-card:hover .attraction-image img {
    transform: scale(1.05);
}

.attraction-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #2c5530;
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.attraction-content {
    padding: 2rem;
}

.attraction-content h3 {
    font-size: 1.5rem;
    color: #2c5530;
    margin-bottom: 0.5rem;
}

.attraction-distance {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.attraction-content p {
    color: #777;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.attraction-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.feature-tag {
    background: #e9ecef;
    color: #2c5530;
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Seasonal Attractions */
.seasonal-attractions {
    padding: 5rem 0;
    background-color: white;
}

.season-tabs {
    display: flex;
    justify-content: center;
    margin: 3rem 0;
    flex-wrap: wrap;
    gap: 1rem;
}

.season-tab {
    background: #f8f9fa;
    border: 2px solid #e9ecef;
    color: #666;
    padding: 12px 25px;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.season-tab:hover,
.season-tab.active {
    background: #2c5530;
    border-color: #2c5530;
    color: white;
}

.season-section {
    display: none;
}

.season-section.active {
    display: block;
}

.season-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.season-item {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    border-left: 4px solid #2c5530;
}

.season-item h4 {
    color: #2c5530;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

/* Nearby Attractions */
.nearby-attractions {
    padding: 5rem 0;
    background-color: #f8f9fa;
}

.nearby-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.nearby-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.nearby-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #f8f9fa;
}

.nearby-header h3 {
    color: #2c5530;
    font-size: 1.3rem;
}

.distance {
    background: #2c5530;
    color: white;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.nearby-list {
    list-style: none;
    padding: 0;
}

.nearby-list li {
    padding: 8px 0;
    color: #666;
    border-bottom: 1px solid #f8f9fa;
}

.nearby-list li:before {
    content: "📍 ";
    margin-right: 8px;
}

/* Activity Guide */
.activity-guide {
    padding: 5rem 0;
    background-color: white;
}

.activity-categories {
    margin-top: 3rem;
}

.activity-category {
    margin-bottom: 3rem;
    background: #f8f9fa;
    border-radius: 15px;
    padding: 2rem;
}

.category-header h3 {
    color: #2c5530;
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

.activity-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.activity-item {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.activity-item h4 {
    color: #2c5530;
    margin-bottom: 1rem;
}

.activity-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.activity-meta span {
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

.difficulty.easy {
    background: #d4edda;
    color: #155724;
}

.difficulty.medium {
    background: #fff3cd;
    color: #856404;
}

.difficulty.hard {
    background: #f8d7da;
    color: #721c24;
}

.duration, .elevation {
    background: #e9ecef;
    color: #495057;
}

/* Practical Info */
.practical-info {
    padding: 5rem 0;
    background-color: #f8f9fa;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.info-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.info-card h3 {
    color: #2c5530;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.info-card ul {
    list-style: none;
    padding: 0;
}

.info-card li {
    padding: 8px 0;
    color: #666;
    border-bottom: 1px solid #f8f9fa;
}

/* Attractions CTA */
.attractions-cta {
    padding: 5rem 0;
    background: linear-gradient(135deg, #2c5530 0%, #1a3319 100%);
    color: white;
    text-align: center;
}

.attractions-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.attractions-cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Responsive Design for Attractions */
@media (max-width: 1024px) {
    .attraction-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .activity-items {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .attraction-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .season-tabs {
        gap: 0.5rem;
    }
    
    .season-tab {
        padding: 8px 15px;
        font-size: 0.9rem;
    }
    
    .nearby-grid,
    .info-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .activity-category {
        padding: 1.5rem;
    }
    
    .attractions-cta h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .attraction-content {
        padding: 1.5rem;
    }
    
    .attraction-image {
        height: 200px;
    }
    
    .season-item,
    .nearby-card,
    .info-card {
        padding: 1.5rem;
    }
    
    .activity-meta {
        gap: 0.5rem;
    }
    
    .activity-meta span {
        font-size: 0.7rem;
        padding: 3px 8px;
    }
}

/* Apartments Detail Page Styles */
.apartments-detail {
    padding: 5rem 0;
    background-color: #f8f9fa;
}

.apartment-section {
    margin-bottom: 6rem;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.apartment-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: center;
}

.apartment-content.reverse {
    direction: rtl;
}

.apartment-content.reverse > * {
    direction: ltr;
}

.apartment-text {
    padding: 3rem;
}

.apartment-text h2 {
    font-size: 2.5rem;
    color: #2c5530;
    margin-bottom: 1.5rem;
}

.apartment-description {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.apartment-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.feature-item h4 {
    color: #2c5530;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    border-bottom: 2px solid #e9ecef;
    padding-bottom: 0.5rem;
}

.amenities-list {
    list-style: none;
    padding: 0;
}

.amenities-list li {
    padding: 8px 0;
    color: #666;
    border-bottom: 1px solid #f8f9fa;
    position: relative;
    padding-left: 20px;
}

.amenities-list li:before {
    content: "✓";
    color: #2c5530;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.apartment-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.apartment-preview {
    padding: 0;
    background: #f8f9fa;
}

.preview-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
    height: 100%;
    min-height: 500px;
}

.preview-grid img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.preview-grid img:hover {
    transform: scale(1.05);
}

/* Responsive Design for Apartments Detail */
@media (max-width: 1024px) {
    .apartment-content {
        grid-template-columns: 1fr;
    }
    
    .apartment-content.reverse {
        direction: ltr;
    }
    
    .apartment-text {
        padding: 2.5rem;
        order: 2;
    }
    
    .apartment-preview {
        order: 1;
    }
    
    .preview-grid {
        min-height: 400px;
    }
    
    .preview-grid img {
        height: 200px;
    }
}

@media (max-width: 768px) {
    .apartment-text {
        padding: 2rem;
    }
    
    .apartment-text h2 {
        font-size: 2rem;
    }
    
    .apartment-features {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .preview-grid {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    
    .preview-grid img {
        height: 300px;
    }
    
    .apartment-actions {
        flex-direction: column;
    }
    
    .apartment-actions .btn {
        text-align: center;
    }
}

/* Simple Contact Page Styles */
.contact-simple {
    display: flex;
    justify-content: center;
    padding: 3rem 0;
}

.contact-card {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    width: 100%;
    text-align: center;
}

.contact-card h2 {
    font-size: 2.5rem;
    color: #2c5530;
    margin-bottom: 2.5rem;
    text-align: center;
}

.contact-card .contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.contact-card .contact-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.contact-card .contact-icon {
    font-size: 2rem;
    margin-right: 1.5rem;
    flex-shrink: 0;
}

.contact-card .contact-details {
    text-align: left;
    flex: 1;
}

.contact-card .contact-details h3 {
    color: #2c5530;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.contact-card .contact-details p {
    color: #666;
    font-size: 1.1rem;
    margin: 0;
    line-height: 1.4;
}

.contact-card .contact-details a {
    color: #2c5530;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.contact-card .contact-details a:hover {
    color: #1a3319;
}

/* Map Section for Contact */
.map-section {
    padding: 4rem 0;
    background: #f8f9fa;
}

.map-container {
    margin-top: 2rem;
}

.map-placeholder {
    background: white;
    border-radius: 15px;
    padding: 3rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.map-content h3 {
    color: #2c5530;
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.map-content p {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.map-links .btn {
    margin: 0 0.5rem;
}

/* Responsive Design for Simple Contact */
@media (max-width: 768px) {
    .contact-card {
        padding: 2rem;
        margin: 0 1rem;
    }
    
    .contact-card h2 {
        font-size: 2rem;
    }
    
    .contact-card .contact-item {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem 1rem;
    }
    
    .contact-card .contact-icon {
        margin-right: 0;
        margin-bottom: 1rem;
    }
    
    .contact-card .contact-details {
        text-align: center;
    }
    
    .map-placeholder {
        padding: 2rem 1rem;
    }
    
    .map-links .btn {
        display: block;
        margin: 0.5rem 0;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .contact-card {
        padding: 1.5rem;
    }
    
    .contact-card h2 {
        font-size: 1.8rem;
    }
    
    .contact-card .contact-details h3 {
        font-size: 1.1rem;
    }
    
    .contact-card .contact-details p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .apartment-text {
        padding: 1.5rem;
    }
    
    .apartment-text h2 {
        font-size: 1.8rem;
    }
    
    .apartment-description {
        font-size: 1rem;
    }
    
    .preview-grid img {
        height: 250px;
    }
    
    .apartment-section {
        margin-bottom: 3rem;
    }
}
