/* ==========================================================================
   NATURELUST - Premium Bali Travel Redesign
   Custom Style extending Bootstrap 5
   ========================================================================== */

/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&display=swap');

:root {
    --nl-primary-green: #0B4C2C;     /* Vibrant Palm Green */
    --nl-primary-green-rgb: 11, 76, 44;
    --nl-light-green: #0e7d44;       /* Vibrant Forest Accent */
    --nl-sand-beige: #F7F4EF;        /* Tropical Sand / Beige */
    --nl-sand-dark: #EADFD5;         /* Soft Sand Shadows */
    --nl-ocean-blue: #1D70B8;        /* Clear Ocean Blue */
    --nl-sunset-orange: #E76F51;     /* Sunset Warm Accent */
    --nl-sunset-orange-rgb: 231, 111, 81;
    --nl-dark-charcoal: #1F2421;     /* Text Color */
    --nl-off-white: #FCFBF9;         /* Premium Background White */
    
    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Outfit', sans-serif;
    
    /* UI Values */
    --nl-border-radius: 16px;
    --nl-box-shadow: 0 10px 30px rgba(14, 61, 47, 0.08);
    --nl-box-shadow-hover: 0 20px 40px rgba(14, 61, 47, 0.15);
    --nl-transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    --nl-pink-accent: #E76F51;
    --nl-gold-accent: #D4AF37;
}

/* Base Styles */
body {
    font-family: var(--font-body);
    color: var(--nl-dark-charcoal);
    background-color: var(--nl-off-white);
    overflow-x: hidden;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6, .display-font {
    font-family: var(--font-heading);
    color: var(--nl-primary-green);
    font-weight: 700;
}

p {
    font-weight: 300;
    color: #555c5a;
}

a {
    color: var(--nl-light-green);
    text-decoration: none;
    transition: var(--nl-transition);
}
a:hover {
    color: var(--nl-sunset-orange);
}

/* Custom Selection */
::selection {
    background-color: var(--nl-primary-green);
    color: var(--nl-sand-beige);
}

/* Common Backgrounds */
.bg-tropical-sand {
    background-color: var(--nl-sand-beige) !important;
}
.bg-deep-green {
    background-color: var(--nl-primary-green) !important;
}
.text-sunset {
    color: var(--nl-sunset-orange) !important;
}
.text-deep-green {
    color: var(--nl-primary-green) !important;
}

/* Modern Layout Elements */
.section-padding {
    padding: 100px 0;
}
@media (max-width: 768px) {
    .section-padding {
        padding: 60px 0;
    }
}

/* Premium Navigation */
.navbar {
    padding: 10px 0;
    transition: var(--nl-transition);
    background: rgba(255, 255, 255, 0.88) !important; /* Sophisticated frosted glass white always */
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    border-bottom: 1px solid rgba(14, 61, 47, 0.08) !important; /* Subtle thin frame boundary */
    box-shadow: 0 4px 30px rgba(14, 61, 47, 0.04) !important;
    z-index: 1050;
}

.navbar.navbar-scrolled {
    background: rgba(255, 255, 255, 0.88) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    border-bottom: 1px solid rgba(14, 61, 47, 0.08) !important;
    box-shadow: 0 4px 30px rgba(14, 61, 47, 0.04) !important;
    padding: 10px 0;
}

.navbar-brand img,
.navbar-logo,
.custom-logo-link img {
    height: 60px !important;
    width: auto !important;
    transition: var(--nl-transition);
}

.navbar.navbar-scrolled .navbar-brand img,
.navbar.navbar-scrolled .navbar-logo,
.navbar.navbar-scrolled .custom-logo-link img {
    height: 45px !important;
}

.navbar .nav-link {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 14px;
    color: var(--nl-primary-green) !important; /* Always primary green for high visibility */
    padding: 8px 10px !important;
    position: relative;
    opacity: 0.95;
    transition: var(--nl-transition);
    white-space: nowrap;
}

.navbar .nav-link:hover,
.navbar .nav-link.active {
    color: var(--nl-sunset-orange) !important; /* Warm accent color on hover/active */
    opacity: 1;
}

.navbar .nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background-color: var(--nl-sunset-orange);
    transition: var(--nl-transition);
    transform: translateX(-50%);
}

.navbar .nav-link:hover::after,
.navbar .nav-link.active::after {
    width: 60%;
}

.navbar.navbar-scrolled .nav-link {
    color: var(--nl-primary-green) !important;
}

.navbar.navbar-scrolled .nav-link:hover,
.navbar.navbar-scrolled .nav-link.active {
    color: var(--nl-sunset-orange) !important;
}

.navbar .navbar-toggler-icon-custom,
.navbar .navbar-toggler-icon-custom::before,
.navbar .navbar-toggler-icon-custom::after,
.navbar.navbar-scrolled .navbar-toggler-icon-custom,
.navbar.navbar-scrolled .navbar-toggler-icon-custom::before,
.navbar.navbar-scrolled .navbar-toggler-icon-custom::after {
    background-color: var(--nl-primary-green) !important; /* Always contrast green toggler */
}

.navbar-toggler {
    border: none;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
}
.navbar-toggler:focus {
    box-shadow: none;
    outline: none;
}
.navbar-toggler-icon-custom {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--nl-sand-beige);
    position: relative;
    transition: var(--nl-transition);
}
.navbar-toggler-icon-custom::before,
.navbar-toggler-icon-custom::after {
    content: '';
    width: 24px;
    height: 2px;
    background-color: var(--nl-sand-beige);
    position: absolute;
    left: 0;
    transition: var(--nl-transition);
}
.navbar-toggler-icon-custom::before { top: -6px; }
.navbar-toggler-icon-custom::after { bottom: -6px; }

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon-custom {
    background-color: transparent;
}
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon-custom::before {
    transform: rotate(45deg);
    top: 0;
}
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon-custom::after {
    transform: rotate(-45deg);
    bottom: 0;
}

/* Premium Buttons & CTA */
.btn-nl {
    font-family: var(--font-body);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
    padding: 14px 30px;
    border-radius: 50px;
    transition: var(--nl-transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-nl-primary {
    background-color: var(--nl-sunset-orange);
    color: #fff;
    border: 2px solid var(--nl-sunset-orange);
}
.btn-nl-primary:hover {
    background-color: var(--nl-primary-green);
    border-color: var(--nl-primary-green);
    color: var(--nl-sand-beige);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(231, 111, 81, 0.3);
}

.btn-nl-outline {
    background-color: transparent;
    color: var(--nl-primary-green);
    border: 2px solid var(--nl-primary-green);
}
.btn-nl-outline:hover {
    background-color: var(--nl-primary-green);
    color: var(--nl-sand-beige);
    transform: translateY(-3px);
    box-shadow: var(--nl-box-shadow);
}

.btn-nl-white {
    background-color: #ffffff;
    color: var(--nl-primary-green);
    border: 2px solid #ffffff;
}
.btn-nl-white:hover {
    background-color: var(--nl-sunset-orange);
    border-color: var(--nl-sunset-orange);
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.2);
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #ffffff;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.6) 100%);
    z-index: -1;
}

.hero-title {
    color: #ffffff !important;
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 20px;
    text-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.hero-subtitle {
    font-family: var(--font-body);
    font-size: 1.5rem;
    font-weight: 300;
    opacity: 0.95;
    margin-bottom: 35px;
    letter-spacing: 0.5px;
}

.hero-btn-wrap {
    position: absolute;
    bottom: 75px;
    right: 100px;
    z-index: 30;
}
.hero-btn-wrap .btn {
    padding: 8px 18px !important;
    font-size: 12px !important;
    letter-spacing: 0.5px !important;
}

@media (max-width: 991px) {
    .hero-title { font-size: 3.2rem; }
    .hero-subtitle { font-size: 1.25rem; }
    .hero-btn-wrap {
        position: absolute;
        bottom: 75px;
        left: 50%;
        transform: translateX(-50%);
        right: auto;
        margin-top: 0;
        display: flex;
        justify-content: center;
        width: auto;
        white-space: nowrap;
        z-index: 30;
    }
    .navbar-collapse {
        background-color: var(--nl-primary-green);
        border-radius: var(--nl-border-radius);
        padding: 25px;
        margin-top: 15px;
        box-shadow: 0 15px 35px rgba(14, 61, 47, 0.35);
        border: 1px solid rgba(255, 255, 255, 0.08);
    }
    .navbar-collapse .nav-link {
        color: var(--nl-sand-beige) !important;
        padding: 10px 0 !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }
    .navbar-collapse .nav-link:hover,
    .navbar-collapse .nav-link.active {
        color: var(--nl-sunset-orange) !important;
    }
    .navbar-collapse .nav-link::after {
        display: none;
    }
    .navbar-collapse .nav-link:last-child {
        border-bottom: none;
    }
    .navbar-collapse .dropdown-menu {
        background-color: rgba(255, 255, 255, 0.05);
        border: none;
        padding-left: 15px;
        margin-top: 5px;
    }
    .navbar-collapse .dropdown-item {
        color: var(--nl-sand-beige) !important;
        opacity: 0.85;
    }
    .navbar-collapse .dropdown-item:hover {
        background-color: transparent;
        color: var(--nl-sunset-orange) !important;
        opacity: 1;
    }
}
@media (max-width: 576px) {
    .hero-title { font-size: 2.5rem; }
    .hero-subtitle { font-size: 1.1rem; }
}

/* DreamsTour Elegant Search Form Panel */
.search-panel {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    padding: 30px;
    box-shadow: 0 20px 50px rgba(14, 61, 47, 0.15);
    margin-top: -80px;
    position: relative;
    z-index: 10;
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.search-field-group {
    border-right: 1px solid var(--nl-sand-dark);
    padding: 0 15px;
}
.search-field-group:last-child {
    border-right: none;
}
@media (max-width: 991px) {
    .search-panel {
        margin-top: -30px;
        padding: 20px;
    }
    .search-field-group {
        border-right: none;
        border-bottom: 1px solid var(--nl-sand-dark);
        padding: 15px 0;
    }
}

.search-label {
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--nl-primary-green);
    letter-spacing: 1px;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.search-label i {
    color: var(--nl-sunset-orange);
}

.search-input {
    border: none;
    border-bottom: 1.5px solid rgba(11, 76, 44, 0.18);
    background: transparent;
    font-family: var(--font-body);
    font-weight: 500;
    color: var(--nl-dark-charcoal);
    padding: 0 0 6px 0;
    font-size: 16px;
    width: 100%;
    transition: border-color 0.3s ease;
}
.search-input:focus {
    border-bottom: 1.5px solid var(--nl-sunset-orange);
    outline: none;
    box-shadow: none;
}

/* Category Grid Item */
.category-card {
    background: #fff;
    border-radius: var(--nl-border-radius);
    padding: 35px 25px;
    text-align: center;
    box-shadow: var(--nl-box-shadow);
    transition: var(--nl-transition);
    border: 1px solid rgba(14, 61, 47, 0.03);
    height: 100%;
    position: relative;
    overflow: hidden;
}
.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: var(--nl-light-green);
    transform: scaleX(0);
    transition: var(--nl-transition);
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--nl-box-shadow-hover);
}
.category-card:hover::before {
    transform: scaleX(1);
}

.category-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: var(--nl-sand-beige);
    color: var(--nl-primary-green);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin-bottom: 20px;
    transition: var(--nl-transition);
}

.category-card:hover .category-icon {
    background-color: var(--nl-primary-green);
    color: var(--nl-sand-beige);
}

.category-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
}
.category-desc {
    font-size: 14px;
    margin-bottom: 0;
}

/* DreamsTour Premium Experience Card */
.tour-card {
    background: #fff;
    border-radius: var(--nl-border-radius);
    overflow: hidden;
    box-shadow: var(--nl-box-shadow);
    transition: var(--nl-transition);
    border: 1px solid rgba(14, 61, 47, 0.04);
    height: 100%;
    display: flex;
    flex-direction: column;
}

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

.tour-img-wrap {
    position: relative;
    height: 250px;
    overflow: hidden;
}

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

.tour-card:hover .tour-img {
    transform: scale(1.1);
}

.tour-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: rgba(14, 61, 47, 0.85);
    backdrop-filter: blur(5px);
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tour-duration {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background-color: var(--nl-sunset-orange);
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.tour-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.tour-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 12px;
    font-size: 14px;
    color: #777;
}
.tour-meta i {
    color: var(--nl-light-green);
}

.tour-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    transition: var(--nl-transition);
}
.tour-title a {
    color: var(--nl-primary-green);
}
.tour-title a:hover {
    color: var(--nl-sunset-orange);
}

.tour-excerpt {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
    flex-grow: 1;
}

.tour-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 15px;
    border-top: 1px solid var(--nl-sand-beige);
}

.tour-price-label {
    font-size: 11px;
    text-transform: uppercase;
    color: #888;
    margin-bottom: 2px;
}
.tour-price {
    font-size: 18px;
    font-weight: 700;
    color: var(--nl-sunset-orange);
}

/* Page Banner */
.page-banner {
    position: relative;
    padding: 160px 0 100px 0;
    background-size: cover;
    background-position: center;
    color: #fff;
    z-index: 1;
}
.page-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    z-index: -1;
}
.page-banner h1,
.page-banner-title {
    color: #ffffff !important;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}
.page-banner p.lead,
.page-banner .lead {
    display: inline-block;
    background: rgba(14, 61, 47, 0.55); /* Translucent brand forest green */
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: #ffffff !important;
    padding: 10px 18px;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 500;
    line-height: 1.65;
    margin-top: 12px;
    border-left: 4px solid var(--nl-sunset-orange); /* brand sunset orange indicator */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    max-width: 95%;
}
.breadcrumb-custom {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    opacity: 0.9;
}
.breadcrumb-custom a {
    color: var(--nl-sand-beige);
}
.breadcrumb-custom span {
    color: var(--nl-sunset-orange);
}

/* Feature detail Page Styles */
.experience-meta-bar {
    background: var(--nl-sand-beige);
    border-radius: var(--nl-border-radius);
    padding: 20px 30px;
    margin-bottom: 40px;
}
.experience-meta-item {
    display: flex;
    align-items: center;
    gap: 15px;
}
.experience-meta-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #fff;
    color: var(--nl-sunset-orange);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.03);
}
.experience-meta-text {
    line-height: 1.3;
}
.experience-meta-label {
    font-size: 12px;
    text-transform: uppercase;
    color: #888;
}
.experience-meta-value {
    font-size: 15px;
    font-weight: 600;
    color: var(--nl-primary-green);
}

/* Sticky Enquiry Form Box */
.sticky-enquiry-box {
    background: #fff;
    border-radius: var(--nl-border-radius);
    padding: 30px;
    box-shadow: var(--nl-box-shadow);
    border: 1px solid rgba(14, 61, 47, 0.05);
    position: sticky;
    top: 100px;
    z-index: 10;
}
.sticky-enquiry-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--nl-sand-beige);
    text-align: center;
}

/* Styled Form Controls */
.form-group-custom {
    margin-bottom: 20px;
}
.form-label-custom {
    font-size: 13px;
    font-weight: 600;
    color: var(--nl-primary-green);
    margin-bottom: 8px;
}
.form-control-custom {
    border: 1px solid var(--nl-sand-dark);
    border-radius: 10px;
    padding: 12px 16px;
    font-family: var(--font-body);
    font-size: 14px;
    transition: var(--nl-transition);
    background-color: var(--nl-off-white);
}
.form-control-custom:focus {
    border-color: var(--nl-sunset-orange);
    background-color: #fff;
    box-shadow: 0 0 0 3px rgba(231, 111, 81, 0.15);
    outline: none;
}

/* Meet the Team section */
.team-card {
    background: #fff;
    border-radius: var(--nl-border-radius);
    overflow: hidden;
    box-shadow: var(--nl-box-shadow);
    transition: var(--nl-transition);
    height: 100%;
}
.team-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--nl-box-shadow-hover);
}
.team-img-wrap {
    height: 320px;
    position: relative;
    overflow: hidden;
}
.team-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--nl-transition);
}
.team-card:hover .team-img {
    transform: scale(1.08);
}
.team-info {
    padding: 25px;
    text-align: center;
}
.team-role {
    font-size: 12px;
    text-transform: uppercase;
    color: var(--nl-sunset-orange);
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 5px;
}
.team-name {
    font-size: 22px;
    font-weight: 700;
    color: var(--nl-primary-green);
    margin-bottom: 12px;
}
.team-desc {
    font-size: 14px;
    color: #666;
    margin-bottom: 0;
}

/* Testimonial slider */
.testimonial-card {
    background: #fff;
    border-radius: var(--nl-border-radius);
    padding: 40px;
    box-shadow: var(--nl-box-shadow);
    position: relative;
    border: 1px solid rgba(14, 61, 47, 0.04);
}
.quote-icon {
    font-size: 50px;
    color: rgba(231, 111, 81, 0.15);
    position: absolute;
    top: 20px;
    left: 30px;
}
.testimonial-text {
    font-size: 16px;
    font-style: italic;
    color: #444;
    margin-bottom: 25px;
    position: relative;
    z-index: 2;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}
.author-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}
.author-name {
    font-size: 16px;
    font-weight: 700;
    color: var(--nl-primary-green);
    margin-bottom: 2px;
}
.author-location {
    font-size: 12px;
    color: #777;
}

/* Accordion FAQ */
.accordion-item {
    border: none;
    margin-bottom: 15px;
    border-radius: 12px !important;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
}
.accordion-button {
    font-family: var(--font-body);
    font-weight: 600;
    color: var(--nl-primary-green);
    background-color: #fff;
    padding: 20px;
    border: 1px solid var(--nl-sand-beige);
    border-radius: 12px !important;
    box-shadow: none !important;
}
.accordion-button:not(.collapsed) {
    color: #fff;
    background-color: var(--nl-primary-green);
}
.accordion-button::after {
    background-size: 14px;
}
.accordion-body {
    padding: 20px;
    font-size: 15px;
    color: #555;
    background-color: #fff;
    border: 1px solid var(--nl-sand-beige);
    border-top: none;
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
}

/* Beautiful Gallery Filter Grid */
.gallery-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 40px;
}
.gallery-filter-btn {
    border: none;
    background: var(--nl-sand-beige);
    color: var(--nl-primary-green);
    padding: 8px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    transition: var(--nl-transition);
}
.gallery-filter-btn.active, .gallery-filter-btn:hover {
    background: var(--nl-primary-green);
    color: #fff;
}

.gallery-item {
    position: relative;
    border-radius: var(--nl-border-radius);
    overflow: hidden;
    height: 300px;
    margin-bottom: 30px;
    box-shadow: var(--nl-box-shadow);
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--nl-transition);
}
.gallery-item-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(14, 61, 47, 0.9) 0%, rgba(14, 61, 47, 0.3) 100%);
    opacity: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 25px;
    transition: var(--nl-transition);
}
.gallery-item:hover img {
    transform: scale(1.1);
}
.gallery-item:hover .gallery-item-overlay {
    opacity: 1;
}
.gallery-item-tag {
    font-size: 11px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--nl-sunset-orange);
    margin-bottom: 5px;
}
.gallery-item-title {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0;
}

/* Lightbox Modal */
.lightbox-modal .modal-content {
    background: transparent;
    border: none;
}
.lightbox-modal .modal-body {
    position: relative;
    padding: 0;
}
.lightbox-close-btn {
    position: absolute;
    top: -40px;
    right: 0;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 30px;
}

/* Footer Section */
.footer {
    background-color: var(--nl-primary-green);
    color: #ffffff !important;
    padding: 80px 0 30px 0;
    font-family: var(--font-body);
    font-weight: 300;
}
.footer h4 {
    color: #ffffff !important;
    margin-bottom: 25px;
    font-size: 20px;
    font-weight: 600;
    position: relative;
    padding-bottom: 10px;
}
.footer h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background-color: var(--nl-sunset-orange);
}
.footer-logo,
.footer img,
.footer .custom-logo,
.footer .navbar-logo,
.footer .custom-logo-link img {
    height: 100% !important; /* Big size */
    width: auto !important;
    max-width: 320px !important;
    display: inline-block !important;
    filter: brightness(0) invert(1) !important; /* Make logo white */
    transition: var(--nl-transition);
}
.footer-logo:hover,
.footer img:hover,
.footer .custom-logo:hover,
.footer .navbar-logo:hover {
    transform: scale(1.05);
}
.footer p,
.footer-bottom-text,
.footer span,
.footer li {
    color: #ffffff !important; /* High contrast solid white */
    opacity: 1 !important;
    font-size: 15px;
}
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-links li {
    margin-bottom: 12px;
}
.footer a,
.footer-links a,
.footer-contact-item a,
.footer .text-white-50 {
    color: #ffffff !important; /* High contrast solid white */
    opacity: 1 !important;
    font-size: 15px;
    transition: var(--nl-transition);
}
.footer a:hover,
.footer-links a:hover,
.footer-contact-item a:hover,
.footer .text-white-50:hover {
    color: var(--nl-sand-beige) !important; /* Elegant hover */
    opacity: 1 !important;
}
.footer-links a:hover {
    padding-left: 5px;
}
.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 15px;
    color: #ffffff !important;
}
.footer-contact-item i {
    color: var(--nl-sunset-orange);
    font-size: 18px;
    margin-top: 3px;
}
.footer-bottom {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}
.footer-bottom-text {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8); /* High visibility white */
    margin-bottom: 0;
}
.footer-legal-links {
    transition: all 0.3s ease;
}
@media (min-width: 768px) {
    .footer-legal-links {
        padding-right: 110px !important;
    }
}
.footer-socials {
    display: flex;
    gap: 10px;
}
.footer-social-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.05);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: var(--nl-transition);
}
.footer-social-btn:hover {
    background-color: var(--nl-sunset-orange);
    color: #fff;
    transform: translateY(-3px);
}

/* Floating Premium WhatsApp Widget */
.whatsapp-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 15px;
}

.whatsapp-label {
    background-color: #fff;
    color: var(--nl-primary-green);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    opacity: 0;
    transform: translateX(20px);
    transition: var(--nl-transition);
    pointer-events: none;
}

.whatsapp-widget:hover .whatsapp-label {
    opacity: 1;
    transform: translateX(0);
}

.whatsapp-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #25D366;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    animation: whatsapp-glow 2s infinite;
    cursor: pointer;
    transition: var(--nl-transition);
}
.whatsapp-btn:hover {
    background-color: #20ba59;
    transform: scale(1.1) rotate(15deg);
    color: #fff;
}

@keyframes whatsapp-glow {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Toast styling for notifications */
.toast-custom {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 1100;
    background-color: var(--nl-primary-green);
    color: #fff;
    padding: 15px 25px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.25);
    display: flex;
    align-items: center;
    gap: 12px;
    transform: translateY(100px);
    opacity: 0;
    transition: var(--nl-transition);
}
.toast-custom.show {
    transform: translateY(0);
    opacity: 1;
}
.toast-custom-icon {
    font-size: 20px;
}
.toast-custom-icon.success {
    color: #25D366;
}
.toast-custom-icon.error {
    color: var(--nl-sunset-orange);
}

/* ==========================================================================
   NATURELUST PREMIUM SCROLL-REVEAL SYSTEM
   ========================================================================== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s cubic-bezier(0.165, 0.84, 0.44, 1), transform 1s cubic-bezier(0.165, 0.84, 0.44, 1);
    will-change: transform, opacity;
}
.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered Delay classes for lists and grids */
.reveal-delay-1 { transition-delay: 0.15s; }
.reveal-delay-2 { transition-delay: 0.3s; }
.reveal-delay-3 { transition-delay: 0.45s; }
.reveal-delay-4 { transition-delay: 0.6s; }

/* Scale Reveal variations (great for galleries and circular images) */
.reveal-scale {
    opacity: 0;
    transform: scale(0.95) translateY(20px);
    transition: opacity 1s cubic-bezier(0.165, 0.84, 0.44, 1), transform 1s cubic-bezier(0.165, 0.84, 0.44, 1);
    will-change: transform, opacity;
}
.reveal-scale.active {
    opacity: 1;
    transform: scale(1) translateY(0);
}

/* Premium Blur Scale Reveal - liquid smooth blur & scale effect */
.reveal-blur-scale {
    opacity: 0;
    filter: blur(12px);
    transform: scale(0.92) translateY(25px);
    transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1), 
                filter 1.2s cubic-bezier(0.16, 1, 0.3, 1), 
                transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform, opacity, filter;
}
.reveal-blur-scale.active {
    opacity: 1;
    filter: blur(0);
    transform: scale(1) translateY(0);
}


/* Premium Dropdown Menus for Desktop */
@media (min-width: 992px) {
    .navbar .dropdown:hover .dropdown-menu {
        display: block;
        margin-top: 0;
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
    
    .navbar .dropdown-menu {
        display: block;
        opacity: 0;
        visibility: hidden;
        transform: translateY(10px);
        transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        border: 1px solid rgba(14, 61, 47, 0.08);
        border-radius: 12px;
        box-shadow: 0 10px 30px rgba(14, 61, 47, 0.1);
        padding: 10px 0;
    }
    
    .navbar .dropdown-item {
        font-family: var(--font-body);
        font-size: 15px;
        font-weight: 500;
        color: var(--nl-primary-green);
        padding: 8px 24px;
        transition: var(--nl-transition);
    }

    .navbar .dropdown-item:hover,
    .navbar .dropdown-item.active {
        background-color: var(--nl-sand-beige);
        color: var(--nl-sunset-orange) !important;
        padding-left: 28px;
    }
}

/* ==========================================================================
   FOUNDER-LED HOMEPAGE REDESIGN STYLES
   ========================================================================== */

/* Signature Cursive Font */
@import url('https://fonts.googleapis.com/css2?family=Caveat:wght@600&display=swap');
.font-signature {
    font-family: 'Caveat', cursive;
    font-size: 2rem;
    color: var(--nl-sunset-orange);
    display: inline-block;
    margin-top: 0;
}

/* Background Video styling */
.hero-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -2;
}
.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Why Travel with Me Section */
.feature-me-card {
    background: #fff;
    border-radius: var(--nl-border-radius);
    padding: 40px 30px;
    box-shadow: var(--nl-box-shadow);
    border: 1px solid rgba(14, 61, 47, 0.04);
    height: 100%;
    transition: var(--nl-transition);
}
.feature-me-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--nl-box-shadow-hover);
}

/* Social Grid Masonry Wall */
.social-wall-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
@media (max-width: 991px) {
    .social-wall-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 576px) {
    .social-wall-grid {
        grid-template-columns: 1fr;
    }
}
.social-wall-item {
    position: relative;
    border-radius: var(--nl-border-radius);
    overflow: hidden;
    height: 280px;
    box-shadow: var(--nl-box-shadow);
    transition: var(--nl-transition);
}
.social-wall-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--nl-transition);
}
.social-wall-item:hover img {
    transform: scale(1.08);
}
.social-wall-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(11, 76, 44, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--nl-transition);
    color: #fff;
    font-size: 2rem;
}
.social-wall-item:hover .social-wall-overlay {
    opacity: 1;
}

/* Bali through my lens Journal Cards */
.journal-card {
    background: #fff;
    border-radius: var(--nl-border-radius);
    overflow: hidden;
    box-shadow: var(--nl-box-shadow);
    border: 1px solid rgba(14, 61, 47, 0.04);
    height: 100%;
    transition: var(--nl-transition);
}
.journal-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--nl-box-shadow-hover);
}
.journal-img-wrap {
    height: 240px;
    overflow: hidden;
    position: relative;
}
.journal-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--nl-transition);
}
.journal-card:hover .journal-img {
    transform: scale(1.06);
}
.journal-content {
    padding: 30px;
}
.journal-date {
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--nl-sunset-orange);
    margin-bottom: 8px;
    display: block;
}
.journal-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--nl-primary-green);
    margin-bottom: 12px;
}
.journal-note {
    font-size: 14px;
    font-style: italic;
    color: #666;
    border-left: 3px solid var(--nl-sunset-orange);
    padding-left: 15px;
    margin-top: 15px;
}

/* Personal Video Invitation section */
.invitation-video-box {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    height: 480px;
    box-shadow: var(--nl-box-shadow-hover);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
}
.invitation-video-box img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}
.invitation-video-box::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(180deg, rgba(14,61,47,0.15) 0%, rgba(14,61,47,0.55) 100%);
    z-index: 2;
}
.invitation-content {
    position: relative;
    z-index: 3;
    max-width: 600px;
    padding: 20px;
}
.play-btn-pulse {
    width: 90px;
    height: 90px;
    background: #fff;
    color: var(--nl-primary-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 25px auto;
    cursor: pointer;
    box-shadow: 0 0 0 0 rgba(255,255,255,0.7);
    animation: play-pulse 1.8s infinite;
    transition: var(--nl-transition);
}
.play-btn-pulse:hover {
    background: var(--nl-sunset-orange);
    color: #fff;
    transform: scale(1.1);
}
@keyframes play-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255,255,255,0.7);
    }
    70% {
        box-shadow: 0 0 0 20px rgba(255,255,255,0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255,255,255,0);
    }
}

/* Hero Video Autoplay Detection Styles */
/* Disabled to support multi-slide carousel image backgrounds */
/*
.hero-section.video-playing .carousel-inner .carousel-item {
    background: none !important;
}
*/

/* Premium 3D Flip Card Container */
.flip-card {
    background-color: transparent;
    perspective: 1000px;
    height: 380px;
    margin-bottom: 10px;
}

.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform-style: preserve-3d;
    box-shadow: var(--nl-box-shadow);
    border-radius: var(--nl-border-radius);
}

.flip-card:hover .flip-card-inner {
    transform: rotateY(180deg);
}

.flip-card-front, .flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    border-radius: var(--nl-border-radius);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 30px;
}

.flip-card-front {
    background-size: cover;
    background-position: center;
    color: #fff;
}

.flip-card-front::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(180deg, rgba(11, 76, 44, 0.02) 0%, rgba(11, 76, 44, 0.3) 100%);
    z-index: 1;
}

.flip-card-front-content {
    position: relative;
    z-index: 2;
}

.flip-card-front .category-icon {
    font-size: 3rem;
    color: var(--nl-sunset-orange);
    margin-bottom: 20px;
    background: rgba(255, 255, 255, 0.15);
    width: 90px;
    height: 90px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255,255,255,0.25);
    margin-left: auto;
    margin-right: auto;
    transition: var(--nl-transition);
}

.flip-card-front .category-title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: #fff !important;
    font-weight: 700;
    margin-bottom: 10px;
}

.flip-card-hint {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 15px;
}

.flip-card-back {
    background: linear-gradient(135deg, var(--nl-primary-green) 0%, #176B41 100%);
    color: #fff;
    transform: rotateY(180deg);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.flip-card-back .category-title {
    font-size: 1.6rem;
    color: var(--nl-sunset-orange) !important;
    margin-bottom: 15px;
}

.flip-card-back p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.5;
    margin-bottom: 25px;
}

.flip-card-back .btn-discover {
    background-color: var(--nl-sunset-orange);
    color: #fff;
    border: none;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 10px 24px;
    border-radius: 50px;
    transition: var(--nl-transition);
    text-decoration: none;
}

.flip-card-back .btn-discover:hover {
    background-color: #fff;
    color: var(--nl-primary-green);
    transform: translateY(-2px);
}

/* Floating Premium Blog Widget */
.blog-widget {
    position: fixed;
    bottom: 105px;
    right: 30px;
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none !important;
}

.blog-label {
    background-color: #fff;
    color: var(--nl-primary-green);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    opacity: 0;
    transform: translateX(20px);
    transition: var(--nl-transition);
    pointer-events: none;
    white-space: nowrap;
}

.blog-widget:hover .blog-label {
    opacity: 1;
    transform: translateX(0);
}

.blog-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--nl-primary-green);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    box-shadow: 0 8px 25px rgba(11, 76, 44, 0.4);
    cursor: pointer;
    transition: var(--nl-transition);
}

.blog-btn:hover {
    background-color: var(--nl-sunset-orange);
    transform: scale(1.1) rotate(-10deg);
    color: #fff;
    box-shadow: 0 8px 25px rgba(224, 114, 53, 0.4);
}

/* Hide floating blog widget on the blog page itself */
.blog-page .blog-widget {
    display: none !important;
}

/* NatureLust Orange Card Theme for Tour Products (Rafting & ATV, Motorbikes, Golf, Diving) */
.flip-card-orange .flip-card-front::after {
    background: linear-gradient(180deg, rgba(231, 111, 81, 0.02) 0%, rgba(231, 111, 81, 0.3) 100%) !important;
}

.flip-card-orange .flip-card-front .category-icon {
    color: #ffffff !important;
    border-color: rgba(255, 255, 255, 0.4) !important;
}

.flip-card-orange .flip-card-back {
    background: linear-gradient(135deg, var(--nl-sunset-orange) 0%, #d4593b 100%) !important;
}

.flip-card-orange .flip-card-back .category-title {
    color: #ffffff !important;
}

.flip-card-orange .flip-card-back .btn-discover {
    background-color: #ffffff !important;
    color: var(--nl-sunset-orange) !important;
}

.flip-card-orange .flip-card-back .btn-discover:hover {
    background-color: var(--nl-primary-green) !important;
    color: #ffffff !important;
}

/* Category Card static orange design for index_2.html */
.category-card-orange {
    background: linear-gradient(135deg, var(--nl-sunset-orange) 0%, #d4593b 100%) !important;
    color: #ffffff !important;
}

.category-card-orange::before {
    background-color: #ffffff !important;
}

.category-card-orange .category-icon {
    background-color: rgba(255, 255, 255, 0.2) !important;
    color: #ffffff !important;
}

.category-card-orange .category-title {
    color: #ffffff !important;
}

.category-card-orange .category-desc {
    color: rgba(255, 255, 255, 0.9) !important;
}

.category-card-orange a {
    color: #ffffff !important;
}

.category-card-orange a:hover {
    color: var(--nl-primary-green) !important;
}

/* Premium Zoom & Slide-Up Experience Card Styles */
.experience-card {
    position: relative;
    height: 380px;
    border-radius: var(--nl-border-radius);
    overflow: hidden;
    margin-bottom: 24px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.experience-card-bg {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.8s cubic-bezier(0.25, 1, 0.35, 1);
    z-index: 1;
}

.experience-card:hover .experience-card-bg {
    transform: scale(1.08);
}

.experience-card-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 60%, rgba(0, 0, 0, 0.6) 100%);
    transition: opacity 0.5s ease;
    z-index: 2;
}

.experience-card-overlay-hover {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(180deg, rgba(11, 76, 44, 0.55) 0%, rgba(11, 76, 44, 0.8) 55%, rgba(11, 76, 44, 0.95) 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 2;
}

.experience-card:hover .experience-card-overlay-hover {
    opacity: 1;
}

/* Orange cards gradient overlays */
.experience-card-orange .experience-card-overlay-hover {
    background: linear-gradient(180deg, rgba(231, 111, 81, 0.55) 0%, rgba(231, 111, 81, 0.8) 55%, rgba(231, 111, 81, 0.95) 100%);
}

.experience-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 3;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.experience-card-title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: #ffffff !important;
    font-weight: 700;
    margin-bottom: 0px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    transition: color 0.3s ease, margin-bottom 0.5s cubic-bezier(0.25, 1, 0.35, 1);
}

.experience-card:hover .experience-card-title {
    color: var(--nl-sunset-orange) !important;
    margin-bottom: 15px;
}

/* Rafting, Motorbike, Yacht, Golf (Orange cards) title hover colors */
.experience-card-orange:hover .experience-card-title {
    color: #ffffff !important;
}

.experience-card-details {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transform: translateY(15px);
    transition: max-height 0.5s cubic-bezier(0.25, 1, 0.35, 1), opacity 0.4s ease, transform 0.5s cubic-bezier(0.25, 1, 0.35, 1);
}

.experience-card:hover .experience-card-details {
    max-height: 200px;
    opacity: 1;
    transform: translateY(0);
}

.experience-card-description {
    color: rgba(255, 255, 255, 0.95);
    font-size: 0.95rem;
    font-weight: 300;
    line-height: 1.5;
    margin-bottom: 20px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.experience-card .btn-discover {
    display: inline-block;
    background-color: var(--nl-sunset-orange);
    color: #ffffff !important;
    border: none;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 10px 24px;
    border-radius: 50px;
    transition: var(--nl-transition);
    text-decoration: none;
    width: fit-content;
}

.experience-card .btn-discover:hover {
    background-color: #ffffff !important;
    color: var(--nl-primary-green) !important;
    transform: translateY(-2px);
}

/* Orange card button overrides */
.experience-card-orange .btn-discover {
    background-color: #ffffff !important;
    color: var(--nl-sunset-orange) !important;
}

.experience-card-orange .btn-discover:hover {
    background-color: var(--nl-primary-green) !important;
    color: #ffffff !important;
}

/* Glassmorphism Slide-Up Reveal Card Styles */
.promise-card {
    position: relative;
    height: 380px;
    border-radius: var(--nl-border-radius);
    overflow: hidden;
    box-shadow: var(--nl-box-shadow);
    margin-bottom: 24px;
    background-color: var(--nl-primary-green);
    border: 1px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
}

.promise-card-bg {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.8s cubic-bezier(0.25, 1, 0.35, 1);
    z-index: 1;
}

.promise-card:hover .promise-card-bg {
    transform: scale(1.1) rotate(0.5deg);
}

.promise-card-glass-panel {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 75px; /* Shows only the title at the bottom in default state */
    background: rgba(255, 255, 255, 0.82);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-top: 1px solid rgba(255, 255, 255, 0.35);
    z-index: 2;
    padding: 22px 30px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    transition: height 0.6s cubic-bezier(0.25, 1, 0.35, 1), background-color 0.4s ease;
}

.promise-card:hover .promise-card-glass-panel {
    height: 100%; /* Cover card on hover */
    background: rgba(255, 255, 255, 0.94);
    justify-content: center;
}

.promise-card-title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--nl-primary-green) !important;
    font-weight: 700;
    margin-bottom: 0px;
    transition: color 0.3s ease, margin-bottom 0.4s ease;
}

.promise-card:hover .promise-card-title {
    color: var(--nl-sunset-orange) !important;
    margin-bottom: 15px;
}

.promise-card-details {
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: opacity 0.4s ease 0.1s, transform 0.4s ease 0.1s, visibility 0.4s;
}

.promise-card:hover .promise-card-details {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.promise-card-description {
    color: #2b2b2b !important;
    font-size: 0.95rem;
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 0px;
    text-shadow: none;
}

/* Global override for Bootstrap small font size */
small, .small {
    font-size: 1rem !important;
}

/* Global override for Bootstrap display-5 font size */
@media (min-width: 1200px) {
    .display-5 {
        font-size: 2.4rem !important;
    }
    .navbar .nav-link {
        font-size: 16px !important;
        padding-left: 14px !important;
        padding-right: 14px !important;
    }
}

.fw-bold {
    /* font-weight: 700 !important; */
}







