.content-container {
    margin-top: 80px;
    padding: 2rem;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

/* HERO SECTION */
.hero {
    margin: 0 -2rem -2rem -2rem;
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #00bcd4 0%, #00897b 50%, #004d40 100%);
    color: var(--light-color);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%23ffffff" fill-opacity="0.05"><path d="M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z"/></g></g></svg>');
    opacity: 0.5;
}

.hero-content {
    position: relative;
    z-index: 1;
    animation: fadeInUp 1s ease-out;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.2);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* FEATURES/HOME CARDS */
.features {
    margin-bottom: 3rem;
}

.features h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--text-color);
    position: relative;
}

.features h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    margin: 0.5rem auto 0;
    border-radius: 2px;
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.feature {
    background: var(--light-color);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px var(--shadow-light);
    transition: all var(--transition-speed);
    position: relative;
}

.feature:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px var(--shadow-medium);
}

.feature-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.feature-content {
    padding: 2rem;
}

.feature h3 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.feature p {
    color: #666;
    line-height: 1.6;
}

/* REVIEWS SECTION */
.reviews {
    margin-bottom: 3rem;
}

.reviews h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--text-color);
    position: relative;
}

.reviews h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    margin: 0.5rem auto 0;
    border-radius: 2px;
}

.reviews {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.review {
    background: linear-gradient(135deg, var(--light-color) 0%, #f9f9f9 100%);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px var(--shadow-light);
    border-left: 4px solid var(--primary-color);
    font-style: italic;
    transition: all var(--transition-speed);
    position: relative;
}

.review::before {
    content: '"';
    font-size: 4rem;
    color: var(--primary-color);
    opacity: 0.1;
    position: absolute;
    top: -10px;
    left: 10px;
}

.review:hover {
    transform: translateX(8px);
    box-shadow: 0 8px 20px var(--shadow-medium);
}

/* ABOUT/INTRO SECTIONS */
.about, .intro {
    text-align: center;
    margin-bottom: 3rem;
}

.about h1, .intro h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.about p, .intro p {
    font-size: 1.1rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto 1rem;
    line-height: 1.8;
}

.about-image, .intro-image {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 25px var(--shadow-medium);
    margin: 2rem 0;
}

/* ACTIVITIES & STAYS */
.activities, .stays, .itineraries, .planning {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.activity, .stay, .itinerary, .plan-item {
    background: var(--light-color);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px var(--shadow-light);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.activity:hover, .stay:hover, .itinerary:hover, .plan-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px var(--shadow-medium);
}

.activity-image, .stay-image, .itinerary-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
    transition: transform var(--transition-speed);
}

.about-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
    border-radius: 12px;
    margin-bottom: 2rem;
    box-shadow: 0 8px 24px var(--shadow-medium);
}

.activity:hover .activity-image, 
.stay:hover .stay-image,
.itinerary:hover .itinerary-image {
    transform: scale(1.08);
}

.activity-content, .stay-content, .itinerary-content {
    padding: 1.5rem;
}

.activity h2, .stay h2, .itinerary h2, .plan-item h2 {
    color: var(--secondary-color);
    margin-bottom: 0.8rem;
    font-size: 1.3rem;
}

.activity p, .stay p, .itinerary p, .plan-item p {
    color: #666;
    line-height: 1.6;
}

.itinerary ul {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
}

.itinerary li {
    padding: 0.5rem 0 0.5rem 1.5rem;
    position: relative;
    color: #666;
}

.itinerary li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

/* CONTACT SECTION */
.contact-intro, .contact-info, .contact-form, .response-time {
    margin-bottom: 2rem;
}

.contact-intro {
    text-align: center;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 12px;
    color: var(--light-color);
}

.contact-intro h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.contact-intro h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 300;
}

.contact-info {
    background: var(--light-color);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px var(--shadow-light);
    text-align: center;
}

.contact-info p {
    font-size: 1.1rem;
    margin: 0.8rem 0;
    color: #666;
}

.contact-form, .response-time {
    background: var(--light-color);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px var(--shadow-light);
    text-align: center;
}

/* FOOTER */
footer {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, var(--secondary-color) 0%, #00695c 100%);
    color: var(--light-color);
    margin-top: 3rem;
}

footer p {
    margin: 0;
    font-weight: 500;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .content-container {
        padding: 1rem;
        margin-top: 70px;
    }
    
    .hero {
        margin: 0 -1rem -1rem -1rem;
        padding: 3rem 1rem;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .features h2, .reviews h2, .activities, .stays, .itineraries, .planning {
        font-size: 1.8rem;
    }
    
    .feature {
        padding: 0;
    }
    
    .activities, .stays, .itineraries, .planning {
        grid-template-columns: 1fr;
    }
    
    .contact-intro {
        padding: 2rem 1rem;
    }
    
    .contact-intro h1 {
        font-size: 1.8rem;
    }
}