/* ===================================
   Global Styles & Variables
   =================================== */
:root {
    /* Nature-inspired Color Palette */
    --primary-green: #2d5016;
    --secondary-green: #4a7c2c;
    --accent-green: #6b9d3a;
    --light-green: #a8d084;
    --earth-brown: #6b4423;
    --sand-beige: #d4a574;
    --sky-blue: #87ceeb;
    --sunset-orange: #e67e22;
    --forest-dark: #1a3409;
    --cream: #f5f1e8;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #2d5016 0%, #4a7c2c 100%);
    --gradient-sunset: linear-gradient(135deg, #e67e22 0%, #d4a574 100%);
    --gradient-overlay: linear-gradient(to bottom, rgba(29, 53, 87, 0.7), rgba(45, 80, 22, 0.8));

    /* Typography */
    --font-primary: 'Poppins', sans-serif;
    --font-heading: 'Playfair Display', serif;

    /* Spacing */
    --section-padding: 80px 0;

    /* Transitions */
    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.2s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-primary);
    color: #333;
    line-height: 1.7;
    overflow-x: hidden;
    background-color: var(--cream);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.3;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    transition: var(--transition-fast);
}

/* ===================================
   Navigation
   =================================== */
.navbar {
    padding: 1rem 0;
    transition: var(--transition-smooth);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(45, 80, 22, 0.95) !important;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    padding: 0.5rem 0;
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff !important;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition-fast);
}

.navbar-brand:hover {
    transform: scale(1.05);
}

.navbar-brand img {
    height: 50px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    transition: var(--transition-fast);
}

.navbar.scrolled .navbar-brand img {
    height: 40px;
}

.navbar-brand i {
    font-size: 1.8rem;
}

.nav-link {
    color: rgba(255, 255, 255, 0.9) !important;
    font-weight: 500;
    margin: 0 0.5rem;
    padding: 0.5rem 1rem !important;
    position: relative;
    transition: var(--transition-fast);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--light-green);
    transition: var(--transition-smooth);
    transform: translateX(-50%);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 60%;
}

.nav-link:hover {
    color: var(--light-green) !important;
}

.btn-book {
    background: var(--gradient-sunset);
    color: #fff !important;
    border-radius: 25px;
    padding: 0.5rem 1.5rem !important;
    margin-left: 1rem;
}

.btn-book:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(230, 126, 34, 0.4);
}

.btn-book::after {
    display: none;
}

/* ===================================
   Hero Section
   =================================== */
.hero-section {
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(45, 80, 22, 0.6)),
        url('../images/hero-bg.jpg') center/cover no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    color: #fff;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-overlay);
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

.hero-buttons .btn {
    margin: 0.5rem;
    padding: 1rem 2.5rem;
    font-weight: 600;
    border-radius: 50px;
    transition: var(--transition-smooth);
}

.hero-buttons .btn-primary {
    background: var(--gradient-primary);
    border: none;
    box-shadow: 0 8px 25px rgba(45, 80, 22, 0.3);
}

.hero-buttons .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(45, 80, 22, 0.4);
}

.hero-buttons .btn-outline-light {
    border: 2px solid #fff;
    background: transparent;
}

.hero-buttons .btn-outline-light:hover {
    background: #fff;
    color: var(--primary-green);
    transform: translateY(-3px);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 2rem;
    color: #fff;
    animation: bounce 2s infinite;
    cursor: pointer;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    40% {
        transform: translateX(-50%) translateY(-10px);
    }

    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Hero Slider Styles */
.hero-slider-section {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.hero-slider-section .carousel {
    height: 100%;
}

.hero-slider-section .carousel-inner {
    height: 100%;
}

.hero-slider-section .carousel-item {
    height: 100%;
}

.hero-slide {
    height: 100vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    color: #fff;
}

/* Carousel Controls */
.hero-slider-section .carousel-control-prev,
.hero-slider-section .carousel-control-next {
    width: 60px;
    height: 60px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.hero-slider-section .carousel-control-prev {
    left: 30px;
}

.hero-slider-section .carousel-control-next {
    right: 30px;
}

.hero-slider-section .carousel-control-prev:hover,
.hero-slider-section .carousel-control-next:hover {
    opacity: 1;
    background: rgba(255, 255, 255, 0.2);
}

.hero-slider-section .carousel-control-prev-icon,
.hero-slider-section .carousel-control-next-icon {
    width: 30px;
    height: 30px;
}

/* Carousel Indicators */
.hero-slider-section .carousel-indicators {
    bottom: 80px;
    margin-bottom: 0;
}

.hero-slider-section .carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin: 0 5px;
    background-color: rgba(255, 255, 255, 0.5);
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.hero-slider-section .carousel-indicators button.active {
    background-color: #fff;
    width: 40px;
    border-radius: 6px;
}

/* Carousel Fade Effect */
.carousel-fade .carousel-item {
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.carousel-fade .carousel-item.active {
    opacity: 1;
}

/* Animations */
.animate-fade-in {
    animation: fadeIn 1s ease-in;
}

.animate-fade-in-delay {
    animation: fadeIn 1s ease-in 0.3s both;
}

.animate-fade-in-delay-2 {
    animation: fadeIn 1s ease-in 0.6s both;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===================================
   Features Section
   =================================== */
.features-section {
    background: #fff;
    padding: var(--section-padding);
    margin-top: -50px;
    position: relative;
    z-index: 3;
}

.feature-card {
    background: #fff;
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    transition: var(--transition-smooth);
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(45, 80, 22, 0.15);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: #fff;
    transition: var(--transition-smooth);
}

.feature-card:hover .feature-icon {
    transform: rotate(360deg) scale(1.1);
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-green);
}

.feature-card p {
    color: #666;
    margin: 0;
}

/* ===================================
   Section Headers
   =================================== */
.section-header {
    margin-bottom: 3rem;
}

.section-title {
    font-size: 2.5rem;
    color: var(--primary-green);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--gradient-sunset);
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #666;
}

/* ===================================
   Package Cards
   =================================== */
.packages-section {
    padding: var(--section-padding);
    background: var(--cream);
}

.package-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    transition: var(--transition-smooth);
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(45, 80, 22, 0.2);
}

.package-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.package-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.package-card:hover .package-image img {
    transform: scale(1.1);
}

.package-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--gradient-sunset);
    color: #fff;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.package-content {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.package-content h3 {
    font-size: 1.5rem;
    color: var(--primary-green);
    margin-bottom: 1rem;
}

.package-meta {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1rem;
    color: #666;
    font-size: 0.9rem;
}

.package-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.package-meta i {
    color: var(--accent-green);
}

.package-content p {
    color: #666;
    flex-grow: 1;
    margin-bottom: 1.5rem;
}

.package-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1.5rem;
    border-top: 1px solid #eee;
}

.package-price {
    font-size: 1rem;
    color: #666;
}

.package-price span {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-green);
    display: block;
}

.package-footer .btn {
    padding: 0.6rem 1.5rem;
    border-radius: 25px;
}

/* ===================================
   Why Choose Section
   =================================== */
.why-choose-section {
    padding: var(--section-padding);
    background: #fff;
}

.why-choose-image img {
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.why-choose-content h2 {
    color: var(--primary-green);
    margin-bottom: 2rem;
    font-size: 2.5rem;
}

.why-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.why-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.5rem;
}

.why-item h4 {
    color: var(--primary-green);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.why-item p {
    color: #666;
    margin: 0;
}

/* ===================================
   Testimonials
   =================================== */
.testimonials-section {
    padding: var(--section-padding);
    background: var(--cream);
}

.testimonial-card {
    background: #fff;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    transition: var(--transition-smooth);
    height: 100%;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(45, 80, 22, 0.15);
}

.testimonial-rating {
    color: #ffc107;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.testimonial-text {
    font-style: italic;
    color: #555;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.testimonial-author strong {
    color: var(--primary-green);
    font-size: 1.1rem;
}

.testimonial-author span {
    color: #999;
    font-size: 0.9rem;
}

/* ===================================
   CTA Section
   =================================== */
.cta-section {
    background: var(--gradient-primary);
    padding: 4rem 0;
}

.cta-section h2 {
    font-size: 2.5rem;
}

.cta-section .btn-light {
    padding: 1rem 2.5rem;
    font-weight: 600;
    border-radius: 50px;
    transition: var(--transition-smooth);
}

.cta-section .btn-light:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* ===================================
   Footer
   =================================== */
.footer {
    background: var(--forest-dark);
    color: rgba(255, 255, 255, 0.8);
}

.footer-title {
    color: #fff;
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.footer p {
    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: #fff;
    font-size: 1.2rem;
    transition: var(--transition-fast);
}

.social-links a:hover {
    background: var(--accent-green);
    transform: translateY(-3px);
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: var(--light-green);
    padding-left: 5px;
}

.footer-contact {
    list-style: none;
    padding: 0;
}

.footer-contact li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.footer-contact i {
    color: var(--accent-green);
    font-size: 1.1rem;
}

.footer-divider {
    border-color: rgba(255, 255, 255, 0.1);
    margin: 2rem 0;
}

.footer-link {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition-fast);
}

.footer-link:hover {
    color: var(--light-green);
}

/* MCSoftSIS Branding */
.mcsoftsis-branding {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

.mcsoftsis-link {
    color: var(--light-green);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition-fast);
}

.mcsoftsis-link:hover {
    color: #fff;
    text-decoration: underline;
}

/* ===================================
   Buttons
   =================================== */
.btn-primary {
    background: var(--gradient-primary);
    border: none;
    color: #fff;
    font-weight: 600;
    transition: var(--transition-smooth);
}

.btn-primary:hover {
    background: var(--secondary-green);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(45, 80, 22, 0.3);
}

.btn-outline-primary {
    border: 2px solid var(--primary-green);
    color: var(--primary-green);
    font-weight: 600;
    transition: var(--transition-smooth);
}

.btn-outline-primary:hover {
    background: var(--primary-green);
    color: #fff;
    transform: translateY(-2px);
}

/* ===================================
   Responsive Design
   =================================== */
@media (max-width: 991px) {
    .hero-title {
        font-size: 3rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .navbar-collapse {
        background: rgba(45, 80, 22, 0.98);
        padding: 1rem;
        border-radius: 10px;
        margin-top: 1rem;
    }
}

@media (max-width: 767px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-buttons .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

    .feature-card {
        margin-bottom: 1.5rem;
    }

    .why-item {
        flex-direction: column;
        text-align: center;
    }

    .why-icon {
        margin: 0 auto;
    }
}

/* ===================================
   Page Header
   =================================== */
.page-header {
    padding: 150px 0 80px;
    background: var(--gradient-primary);
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Animated Background Elements */
.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 50%, rgba(74, 124, 44, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(45, 80, 22, 0.3) 0%, transparent 50%);
    animation: bgPulse 8s ease-in-out infinite;
    z-index: 1;
}

@keyframes bgPulse {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.1); }
}

/* Floating Leaves */
.page-header .leaf {
    position: absolute;
    width: 20px;
    height: 20px;
    background: rgba(139, 195, 74, 0.6);
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
    animation: leafFloat 15s linear infinite;
    z-index: 2;
}

.page-header .leaf:nth-child(1) {
    left: 10%;
    top: -20px;
    animation-delay: 0s;
    animation-duration: 12s;
}

.page-header .leaf:nth-child(2) {
    left: 30%;
    top: -20px;
    animation-delay: 3s;
    animation-duration: 15s;
}

.page-header .leaf:nth-child(3) {
    left: 50%;
    top: -20px;
    animation-delay: 6s;
    animation-duration: 13s;
}

.page-header .leaf:nth-child(4) {
    left: 70%;
    top: -20px;
    animation-delay: 9s;
    animation-duration: 14s;
}

.page-header .leaf:nth-child(5) {
    left: 90%;
    top: -20px;
    animation-delay: 12s;
    animation-duration: 16s;
}

@keyframes leafFloat {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.8;
    }
    90% {
        opacity: 0.8;
    }
    100% {
        transform: translateY(calc(100vh + 100px)) rotate(360deg);
        opacity: 0;
    }
}

/* Flying Birds */
.page-header .bird {
    position: absolute;
    width: 30px;
    height: 20px;
    z-index: 2;
    animation: birdFly 20s linear infinite;
}

.page-header .bird::before,
.page-header .bird::after {
    content: '';
    position: absolute;
    width: 15px;
    height: 8px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 50% 50% 0 0;
    animation: wingFlap 0.5s ease-in-out infinite;
}

.page-header .bird::before {
    left: 0;
    transform-origin: right center;
}

.page-header .bird::after {
    right: 0;
    transform-origin: left center;
    animation-delay: 0.25s;
}

@keyframes birdFly {
    0% {
        left: -50px;
        top: 20%;
    }
    100% {
        left: calc(100% + 50px);
        top: 30%;
    }
}

@keyframes wingFlap {
    0%, 100% {
        transform: rotateX(0deg);
    }
    50% {
        transform: rotateX(-30deg);
    }
}

.page-header .bird:nth-child(6) {
    animation-delay: 0s;
    animation-duration: 18s;
}

.page-header .bird:nth-child(7) {
    animation-delay: 8s;
    animation-duration: 22s;
    top: 15% !important;
}

/* Clouds */
.page-header .cloud {
    position: absolute;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 100px;
    z-index: 1;
    animation: cloudFloat 30s linear infinite;
}

.page-header .cloud::before,
.page-header .cloud::after {
    content: '';
    position: absolute;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 100px;
}

.page-header .cloud:nth-child(8) {
    width: 100px;
    height: 40px;
    top: 20%;
    left: -120px;
    animation-duration: 35s;
}

.page-header .cloud:nth-child(8)::before {
    width: 50px;
    height: 50px;
    top: -25px;
    left: 10px;
}

.page-header .cloud:nth-child(8)::after {
    width: 60px;
    height: 40px;
    top: -15px;
    right: 10px;
}

.page-header .cloud:nth-child(9) {
    width: 120px;
    height: 50px;
    top: 40%;
    left: -150px;
    animation-duration: 40s;
    animation-delay: 15s;
}

.page-header .cloud:nth-child(9)::before {
    width: 60px;
    height: 60px;
    top: -30px;
    left: 15px;
}

.page-header .cloud:nth-child(9)::after {
    width: 70px;
    height: 50px;
    top: -20px;
    right: 15px;
}

@keyframes cloudFloat {
    0% {
        left: -150px;
    }
    100% {
        left: calc(100% + 150px);
    }
}

/* Butterflies */
.page-header .butterfly {
    position: absolute;
    width: 20px;
    height: 20px;
    z-index: 3;
    animation: butterflyFly 12s ease-in-out infinite;
}

.page-header .butterfly::before,
.page-header .butterfly::after {
    content: '';
    position: absolute;
    width: 10px;
    height: 15px;
    background: linear-gradient(45deg, rgba(255, 193, 7, 0.8), rgba(255, 152, 0, 0.8));
    border-radius: 50% 50% 50% 0;
    animation: butterflyWing 0.3s ease-in-out infinite;
}

.page-header .butterfly::before {
    left: 0;
    transform-origin: right center;
}

.page-header .butterfly::after {
    right: 0;
    transform-origin: left center;
    transform: scaleX(-1);
    animation-delay: 0.15s;
}

.page-header .butterfly:nth-child(10) {
    left: 20%;
    top: 30%;
    animation-delay: 0s;
}

.page-header .butterfly:nth-child(11) {
    left: 70%;
    top: 50%;
    animation-delay: 4s;
}

@keyframes butterflyFly {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        transform: translate(30px, -20px) rotate(10deg);
    }
    50% {
        transform: translate(60px, 0) rotate(-10deg);
    }
    75% {
        transform: translate(30px, 20px) rotate(10deg);
    }
}

@keyframes butterflyWing {
    0%, 100% {
        transform: rotateY(0deg);
    }
    50% {
        transform: rotateY(-60deg);
    }
}

/* Fireflies/Sparkles */
.page-header .sparkle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255, 215, 0, 0.9);
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.8);
    animation: sparkleGlow 3s ease-in-out infinite;
    z-index: 3;
}

.page-header .sparkle:nth-child(12) {
    left: 15%;
    top: 25%;
    animation-delay: 0s;
}

.page-header .sparkle:nth-child(13) {
    left: 45%;
    top: 35%;
    animation-delay: 1s;
}

.page-header .sparkle:nth-child(14) {
    left: 75%;
    top: 45%;
    animation-delay: 2s;
}

.page-header .sparkle:nth-child(15) {
    left: 85%;
    top: 28%;
    animation-delay: 1.5s;
}

@keyframes sparkleGlow {
    0%, 100% {
        opacity: 0;
        transform: scale(0.5);
    }
    50% {
        opacity: 1;
        transform: scale(1.5);
    }
}

/* Content Layer */
.page-header .container {
    position: relative;
    z-index: 10;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    animation: titleFadeIn 1s ease-out;
}

@keyframes titleFadeIn {
    0% {
        opacity: 0;
        transform: translateY(-20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.breadcrumb {
    background: transparent;
    justify-content: center;
    margin: 0;
}

.breadcrumb-item a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-item a:hover {
    color: rgba(255, 255, 255, 1);
}

.breadcrumb-item.active {
    color: #fff;
}

.breadcrumb-item+.breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.6);
}

/* ===================================
   About Page
   =================================== */
.about-content {
    background: var(--cream);
}

.about-content h2 {
    color: var(--primary-green);
    font-size: 2.5rem;
}

.about-content .lead {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 1.5rem;
}

.mission-vision {
    background: #fff;
}

.mission-card {
    background: var(--cream);
    padding: 3rem;
    border-radius: 20px;
    height: 100%;
    transition: var(--transition-smooth);
}

.mission-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.mission-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 1.5rem;
}

.mission-card h3 {
    color: var(--primary-green);
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.mission-card p {
    color: #666;
    line-height: 1.8;
}

/* ===================================
   Values Section
   =================================== */
.values-section {
    background: var(--cream);
}

.value-card {
    text-align: center;
    padding: 2rem;
    background: #fff;
    border-radius: 15px;
    transition: var(--transition-smooth);
    height: 100%;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(45, 80, 22, 0.15);
}

.value-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-sunset);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #fff;
    margin: 0 auto 1.5rem;
}

.value-card h4 {
    color: var(--primary-green);
    margin-bottom: 1rem;
}

.value-card p {
    color: #666;
    margin: 0;
}

/* ===================================
   Team Section
   =================================== */
.team-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    transition: var(--transition-smooth);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(45, 80, 22, 0.2);
}

.team-image {
    position: relative;
    overflow: hidden;
    height: 300px;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.team-card:hover .team-image img {
    transform: scale(1.1);
}

.team-info {
    padding: 1.5rem;
    text-align: center;
}

.team-info h4 {
    color: var(--primary-green);
    margin-bottom: 0.5rem;
}

.team-info p {
    color: #999;
    margin-bottom: 1rem;
}

.team-social {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.team-social a {
    width: 35px;
    height: 35px;
    background: var(--cream);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-green);
    transition: var(--transition-fast);
}

.team-social a:hover {
    background: var(--primary-green);
    color: #fff;
}

/* ===================================
   Statistics Section
   =================================== */
.stats-section {
    background: var(--gradient-primary);
    color: #fff;
}

.stat-card {
    padding: 2rem;
}

.stat-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--light-green);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-card p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin: 0;
}

/* ===================================
   Gallery Page
   =================================== */
.gallery-section {
    padding: var(--section-padding);
    background: var(--cream);
}

.gallery-filters {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.6rem 1.5rem;
    border: 2px solid var(--primary-green);
    background: transparent;
    color: var(--primary-green);
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-fast);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary-green);
    color: #fff;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    cursor: pointer;
    height: 300px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(45, 80, 22, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-smooth);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    font-size: 3rem;
    color: #fff;
}

/* Gallery Modal */
.gallery-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    padding: 2rem;
}

.gallery-modal-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
}

.gallery-modal-content img {
    max-width: 100%;
    max-height: 90vh;
    border-radius: 10px;
}

.gallery-modal-close {
    position: absolute;
    top: -40px;
    right: 0;
    font-size: 3rem;
    color: #fff;
    cursor: pointer;
    transition: var(--transition-fast);
}

.gallery-modal-close:hover {
    color: var(--light-green);
}

/* ===================================
   Safari Packages Page
   =================================== */
.safari-list-section {
    padding: var(--section-padding);
    background: var(--cream);
}

.safari-filter-sidebar {
    background: #fff;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.filter-group {
    margin-bottom: 2rem;
}

.filter-group h4 {
    color: var(--primary-green);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.filter-option {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.8rem;
}

.filter-option input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.filter-option label {
    cursor: pointer;
    margin: 0;
}

/* ===================================
   Safari Detail Page
   =================================== */
.safari-detail-section {
    padding: var(--section-padding);
    background: var(--cream);
}

.safari-detail-header {
    background: #fff;
    padding: 3rem;
    border-radius: 20px;
    margin-bottom: 2rem;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
}

/* Safari Featured Image with 3:2 aspect ratio */
.safari-detail-section .mb-4 img {
    width: 100%;
    aspect-ratio: 3 / 2;
    object-fit: cover;
}

.safari-detail-header h1 {
    color: var(--primary-green);
    margin-bottom: 1.5rem;
}

.safari-meta-info {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #666;
}

.meta-item i {
    color: var(--accent-green);
    font-size: 1.2rem;
}

.safari-price {
    font-size: 2.5rem;
    color: var(--primary-green);
    font-weight: 700;
}

.safari-price small {
    font-size: 1rem;
    color: #999;
    font-weight: 400;
}

.safari-detail-content {
    background: #fff;
    padding: 3rem;
    border-radius: 20px;
    margin-bottom: 2rem;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
}

.safari-detail-content h3 {
    color: var(--primary-green);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.safari-detail-content ul {
    list-style: none;
    padding: 0;
}

.safari-detail-content ul li {
    padding: 0.5rem 0;
    padding-left: 2rem;
    position: relative;
}

.safari-detail-content ul li::before {
    content: '\F26A';
    font-family: 'bootstrap-icons';
    position: absolute;
    left: 0;
    color: var(--accent-green);
}

.safari-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.safari-gallery img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.safari-gallery img:hover {
    transform: scale(1.05);
}

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 15px;
    margin: 2rem 0;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.booking-sidebar {
    background: #fff;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 100px;
}

.booking-sidebar h4 {
    color: var(--primary-green);
    margin-bottom: 1.5rem;
}

/* ===================================
   Booking Page
   =================================== */
.booking-section {
    padding: var(--section-padding);
    background: var(--cream);
}

.booking-form-container {
    background: #fff;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
}

.form-label {
    font-weight: 600;
    color: var(--primary-green);
    margin-bottom: 0.5rem;
}

.form-control,
.form-select {
    padding: 0.8rem 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    transition: var(--transition-fast);
}

.form-control:focus,
.form-select:focus {
    border-color: var(--accent-green);
    box-shadow: 0 0 0 0.2rem rgba(107, 157, 58, 0.25);
}

.booking-summary {
    background: var(--cream);
    padding: 2rem;
    border-radius: 15px;
    margin-top: 2rem;
}

.booking-summary h5 {
    color: var(--primary-green);
    margin-bottom: 1.5rem;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    padding: 0.8rem 0;
    border-bottom: 1px solid #e0e0e0;
}

.summary-total {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-green);
    margin-top: 1rem;
}

/* ===================================
   Contact Page
   =================================== */
.contact-section {
    padding: var(--section-padding);
    background: var(--cream);
}

.contact-info-card {
    background: #fff;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    margin-bottom: 2rem;
    text-align: center;
    transition: var(--transition-smooth);
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(45, 80, 22, 0.15);
}

.contact-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #fff;
    margin: 0 auto 1.5rem;
}

.contact-info-card h4 {
    color: var(--primary-green);
    margin-bottom: 1rem;
}

.contact-info-card p {
    color: #666;
    margin: 0;
}

.contact-form-container {
    background: #fff;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
}

/* Contact Page Social Links - Green on Hover Only */
.contact-form-container .social-links a {
    width: 40px;
    height: 40px;
    background: transparent;
    border: 2px solid #ddd;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.contact-form-container .social-links a:hover {
    background: var(--primary-green);
    border-color: var(--primary-green);
    color: #fff;
    transform: translateY(-3px);
}

.map-container {
    height: 400px;
    border-radius: 15px;
    overflow: hidden;
    margin-top: 3rem;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}
