/* Base Styles */
:root {
    /* --primary-color: #1a5f3f;
    --secondary-color: #2d8659; */
    --primary-color: #2d8659;
    --secondary-color: #3d9970;
    --accent-color: #3d9959;
    --light-color: #f8fafc;
    --dark-color: #1f2937;
    --text-color: #333;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

body {
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    color: var(--text-color);
}

/* Navigation */
.navbar {
    background: transparent;
    box-shadow: none;
    transition: var(--transition);
    backdrop-filter: blur(0px);
}

.navbar.scrolled {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

.navbar:not(.scrolled) {
    background: rgba(0, 0, 0, 0.1);
}

.navbar:not(.scrolled) .navbar-brand,
.navbar:not(.scrolled) .nav-link {
    color: rgba(255, 255, 255, 0.95) !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
}

.nav-link {
    font-weight: 500;
    margin: 0 5px;
    transition: var(--transition);
}

.nav-link:hover {
    color: #fff !important;
    transform: translateY(-2px);
}

/* Hero Section */
.hero-section {
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.slideshow-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 1s ease;
}

.slide.active {
    opacity: 1;
}

.slide-content {
    text-align: center;
    color: white;
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.6));
    color: white;
}

.hero-content .container {
    margin-top: 30%;
    text-align: center;
    transform: translateY(15%);
    /* Position slightly below center */
    max-width: 800px;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    color: white;
    font-size: 1.5rem;
}

.bounce {
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-20px);
    }

    60% {
        transform: translateY(-10px);
    }
}

/* Section Styles */
.section-padding {
    padding: 100px 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 40px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--secondary-color);
    border-radius: 2px;
}

/* Cards */
.map-card,
.trek-card,
.access-card,
.camping-card,
.contact-card {
    background: white;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
    padding: 30px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

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

/* Interactive Map */
.interactive-map {
    width: 100%;
    height: 400px;
    background: #f8f9fa;
    border-radius: 10px;
    overflow: hidden;
}

.map-point,
.map-area {
    cursor: pointer;
    transition: var(--transition);
}

.map-point:hover,
.map-area:hover {
    transform: scale(1.1);
}

.map-info {
    background: white;
    border-radius: 15px;
    height: 100%;
}

.legend-color {
    width: 20px;
    height: 20px;
    border-radius: 4px;
}

/* Map Card V2 */
.map-card-v2 {
    background: white;
    border-radius: 15px;
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: var(--transition);
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

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

.card-header-v2 {
    padding: 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    display: flex;
    align-items: center;
}

.card-header-v2 i {
    font-size: 1.5rem;
}

.card-header-v2 h3 {
    font-size: 1.25rem;
    margin: 0;
    font-weight: 600;
}

.map-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: #f8f9fa;
}

.map-wrapper iframe {
    width: 100%;
    display: block;
}

.map-img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    transition: var(--transition);
}

.cursor-pointer {
    cursor: pointer;
}

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

.map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    opacity: 0;
    transition: var(--transition);
}

.map-wrapper:hover .map-overlay {
    opacity: 1;
}

.map-overlay i {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.map-overlay span {
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Trek Cards */
.trek-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.trek-duration {
    color: var(--accent-color);
    font-weight: 600;
}

/* Access Cards */
.access-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.access-icon {
    font-size: 2.5rem;
    color: var(--secondary-color);
    min-width: 60px;
}

.access-details {
    background: var(--light-color);
    padding: 15px;
    border-radius: 10px;
    margin-top: 15px;
}

/* Camping Cards */
.camping-card {
    text-align: left;
}

.camping-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.camping-features {
    list-style: none;
    padding-left: 0;
    text-align: left;
}

/* Attractions Grid */
.attraction-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
}

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

.attraction-icon {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: white;
}

.attraction-content {
    padding: 20px;
}

/* Facilities Grid */
.facility-card {
    text-align: center;
    padding: 30px 20px;
    background: white;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
}

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

.facility-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

/* Contact Section */
.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.contact-item.justify-content-center {
    justify-content: center;
}

.contact-item i {
    width: 30px;
    color: var(--secondary-color);
}

.contact-form .form-control {
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 12px;
}

.contact-form .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(26, 95, 63, 0.25);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 60px 0 30px;
}

.footer h5 {
    font-weight: 600;
    margin-bottom: 20px;
}

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

.footer-links li {
    margin-bottom: 10px;
}

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

.footer-links a:hover {
    color: white;
    padding-left: 5px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

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

.social-link:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
}

/* Buttons */
.explore-btn {
    background: var(--secondary-color);
    border: none;
    padding: 15px 40px;
    font-weight: 600;
    transition: var(--transition);
}

.explore-btn:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    z-index: 1000;
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.back-to-top:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
}

/* Modal Styles */
.modal-content {
    border-radius: 15px;
    border: none;
}

.modal-header {
    background: var(--light-color);
    border-radius: 15px 15px 0 0;
    border-bottom: 1px solid #eee;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content .container {
        margin-top: 90%;
    }
}

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

.section-padding {
    padding: 60px 0;
}

.section-title {
    font-size: 2rem;
}

.access-card {
    flex-direction: column;
    text-align: center;
}

.access-icon {
    margin-bottom: 15px;
}

@media (max-width: 576px) {
    .hero-content h1 {
        font-size: 2rem;
    }

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

    .section-title {
        font-size: 1.75rem;
    }

    .trek-card,
    .camping-card,
    .facility-card {
        padding: 20px;
    }
}


/* Animation Classes */
.fade-in {
    animation: fadeIn 0.8s ease-out;
}

.slide-up {
    animation: slideUp 0.8s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Loading Animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Map Info Content */
.map-info-content {
    min-height: 150px;
}

.map-info-content h4 {
    color: var(--primary-color);
    font-weight: 600;
}

/* Trek Details Modal */
.trek-details {
    padding: 20px 0;
}

.trek-details ul {
    padding-left: 0;
}

.trek-details li {
    padding: 5px 0;
}

/* Form Enhancements */
.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(26, 95, 63, 0.25);
}

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

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

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

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

/* Additional Utility Classes */
.text-primary {
    color: var(--primary-color) !important;
}

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

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--secondary-color);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-color);
}

/* Print Styles */
@media print {

    .navbar,
    .back-to-top,
    button,
    .btn {
        display: none !important;
    }

    body {
        padding-top: 0 !important;
        box-sizing: border-box;
    }
}