:root {
    --primary-green: #059669;
    --dark-green: #047857;
    --accent-yellow: #f59e0b;
    --light-bg: #f0fdf4;
}

/* Base Styles */
body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
}

h1, h2, h3, h4, h5, h6, .navbar-brand {
    font-family: 'Playfair Display', serif;
}

/* Navbar */
.navbar {
    background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
}

.navbar-brand {
    color: var(--accent-yellow) !important;
    font-weight: bold;
    font-size: 1.5rem;
}

.nav-link {
    color: rgba(255,255,255,0.9) !important;
    margin: 0 10px;
}

.nav-link:hover {
    color: var(--accent-yellow) !important;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), 
                url('https://images.unsplash.com/photo-1555895913-58b99953e768?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

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

/* Section Title */
.section-title {
    color: var(--primary-green);
    font-weight: 700;
    margin-bottom: 2rem;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-yellow), var(--primary-green));
    margin-top: 12px;
    border-radius: 2px;
}

/* Feature Cards */
.feature-card {
    background: white;
    border: none;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.feature-icon {
    font-size: 3rem;
    color: var(--primary-green);
    margin-bottom: 1rem;
}

/* Destinations Images */
.destinations-img {
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.3s;
}

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

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
    color: white;
    border-radius: 20px;
    padding: 4rem 2rem;
}

.cta-btn {
    background: var(--accent-yellow);
    color: var(--dark-green);
    border: none;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: bold;
    transition: all 0.3s;
}

.cta-btn:hover {
    background: #d97706;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(245, 158, 11, 0.4);
}

/* Testimonials */
.testimonials-card {
    background: var(--light-bg);
    border: none;
    border-radius: 15px;
    padding: 2rem;
}

.testimonial-star {
    color: var(--accent-yellow);
}

/* Blog Cards */
.blog-card {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: white;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.12);
}

.blog-img {
    height: 220px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-img {
    transform: scale(1.08);
}

.blog-date {
    background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1rem;
}

.blog-card h5 {
    color: var(--dark-green);
    font-weight: 600;
    margin-bottom: 0.75rem;
    line-height: 1.4;
    min-height: 52px;
}

.blog-card p {
    color: #6b7280;
    font-size: 0.9rem;
    line-height: 1.6;
    flex-grow: 1;
    margin-bottom: 1.5rem;
}

.blog-card .btn {
    background: linear-gradient(135deg, var(--accent-yellow), #f97316);
    color: white;
    border: none;
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s;
}

.blog-card .btn:hover {
    background: linear-gradient(135deg, #f97316, #ea580c);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(249, 115, 22, 0.3);
}

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

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    color: white;
    transition: all 0.3s;
}

.social-icon:hover {
    background: var(--accent-yellow);
    color: var(--dark-green);
    transform: translateY(-3px);
}

/* Blog Detail Styles */
.blog-detail-container {
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    overflow: hidden;
    margin-top: 100px;
    margin-bottom: 50px;
}

.blog-detail-img {
    height: 400px;
    object-fit: cover;
}

.blog-detail-content {
    padding: 3rem;
}

.blog-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    color: var(--primary-green);
}

.blog-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.back-btn {
    background: var(--primary-green);
    color: white;
    border: none;
    padding: 10px 25px;
    border-radius: 50px;
    transition: all 0.3s;
    font-family: 'Poppins', sans-serif;
}

.back-btn:hover {
    background: var(--dark-green);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(4, 120, 87, 0.3);
}

.blog-share {
    display: flex;
    gap: 10px;
    margin-top: 2rem;
}

.share-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s;
    text-decoration: none;
}

.share-btn.fb { background: #1877F2; }
.share-btn.tw { background: #1DA1F2; }
.share-btn.wa { background: #25D366; }
.share-btn:hover { transform: translateY(-3px); }

.content-text {
    line-height: 1.8;
    color: #4b5563;
}

.content-text h2 {
    color: var(--primary-green);
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.content-text p {
    margin-bottom: 1rem;
}

.content-text ul {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.content-text li {
    margin-bottom: 0.5rem;
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in.active {
    opacity: 1;
    transform: translateY(0);
}

/* Loading Overlay */
.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: white;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 4px solid var(--light-bg);
    border-top: 4px solid var(--primary-green);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 { font-size: 2rem; }
    .blog-detail-content { padding: 1.5rem; }
    .blog-detail-img { height: 250px; }
    footer { padding: 2rem 0; }
}