:root {
    --bg-color: #F5F7F2;
    /* soft sage white */
    --bg-alt: #EEF2E8;
    /* slightly deeper sage for sections */
    --bg-card: #FFFFFF;
    /* pure white cards */
    --main-color: #c4b530;
    /* logo gold */
    --accent-red: #C0392B;
    /* logo red */
    --accent-green: #2D5016;
    /* logo forest green */
    --text-dark: #1C2B10;
    /* near-black green for headings */
    --text-body: #3D4F30;
    /* body text — muted forest */
    --para-color: #3D4F30;
    --color-gray: #8A9E7A;
    --color-overlay: rgba(45, 80, 22, 0.06);
    --border-light: rgba(45, 80, 22, 0.12);
    --shadow-sm: 0 2px 12px rgba(45, 80, 22, 0.08);
    --shadow-md: 0 8px 32px rgba(45, 80, 22, 0.12);
    --shadow-lg: 0 20px 60px rgba(45, 80, 22, 0.15);
}

/* Pre-loader Styles */
.pre-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pre-loader::after {
    content: '';
    width: 50px;
    height: 50px;
    border: 5px solid rgba(184, 150, 12, 0.2);
    border-top-color: var(--main-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

* {
    font-family: 'Oxygen', sans-serif;
}

html,
body {
    font-family: 'Oxygen', sans-serif;
}

body.fonticons-loading :after,
body.fonticons-loading :before {
    color: transparent !important;
}

body {
    background-color: var(--bg-color);
    color: var(--text-body);
    overflow-x: hidden;
}

a {
    text-decoration: none;
}

/* Background Color Classes */
.bg-bgblack {
    background-color: var(--bg-color) !important;
}

.bg-maincolor {
    background-color: var(--main-color) !important;
}

.bg-paracolor {
    background-color: var(--para-color) !important;
}

/* Text Color Classes */
.text-bgblack {
    color: var(--bg-color) !important;
}

.text-maincolor {
    color: var(--main-color) !important;
}

.text-paracolor {
    color: var(--para-color) !important;
}


/* ══════════════════════════════════════
   HEADER & NAVBAR — Light Theme
══════════════════════════════════════ */

header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.custom-header {
    background: #ffffff;
    border-bottom: 1px solid var(--border-light);
    padding: 0 2rem;
    min-height: 72px;
    box-shadow: var(--shadow-sm);
    transition: box-shadow 0.3s ease, background 0.3s ease;
}

.custom-header.scrolled {
    box-shadow: var(--shadow-md);
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(12px);
}

/* Logo */
.logo-brand {
    padding: 10px 0;
    display: inline-flex;
    align-items: center;
}

.logo-brand img {
    height: 52px;
    width: auto;
    transition: transform 0.3s ease;
}

.logo-brand:hover img {
    transform: scale(1.04);
}

/* Nav links */
.custom-header .navbar-nav .nav-link {
    color: var(--text-dark) !important;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 0.5rem 0.85rem !important;
    border-radius: 6px;
    position: relative;
    transition: color 0.2s ease, background 0.2s ease;
}

.custom-header .navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 55%;
    height: 2px;
    background: var(--accent-red);
    border-radius: 2px;
    transition: transform 0.22s ease;
}

.custom-header .navbar-nav .nav-link:hover,
.custom-header .navbar-nav .nav-item.active .nav-link {
    color: var(--accent-green) !important;
    background: var(--color-overlay);
}

.custom-header .navbar-nav .nav-link:hover::after,
.custom-header .navbar-nav .nav-item.active .nav-link::after {
    transform: translateX(-50%) scaleX(1);
}

/* Hide default caret */
.custom-header .dropdown-toggle::after {
    display: none;
}

.nav-arrow {
    font-size: 1rem;
    vertical-align: -2px;
    transition: transform 0.2s ease;
}

.custom-header .dropdown:hover .nav-arrow,
.custom-header .dropdown.show .nav-arrow {
    transform: rotate(180deg);
}

/* Dropdown */
.custom-header .dropdown-menu {
    background: #ffffff;
    border: 1px solid var(--border-light);
    border-top: 3px solid var(--accent-green);
    border-radius: 0 0 12px 12px;
    padding: 0.4rem 0;
    box-shadow: var(--shadow-lg);
    min-width: 220px;
}

.custom-header .dropdown-item {
    color: var(--text-body);
    font-size: 0.84rem;
    font-weight: 500;
    padding: 0.6rem 1.2rem;
    display: flex;
    align-items: center;
    transition: all 0.18s ease;
}

.custom-header .dropdown-item i {
    color: var(--accent-green);
    opacity: 0.7;
    font-size: 0.88rem;
    transition: opacity 0.18s ease;
}

.custom-header .dropdown-item:hover {
    background: var(--bg-alt);
    color: var(--accent-green);
    padding-left: 1.5rem;
}

.custom-header .dropdown-item:hover i {
    opacity: 1;
}

/* CTA button */
.btn-nav-cta {
    background: var(--accent-green);
    color: #fff !important;
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    padding: 0.52rem 1.3rem !important;
    border-radius: 50px;
    border: 2px solid var(--accent-green);
    transition: all 0.22s ease;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    box-shadow: 0 4px 14px rgba(45, 80, 22, 0.25);
}

.btn-nav-cta:hover {
    background: transparent;
    color: var(--accent-green) !important;
    box-shadow: 0 4px 20px rgba(45, 80, 22, 0.2);
}

/* Mobile toggler */
.custom-toggler {
    border: 1px solid var(--border-light) !important;
    border-radius: 8px !important;
    padding: 6px 10px !important;
    background: var(--bg-alt) !important;
    box-shadow: none !important;
    outline: none !important;
}

.custom-toggler i {
    font-size: 1.5rem;
    color: var(--accent-green);
    display: block;
}

.custom-toggler:focus {
    box-shadow: none !important;
}

/* Scroll shrink */
.custom-header.scrolled .logo-brand img {
    height: 44px;
}

/* Destination Detail Page Styles */
.destination-detail-section {
    margin-top: 2rem;
}

.content-block {
    margin-bottom: 3rem;
}

.content-image {
    margin-bottom: 1.5rem;
}

.content-image img {
    height: 300px;
    object-fit: cover;
}

.reach-item {
    padding: 1.5rem;
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 20px;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.reach-item:hover {
    transform: translateY(-5px);
    border-color: var(--accent-green);
    box-shadow: var(--shadow-md);
}

.reach-item h4 {
    font-size: 1.2rem;
    font-weight: 600;
}

.booking-form-sidebar {
    position: sticky;
    top: 100px;
}

.booking-form-sidebar .booking-form {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: var(--shadow-md);
}

.booking-form-sidebar .form-input-custom {
    background: var(--bg-alt);
    border: 1px solid var(--border-light);
    border-radius: 20px;
    padding: 0.7rem 2rem;
    color: var(--text-dark);
    font-size: 18px;
}

.booking-form-sidebar .form-input-custom::placeholder {
    color: var(--color-gray);
}

.booking-form-sidebar .form-input-custom:focus {
    background: #fff;
    border-color: var(--accent-green);
    color: var(--text-dark);
    box-shadow: 0 0 0 3px rgba(45, 80, 22, 0.1);
}

.booking-form-sidebar textarea.form-input-custom {
    border-radius: 20px;
    resize: none;
}

.package-price {
    font-size: 1.3rem;
}

/* Cab Cards Styles */
.cab-card {
    transition: transform 0.3s ease;
}

.cab-card:hover {
    transform: translateY(-5px);
}

.cab-image {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}

.cab-image img {
    transition: transform 0.5s ease;
}

.cab-card:hover .cab-image img {
    transform: scale(1.05);
}

.cab-type {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.cab-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.cab-rate {
    font-size: 1.2rem;
}

/* Blog Detail Page Styles */
.blog-detail-section {
    margin-top: 2rem;
}

.blog-article {
    background: var(--color-overlay);
    backdrop-filter: blur(100px);
    border: 2px solid rgba(244, 244, 244, 0.19);
    border-radius: 40px;
    padding: 3rem;
}

.blog-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.blog-meta p {
    color: var(--para-color);
    font-size: 0.9rem;
}

.blog-featured-image img,
.blog-image img {
    height: 400px;
    object-fit: cover;
}

.blog-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-top: 2rem;
}

.blog-content p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--para-color);
}

.blog-content ul {
    padding-left: 1.5rem;
}

.blog-content ul li {
    margin-bottom: 0.5rem;
    line-height: 1.8;
}

.blog-tags .badge {
    font-size: 0.9rem;
    font-weight: 500;
    padding: 0.5rem 1rem;
}

.blog-sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-widget {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: var(--shadow-sm);
}

.sidebar-widget h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
}

.recent-post a:hover h6 {
    color: var(--accent-green) !important;
}

.sidebar-widget ul li a {
    transition: color 0.3s ease;
    color: var(--text-body);
}

.sidebar-widget ul li a:hover {
    color: var(--accent-green) !important;
}

/* Contact Page Styles */
.contact-section {
    margin-top: 2rem;
}

.contact-info {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 40px;
    padding: 3rem;
    box-shadow: var(--shadow-sm);
}

.contact-item {
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-light);
}

.contact-item:last-of-type {
    border-bottom: none;
}

.contact-icon {
    display: inline-block;
}

.contact-item h5 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
}

.contact-item p {
    line-height: 1.8;
    font-size: 1rem;
    color: var(--text-body);
}

.contact-item a:hover {
    color: var(--accent-green) !important;
}

.social-links-section {
    padding-top: 2rem;
    border-top: 1px solid var(--border-light);
}

.map-section {
    padding: 3rem 0;
}

.map-container {
    padding: 0 1rem;
}

.map-container iframe {
    width: 100%;
    border-radius: 40px;
    overflow: hidden;
}

.contact-section .booking-form textarea.form-input-custom {
    border-radius: 20px;
    resize: none;
    min-height: 150px;
}

/* toggler styles moved to header section above */



.btn-primary {
    background-color: var(--main-color) !important;
    border: none !important;
    padding: 10px 32px !important;
    border-radius: 50px !important;
    font-weight: 600 !important;
    transition: all 0.3s ease !important;
    text-transform: uppercase !important;
    color: var(--bg-color);
    border: 1px solid var(--main-color) !important;
}

.btn-primary.alt-btn {
    background: transparent !important;
    color: var(--main-color);

}

.btn-primary.alt-btn:hover {
    background-color: var(--main-color) !important;
    color: var(--bg-color) !important;

}

.btn-primary:hover {
    background-color: transparent !important;
    color: var(--main-color) !important;
}


.swiper-pagination-bullet {
    background: transparent;
    opacity: 1;
    border-color: var(--main-color);
    border-width: 1px;
    border-style: solid;
    width: 12px;
    height: 12px;
}

.swiper-pagination-bullet-active {
    background: var(--main-color);
    border: 2px solid var(--main-color);
}

.hero-swiper .swiper-button-next,
.hero-swiper .swiper-button-prev {
    color: var(--main-color);
}

/* Hero Section Styles */
.hero-section {
    position: relative;
    overflow: hidden;
    min-height: 600px;
    height: 600px;
}

.hero-section .swiper {
    width: 100%;
    height: 100%;
    min-height: 600px;
}

.hero-section .swiper-slide {
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-img {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.banner-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.banner-content .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.banner-content h1 {
    font-size: clamp(2.5rem, 8vw, 3.625rem);
    font-weight: 200;
    color: var(--para-color);
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-transform: uppercase;
}

.banner-content h1 span {
    font-weight: 700;
    font-size: clamp(2.5rem, 8vw, 4.625rem);
}

.banner .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.358);
}


section {
    padding: 30px 0;
}

.main-title h3 {
    color: #fff;
    font-size: clamp(2rem, 8vw, 2.8rem);
    font-weight: 600;
}

.booking-form {
    background: var(--bg-card);
    backdrop-filter: blur(100px);
    border: 1px solid var(--border-light);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: var(--shadow-md);
}

.form-input-custom {
    background: #ffffff !important;
    border: 1px solid var(--color-gray) !important;
    border-radius: 50px;
    padding: 0.7rem 2rem;
    color: var(--text-dark) !important;
    font-size: 18px;
    box-shadow: inset 0 1px 3px rgba(0,0,0,0.05);
}

.form-input-custom::placeholder {
    color: var(--text-body) !important;
    opacity: 0.9 !important;
}

.form-input-custom:focus {
    background: #ffffff !important;
    border-color: var(--main-color) !important;
    color: var(--text-dark) !important;
    box-shadow: 0 0 0 3px rgba(184, 150, 12, 0.1);
}


.booking-sec .bg-tint {
    top: -75%;
    right: -50%;
}

/* Modal Styles */
.booking-modal {
    background: transparent;
    border: none;
}

.booking-modal .modal-content {
    background: var(--bg-color);
    border: 2px solid rgba(244, 244, 244, 0.19);
    border-radius: 40px;
    padding: 2rem;
}

.booking-modal .modal-header {
    padding-bottom: 1rem;
}

.booking-modal .modal-title {
    color: #fff;
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 600;
}

.booking-modal .btn-close {
    filter: brightness(0) invert(1);
    opacity: 1;
}

.booking-modal .btn-close:hover {
    opacity: 0.8;
}

.booking-modal .modal-body {
    padding: 0;
}

.destination-card {
    position: relative;
    border-radius: 40px;
    overflow: hidden;
    aspect-ratio: 384/404;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.destination-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.destination-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(253, 202, 50, 0.2);
}

.destination-card:hover img {
    transform: scale(1.1);
}


/* ===== Tour Packages ===== */


.package-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 1.5rem;
}

.package-image img {
    width: 100%;
    transition: transform 0.5s;
}

.package-card {
    transition: all 0.3s ease;
    padding: 1rem;
    border-radius: 20px;
}

.package-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(253, 202, 50, 0.15);
}

.package-card:hover .package-image img {
    transform: scale(1.1);
}

.package-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
}

.package-badge {
    position: absolute;
    bottom: 1.5rem;
    right: 10%;
    /* transform: translateX(-50%); */
    background-color: var(--main-color);
    color: var(--bg-color);
    padding: 0.5rem 1.5rem;
    border-radius: 14px;
    font-weight: 700;
    font-size: 12px;
    white-space: nowrap;
}

.package-title {
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
}

.package-description {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--para-color);
}

.package-card .btn-primary,
.blg-card .btn-primary {
    font-size: 14px !important;
    padding: 7px 25px !important;
}


.testimonial-card {
    background: var(--color-overlay);
    backdrop-filter: blur(100px);
    border: 2px solid rgba(244, 244, 244, 0.19);
    border-radius: 40px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    border-color: rgba(253, 202, 50, 0.4);
    box-shadow: 0 15px 40px rgba(253, 202, 50, 0.1);
}

.testimonial-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.testimonial-name {
    color: var(--color-primary);
    font-size: 22px;
    font-weight: 700;
}

.testimonial-location {
    font-size: 18px;
}

.testimonial-text {
    line-height: 1.8;
    margin-bottom: 0;
}

.blog-date {
    line-height: 1.8;
}

.blog-title {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.3;
    max-width: 302px;
}

.blog-excerpt {
    line-height: 1.8;
    max-width: 283px;
}

.blg-card {
    transition: all 0.3s ease;
    border-radius: 20px;
}

.blg-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(253, 202, 50, 0.15);
}


.newsletter-box {
    background-color: #292825;
    border-radius: 40px;
    padding: 3rem 2rem;
}

.newsletter-input {
    background: var(--color-overlay);
    backdrop-filter: blur(100px);
    border: 2px solid rgba(244, 244, 244, 0.19);
    border-radius: 40px;
    padding: 1rem 1.5rem;
    color: var(--color-gray);
    font-size: 18px;
}

.newsletter-input::placeholder {
    color: var(--color-gray);
}

.newsletter-input:focus {
    background: var(--color-overlay);
    border-color: var(--color-primary);
    color: white;
    box-shadow: none;
}

/* ===== Footer ===== */
.footer {
    padding: 3rem 0;
}

.footer-title {
    color: var(--main-color);
    font-size: 25px;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: white;
    text-decoration: none;
    line-height: 1.8;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--main-color);
}

.footer-address {
    line-height: 1.8;
}

.social-link {
    width: 37px;
    height: 37px;
    border-radius: 50%;
    background-color: rgba(253, 202, 50, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s;
    color: var(--bg-color);
    font-size: 20px;
}



.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Tour Packages Page Styles */
.tour-packages-banner {
    margin-top: 108px;
}

.tour-packages-banner .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6));
}

.tour-category-card {
    padding: 1.5rem;
    transition: all 0.3s ease;
    border-radius: 40px;
}

.tour-category-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(253, 202, 50, 0.15);
}

.category-image {
    position: relative;
    overflow: hidden;
    border-radius: 40px;
    transition: all 0.3s ease;
}

.category-image img {
    transition: transform 0.5s ease;
}

.tour-category-card:hover .category-image img {
    transform: scale(1.05);
}

.tour-category-card {
    position: relative;
}

.category-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--para-color);
    margin-bottom: 0.5rem;
}

.category-count {
    position: absolute;
    right: 4%;
    bottom: 3%;
    font-size: 0.8rem;
    font-weight: 600;
    background-color: var(--main-color);
    text-align: center;
    padding: 5px 10px;
    border-radius: 50px;
    color: var(--bg-color) !important;
}


.breadcrumb-item+.breadcrumb-item::before {
    color: #fff !important;
}


.booking-modal .btn-close {
    filter: brightness(0) invert(1);
    opacity: 1;
    position: absolute;
    right: 0;
    top: 25%;
}

/* Blog Section Enhancements */
.blogs-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.02) 0%, rgba(255, 193, 7, 0.01) 100%);
    position: relative;
}

.blogs-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--main-color), transparent);
}

/* Section Header */
.section-header {
    margin-bottom: 3rem;
}

.section-header .section-title {
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.section-header .section-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto 2rem;
}

.header-divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--main-color), transparent);
    border-radius: 2px;
}

.blog-intro-text {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
}

/* Blog Card Wrapper */
.blog-card-wrapper {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 193, 7, 0.1);
    border-radius: 1.25rem;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    backdrop-filter: blur(10px);
    padding: 1rem;
}

.blog-card-wrapper:hover {
    transform: translateY(-12px);
    border-color: rgba(255, 193, 7, 0.3);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4), 0 0 40px rgba(255, 193, 7, 0.1);
}

/* Blog Image Wrapper */
.blog-image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 1rem;
    height: 280px;
    margin-bottom: 1rem;
    margin: -1rem -1rem 1rem -1rem;
}

.blog-image-link {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.blog-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.blog-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.2) 0%, rgba(0, 0, 0, 0.3) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 2;
}

.blog-card-wrapper:hover .blog-image-wrapper img {
    transform: scale(1.12) rotate(1deg);
}

.blog-card-wrapper:hover .blog-overlay {
    opacity: 1;
}

/* Category Badge */
.blog-category-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, var(--main-color) 0%, #ffc107 100%);
    color: #000;
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 10;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.3);
}

.blog-card-wrapper:hover .blog-category-badge {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 8px 25px rgba(255, 193, 7, 0.4);
}

/* Read Time Badge */
.blog-read-time {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background: rgba(0, 0, 0, 0.6);
    color: var(--main-color);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    z-index: 10;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 193, 7, 0.3);
}

/* Blog Content */
.blog-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.blog-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.blog-date {
    font-size: 0.85rem;
    color: var(--main-color);
    font-weight: 600;
    display: flex;
    align-items: center;
}

.blog-date i {
    color: var(--main-color);
}

.blog-title {
    font-size: 1.35rem;
    font-weight: 800;
    line-height: 1.4;
    color: #fff;
    transition: color 0.3s ease;
    margin-bottom: 1rem;
}

.blog-title a {
    color: #fff;
    text-decoration: none;
    display: block;
}

.blog-card-wrapper:hover .blog-title a {
    color: var(--main-color);
}

.blog-excerpt {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
    flex-grow: 1;
}

.blog-footer {
    margin-top: auto;
}

.blog-card-wrapper .btn-sm {
    font-size: 0.85rem;
    padding: 0.6rem 1.2rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* Load More Button */
.btn-outline-primary {
    border: 2px solid var(--main-color);
    color: var(--main-color);
    background: transparent;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 700;
    letter-spacing: 1px;
    padding: 0.8rem 2.5rem;
}

.btn-outline-primary:hover {
    background: var(--main-color);
    color: #000;
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(255, 193, 7, 0.3);
}

/* Responsive Blog Cards */
@media (max-width: 992px) {
    .section-header .section-title {
        font-size: 2rem;
    }

    .blog-image-wrapper {
        height: 250px;
    }

    .blog-title {
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .blogs-section {
        padding: 3rem 0;
    }

    .section-header .section-title {
        font-size: 1.75rem;
    }

    .blog-image-wrapper {
        height: 220px;
    }

    .blog-title {
        font-size: 1.1rem;
    }

    .blog-excerpt {
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .section-header .section-title {
        font-size: 1.5rem;
    }

    .blog-image-wrapper {
        height: 200px;
        margin-bottom: 1rem;
    }

    .blog-title {
        font-size: 1rem;
    }

    .blog-category-badge {
        font-size: 0.7rem;
        padding: 0.5rem 0.9rem;
    }

    .blog-read-time {
        font-size: 0.7rem;
        padding: 0.4rem 0.8rem;
    }

    .btn-outline-primary {
        padding: 0.7rem 1.5rem;
        font-size: 0.9rem;
    }
}

/* Blog 
Detail Page Styles */
.blog-detail-section {
    padding: 4rem 0;
}

.blog-featured-image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 1.5rem;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.blog-featured-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}

/* Blog Meta & Share */
.blog-detail-meta {
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 1.5rem 0;
    backdrop-filter: none;
    margin-bottom: 2rem;
}

.blog-meta-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.blog-meta-left {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.blog-meta-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.blog-date-detail,
.blog-read-time {
    font-size: 0.95rem;
    color: var(--main-color);
    font-weight: 600;
    display: flex;
    align-items: center;
    white-space: nowrap;
}

.blog-date-detail i,
.blog-read-time i {
    color: var(--main-color);
}

.social-share-detail {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.share-label {
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    white-space: nowrap;
}

.social-share-detail a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 193, 7, 0.12);
    color: var(--main-color);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1.5px solid rgba(255, 193, 7, 0.25);
    font-size: 1rem;
}

.social-share-detail a:hover {
    background: var(--main-color);
    color: #000;
    transform: translateY(-4px) scale(1.1);
    box-shadow: 0 10px 25px rgba(255, 193, 7, 0.35);
    border-color: var(--main-color);
}

/* Blog Title */
.blog-detail-title {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.3;
    color: #fff;
    margin-top: 2rem;
}

/* Blog Content */
.blog-detail-content {
    font-size: 1.05rem;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.85);
}

.blog-detail-content h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.blog-detail-content h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #fff;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.blog-detail-content p {
    margin-bottom: 1.5rem;
}

.blog-detail-content ul,
.blog-detail-content ol {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.blog-detail-content li {
    margin-bottom: 0.75rem;
    line-height: 1.8;
}

.blog-detail-content blockquote {
    border-left: 4px solid var(--main-color);
    padding-left: 1.5rem;
    margin: 2rem 0;
    font-style: italic;
    color: rgba(255, 255, 255, 0.8);
}

.blog-detail-content img {
    max-width: 100%;
    height: auto;
    border-radius: 1rem;
    margin: 2rem 0;
}

/* Blog Tags Section */
.blog-tags-section {
    padding-top: 2rem;
}

.blog-tags-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.blog-tag-item {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 193, 7, 0.1);
    color: var(--main-color);
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 193, 7, 0.2);
}

.blog-tag-item:hover {
    background: var(--main-color);
    color: #000;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 193, 7, 0.3);
}

/* Sidebar Widgets */
.sidebar-widget {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 193, 7, 0.1);
    border-radius: 1.25rem;
    padding: 2rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.sidebar-widget:hover {
    border-color: rgba(255, 193, 7, 0.2);
    background: rgba(255, 255, 255, 0.05);
}

.widget-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #fff;
    display: flex;
    align-items: center;
}

.widget-title i {
    color: var(--main-color);
}

.widget-description {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.6;
}

/* Recent Stories */
.recent-stories-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.recent-story-item {
    transition: all 0.3s ease;
    padding: 1rem;
    border-radius: 0.75rem;
    background: rgba(255, 193, 7, 0.02);
}

.recent-story-item:hover {
    background: rgba(255, 193, 7, 0.08);
    transform: translateX(5px);
}

.recent-story-image {
    display: block;
    overflow: hidden;
    border-radius: 0.75rem;
}

.recent-story-image .img-blog-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.recent-story-item:hover .recent-story-image .img-blog-thumb {
    transform: scale(1.08);
}

.recent-story-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: #fff;
}

.recent-story-title a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.recent-story-item:hover .recent-story-title a {
    color: var(--main-color);
}

.recent-story-date {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    display: flex;
    align-items: center;
}

.recent-story-date i {
    color: var(--main-color);
}

/* Categories */
.categories-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.category-item {
    display: flex;
    align-items: center;
    padding: 0.75rem 1rem;
    background: rgba(255, 193, 7, 0.05);
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.category-item:hover {
    background: rgba(255, 193, 7, 0.15);
    color: var(--main-color);
    border-left-color: var(--main-color);
    transform: translateX(5px);
}

.category-item i {
    color: var(--main-color);
}

/* Blog Query Form */
.blog-query-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.blog-query-form .form-input-custom {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 193, 7, 0.2);
    color: rgba(255, 255, 255, 0.9);
    transition: all 0.3s ease;
}

.blog-query-form .form-input-custom:focus {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--main-color);
    color: #fff;
    box-shadow: 0 0 20px rgba(255, 193, 7, 0.2);
}

.blog-query-form .form-input-custom::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.blog-query-form .btn-primary {
    margin-top: 0.5rem;
}

/* Responsive Blog Detail */
@media (max-width: 992px) {
    .blog-detail-title {
        font-size: 2rem;
    }

    .social-share-detail {
        justify-content: flex-start;
        margin-top: 1rem;
    }
}

@media (max-width: 768px) {
    .blog-detail-section {
        padding: 2rem 0;
    }

    .blog-detail-title {
        font-size: 1.75rem;
    }

    .blog-detail-content {
        font-size: 1rem;
    }

    .blog-meta-wrapper {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }

    .blog-meta-left {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
    }

    .blog-meta-right {
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
    }

    .social-share-detail {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .blog-detail-title {
        font-size: 1.5rem;
    }

    .blog-detail-content {
        font-size: 0.95rem;
    }

    .blog-detail-content h2 {
        font-size: 1.4rem;
    }

    .blog-detail-content h3 {
        font-size: 1.1rem;
    }

    .sidebar-widget {
        padding: 1.5rem;
    }

    .widget-title {
        font-size: 1.1rem;
    }
}

/ * Social Share Button Styling */ .social-share-btn {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 193, 7, 0.12);
    color: var(--main-color);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1.5px solid rgba(255, 193, 7, 0.25);
    font-size: 1rem;
    text-decoration: none;
}

.social-share-btn i {
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-share-btn:hover {
    background: var(--main-color);
    color: #000;
    transform: translateY(-4px) scale(1.1);
    box-shadow: 0 10px 25px rgba(255, 193, 7, 0.35);
    border-color: var(--main-color);
    text-decoration: none;
}


/* Blog Category Page Styles */
.blog-category-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.02) 0%, rgba(255, 193, 7, 0.01) 100%);
    position: relative;
}

.blog-category-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--main-color), transparent);
}

/* Category Header */
.category-header {
    margin-bottom: 3rem;
}

.category-header .blog-intro-text {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    max-width: 100%;
    margin: 0;
}

/* Responsive Blog Category */
@media (max-width: 992px) {
    .blog-category-section {
        padding: 3.5rem 0;
    }
}

@media (max-width: 768px) {
    .blog-category-section {
        padding: 3rem 0;
    }

    .category-header {
        margin-bottom: 2rem;
    }

    .category-header .blog-intro-text {
        font-size: 0.95rem;
    }
}

@media (max-width: 576px) {
    .blog-category-section {
        padding: 2rem 0;
    }

    .category-header {
        margin-bottom: 1.5rem;
    }

    .category-header .blog-intro-text {
        font-size: 0.9rem;
    }
}

/ * Blog Tag Page Styles */ .blog-tag-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.02) 0%, rgba(255, 193, 7, 0.01) 100%);
    position: relative;
}

.blog-tag-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--main-color), transparent);
}

/* Tag Header */
.tag-header {
    margin-bottom: 3rem;
}

.tag-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.tag-title i {
    color: var(--main-color);
}

.tag-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 1rem;
}

.tag-header .blog-intro-text {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
}

/* No Results Message */
.no-results-message {
    padding: 4rem 2rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 193, 7, 0.1);
    border-radius: 1.5rem;
    backdrop-filter: blur(10px);
}

.no-results-message i {
    font-size: 3rem;
    color: var(--main-color);
    opacity: 0.8;
}

.no-results-message h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin-top: 1rem;
}

.no-results-message p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 0.5rem;
}

/* Responsive Blog Tag */
@media (max-width: 992px) {
    .tag-title {
        font-size: 1.8rem;
    }

    .tag-subtitle {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .blog-tag-section {
        padding: 3rem 0;
    }

    .tag-header {
        margin-bottom: 2rem;
    }

    .tag-title {
        font-size: 1.5rem;
        flex-direction: column;
        gap: 0.5rem;
    }

    .tag-subtitle {
        font-size: 0.95rem;
    }

    .tag-header .blog-intro-text {
        font-size: 0.95rem;
    }
}

@media (max-width: 576px) {
    .blog-tag-section {
        padding: 2rem 0;
    }

    .tag-header {
        margin-bottom: 1.5rem;
    }

    .tag-title {
        font-size: 1.3rem;
    }

    .tag-subtitle {
        font-size: 0.9rem;
    }

    .tag-header .blog-intro-text {
        font-size: 0.9rem;
    }

    .no-results-message {
        padding: 2rem 1rem;
    }

    .no-results-message i {
        font-size: 2.5rem;
    }

    .no-results-message h4 {
        font-size: 1.2rem;
    }
}

/* Flatpickr Date Picker Customization */
.flatpickr-calendar {
    background: #1a1916;
    border: 2px solid var(--main-color);
    border-radius: 0.75rem;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    z-index: 9999;
}

.flatpickr-calendar.open {
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.flatpickr-months {
    background: #1a1916;
    border-bottom: 1px solid rgba(255, 193, 7, 0.2);
    padding: 1rem;
    height: 50px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
}

.flatpickr-month {
    color: #ffc107 !important;
    font-weight: 900 !important;
    font-size: 1.3rem !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.7) !important;
    letter-spacing: 0.5px !important;
    height: 50px !important;
    display: flex !important;
    align-items: center !important;
}

.flatpickr-cur-month {
    color: #ffc107 !important;
    font-weight: 900 !important;
}

.flatpickr-prev-month,
.flatpickr-next-month {
    color: #ffc107 !important;
    fill: #ffc107 !important;
    transition: all 0.3s ease;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.flatpickr-prev-month:hover,
.flatpickr-next-month:hover {
    color: #fff !important;
    fill: #fff !important;
    transform: scale(1.3);
    background: rgba(255, 193, 7, 0.2);
    border-radius: 0.5rem;
}

.flatpickr-prev-month svg,
.flatpickr-next-month svg {
    stroke: #ffc107 !important;
    fill: #ffc107 !important;
}

.flatpickr-weekdays {
    background: transparent;
    color: rgba(255, 255, 255, 0.7) !important;
    font-weight: 600 !important;
    font-size: 0.85rem !important;
    padding: 0.5rem 0 !important;
}

.flatpickr-weekday {
    color: rgba(255, 255, 255, 0.7) !important;
    font-weight: 600 !important;
}

.flatpickr-days {
    padding: 0.75rem;
    background: #1a1916;
}

.flatpickr-day {
    color: #fff;
    border-radius: 0.5rem;
    margin: 0.35rem;
    transition: all 0.3s ease;
    font-weight: 600;
    border: 1px solid transparent;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.flatpickr-day:hover:not(.disabled):not(.prevMonthDay):not(.nextMonthDay) {
    background: rgba(255, 193, 7, 0.1);
    color: #fff;
    border-color: rgba(255, 193, 7, 0.2);
}

.flatpickr-day.selected {
    background: rgba(255, 193, 7, 0.2);
    border-color: rgba(255, 193, 7, 0.3);
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    box-shadow: none;
}

.flatpickr-day.today {
    border-color: rgba(255, 193, 7, 0.3);
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.flatpickr-day.inRange {
    background: rgba(255, 193, 7, 0.15);
    color: #fff;
    border-color: rgba(255, 193, 7, 0.3);
}

.flatpickr-day.disabled,
.flatpickr-day.prevMonthDay,
.flatpickr-day.nextMonthDay {
    color: rgba(255, 255, 255, 0.25);
    background: transparent;
    cursor: not-allowed;
}

.flatpickr-time {
    background: rgba(255, 193, 7, 0.05);
    border-top: 1px solid rgba(255, 193, 7, 0.2);
    padding: 0.75rem;
}

.flatpickr-time input {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    border: 1px solid rgba(255, 193, 7, 0.3);
    border-radius: 0.5rem;
    font-weight: 600;
}

.flatpickr-time input:focus {
    background: rgba(255, 255, 255, 0.12);
    border-color: var(--main-color);
    color: #fff;
    box-shadow: 0 0 10px rgba(255, 193, 7, 0.3);
}

.flatpickr-am-pm {
    color: rgba(255, 255, 255, 0.8);
}

.flatpickr-am-pm:hover {
    background: rgba(255, 193, 7, 0.1);
    color: var(--main-color);
}

/* Input focus state for date picker */
.datepicker:focus {
    background: rgba(255, 255, 255, 0.08) !important;
    border-color: var(--main-color) !important;
    color: #fff !important;
    box-shadow: 0 0 20px rgba(255, 193, 7, 0.2) !important;
}

.datepicker::placeholder {
    color: var(--text-body) !important;
    opacity: 0.9 !important;
}

/* F
orm Validation Messages */
.validate-msg {
    margin-top: 1rem;
    display: none;
}

.validate-msg .alert {
    border-radius: 0.75rem;
    border: none;
    padding: 1rem 1.5rem;
    font-weight: 500;
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.validate-msg .alert-success {
    background: rgba(40, 167, 69, 0.15);
    border-left: 4px solid #28a745;
    color: #28a745;
}

.validate-msg .alert-danger {
    background: rgba(220, 53, 69, 0.15);
    border-left: 4px solid #dc3545;
    color: #dc3545;
}

.validate-msg .alert-warning {
    background: rgba(255, 193, 7, 0.15);
    border-left: 4px solid var(--main-color);
    color: var(--main-color);
}

/* Form input validation states */
.form-control:invalid:not(:placeholder-shown) {
    border-color: #dc3545;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath fill='%23dc3545' d='M8 4a.5.5 0 0 0-.5-.5h-3a.5.5 0 0 0 0 1h3A.5.5 0 0 0 8 4z'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right calc(0.375em + 0.1875rem) center;
    background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
    padding-right: calc(1.5em + 0.75rem);
}

.form-control:valid:not(:placeholder-shown) {
    border-color: #28a745;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%2328a745' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right calc(0.375em + 0.1875rem) center;
    background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
    padding-right: calc(1.5em + 0.75rem);
}

/* Submit button loading state */
button[type="submit"]:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

/* News
letter Form Styling */
.newsletter-input {
    background: var(--color-overlay);
    backdrop-filter: blur(100px);
    border: 2px solid rgba(244, 244, 244, 0.19);
    border-radius: 40px;
    padding: 1rem 1.5rem;
    color: var(--color-gray);
    font-size: 18px;
    transition: all 0.3s ease;
}

.newsletter-input::placeholder {
    color: var(--color-gray);
}

.newsletter-input:focus {
    background: var(--color-overlay);
    border-color: var(--main-color);
    color: white;
    box-shadow: 0 0 20px rgba(255, 193, 7, 0.2);
    outline: none;
}

.newsletter-input:valid:not(:placeholder-shown) {
    border-color: #28a745;
}

.newsletter-input:invalid:not(:placeholder-shown) {
    border-color: #dc3545;
}

/* Newsletter form container */
.newsletter-box {
    background-color: #292825;
    border-radius: 40px;
    padding: 3rem 2rem;
}

/* Newsletter validation messages */
#frmnewsletter .validate-msg {
    margin-top: 1.5rem;
}

#frmnewsletter .validate-msg .alert {
    border-radius: 1rem;
    padding: 1rem 1.5rem;
    font-weight: 500;
}

/* Responsive newsletter form */
@media (max-width: 768px) {
    .newsletter-box {
        padding: 2rem 1rem;
    }

    .newsletter-input {
        padding: 0.75rem 1.25rem;
        font-size: 16px;
    }
}


/* Plan Trip Section */
.plan-trip-section {
    padding: 4rem 0;
}

.section-intro {
    margin-bottom: 2rem;
}

.intro-text {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
}

/* Plan Trip Form */
.plan-trip-form {
    background: rgba(26, 25, 22, 0.8);
    border: 1.5px solid rgba(255, 193, 7, 0.2);
    border-radius: 1.5rem;
    padding: 2.5rem;
    backdrop-filter: blur(10px);
}

/* Form Section */
.form-section {
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 193, 7, 0.15);
}

.form-section:last-of-type {
    border-bottom: none;
}

.form-section-title {
    font-size: 1.4rem;
    font-weight: 800;
    color: #fff;
    display: flex;
    align-items: center;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.form-section-title i {
    color: var(--main-color);
    margin-right: 0.75rem;
}

/* Form Labels */
.form-label {
    display: block;
    font-size: 0.95rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0.5rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

/* Form Inputs */
.form-input-custom {
    background: rgba(255, 255, 255, 0.08);
    border: 1.5px solid rgba(255, 193, 7, 0.3);
    color: #fff;
    border-radius: 0.75rem;
    padding: 0.85rem 1.2rem;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.form-input-custom::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.form-input-custom:focus {
    background: rgba(255, 255, 255, 0.12);
    border-color: var(--main-color);
    color: #fff;
    box-shadow: 0 0 20px rgba(255, 193, 7, 0.3);
    outline: none;
}

.form-input-custom:valid:not(:placeholder-shown) {
    border-color: #28a745;
    background: rgba(40, 167, 69, 0.08);
}

.form-input-custom:invalid:not(:placeholder-shown) {
    border-color: #dc3545;
    background: rgba(220, 53, 69, 0.08);
}

/* Select Dropdown */
select.form-input-custom {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='none' stroke='%23ffc107' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 16px;
    padding-right: 2.5rem;
}

select.form-input-custom option {
    background: #1a1916;
    color: #fff;
}

/* Textarea */
textarea.form-input-custom {
    resize: vertical;
    min-height: 120px;
    font-family: inherit;
}

/* Form Group */
.form-group {
    margin-bottom: 0;
}

/* Submit Button */
.plan-trip-form .btn-lg {
    padding: 0.9rem 2.5rem;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

/* Validation Messages */
.plan-trip-form .validate-msg {
    margin-top: 1.5rem;
}

.plan-trip-form .validate-msg .alert {
    border-radius: 0.75rem;
    border: none;
    padding: 1rem 1.5rem;
    font-weight: 500;
}

/* Responsive */
@media (max-width: 992px) {
    .plan-trip-form {
        padding: 2rem;
    }

    .form-section-title {
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .plan-trip-section {
        padding: 2rem 0;
    }

    .plan-trip-form {
        padding: 1.5rem;
    }

    .form-section {
        padding-bottom: 1.5rem;
    }

    .form-section-title {
        font-size: 1.1rem;
    }

    .form-label {
        font-size: 0.9rem;
    }

    .form-input-custom {
        padding: 0.65rem 0.9rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .plan-trip-form {
        padding: 1rem;
    }

    .form-section-title {
        font-size: 1rem;
    }

    .form-input-custom {
        padding: 0.6rem 0.8rem;
        font-size: 0.85rem;
    }

    .plan-trip-form .btn-lg {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
}

/* --- Content Typography & Lists --- */
.inclusion-section,
.exclusion-section,
.package-overview,
.places-covered,
.day-description {
    line-height: 1.8;
}

.inclusion-section ul,
.exclusion-section ul,
.package-overview ul,
.places-covered ul,
.day-description ul {
    list-style-type: disc !important;
    padding-left: 1.5rem !important;
    margin-bottom: 1.5rem;
}

.inclusion-section ul li,
.exclusion-section ul li,
.package-overview ul li,
.places-covered ul li,
.day-description ul li {
    display: list-item !important;
    /* Fix for potential inline resets */
    margin-bottom: 0.5rem;
}

/* Meta fix for broken comment in previous turn */
/* Social Share Button Styling */
.blog-tag-section {
    padding: 5rem 0;
}

/* ══════════════════════════════════════
   LIGHT THEME GLOBAL OVERRIDES
   Overrides all remaining dark-mode
   hardcoded values site-wide
══════════════════════════════════════ */

/* Section backgrounds */
section {
    background-color: transparent;
}

section:nth-child(even) {
    background-color: var(--bg-alt);
}

/* Headings */
h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--text-dark);
}

.main-title h3 {
    color: var(--text-dark) !important;
}

/* Body text */
p,
li,
span,
label {
    color: var(--text-body);
}

/* Cards */
.blog-article,
.testimonial-card,
.tour-category-card,
.package-card {
    background: var(--bg-card) !important;
    border: 1px solid var(--border-light) !important;
    backdrop-filter: none !important;
    box-shadow: var(--shadow-sm);
}

.testimonial-card:hover,
.package-card:hover {
    box-shadow: var(--shadow-md) !important;
    border-color: var(--accent-green) !important;
}

/* Booking form & modal */
.booking-form {
    background: var(--bg-card) !important;
    border: 1px solid var(--border-light) !important;
    backdrop-filter: none !important;
    box-shadow: var(--shadow-sm);
}

.booking-modal .modal-content {
    background: var(--bg-card) !important;
    border: 1px solid var(--border-light) !important;
}

.booking-modal .modal-title {
    color: var(--text-dark) !important;
}

.booking-modal .btn-close {
    filter: none !important;
    opacity: 0.6;
}

/* Form inputs */
.form-input-custom {
    background: #ffffff !important;
    border: 1px solid var(--border-light) !important;
    color: var(--text-dark) !important;
    backdrop-filter: none !important;
    box-shadow: inset 0 1px 2px rgba(0,0,0,0.05) !important;
}

.form-input-custom::placeholder {
    color: var(--text-body) !important;
    opacity: 0.8 !important;
}

.form-input-custom:focus {
    background: #fff !important;
    border-color: var(--accent-green) !important;
    color: var(--text-dark) !important;
    box-shadow: 0 0 0 3px rgba(45, 80, 22, 0.1) !important;
}

select.form-input-custom option {
    background: #fff;
    color: var(--text-dark);
}

/* Newsletter */
.newsletter-box {
    background: linear-gradient(135deg, var(--accent-green) 0%, #3d6b1e 100%) !important;
    border-radius: 40px;
}

.newsletter-box h2,
.newsletter-box h3,
.newsletter-box p {
    color: #fff !important;
}

.newsletter-input {
    background: rgba(255, 255, 255, 0.15) !important;
    border: 1.5px solid rgba(255, 255, 255, 0.3) !important;
    color: #fff !important;
    backdrop-filter: none !important;
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.65) !important;
}

.newsletter-input:focus {
    background: rgba(255, 255, 255, 0.22) !important;
    border-color: #fff !important;
    color: #fff !important;
    box-shadow: none !important;
}

/* Footer */
.footer {
    background: var(--text-dark) !important;
}

.footer-title {
    color: var(--main-color) !important;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.75) !important;
}

.footer-links a:hover {
    color: var(--main-color) !important;
}

.footer-address,
.footer-address p {
    color: rgba(255, 255, 255, 0.8) !important;
}

.footer .text-paracolor,
.footer .text-paracolor a {
    color: rgba(255, 255, 255, 0.75) !important;
}

.footer .text-paracolor a:hover {
    color: var(--main-color) !important;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5) !important;
}

/* Social links */
.social-link {
    background-color: var(--accent-green) !important;
    color: #fff !important;
}

.social-link:hover {
    background-color: var(--accent-red) !important;
}

/* Buttons */
.btn-primary {
    background-color: var(--accent-red) !important;
    border-color: var(--accent-red) !important;
    color: #fff !important;
}

.btn-primary:hover {
    background-color: transparent !important;
    color: var(--accent-red) !important;
}

.btn-primary.alt-btn {
    background: transparent !important;
    color: var(--accent-red) !important;
}

.btn-primary.alt-btn:hover {
    background-color: var(--accent-red) !important;
    color: #fff !important;
}

/* Package badge */
.package-badge {
    background-color: var(--accent-green) !important;
    color: #fff !important;
}

/* Swiper pagination */
.swiper-pagination-bullet {
    border-color: var(--accent-green) !important;
}

.swiper-pagination-bullet-active {
    background: var(--accent-green) !important;
    border-color: var(--accent-green) !important;
}

/* Blog cards */
.blog-card-wrapper {
    background: var(--bg-card) !important;
    border: 1px solid var(--border-light) !important;
}

.blog-card-wrapper:hover {
    border-color: var(--accent-green) !important;
    box-shadow: var(--shadow-md) !important;
}

.blog-title,
.blog-title a {
    color: var(--text-dark) !important;
}

.blog-card-wrapper:hover .blog-title a {
    color: var(--accent-green) !important;
}

.blog-excerpt {
    color: var(--text-body) !important;
}

.blog-detail-title {
    color: var(--text-dark) !important;
}

.blog-detail-content {
    color: var(--text-body) !important;
}

.blog-detail-content h2,
.blog-detail-content h3 {
    color: var(--text-dark) !important;
}

/* Sidebar widgets (blog detail) */
.sidebar-widget {
    background: var(--bg-card) !important;
    border: 1px solid var(--border-light) !important;
    backdrop-filter: none !important;
}

.widget-title {
    color: var(--text-dark) !important;
}

.recent-story-title a {
    color: var(--text-dark) !important;
}

.recent-story-title a:hover {
    color: var(--accent-green) !important;
}

/* Destination cards */
.destination-card {
    box-shadow: var(--shadow-sm);
}

.destination-card:hover {
    box-shadow: var(--shadow-lg) !important;
}

/* Breadcrumb */
.breadcrumb-item+.breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.6) !important;
}

/* Banner overlay — keep dark for readability over images */
.banner-content .overlay {
    background: rgba(0, 0, 0, 0.45) !important;
}

.banner-content h1 {
    color: #fff !important;
}

/* Tour packages banner margin */
.tour-packages-banner {
    margin-top: 72px;
}

/* Flatpickr — light */
.flatpickr-calendar {
    background: var(--bg-card) !important;
    border: 1px solid var(--border-light) !important;
    box-shadow: var(--shadow-md) !important;
}

.flatpickr-day {
    color: var(--text-dark) !important;
}

.flatpickr-day.selected,
.flatpickr-day.selected:hover {
    background: var(--accent-green) !important;
    border-color: var(--accent-green) !important;
    color: #fff !important;
}

.flatpickr-day:hover:not(.disabled) {
    background: var(--bg-alt) !important;
    color: var(--accent-green) !important;
    border-color: var(--border-light) !important;
}

/* Destination title visibility */
.destination-title a {
    color: #000 !important;
    transition: color 0.3s ease;
}

.destination-title a:hover {
    color: var(--accent-green) !important;
}

/* Newsletter STAYS text visibility */
.newsletter-box .section-title span {
    color: #fff !important;
}

.newsletter-box .section-title .text-maincolor {
    color: var(--main-color) !important;
}

/* Back to Top Button */
#back-to-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    width: 45px;
    height: 45px;
    background-color: var(--main-color);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: var(--shadow-md);
    z-index: 1000;
    transition: all 0.3s ease;
    visibility: hidden;
    opacity: 0;
}

#back-to-top.show {
    visibility: visible;
    opacity: 1;
}

#back-to-top:hover {
    background-color: var(--accent-red);
    transform: translateY(-5px);
}