/* Global Styles */
:root {
    --primary-color: #596F27; /* Camping green often used in logos */
    --text-light: #ffffff;
    --text-muted: #e0e0e0;
    --dark-bg: #1a1a1a;
    --white: #ffffff;
}

body {
    font-family: 'Outfit', sans-serif;
    color: #333;
    line-height: 1.6;
}

/* Navbar Styles */
.navbar {
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.navbar-nav .nav-link {
    font-weight: 700;
    color: #000 !important;
    font-size: 1.1rem;
    padding: 0.5rem 1rem !important;
    transition: all 0.3s ease;
}

.navbar-nav .nav-link.active,
.navbar-nav .nav-link:hover {
    color: var(--primary-color) !important;
}

/* Carousel Styles */
.carousel-item {
    height: 400px;
}

.carousel-item img {
    object-fit: cover;
    height: 100%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
    background-color: rgba(0,0,0,0.5);
    background-size: 50% 50%;
    border-radius: 50%;
}

/* Footer Styles */
.main-footer {
    position: relative;
    background: url('../img/bgimg_footer.jpg') no-repeat center center;
    background-size: cover;
    color: var(--text-light);
    overflow: hidden;
    min-height: 400px;
}

.footer-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75); /* Dark overlay for readability */
    z-index: 1;
}

.main-footer .container {
    position: relative;
    z-index: 2;
}

.footer-logo {
    max-width: 220px;
    height: auto;
}

.footer-desc {
    font-size: 0.95rem;
    color: var(--text-muted);
    max-width: 350px;
}

.footer-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background-color: var(--primary-color);
}

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

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

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

.social-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-icon:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px);
}

.map-container {
    border-radius: 12px;
    overflow: hidden;
    border: 3px solid rgba(255, 255, 255, 0.1);
}

/* Copyright Bar */
.copyright-bar {
    background: var(--white);
    color: #1a1a1a;
    position: relative;
    z-index: 2;
    font-size: 0.9rem;
    font-weight: 500;
}

.copyright-bar strong {
    color: #000;
}

/* About Section */
.about-section {
    background-color: #fff;
}

.about-illustration {
    max-width: 100%;
    height: auto;
}

.birds-img {
    max-width:700px; /* Increased size */
    margin-bottom: 20px;
    margin-left: -200px; /* Shifted further left */
    position: relative;
    z-index: 5;
}

.about-text {
    font-size: 0.95rem;
    color: #444;
    line-height: 1.8;
    margin-top: -10px;
}

.btn-outline-primary {
    border-color: #92925a; /* Gold/Olive brown from screenshot */
    color: #92925a;
    font-weight: 600;
    padding: 12px 35px;
    font-size: 0.8rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border-radius: 0;
}

.btn-outline-primary:hover {
    background-color: #92925a;
    border-color: #92925a;
    color: #fff;
}

/* Blob Image Cards */
.blob-card {
    position: relative;
    overflow: hidden;
    height: 300px;
    margin-bottom: 30px;
    transition: transform 0.3s ease;
    cursor: pointer;
}

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

.blob-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Hand-drawn rectangular effect with wavy edges on all 4 sides */
    border-radius: 20px 60px 30px 70px / 60px 30px 70px 20px;
}

.col-md-3:nth-child(1) .blob-img {
    border-radius: 25px 85px 35px 95px / 85px 35px 95px 35px;
}

.col-md-3:nth-child(2) .blob-img {
    border-radius: 95px 35px 85px 25px / 35px 95px 25px 85px;
}

.col-md-3:nth-child(3) .blob-img {
    border-radius: 35px 95px 25px 85px / 95px 35px 85px 35px;
}

.col-md-3:nth-child(4) .blob-img {
    border-radius: 85px 35px 95px 25px / 35px 85px 25px 95px;
}

.card-handwritten-text {
    position: absolute;
    top: 30px;
    left: 25px;
    right: 25px;
    font-family: 'Caveat', cursive;
    font-size: 1.9rem;
    font-weight: 700;
    color: #fff;
    text-shadow: 2px 2px 5px rgba(0,0,0,0.6);
    line-height: 1.1;
    z-index: 2;
}

.book-now-badge {
    position: absolute;
    bottom: 25px;
    left: 20px;
    background: #fff;
    padding: 4px 12px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    z-index: 2;
}

.badge-logo {
    height: 20px;
}

.badge-text {
    font-weight: 800;
    color: #000;
    font-size: 0.8rem;
    white-space: nowrap;
}

/* Nature Section */
.nature-section {
    position: relative;
    background: url('../img/bgimg.jpg') no-repeat center center;
    background-size: cover;
    background-attachment: fixed;
    height: 480px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.nature-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.nature-content {
    position: relative;
    z-index: 2;
}

.nature-title {
    color: #fff;
    font-size: 4.5rem;
    font-weight: 400;
    font-family: 'Outfit', sans-serif;
}

.italic-font {
    font-style: italic;
}

.contact-btn {
    border-radius: 0;
    border-width: 2px;
    font-weight: 600;
    letter-spacing: 2px;
    transition: all 0.3s ease;
}

.contact-btn:hover {
    background-color: #fff;
    color: #000;
}

.wave-divider {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    z-index: 3;
}

.wave-divider svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 150px;
}

/* Shrinking for mobile */
@media (max-width: 768px) {
    .wave-divider svg {
        height: 60px;
    }
    .nature-title {
        font-size: 2.5rem;
    }
}



/* Experience Section */
.experience-section {
    background-color: #fff;
    position: relative;
    z-index: 4;
}

.experience-card {
    position: relative;
    border: 8px solid #d4a017; /* Thicker Gold border */
    padding: 5px; /* Creates the 'inner line' effect */
    background: #fff;
    border-radius: 40px; /* Rounded square shape as per reference */
    overflow: hidden;
    aspect-ratio: 1/1;
    transition: all 0.5s ease;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

.experience-card::after {
    content: '';
    position: absolute;
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: inherit;
    pointer-events: none;
    z-index: 5;
}

/* .experience-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(212, 160, 23, 0.3);
} */

.exp-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

/* .experience-card:hover .exp-img {
    transform: scale(1.1);
} */

.card-glow {
    position: absolute;
    top: -20%;
    left: 20%;
    width: 60%;
    height: 40%;
    background: radial-gradient(circle, rgba(173, 216, 230, 0.6) 0%, rgba(255, 255, 255, 0) 70%);
    z-index: 2;
    pointer-events: none;
    filter: blur(20px);
}

.exp-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 100%);
    text-align: center;
    z-index: 3;
}

.exp-title {
    color: #fff;
    font-size: 1.5rem;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

/* Responsive Adjustments */
@media (max-width: 767px) {
    .experience-card {
        max-width: 350px;
        margin: 0 auto;
    }
    .exp-title {
        font-size: 1.2rem;
    }
}


/* Social & Booking Section */
.social-form-section {
    background-color: #f8f9fa;
}

.fb-card {
    max-width: 350px;
    border-radius: 4px;
}

.google-review-card {
    max-width: 350px;
    background: transparent;
    border: 1px dashed #ccc;
    border-radius: 4px;
}

.booking-form-card {
    border-top: 5px solid #d4a017 !important; /* Gold top border */
}

.booking-form-card .form-control {
    padding: 12px 15px;
    border-radius: 8px;
    border: 1px solid #eee;
    background-color: #fdfdfd;
}

.booking-form-card .form-control:focus {
    box-shadow: none;
    border-color: #d4a017;
    background-color: #fff;
}

.packages-diff-section h2 {
    font-family: 'Outfit', sans-serif;
    letter-spacing: -1px;
}

.title-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.title-divider .line {
    width: 60px;
    height: 2px;
    background: #596F27;
    border-radius: 2px;
}

.title-divider .dot {
    width: 4px;
    height: 4px;
    background: #596F27;
    border-radius: 50%;
}

.package-card {
    background: #fff;
    border: 1px solid #596F27;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.package-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(124, 142, 79, 0.15);
}

.package-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: #1a1a1a;
}

.price-box {
    background-color: #556b2f; /* Darker olive green */
    color: #fff;
    padding: 25px 20px;
    border-radius: 15px;
    width: 100%;
    max-width: 380px;
    margin: 0 auto;
}

.price-box .currency {
    font-size: 1.4rem;
    font-weight: 600;
    margin-right: 5px;
    margin-top: 5px;
}

.price-box .amount {
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1;
}

.price-box .suffix {
    font-size: 1.8rem;
    margin-left: 5px;
}

.feature-list li {
    font-size: 0.95rem;
    color: #444;
    padding: 10px 15px;
    line-height: 1.5;
    font-weight: 500;
}

.card-footer-action {
    display: flex;
    justify-content: center;
    padding-bottom: 10px;
}

.package-dot-btn {
    width: 45px;
    height: 22px;
    background-color: #6c757d;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.package-card:hover .package-dot-btn {
    background-color: #556b2f;
    transform: scale(1.1);
}

@media (max-width: 991px) {
    .fb-card, .google-review-card {
        margin: 0 auto;
    }
}

/* Stats Section */
.stats-section {
    position: relative;
    z-index: 5;
}

.stat-card {
    border-radius: 12px;
    transition: transform 0.3s ease;
}

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

.green-text { color: #2ecc71; }
.yellow-text { color: #f1c40f; }
.blue-text { color: #3498db; }

.letter-spacing-1 {
    letter-spacing: 1px;
}

/* Contact Info Section */
.contact-info-section {
    border-top: 1px solid #f0f0f0;
}

.contact-icon-wrapper i {
    font-size: 2.2rem;
    color: #596F27;
    transition: transform 0.3s ease;
}

.contact-box:hover .contact-icon-wrapper i {
    transform: scale(1.1);
}

.bird-tracks {
    width: 100%;
    height: 18px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' preserveAspectRatio='xMidYMid meet' overflow='visible' height='100%25' viewBox='0 0 121 26' fill='%23596F27'%3E%3Cpath d='M29.6,10.3l2.1,2.1l-3.6,3.3h7v2.9h-7l3.6,3.3l-2.1,2.2l-5.2-5.5h-5.8v-2.9h5.8L29.6,10.3z M70.9,9.6l2.1,1.7l-3.6,3.5h7v2.9h-7l3.6,3.3l-2.1,2.2l-5.2-5.5h-5.8v-2.9h5.8L70.9,9.6z M111.5,9.6l2.1,1.7l-3.6,3.5h7v2.9h-7l3.6,3.3l-2.1,2.2l-5.2-5.5h-5.8v-2.9h5.8L111.5,9.6z M50.2,2.7l2.1,1.7l-3.6,3.5h7v2.9h-7l3.6,3.3l-2.1,2.2l-5.2-5.5h-5.8v-2.9h5.8L50.2,2.7z M11,2l2.1,1.7L9.6,7.2h7V10h-7l3.6,3.3L11,15.5L5.8,10H0V7.2h5.8L11,2z M91.5,2l2.1,2.2l-3.6,3.3h7v2.9h-7l3.6,3.5l-2.1,1.7l-5.2-5.8v-7.5h5.8L91.5,2z'/%3E%3C/svg%3E");
    background-repeat: repeat-x;
    background-position: center;
    background-size: auto 100%;
    margin: 15px auto;
    max-width: 150px;
    opacity: 0.8;
}

.contact-box p {
    font-size: 0.95rem;
    color: #666;
}

.contact-box .h5 {
    font-weight: 700;
    margin-top: 5px;
}

/* Payment Section */
.payment-wrapper {
    min-height: 450px;
}

.payment-floating-card {
    position: absolute;
    top: 50%;
    left: 40%;
    transform: translate(-50%, -50%);
    background: #fff;
    min-width: 420px;
    border-radius: 4px;
    z-index: 10;
}

.payment-floating-card .title-divider .line {
    background: #596F27;
}

@media (max-width: 991px) {
    .payment-floating-card {
        position: relative;
        top: 0;
        left: 0;
        transform: none;
        min-width: 100%;
        padding: 30px !important;
        box-shadow: none !important;
        border-bottom: 1px solid #eee;
    }
}

/* About Page Styles */
.page-hero {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

@media (max-width: 991px) {
    .page-hero {
        height: 350px;
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);
}

.wave-divider-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.wave-divider-bottom svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 100px;
}

.about-logo-large {
    max-width: 400px;
    margin-top: -150px;
    position: relative;
    z-index: 10;
}

/* Animations */
.animate-fade-in {
    opacity: 0;
    animation: fadeIn 2s ease-out forwards;
}

.animate-slide-right {
    opacity: 0;
    transform: translateX(100px);
    animation: slideRight 1.5s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

.animate-slide-up {
    opacity: 0;
    transform: translateY(50px);
    animation: slideUp 1.2s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideRight {
    from {
        opacity: 0;
        transform: translateX(100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

/* FAQ Section */
.custom-faq-accordion .accordion-item {
    border: 1px solid #596F27;
    border-radius: 4px !important;
    overflow: hidden;
}

.custom-faq-accordion .accordion-button {
    font-weight: 600;
    color: #596F27;
    background-color: transparent;
    padding: 20px 25px;
    box-shadow: none !important;
}

.custom-faq-accordion .accordion-button:not(.collapsed) {
    color: #e67e22; /* Orange for active title as seen in screenshot */
    background-color: transparent;
    border-bottom: 1px solid #eee;
}

.custom-faq-accordion .accordion-button::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23596F27'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
}

.custom-faq-accordion .accordion-body {
    padding: 25px;
    font-size: 1.05rem;
    color: #444;
    line-height: 1.6;
}

/* Gallery Page Styles */
.gallery-card {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 350px;
    background: #f8f9fa;
}

.gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gallery-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

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

.gallery-thumb-card {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    transition: all 0.3s ease;
    height: 200px;
}

.gallery-thumb-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.gallery-thumb-card:hover {
    filter: brightness(1.1);
}

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

/* Contact Page Styles */
.contact-info-card {
    padding: 30px 20px;
    transition: all 0.3s ease;
}

.contact-icon-wrapper {
    width: 60px;
    height: 60px;
    background-color: #f8f9fa;
    color: #596F27;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin: 0 auto;
    transition: all 0.3s ease;
}

.contact-info-card:hover .contact-icon-wrapper {
    background-color: #596F27;
    color: #fff;
    transform: scale(1.1);
}

.bird-tracks {
    width: 200px;
    height: 30px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 121 26' fill='%23596F27'%3E%3Cpath d='M29.6,10.3l2.1,2.2l-3.6,3.3h7v2.9h-7l3.6,3.3l-2.1,2.2l-5.2-5.2h-5.8v-2.9h5.8L29.6,10.3z M70.9,9.6l2.1,1.7l-3.6,3.5h7v2.9h-7l3.6,3.3l-2.1,2.2l-5.2-5.5h-5.8v-2.9h5.8L70.9,9.6z M50.2,2.7l2.1,1.7l-3.6,3.5h7v2.9h-7l3.6,3.3l-2.1,2.2l-5.2-5.5h-5.8v-2.9h5.8L50.2,2.7z M111.5,9.6l2.1,1.7l-3.6,3.5h7v2.9h-7l3.6,3.3l-2.1,2.2l-5.2-5.5h-5.8v-2.9h5.8L111.5,9.6z M91.5,2.7l2.1,1.7l-3.6,3.5h7v2.9h-7l3.6,3.3l-2.1,2.2l-5.2-5.5h-5.8v-2.9h5.8L91.5,2.7z M11,9.6l2.1,1.7l-3.6,3.5h7v2.9h-7l3.6,3.3l-2.1,2.2l-5.2-5.5h-5.8v-2.9h5.8L11,9.6z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    margin: 10px auto;
}

.map-container {
    border: 1px solid #eee;
    background: #fff;
    padding: 10px;
}

.map-box {
    background: #ffffff;
    padding: 10px;
}

/* Carousel Caption Styles */
.caption-glass-box {
    background: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 35px 70px;
    border-radius: 40px;
    display: inline-block;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.carousel-main-caption {
    top: 50% !important;
    bottom: auto !important;
    transform: translateY(-50%) !important;
}

@media (max-width: 768px) {
    .caption-glass-box {
        padding: 20px 40px;
        border-radius: 20px;
    }
    .caption-glass-box h1 {
        font-size: 2rem !important;
    }
}









