:root {
    /* Brand — earth & forest */
    --primary-color: #2f6b57;
    --primary-light: #3d8570;
    --secondary-color: #1a4035;
    --secondary-dark: #0f2922;
    --accent-color: #c47b4a;
    --accent-hover: #a86538;
    --accent-soft: rgba(196, 123, 74, 0.2);

    /* Text */
    --text-dark: #2a2825;
    --text-light: #6b665f;
    --text-muted: #9a9490;
    --heading-color: #1a3329;

    /* Backgrounds */
    --bg-white: #fdfbf8;
    --bg-light: #f4efe6;
    --bg-muted: #e9e2d6;
    --bg-tint: #ebe6dc;
    --primary-tint: #e2ede8;

    /* Surfaces */
    --surface-dark: #142820;
    --surface-footer: #1a2e26;

    /* Semantic */
    --success-color: #4a9068;
    --success-light: #3a7a58;
    --tip-bg-start: #faf4e8;
    --tip-bg-end: #f5ebd4;
    --tip-border: #d4a574;
    --tip-text: #6b4e2e;

    /* RGB helpers */
    --primary-rgb: 47, 107, 87;
    --secondary-rgb: 26, 64, 53;
    --accent-rgb: 196, 123, 74;

    --border-color: #d8d2c8;
    --shadow: 0 2px 12px rgba(26, 40, 35, 0.08);
    --shadow-hover: 0 8px 24px rgba(26, 40, 35, 0.12);
    --shadow-primary: 0 4px 24px rgba(47, 107, 87, 0.12);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
    overflow-x: hidden;
}

a {
    text-decoration: none;
}

html {
    scroll-behavior: smooth;
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.menu-toggle {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    display: flex;
    flex-direction: column;
    gap: 6px;
    position: absolute;
    left: 1.5rem;
}

.menu-toggle span {
    width: 24px;
    height: 2px;
    background: #ffffff;
    transition: all 0.3s ease;
}

.menu-toggle:hover span {
    background: var(--accent-color);
}

.site-logo {
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.site-logo i {
    color: var(--accent-color);
}

.site-logo:hover {
    color: white;
    text-decoration: none;
}

.offcanvas-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2000;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    visibility: hidden;
}

.offcanvas-menu.active {
    transform: translateX(0);
    visibility: visible;
}

.offcanvas-content {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    background: var(--secondary-color);
}

.offcanvas-sidebar {
    width: 35%;
    min-width: 280px;
    max-width: 400px;
    background: linear-gradient(135deg, var(--secondary-color), var(--secondary-dark));
    padding: 2rem;
    padding-top: 4rem;
    overflow-y: auto;
}

.sidebar-logo {
    color: white;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 2.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.sidebar-logo i {
    color: var(--accent-color);
}

.main-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.main-menu li {
    margin-bottom: 1rem;
}

.main-menu .menu-link {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    display: block;
    padding: 0.75rem 1rem;
    border-radius: 5px;
    transition: all 0.3s ease;
    position: relative;
}

.main-menu .menu-link:hover,
.main-menu .menu-link.active {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    padding-left: 1.5rem;
}

.main-menu .menu-link.active {
    background: var(--accent-soft);
    border-left: 3px solid var(--accent-color);
}

.offcanvas-submenu {
    flex: 1;
    background: var(--surface-dark);
    padding: 2rem;
    padding-top: 4rem;
    overflow-y: auto;
    position: relative;
}

.submenu-content {
    color: white;
}

.submenu-default {
    height: 100%;
}

.featured-images {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.featured-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

.featured-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.featured-item p {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1rem;
    margin: 0;
    background: rgba(0, 0, 0, 0.7);
    font-size: 0.9rem;
    font-weight: 500;
}

.quick-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.quick-link-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.quick-link-item:hover {
    background: var(--accent-soft);
    color: white;
    text-decoration: none;
}

.quick-link-item i {
    font-size: 1.5rem;
    color: var(--accent-color);
}

.submenu-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.submenu-list li {
    margin-bottom: 1rem;
}

.submenu-list li a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 1.1rem;
    display: block;
    padding: 0.75rem 1rem;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.submenu-list li a:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    padding-left: 1.5rem;
}

.submenu-images {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.submenu-images img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 8px;
}

.submenu-back {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    cursor: pointer;
    padding: 0.5rem 1rem;
    border: 1px solid var(--accent-color);
    border-radius: 5px;
    transition: all 0.3s ease;
}

.submenu-back:hover {
    background: var(--accent-color);
    color: white;
    text-decoration: none;
}

.offcanvas-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    z-index: 10;
    transition: color 0.3s ease;
}

.offcanvas-close:hover {
    color: var(--accent-color);
}

.offcanvas-overlay {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
}


@media (max-width: 991px) {
    .offcanvas-sidebar {
        width: 70%;
        max-width: 350px;
        padding: 1.5rem;
        padding-top: 5rem;
    }
    
    .offcanvas-submenu {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 100;
        width: 80%;
        max-width: 350px;
        padding: 1.5rem;
        padding-top: 5rem;
        background: rgba(0, 0, 0, 0.8) !important;
        overflow-y: auto;
        overflow-x: hidden;
    }
    
    .offcanvas-submenu.active {
        display: block !important;
    }
    
    .submenu-back {
        display: block !important;
        height: 38px;
        text-align: center;
        width: 80px;
        position: absolute;
        top: 1rem;
        left: 1rem;
        background: rgba(255, 255, 255, 0.2);
        color: white;
        border: none;
        padding: 0.5rem 1rem;
        border-radius: 5px;
        cursor: pointer;
        z-index: 101;
        backdrop-filter: blur(10px);
        font-size: 0.9rem;
    }
    
    .submenu-content {
        color: white !important;
        padding-bottom: 2rem;
        padding-top: 4rem;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .submenu-content * {
        color: white !important;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .submenu-content h3 {
        font-size: 1.25rem;
        margin-bottom: 1.5rem;
        padding-bottom: 1rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .submenu-list {
        margin: 0;
        padding: 0;
        list-style: none;
        margin-bottom: 0;
    }
    
    .submenu-list li {
        margin-bottom: 0.25rem;
        display: block;
    }
    
    .submenu-list li a {
        display: block;
        font-size: 0.95rem;
        padding: 0.875rem 1rem;
        border-radius: 8px;
        background: rgba(255, 255, 255, 0.1);
        border-left: 3px solid var(--accent-color);
        color: white !important;
        text-decoration: none;
        transition: all 0.3s ease;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .submenu-list li a:hover {
        background: rgba(255, 255, 255, 0.2);
        padding-left: 1.25rem;
    }
    
    .submenu-images {
        display: none;
    }
    
    .featured-images {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .featured-item img {
        height: 150px;
    }
    
    .quick-links {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .quick-link-item {
        padding: 1rem;
        border-radius: 8px;
    }
}

@media (max-width: 575px) {
    .site-header {
        padding: 0.75rem 1rem;
    }
    
    .site-logo {
        font-size: 1rem;
    }
    
    .menu-toggle span {
        width: 20px;
    }
    
    .offcanvas-sidebar {
        width: 100%;
        max-width: 100%;
        padding: 1rem;
        padding-top: 4.5rem;
    }
    
    .sidebar-logo {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }
    
    .main-menu .menu-link {
        font-size: 1rem;
        padding: 0.6rem 0.8rem;
    }
    
    .offcanvas-submenu {
        padding: 1rem;
        padding-top: 4.5rem;
    }
    
    .featured-item img {
        height: 120px;
    }
    
    .featured-item p {
        font-size: 0.8rem;
        padding: 0.75rem;
    }
    
    .quick-link-item {
        padding: 1rem;
    }
    
    .quick-link-item i {
        font-size: 1.2rem;
    }
    
    .quick-link-item span {
        font-size: 0.9rem;
    }
    
    .submenu-content {
        padding-top: 3rem;
    }
    
    .submenu-content h3 {
        font-size: 1.1rem;
        margin-bottom: 1rem;
        padding-bottom: 0.75rem;
    }
    
    .submenu-list li a {
        font-size: 0.95rem;
        padding: 0.875rem 1rem;
    }
}
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 600px;
    background: url('https://images.unsplash.com/photo-1469854523086-cc02fe5d8800?w=1920&h=1080&fit=crop') center/cover no-repeat;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(26, 64, 53, 0.35) 0%, rgba(26, 64, 53, 0.65) 70%, rgba(15, 41, 34, 0.95) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    color: white;
    text-align: center;
    padding: 4rem 2rem;
    width: 100%;
}

.hero-welcome {
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 1rem;
    opacity: 0.9;
    animation: fadeInUp 1s ease;
}

.hero-title {
    font-size: 4rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.4);
    animation: fadeInUp 1s ease 0.2s both;
}

.hero-subtitle {
    font-size: 1.2rem;
    font-weight: 300;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.95;
    line-height: 1.8;
    animation: fadeInUp 1s ease 0.4s both;
}

.hero-buttons {
    margin-top: 2.5rem;
    animation: fadeInUp 1s ease 0.6s both;
}

.hero-buttons .btn {
    margin: 0.5rem;
    padding: 0.8rem 2.5rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: var(--transition);
}

.hero-buttons .btn-primary {
    background: var(--accent-color);
    border-color: var(--accent-color);
}

.hero-buttons .btn-primary:hover {
    background: var(--accent-hover);
    border-color: var(--accent-hover);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(var(--accent-rgb), 0.4);
}

.hero-buttons .btn-outline-light:hover {
    background: var(--bg-white);
    color: var(--primary-color);
    transform: translateY(-3px);
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 2rem;
    animation: bounce 2s infinite;
    cursor: pointer;
    z-index: 1;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-20px);
    }
    60% {
        transform: translateX(-50%) translateY(-10px);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 991px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
}

@media (max-width: 767px) {
    .hero-title {
        font-size: 2rem;
        letter-spacing: 0.05em;
    }
    
    .hero-welcome {
        font-size: 0.85rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-buttons .btn {
        padding: 0.7rem 1.5rem;
        font-size: 0.9rem;
    }
}

.stats-section {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    margin-top: -80px;
    position: relative;
    z-index: 2;
    border-radius: 10px;
    box-shadow: var(--shadow-hover);
}

.stat-item {
    padding: 1rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: var(--accent-color);
}

.stat-label {
    font-size: 1.1rem;
    font-weight: 500;
    opacity: 0.9;
}

.section-header {
    margin-bottom: 3rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto;
}

.destinations-section {
    background: var(--bg-light);
}

.destinations-slider-container {
    position: relative;
    overflow: hidden;
    padding: 1rem 0;
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(var(--secondary-rgb), 0.9);
    border: none;
    color: #ffffff;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition);
}

.slider-arrow:hover {
    background: rgba(var(--secondary-rgb), 1);
    transform: translateY(-50%) scale(1.1);
}

.slider-arrow-left {
    left: 0;
}

.slider-arrow-right {
    right: 0;
}

.destinations-slider {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 0 2rem;
}

.destinations-slider::-webkit-scrollbar {
    display: none;
}

.destination-slide {
    flex: 0 0 auto;
    width: 280px;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: var(--transition);
}

.destination-slide:hover {
    transform: scale(1.03);
}

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

.slide-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(var(--secondary-rgb), 0.85);
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.slide-title {
    color: white;
    font-size: 0.95rem;
    font-weight: 600;
}

.slide-overlay i {
    color: var(--accent-color);
    font-size: 1.2rem;
    transition: var(--transition);
}

.destination-slide:hover .slide-overlay i {
    transform: translateX(5px);
}

@media (max-width: 767px) {
    .destination-slide {
        width: 220px;
    }
    
    .destination-slide img {
        height: 160px;
    }
    
    .slider-arrow {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .slider-arrow-left {
        left: 0;
    }
    
    .slider-arrow-right {
        right: 0;
    }
}

.trip-ideas-section {
    background: var(--bg-light);
}

.trip-ideas-slider-container {
    position: relative;
    overflow: hidden;
    padding: 1rem 0;
}

.trip-ideas-slider {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 0 2rem;
}

.trip-ideas-slider::-webkit-scrollbar {
    display: none;
}

.trip-idea-card {
    flex: 0 0 auto;
    width: 320px;
    border-radius: 12px;
    overflow: hidden;
    background: var(--bg-white);
    box-shadow: var(--shadow);
    cursor: pointer;
    transition: var(--transition);
}

.trip-idea-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

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

.trip-idea-content {
    padding: 1rem 1.2rem;
}

.trip-tag {
    display: inline-block;
    background: rgba(var(--primary-rgb), 0.1);
    color: var(--primary-color);
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.trip-idea-content h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.trip-idea-content i {
    display: block;
    color: var(--accent-color);
    margin-top: 0.75rem;
    font-size: 1.1rem;
    text-align: right;
    transition: var(--transition);
}

.trip-idea-card:hover i {
    transform: translateX(5px);
}

@media (max-width: 767px) {
    .trip-idea-card {
        width: 260px;
    }
    
    .trip-idea-card img {
        height: 150px;
    }
    
    .trip-idea-content h3 {
        font-size: 0.9rem;
    }
}

.destination-badge.adventure {
    background: var(--success-color);
}

.destination-badge.nature {
    background: var(--success-light);
}

.destination-content {
    padding: 1.5rem;
}

.destination-content h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.destination-description {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.destination-metrics {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1rem;
}

.metric {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-light);
}

.metric i {
    color: var(--primary-color);
}

.insights-section {
    background: var(--bg-white);
}

.insight-card {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 15px;
    height: 100%;
    transition: var(--transition);
    border-left: 4px solid var(--primary-color);
}

.insight-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.insight-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.insight-icon i {
    font-size: 1.5rem;
    color: white;
}

.insight-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

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

.insight-stats {
    list-style: none;
    padding: 0;
}

.insight-stats li {
    padding: 0.5rem 0;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.insight-stats i {
    color: var(--success-color);
}

.sustainability-section {
    background: linear-gradient(135deg, var(--bg-white), var(--bg-tint));
}

.sustainability-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.sustainability-card {
    background: var(--bg-white);
    border-radius: 14px;
    box-shadow: var(--shadow-primary);
    overflow: hidden;
    transition: var(--transition);
}

.sustainability-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.sustainability-card-link {
    display: block;
    color: inherit;
    text-decoration: none;
}

.sustainability-card-link:hover {
    color: inherit;
}

.sustainability-card-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

.sustainability-card-body {
    padding: 1.5rem 1.75rem 1.75rem;
}

.sustainability-card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.sustainability-tag {
    display: inline-block;
    background: var(--primary-tint);
    color: var(--primary-color);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.35rem 0.85rem;
    border-radius: 50px;
    letter-spacing: 0.02em;
}

.sustainability-date {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.sustainability-card h3 {
    font-family: Georgia, 'Times New Roman', Times, serif;
    font-size: 1.45rem;
    font-weight: 700;
    color: var(--heading-color);
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.sustainability-card-desc {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.65;
    margin-bottom: 1.25rem;
}

.sustainability-cta {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9rem;
}

.sustainability-card:hover .sustainability-cta {
    color: var(--secondary-color);
}

.resources-section {
    background: var(--bg-white);
}

.resource-card {
    text-align: center;
    padding: 2rem;
    border-radius: 15px;
    background: var(--bg-light);
    transition: var(--transition);
    height: 100%;
}

.resource-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.resource-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.resource-icon i {
    font-size: 1.8rem;
    color: white;
}

.resource-card h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

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

.resource-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.resource-link:hover {
    color: var(--accent-color);
}

.resource-link i {
    margin-left: 0.5rem;
    transition: var(--transition);
}

.resource-link:hover i {
    transform: translateX(5px);
}

.about-section {
    background: var(--bg-light);
}

.about-section .section-title {
    margin-bottom: 1.5rem;
}

.about-section .lead {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.about-section p {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.stat-box {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--bg-white);
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.stat-box:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.stat-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.stat-icon i {
    font-size: 1.3rem;
    color: white;
}

.stat-info h4 {
    color: var(--primary-color);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0;
}

.stat-info p {
    color: var(--text-light);
    margin: 0;
}

.newsletter-section {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
}

.newsletter-section .section-title,
.newsletter-section .section-subtitle {
    color: white;
}

.newsletter-form {
    max-width: 500px;
    margin: 2rem auto 1rem;
}

.newsletter-form .form-control {
    padding: 1rem 1.5rem;
    border: none;
    border-radius: 30px 0 0 30px;
    font-size: 1rem;
}

.newsletter-form .btn {
    padding: 1rem 2rem;
    border-radius: 0 30px 30px 0;
    background: var(--accent-color);
    border-color: var(--accent-color);
    font-weight: 600;
}

.newsletter-form .btn:hover {
    background: var(--accent-hover);
    border-color: var(--accent-hover);
}

.newsletter-note {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-top: 1rem;
}

.footer {
    background: var(--surface-footer);
    color: white;
    padding: 3rem 0 1rem;
}

.footer-brand {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.footer-brand i {
    color: var(--accent-color);
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--accent-color);
    transform: translateY(-3px);
}

.footer-title {
    color: white;
    font-weight: 600;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--accent-color);
    padding-left: 5px;
}

.footer-contact {
    list-style: none;
    padding: 0;
}

.footer-contact li {
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.7);
    display: flex;
    align-items: center;
}

.footer-contact i {
    color: var(--accent-color);
}

.footer-bottom {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright {
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    gap: 2rem;
    justify-content: flex-end;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
}

.footer-bottom-links a:hover {
    color: var(--accent-color);
}

.gallery-section {
    background: linear-gradient(180deg, var(--secondary-dark) 0%, var(--secondary-color) 100%);
    padding: 4rem 0;
}

.gallery-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.gallery-title {
    color: white;
    font-size: 2.5rem;
    font-weight: 900;
    margin: 0;
    letter-spacing: 0.1em;
}

.gallery-hash {
    color: var(--accent-color);
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0.5rem 0;
}

.gallery-description {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    margin: 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: 180px;
    gap: 10px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1rem;
}

.gallery-item {
    position: relative;
    border-radius: 6px;
    overflow: hidden;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.gallery-item.small {
    grid-column: span 2;
}

.gallery-item.medium {
    grid-column: span 3;
}

.gallery-item.large {
    grid-column: span 4;
}

.gallery-item.tall {
    grid-row: span 2;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(var(--secondary-rgb), 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    color: white;
    font-size: 1.8rem;
}

.gallery-item::before {
    content: '';
    position: absolute;
    bottom: 10px;
    left: 10px;
    width: 24px;
    height: 24px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 10px;
    color: white;
    content: '\f16d';
    z-index: 1;
}

/* Lightbox Styles */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.9);
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

.lightbox.active {
    display: flex;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(255, 255, 255, 0.2);
}

.lightbox-close {
    top: 20px;
    right: 20px;
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

.lightbox-image {
    max-width: 90vw;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 8px;
}

@media (max-width: 767px) {
    .gallery-title {
        font-size: 1.8rem;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(4, 1fr);
        grid-auto-rows: 120px;
        gap: 6px;
    }
    
    .gallery-item.small,
    .gallery-item.medium,
    .gallery-item.large {
        grid-column: span 2;
    }
    
    .gallery-item.tall {
        grid-row: span 2;
    }
    
    .lightbox-close,
    .lightbox-prev,
    .lightbox-next {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
}

.seasons-section {
    background: linear-gradient(180deg, var(--secondary-dark) 0%, var(--secondary-color) 50%, var(--primary-color) 100%);
    padding: 4rem 0;
}

.seasons-section .section-title {
    color: white;
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.seasons-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    max-width: 1200px;
    margin: 0 auto;
}

.season-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition);
}

.season-card:hover {
    transform: scale(1.03);
}

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

.season-overlay {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(var(--secondary-rgb), 0.9);
    padding: 0.5rem 2rem;
    border-radius: 25px;
}

.season-name {
    color: white;
    font-weight: 600;
    font-size: 0.95rem;
}

@media (max-width: 767px) {
    .seasons-grid {
        grid-template-columns: 1fr;
    }
    
    .season-card img {
        height: 200px;
    }
}

.btn-primary {
    background: var(--primary-color);
    border-color: var(--primary-color);
    transition: var(--transition);
}

.btn-primary:hover {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
    transition: var(--transition);
}

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

@media (max-width: 991px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-buttons .btn {
        padding: 0.6rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 0.9rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .destination-metrics {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .footer-bottom-links {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }

    .sustainability-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .sustainability-card-image {
        height: 200px;
    }
}

@media (max-width: 575px) {
    .navbar-brand {
        font-size: 1.2rem;
    }
    
    .hero-section {
        min-height: 500px;
    }
}

.page-header {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 80px;
}

.page-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.85), rgba(var(--secondary-rgb), 0.9));
}

.page-title {
    position: relative;
    color: white;
    font-size: 3rem;
    font-weight: 800;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    margin-bottom: 1rem;
}

.page-subtitle {
    position: relative;
    color: white;
    font-size: 1.2rem;
    opacity: 0.95;
    max-width: 800px;
    margin: 0 auto;
}

.destinations-filter {
    background: var(--bg-light);
    border-bottom: 1px solid var(--border-color);
}

.filter-container {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    padding: 1rem;
    background: var(--bg-white);
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.filter-btn {
    padding: 0.6rem 1.5rem;
    border: 2px solid var(--border-color);
    background: var(--bg-white);
    color: var(--text-dark);
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-2px);
}

.filter-btn.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

.destinations-grid {
    background: var(--bg-light);
}

.destination-item {
    transition: var(--transition);
}

.destination-item[style*="display: none"] {
    display: none !important;
}

@media (max-width: 991px) {
    .page-title {
        font-size: 2.5rem;
    }
    
    .page-subtitle {
        font-size: 1rem;
    }
    
    .filter-container {
        gap: 0.3rem;
    }
    
    .filter-btn {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
}

/* Detail Page Styles */
.detail-hero {
    position: relative;
    height: 50vh;
    min-height: 400px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    margin-top: 80px;
}

.detail-hero-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
}

.detail-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.detail-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(15, 41, 34, 0.3), rgba(15, 41, 34, 0.9));
}

.detail-hero-content {
    position: relative;
    z-index: 1;
    padding: 3rem 0;
    text-align: center;
}

.detail-hero-content h1 {
    color: white;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.detail-hero-description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
}

.detail-content {
    padding: 4rem 0;
    background: var(--bg-white);
}

.detail-content article {
    color: var(--text-dark);
}

.detail-content h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--heading-color);
    margin-bottom: 1.5rem;
}

.detail-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.detail-content h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--heading-color);
    margin-bottom: 0.75rem;
}

.detail-content p {
    line-height: 1.8;
    margin-bottom: 1rem;
}

.detail-image {
    margin: 2rem 0;
    border-radius: 8px;
    overflow: hidden;
}

.detail-image img {
    width: 100%;
    height: auto;
}

.image-caption {
    text-align: center;
    font-size: 0.9rem;
    color: var(--text-light);
    margin-top: 0.75rem;
    font-style: italic;
}

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

.feature-list li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-color);
}

.feature-list li:last-child {
    border-bottom: none;
}

.destination-highlight {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.activity-card {
    background: var(--primary-tint);
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.activity-card h4 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
}

.activity-card h4 i {
    color: var(--accent-color);
}

.seasonal-event {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}

.seasonal-event:last-child {
    border-bottom: none;
}

.detail-content blockquote {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    color: white;
    padding: 1.5rem 2rem;
    border-radius: 8px;
    font-style: italic;
    font-size: 1.1rem;
    margin: 2rem 0;
}

.detail-content ul,
.detail-content ol {
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.detail-content li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.related-content {
    padding: 4rem 0;
    background: var(--bg-light);
}

.related-content .section-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--heading-color);
    margin-bottom: 0.5rem;
}

.related-content .section-subtitle {
    color: var(--primary-color);
    font-size: 0.95rem;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.related-card {
    background: var(--bg-white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}



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

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

.related-card h3 {
    padding: 1rem;
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
    color: var(--heading-color);
}

.related-tag {
    display: inline-block;
    margin: 1rem;
    padding: 0.25rem 0.75rem;
    background: var(--accent-color);
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 15px;
}

@media (max-width: 767px) {
    .detail-hero-content h1 {
        font-size: 2rem;
    }
    
    .detail-hero-description {
        font-size: 1rem;
    }
    
    .detail-content h2 {
        font-size: 1.5rem;
    }
    
    .related-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .page-header {
        height: 300px;
    }
    
    .page-title {
        font-size: 2rem;
    }
    
    .page-subtitle {
        font-size: 0.9rem;
    }
}

.resource-detail-section {
    background: var(--bg-white);
}

.resource-detail-card {
    background: var(--bg-white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.resource-detail-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 2rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.resource-detail-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.resource-detail-icon i {
    font-size: 2rem;
    color: white;
}

.resource-detail-header h2 {
    color: white;
    margin: 0;
    font-size: 1.8rem;
}

.resource-detail-content {
    padding: 2rem;
}

.resource-detail-content .lead {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.resource-detail-content h3 {
    color: var(--primary-color);
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.resource-detail-content h3:first-child {
    margin-top: 0;
}

.resource-detail-content p,
.resource-detail-content li {
    color: var(--text-light);
    line-height: 1.8;
}

.resource-detail-content ul {
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.resource-detail-content strong {
    color: var(--text-dark);
}

.resource-tip {
    background: linear-gradient(135deg, var(--tip-bg-start), var(--tip-bg-end));
    border-left: 4px solid var(--tip-border);
    padding: 1.5rem;
    border-radius: 10px;
    margin-top: 2rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.resource-tip i {
    color: var(--tip-border);
    font-size: 1.5rem;
    margin-top: 0.2rem;
}

.resource-tip strong {
    color: var(--tip-text);
}

.bg-light {
    background-color: var(--bg-light) !important;
}

@media (max-width: 991px) {
    .resource-detail-header {
        flex-direction: column;
        text-align: center;
    }

    .resource-detail-header h2 {
        font-size: 1.5rem;
    }

    .resource-detail-content {
        padding: 1.5rem;
    }

    .resource-detail-content h3 {
        font-size: 1.2rem;
    }
}

.season-hero {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    margin-top: 80px;
}

.season-hero-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
}

.season-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.season-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(15, 41, 34, 0.2), rgba(15, 41, 34, 0.9));
}

.season-hero-content {
    position: relative;
    z-index: 1;
    padding: 3rem 0;
    text-align: center;
}

.season-hero-content h1 {
    color: white;
    font-size: 3rem;
    font-weight: 800;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
    margin-bottom: 1.5rem;
}

.season-hero-description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.25rem;
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto;
}

.season-hero.spring-hero .season-hero-overlay {
    background: linear-gradient(to bottom, rgba(46, 139, 87, 0.2), rgba(46, 139, 87, 0.85));
}

.season-hero.summer-hero .season-hero-overlay {
    background: linear-gradient(to bottom, rgba(61, 133, 112, 0.25), rgba(47, 107, 87, 0.88));
}

.season-hero.fall-hero .season-hero-overlay {
    background: linear-gradient(to bottom, rgba(139, 69, 19, 0.2), rgba(139, 69, 19, 0.85));
}

.season-hero.winter-hero .season-hero-overlay {
    background: linear-gradient(to bottom, rgba(70, 100, 110, 0.25), rgba(26, 64, 53, 0.88));
}

.season-inspiration {
    padding: 5rem 0;
    background: var(--bg-white);
}

.season-inspiration .section-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--heading-color);
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.season-inspiration .section-subtitle {
    color: var(--text-light);
    font-size: 1rem;
    margin-bottom: 3rem;
}

.inspiration-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.inspiration-card {
    background: var(--bg-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.inspiration-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

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

.inspiration-card h3 {
    padding: 1.5rem;
    margin: 0;
    color: var(--heading-color);
    font-size: 1.25rem;
    font-weight: 600;
}

.trip-tag {
    display: inline-block;
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
    padding: 0.3rem 1rem;
    background: var(--primary-color);
    color: white;
    font-size: 0.85rem;
    border-radius: 20px;
}

.season-events {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-muted) 100%);
}

.season-events .section-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--heading-color);
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.events-slider {
    position: relative;
    margin-top: 2rem;
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: var(--bg-white);
    border: none;
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: background 0.3s ease, transform 0.3s ease;
}

.slider-arrow:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-50%) scale(1.1);
}

.events-container {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    padding: 1rem 0;
    scroll-behavior: smooth;
}

.events-container::-webkit-scrollbar {
    display: none;
}

.event-card {
    flex: 0 0 300px;
    background: var(--bg-white);
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.event-date {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: rgba(var(--primary-rgb), 0.1);
    color: var(--heading-color);
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: 20px;
    margin-bottom: 1rem;
}

.event-card h4 {
    color: var(--heading-color);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.event-location {
    color: var(--primary-color);
    font-weight: 500;
    font-size: 0.95rem;
    margin-bottom: 0.25rem;
}

.event-venue {
    color: var(--text-light);
    font-size: 0.9rem;
}

.plan-your-trip {
    padding: 5rem 0;
    background: var(--bg-white);
}

.plan-your-trip .section-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--heading-color);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 3rem;
}

.plan-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.plan-card {
    position: relative;
    height: 280px;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.plan-card:hover {
    transform: scale(1.03);
}

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

.plan-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    background: linear-gradient(to top, rgba(15, 41, 34, 0.95), transparent);
}

.plan-title {
    color: white;
    font-size: 1.25rem;
    font-weight: 600;
}

@media (max-width: 767px) {
    .season-hero {
        min-height: 400px;
    }

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

    .season-hero-description {
        font-size: 1rem;
        padding: 0 1rem;
    }

    .inspiration-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .slider-arrow {
        width: 40px;
        height: 40px;
    }

    .event-card {
        flex: 0 0 280px;
    }

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