/**
 * Nagarahole National Park & Tiger Reserve
 * Master External Stylesheet - Assets/css/style.css
 */
/* ==========================================
   1. CORE DESIGN SYSTEM & ROOT VARIABLES
   ========================================== */
:root {
    --nnp-primary: #1B5E20;
    --nnp-primary-dark: #144718;
    --nnp-primary-light: #66BB6A;

    --nnp-emerald: #66BB6A;
    --nnp-accent: #66BB6A;
    --nnp-accent-gold: #A5D6A7;
    --nnp-soft-green: #A5D6A7;
    --nnp-vibrant-green: #66BB6A;

    --nnp-orange: #e76f51;

    --nnp-sand: #E8F5E9;
    --nnp-dark: #0d2610;
    --nnp-light: #E8F5E9;

    --nnp-gray: #4a5568;
    --nnp-gray-light: #E8F5E9;

    --nnp-border: #A5D6A7;

    /* Minimal Shadow */
    --nnp-shadow: 0 4px 16px rgba(27, 94, 32, 0.08);

    --nnp-font-heading: 'Playfair Display', Georgia, serif;
    --nnp-font-body: 'Plus Jakarta Sans',
        -apple-system,
        BlinkMacSystemFont,
        sans-serif;
    --nnp-font-brand: 'Cinzel', serif;
}


body {
    font-family: var(--nnp-font-body);
    background-color: var(--nnp-light);
    color: #1e293b;
    line-height: 1.6;
    overflow-x: hidden;
}

.main-heading {
    font-size: clamp(1.5rem, 3.5vw, 2rem);
    font-weight: 700;
    color: var(--nnp-primary);
    line-height: 1.3;
    font-family: var(--nnp-font-heading);
}

.sub-heading {
    font-size: clamp(1.2rem, 2.8vw, 1.5rem);
    font-weight: 700;
    color: var(--nnp-primary);
    line-height: 1.35;
    font-family: var(--nnp-font-heading);
}

p {
    text-align: justify;
    font-size: 15px;
    font-weight: 400;
    color: var(--nnp-dark);
    line-height: 27px;
}




.top-bar {
    background-color: var(--nnp-dark, #0d2610);
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.84rem;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 1001;
}

.top-bar-container {
    max-width: 1360px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.top-bar-info {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.top-bar-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.84rem;
    color: rgba(255, 255, 255, 0.85);
}

.top-bar-item i {
    color: var(--nnp-emerald, #66BB6A);
    font-size: 0.88rem;
}

.status-badge {
    background: rgba(46, 125, 50, 0.25);
    color: #4ade80;
    border: 1px solid rgba(74, 222, 128, 0.35);
    padding: 3px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    text-transform: uppercase;
}

.status-badge .dot {
    width: 8px;
    height: 8px;
    background-color: #4ade80;
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 10px #4ade80;
    animation: pulse-dot 2s infinite;
}



.top-bar-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.top-bar-link {
    color: rgba(255, 255, 255, 0.88);
    text-decoration: none;
    transition: all 0.25s ease;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 0.84rem;
}

.top-bar-link i {
    color: var(--nnp-emerald, #66BB6A);
}

.top-bar-link:hover {
    color: var(--nnp-accent-gold, #A5D6A7);
    transform: translateY(-1px);
}


.site-header {
    position: relative;
    z-index: 1000;

    margin-bottom: -75px;

}

.site-header.scrolled {
    position: sticky;
    top: 10px;
    margin-top: 0;
    margin-bottom: -75px;
    padding: 0;
}

.header-outer-container {
    max-width: 1360px;
    margin: 0 auto;
    padding: 0 24px;
}

.header-navbar-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 10px 24px;
    background: rgba(255, 255, 255, 0.95);
    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
    border-radius: 10px;
    border: 1px solid rgba(27, 94, 32, 0.14);
    box-shadow: var(--nnp-shadow);

}


.brand-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    transition: transform 0.25s ease;
}



.brand-logo-img {
    max-height: 50px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    transition: max-height 0.3s ease;
}

.site-header.scrolled .brand-logo-img {
    max-height: 42px;
}

.main-nav {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 6px;
    margin: 0;
    padding: 0;
}

.nav-item {
    position: relative;
}

.nav-link,
.nav-list .nav-link,
.nav-item .nav-link {
    color: #1b471e !important;
    text-decoration: none !important;
    padding: 9px 16px !important;
    font-size: 0.94rem !important;
    font-weight: 600 !important;
    border-radius: 10px !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 7px !important;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    background: transparent !important;
}

.nav-link:hover,
.nav-list .nav-link:hover {
    color: var(--nnp-primary, #1B5E20) !important;
    background: rgba(27, 94, 32, 0.08) !important;
    transform: translateY(-1px);
}

.nav-item.active .nav-link,
.nav-list .nav-item.active .nav-link {
    color: #ffffff !important;
    background: linear-gradient(135deg, #1B5E20 0%, #2E7D32 100%) !important;
    box-shadow: 0 4px 14px rgba(27, 94, 32, 0.28);
}

.nav-item.active .nav-link i,
.nav-list .nav-item.active .nav-link i {
    color: #ffffff !important;
}

.nav-badge {
    background: linear-gradient(135deg, #e76f51, #f4a261);
    color: #ffffff;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 2px 7px;
    border-radius: 20px;
    letter-spacing: 0.5px;
    margin-left: 4px;
    box-shadow: 0 2px 6px rgba(231, 111, 81, 0.3);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 14px;
}

.cta-safari-btn {
    background: linear-gradient(135deg, #1B5E20 0%, #144718 100%);
    color: #ffffff !important;
    font-family: var(--nnp-font-body);
    font-weight: 700;
    font-size: 0.9rem;
    padding: 9px 20px;
    border-radius: 10px;
    text-decoration: none !important;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 14px rgba(27, 94, 32, 0.28);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid rgba(165, 214, 167, 0.5);
    cursor: pointer;
}

.cta-safari-btn:hover {
    background: linear-gradient(135deg, #2E7D32 0%, #1B5E20 100%);
    color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(27, 94, 32, 0.38);
    border-color: #66BB6A;
}

.mobile-menu-toggle {
    display: none;
    background: linear-gradient(135deg, #1B5E20, #144718);
    border: 1px solid #A5D6A7;
    color: #ffffff;
    width: 42px;
    height: 42px;
    border-radius: 10px;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
    background: #66BB6A;
    border-color: #66BB6A;
}

@media (max-width: 991.98px) {
    .main-nav {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .header-navbar-card {
        padding: 8px 16px;
    }


}

.mobile-drawer {
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    max-width: 85vw;
    height: 100vh;
    background: var(--nnp-primary-dark);
    z-index: 2000;
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.6);
    border-left: 1px solid var(--nnp-border);
    overflow-y: auto;
}

.mobile-drawer.active {
    right: 0;
}

.mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    z-index: 1999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-overlay.active {
    opacity: 1;
    visibility: visible;
}

.drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--nnp-border);
    margin-bottom: 20px;
}

.drawer-close-btn {
    background: none;
    border: none;
    color: #ffffff;
    font-size: 1.4rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.drawer-close-btn:hover {
    color: var(--nnp-accent-gold);
}

.mobile-nav-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mobile-nav-link {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    padding: 12px 14px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-weight: 500;
    font-size: 0.98rem;
    transition: all 0.3s ease;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
    background: rgba(255, 255, 255, 0.08);
    color: var(--nnp-accent-gold);
}

.mobile-subnav {
    list-style: none;
    padding-left: 16px;
    margin-top: 4px;
    display: none;
}

.mobile-subnav.open {
    display: block;
}

.mobile-subnav-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    padding: 8px 12px;
    display: block;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.mobile-subnav-link:hover {
    color: #ffffff;
}

.drawer-footer {
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid var(--nnp-border);
}


.hero-section {
    position: relative;
    min-height: 85vh;
    background:
        url('../images/lion01.avif') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    padding: 140px 24px 100px 24px;
    text-align: center;
}

@media (max-width: 768px) {
    .hero-section {
        padding: 80px 16px 60px 16px;
        min-height: 30vh;
    }
}

.bg-about {
    min-height: 65vh;
    background: url('../images/Lap01.avif') center/cover no-repeat;
    position: relative;
    z-index: 0;
    color: #ffffff;
    text-align: center;

}

.bg-zone {
    background: #ffffff url(../images/bg-zone.jpeg) left center;
    position: relative;
    padding: 40px 0px;
    background-repeat: no-repeat;
    background-size: contain;
}

/* Best Time to Visit Section Styles */
#best-time .best-time-ul {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

#best-time .best-time-li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background-color: #f8faf8;
    border: 1px solid #e2ece2;
    padding: 14px 18px;
    color: #2c3e50;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

#best-time .best-time-li span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    min-width: 40px;
    color: #080707;
    border-radius: 50%;
    margin-top: 2px;
    border: 1px solid #1f1e1e;
}

#best-time .best-time-li span i {
    font-size: 0.85rem;
}

#best-time p {
    color: #1B5E20;
    font-weight: 600;
    font-size: 0.95rem;
    line-height: 1.6;
    background: #E8F5E9;
    padding: 14px 18px;
    border-radius: 8px;
    border-left: 4px solid #2E7D32;
    margin-top: 20px;
}

#best-time img {
    width: 100%;
    height: auto;
    max-height: 440px;
    object-fit: cover;
}

.container {
    max-width: 1320px;
    margin: 0 auto;
}

.wildlife-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.wildlife-card {
    position: relative;
    overflow: hidden;
    height: 320px;
    box-shadow: 0 10px 2px rgba(27, 94, 32, 0.1);
    border: 1px solid #A5D6A7;
}

.wildlife-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.wildlife-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(27, 94, 32, 0.95) 100%);
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    color: #ffffff;
}

.wildlife-name {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 4px;
    font-family: var(--nnp-font-heading);
}

.wildlife-status {
    color: #A5D6A7;
    font-size: 15px;
    font-weight: 600;
}

.history-list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.history-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 16px 20px;
    background: #f8faf8;
    border-left: 4px solid #1B5E20;
    border-radius: 0 8px 8px 0;
    transition: background-color 0.2s ease;
}

.history-item:hover {
    background: #eef7ee;
}

.history-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    background: #E8F5E9;
    color: #1B5E20;
    border: 1px solid #A5D6A7;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    margin-top: 2px;
}

.history-content {
    flex: 1;
}

.history-title {
    font-family: var(--nnp-font-heading, 'Playfair Display', Georgia, serif);
    font-size: 20px;
    color: #1B5E20;
    margin-bottom: 6px;
    font-weight: 700;
}

.history-desc {
    color: #475569;
    font-size: 15px;
    line-height: 25px;
    margin: 0;
}

.nearby-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    margin-top: 30px;
}

.nearby-card {
    background: #ffffff;
    border-radius: 0 !important;
    padding: 0;
    border: 1px solid #d0e4d0;
    border-top: 4px solid #1B5E20;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    position: relative;
}

.nearby-img {
    position: relative;
    width: 100%;
    height: 190px;
    overflow: hidden;
}

.nearby-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0 !important;
}

.nearby-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: #1B5E20;
    color: #ffffff;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
    border-radius: 0 !important;
    transition: background-color 0.3s ease;
}

.nearby-card:hover .nearby-badge {
    background: #2E7D32;
}

.nearby-card-body {
    padding: 22px 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.nearby-place-name {
    font-family: var(--nnp-font-heading, 'Playfair Display', Georgia, serif);
    font-size: 1.25rem;
    font-weight: 700;
    color: #1B5E20;
    margin-bottom: 8px;
}

.nearby-desc {
    color: #475569;
    font-size: 0.92rem;
    line-height: 1.65;
    margin: 0;
}

.nearby-place-name i {
    color: #66BB6A;
    font-size: 1rem;
}

.nearby-desc {
    color: #475569;
    font-size: 0.92rem;
    line-height: 1.6;
}

/* ==========================================
   TABLE & LIST STYLES (HOME PAGE REFERENCE)
   ========================================== */

/* Custom NNP Table Container */
.nnp-table-container {
    background: #ffffff;
    border: 1px solid #C8E6C9;
    border-left: 4px solid #1B5E20;
    border-radius: 0 !important;
    box-shadow: 0 4px 15px rgba(27, 94, 32, 0.05);
    overflow-x: auto;
    margin-bottom: 20px;
}

.nnp-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    font-size: 0.95rem;
}

.nnp-table thead tr {
    background: #1B5E20;
    color: #ffffff;
}

.nnp-table th {
    padding: 16px 20px;
    font-family: var(--nnp-font-heading, 'Playfair Display', Georgia, serif);
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.3px;
    border: none;
}

.nnp-table td {
    padding: 16px 20px;
    color: #334155;
    border-bottom: 1px solid #e2e8f0;
    transition: background-color 0.2s ease;
}

.nnp-table tbody tr:last-child td {
    border-bottom: none;
}

.nnp-table tbody tr:nth-child(even) {
    background: #f8faf8;
}

.nnp-table tbody tr:hover td {
    background: #eef7ee;
}

/* Custom Procedure & Info List (Home Page Inspired) */
.nnp-proc-list {
    list-style: none;
    padding: 0;
    margin: 0 0 24px 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.nnp-proc-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background-color: #f8faf8;
    border: 1px solid #e2ece2;
    border-left: 4px solid #1B5E20;
    border-radius: 0 !important;
    padding: 16px 20px;
    color: #2c3e50;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
    box-shadow: 0 2px 8px rgba(27, 94, 32, 0.04);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.nnp-proc-item:hover {
    transform: translateX(4px);
    box-shadow: 0 4px 14px rgba(27, 94, 32, 0.08);
    background-color: #ffffff;
}

.nnp-proc-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    min-width: 36px;
    background-color: #E8F5E9;
    color: #1B5E20;
    border: 1px solid #A5D6A7;
    border-radius: 50%;
    margin-top: 2px;
    font-size: 0.9rem;
}

.nnp-proc-content {
    flex: 1;
}

.nnp-proc-content strong {
    color: #1B5E20;
    font-weight: 700;
}

/* ==========================================
   5. FOOTER STYLES
   ========================================== */
.site-footer {
    background: linear-gradient(180deg, #0b1a0e 0%, #050d07 100%);
    color: rgba(255, 255, 255, 0.8);
    padding-top: 60px;
    padding-bottom: 24px;
    position: relative;
    border-top: 1px solid #A5D6A7;
    font-family: var(--nnp-font-body, 'Plus Jakarta Sans', sans-serif);
}

.footer-container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 24px 50px 24px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.3fr;
    gap: 40px;
}

.footer-col-title {
    color: #ffffff;
    font-family: var(--nnp-font-heading, 'Playfair Display', Georgia, serif);
    font-size: 1.2rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 36px;
    height: 3px;
    background: #A5D6A7;
    border-radius: 2px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    text-decoration: none;
}

.footer-logo-icon {
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, #2d5a37, #0f2316);
    border: 2px solid #A5D6A7;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #A5D6A7;
    font-size: 1.2rem;
}

.footer-brand-title {
    font-family: 'Cinzel', serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 1px;
}

.footer-brand-title span {
    color: #A5D6A7;
}

.footer-desc {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 24px;
}

.footer-socials {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid #A5D6A7;
    border-radius: 10px;
    color: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #66BB6A;
    color: #ffffff;
    border-color: #66BB6A;
    transform: translateY(-3px);
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-link-item a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s ease;
}

.footer-link-item a i {
    color: #A5D6A7;
    font-size: 0.7rem;
    transition: transform 0.2s ease;
}

.footer-link-item a:hover {
    color: #ffffff;
    padding-left: 6px;
}

.footer-link-item a:hover i {
    transform: translateX(3px);
}

.timing-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid #A5D6A7;
    border-radius: 12px;
    padding: 14px 16px;
    margin-bottom: 18px;
}

.timing-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    padding: 4px 0;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
}

.timing-row:last-child {
    border-bottom: none;
}

.contact-info-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.75);
}

.contact-info-item i {
    color: #A5D6A7;
    font-size: 1rem;
    margin-top: 3px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(0, 0, 0, 0.25);
}

.footer-legal-links {
    display: inline-flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 12px;
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
    font-size: 0.86rem;
}

@media (max-width: 991px) {
    .footer-legal-links {
        justify-content: center;
        margin-top: 8px;
    }
}

.footer-legal-links a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: all 0.2s ease;
}

.footer-legal-links a:hover {
    color: #e9c46a;
    text-decoration: underline;
}

.footer-legal-links .divider {
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.8rem;
}

.footer-legal-links .designer-credit {
    color: rgba(255, 255, 255, 0.85);
}

.footer-legal-links .designer-credit a {
    color: #e9c46a;
    font-weight: 600;
    text-decoration: underline;
}

.back-to-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    background: #1B5E20;
    border: 2px solid #A5D6A7;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
}

.back-to-top-btn.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top-btn:hover {
    background: #66BB6A;
    color: #ffffff;
    transform: translateY(-4px);
    border-color: #66BB6A;
}

@media (max-width: 991px) {

    .header-outer-container {
        padding: 0 16px;
    }

    .header-skew-bar {
        padding: 8px 16px;
    }

    .header-skew-bar::before {
        transform: none !important;
        border-radius: 8px;
    }

    .main-nav {
        display: none !important;
    }

    .mobile-menu-toggle {
        display: flex !important;
    }

    .top-bar-info {
        gap: 12px;
    }

    .top-bar-item:nth-child(3) {
        display: none;
    }

    .brand-logo-img {
        max-height: 42px;
    }

    .cta-safari-btn {
        padding: 7px 14px;
        font-size: 0.84rem;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .footer-bottom-container {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }

    .footer-legal-links {
        flex-direction: column;
        gap: 10px;
        text-align: center;
        align-items: center;
    }

    .mobile-drawer {
        width: 88%;
        max-width: 320px;
    }

    .back-to-top-btn {
        bottom: 20px;
        right: 20px;
        width: 42px;
        height: 42px;
    }
}

@media (max-width: 576px) {
    .top-bar-container {
        flex-direction: column;
        gap: 4px;
        padding: 4px 12px;
    }

    .top-bar-info {
        justify-content: center;
        flex-wrap: wrap;
    }

    .top-bar-actions {
        justify-content: center;
        font-size: 0.78rem;
    }

    .header-skew-bar {
        padding: 6px 12px;
    }

    .brand-logo-img {
        max-height: 36px;
    }

    .cta-safari-btn {
        padding: 6px 10px;
        font-size: 0.78rem;
    }
}


.page-hero-banner {
    position: relative;
    background: linear-gradient(180deg, rgba(15, 37, 22, 0.88), rgba(10, 24, 15, 0.94)),
        url('https://images.unsplash.com/photo-1544551763-46a013bb70d5?auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
    padding: 130px 24px 70px 24px;
    color: #ffffff;
    text-align: center;
}

.page-hero-container {
    max-width: 900px;
    margin: 0 auto;
}

.page-hero-badge {
    display: inline-block;
    background: rgba(233, 196, 106, 0.18);
    border: 1px solid rgba(233, 196, 106, 0.4);
    color: #e9c46a;
    padding: 6px 18px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.page-hero-title {
    font-family: var(--nnp-font-heading, 'Playfair Display', Georgia, serif);
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 16px 0;
    line-height: 1.2;
}

.page-hero-subtitle {
    font-size: 1.12rem;
    color: rgba(255, 255, 255, 0.88);
    max-width: 720px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Payment Main Section */
.payment-page-section {
    background-color: #fafbf9;
    padding: 60px 0 90px 0;
}

/* Sidebar Cards */
.pay-sidebar-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 24px;
    margin-bottom: 24px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

.pay-sidebar-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: #0f2516;
    margin-bottom: 14px;
}

.pay-secure-card {
    background: #eaf5ea;
    border: 1px solid #a5d6a7;
    border-radius: 14px;
    padding: 24px;
    margin-bottom: 24px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.pay-secure-icon {
    width: 48px;
    height: 48px;
    background: #ffffff;
    border: 1px solid #81c784;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1b5e20;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.pay-secure-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: #0f2516;
    margin-bottom: 6px;
}

.pay-secure-text {
    font-size: 0.88rem;
    color: #4a5568;
    line-height: 1.5;
    margin: 0;
    text-align: left;
}

.pay-methods-list {
    list-style: none;
    padding: 0;
    margin: 16px 0 0 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.pay-method-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 16px;
    background: #f8faf6;
    border: 1px solid #edf2f7;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #2d3748;
}

.pay-method-item i {
    font-size: 1.1rem;
    width: 24px;
    text-align: center;
}

.pay-help-card {
    background: #0f2516;
    color: #ffffff;
    border-radius: 14px;
    padding: 28px 24px;
    margin-bottom: 24px;
    box-shadow: 0 10px 25px rgba(15, 37, 22, 0.2);
}

.pay-help-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
}

.pay-help-text {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 20px;
    line-height: 1.5;
    text-align: left;
}

.pay-help-link {
    color: #e0a93b;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    transition: all 0.2s ease;
}

.pay-help-link:hover {
    color: #ffffff;
}

.pay-info-links {
    list-style: none;
    padding: 0;
    margin: 14px 0 0 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.pay-info-links a {
    color: #4a5568;
    text-decoration: none;
    font-size: 0.92rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.2s ease;
}

.pay-info-links a:hover {
    color: #1b5e20;
}

/* Main Payment Form Card */
.pay-form-wrapper {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
    overflow: hidden;
}

.pay-form-header {
    background: #0f2516;
    padding: 24px 32px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.pay-header-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(165, 214, 167, 0.3);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #e0a93b;
    font-size: 1.4rem;
    flex-shrink: 0;
}

.pay-header-title {
    font-family: var(--nnp-font-heading, 'Playfair Display', Georgia, serif);
    font-size: 1.4rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 4px 0;
}

.pay-header-subtitle {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.75);
    margin: 0;
}

.pay-form-body {
    padding: 36px 32px;
}

.pay-field-group {
    margin-bottom: 24px;
}

.pay-label {
    font-size: 0.9rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 8px;
    display: block;
}

.pay-label span.req {
    color: #e53e3e;
}

.pay-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.pay-amount-addon {
    background: #0f2516;
    color: #e0a93b;
    font-weight: 700;
    font-size: 1.1rem;
    padding: 12px 18px;
    border-radius: 10px 0 0 10px;
    border: 1px solid #0f2516;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pay-control {
    width: 100%;
    background: #fafafa;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 12px 16px;
    font-size: 0.95rem;
    color: #1a202c;
    outline: none;
    transition: all 0.2s ease;
}

.pay-control-amount {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.pay-control:focus {
    background: #ffffff;
    border-color: #1b5e20;
    box-shadow: 0 0 0 3px rgba(27, 94, 32, 0.1);
}

select.pay-control {
    appearance: auto;
    cursor: pointer;
}

textarea.pay-control {
    resize: vertical;
}

.pay-btn-submit {
    width: 100%;
    background: #e0a93b;
    color: #0f2516;
    font-weight: 800;
    font-size: 1.05rem;
    letter-spacing: 0.8px;
    padding: 16px;
    border: none;
    border-radius: 10px;
    text-transform: uppercase;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(224, 169, 59, 0.35);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 12px;
}

.pay-btn-submit:hover {
    background: #d49a2a;
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(224, 169, 59, 0.45);
}

@media (max-width: 768px) {
    .page-hero-banner {
        padding: 110px 16px 50px 16px;
    }

    .pay-form-header {
        padding: 20px;
    }

    .pay-form-body {
        padding: 24px 20px;
    }

}


.nnp-sidebar-wrapper {
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: 100%;
}

.nnp-sidebar-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    padding: 24px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
}

.nnp-sidebar-card:hover {
    box-shadow: 0 8px 25px rgba(27, 94, 32, 0.08);
}

.nnp-sidebar-card-header {
    margin-bottom: 20px;
}

.nnp-badge-accent {
    display: inline-block;
    background: rgba(27, 94, 32, 0.1);
    color: #1B5E20;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    padding: 4px 12px;
    margin-bottom: 8px;
}

.nnp-sidebar-title {
    font-family: var(--nnp-font-heading, 'Playfair Display', serif);
    font-size: 1.35rem;
    font-weight: 700;
    color: #0f2316;
    margin: 0 0 4px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.nnp-sidebar-subtitle {
    font-size: 0.85rem;
    color: #64748b;
    margin: 0;
}

.nnp-header-line {
    display: block;
    width: 40px;
    height: 3px;
    background: #1B5E20;
    margin-top: 8px;
}

.nnp-sidebar-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.nnp-form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.nnp-form-row {
    display: flex;
    gap: 12px;
}

.nnp-form-row .half-width {
    flex: 1;
}

.nnp-form-label {
    font-size: 0.82rem;
    font-weight: 600;
    color: #334155;
}

.nnp-input-icon-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.nnp-input-icon {
    position: absolute;
    left: 12px;
    color: #94a3b8;
    font-size: 0.9rem;
    pointer-events: none;
}

.nnp-form-control {
    width: 100%;
    padding: 10px 12px 10px 36px;
    border: 1px solid #cbd5e1;
    background: #f8faf6;
    font-size: 0.9rem;
    color: #0f172a;
    outline: none;
    transition: all 0.2s ease;
}

select.nnp-form-control {
    cursor: pointer;
}

input[type="date"].nnp-form-control,
input[type="number"].nnp-form-control {
    padding-left: 12px;
}

textarea.nnp-form-control {
    padding: 10px 12px;
    resize: vertical;
}

.nnp-form-control:focus {
    background: #ffffff;
    border-color: #1B5E20;
    box-shadow: 0 0 0 3px rgba(27, 94, 32, 0.12);
}

.nnp-sidebar-btn-submit {
    background: linear-gradient(135deg, #1B5E20, #0f2316);
    color: #ffffff;
    font-weight: 700;
    font-size: 0.95rem;
    padding: 12px;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
    margin-top: 4px;
}

.nnp-sidebar-btn-submit:hover {
    background: linear-gradient(135deg, #257a2b, #1b3b22);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(27, 94, 32, 0.25);
}

.nnp-form-alert {
    padding: 10px;
    font-size: 0.85rem;
    text-align: center;
    border-radius: 0;
    margin-top: 8px;
}

.nnp-form-alert.success {
    background: #dcfce7;
    color: #166534;
    border: 1px solid #bbf7d0;
}

.nnp-sidebar-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.nnp-sidebar-links li a {
    display: flex;
    align-items: center;
    padding: 10px 12px;
    color: #334155;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    border-bottom: 1px solid #f1f5f9;
    transition: all 0.2s ease;
}

.nnp-sidebar-links li a i:first-child {
    width: 24px;
    color: #1B5E20;
    font-size: 0.9rem;
}

.nnp-sidebar-links li a span {
    flex: 1;
}

.nnp-sidebar-links li a .arrow-icon {
    font-size: 0.75rem;
    color: #cbd5e1;
    transition: transform 0.2s ease;
}

.nnp-sidebar-links li:hover a {
    background: #f0f7f1;
    color: #1B5E20;
    padding-left: 16px;
}

.nnp-sidebar-links li:hover a .arrow-icon {
    color: #1B5E20;
    transform: translateX(3px);
}

.nnp-sidebar-links li.active a {
    background: #1B5E20;
    color: #ffffff;
    font-weight: 600;
}

.nnp-sidebar-links li.active a i:first-child,
.nnp-sidebar-links li.active a .arrow-icon {
    color: #ffffff;
}

.nnp-timing-card {
    background: linear-gradient(135deg, #0f2316, #1b3b22);
    color: #ffffff;
    border: 1px solid rgba(233, 196, 106, 0.3);
}

.nnp-shift-box {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 16px;
}

.nnp-shift-item {
    display: flex;
    align-items: center;
    gap: 14px;
    background: rgba(255, 255, 255, 0.06);
    padding: 12px 14px;
    border-left: 3px solid #e9c46a;
}

.nnp-shift-item i {
    font-size: 1.2rem;
}

.nnp-shift-item .icon-morning {
    color: #f59e0b;
}

.nnp-shift-item .icon-evening {
    color: #f97316;
}

.nnp-shift-item strong {
    display: block;
    font-size: 0.9rem;
    color: #ffffff;
}

.nnp-shift-item span {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.8);
}

.nnp-timing-note {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    line-height: 1.4;
}

.nnp-contact-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.nnp-contact-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    background: #f8faf6;
    border: 1px solid #e2e8f0;
    text-decoration: none;
    color: #0f172a;
    transition: all 0.2s ease;
}

.nnp-contact-btn i {
    font-size: 1.1rem;
    color: #1B5E20;
    width: 24px;
    text-align: center;
}

.nnp-contact-btn .btn-label {
    display: block;
    font-size: 0.75rem;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nnp-contact-btn .btn-val {
    display: block;
    font-size: 0.88rem;
    color: #0f172a;
}

.nnp-contact-btn:hover {
    background: #1B5E20;
    color: #ffffff;
    border-color: #1B5E20;
}

.nnp-contact-btn:hover i,
.nnp-contact-btn:hover .btn-label,
.nnp-contact-btn:hover .btn-val {
    color: #ffffff;
}

/* ==========================================
   FOOTER SCROLL INQUIRY MODAL STYLES
   ========================================== */
.nnp-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(10, 24, 15, 0.82);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
}

.nnp-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.nnp-modal-container {
    background: #ffffff;
    width: 100%;
    max-width: 580px;
    max-height: 90vh;
    overflow-y: auto;
    border-radius: 0 !important;
    border: 1px solid rgba(233, 196, 106, 0.4);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.45);
    position: relative;
    transform: scale(0.9) translateY(20px);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.nnp-modal-overlay.active .nnp-modal-container {
    transform: scale(1) translateY(0);
}

.nnp-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    border-radius: 0 !important;
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.3);
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.25s ease;
}

.nnp-modal-close:hover {
    background: #e76f51;
    color: #ffffff;
    border-color: #e76f51;
    transform: rotate(90deg);
}

.nnp-modal-header {
    background: linear-gradient(135deg, #0f2316, #1b3b22);
    color: #ffffff;
    padding: 28px 28px 22px 28px;
    position: relative;
    border-bottom: 3px solid #e9c46a;
}

.nnp-modal-header-badge {
    display: inline-block;
    background: rgba(233, 196, 106, 0.2);
    border: 1px solid rgba(233, 196, 106, 0.5);
    color: #e9c46a;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 4px 12px;
    margin-bottom: 8px;
}

.nnp-modal-title {
    font-family: var(--nnp-font-heading, 'Playfair Display', serif);
    font-size: 1.55rem;
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 6px 0;
    line-height: 1.25;
}

.nnp-modal-subtitle {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
    line-height: 1.4;
}

.nnp-modal-body {
    padding: 24px 28px;
    background: #ffffff;
}

.nnp-modal-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

@media (max-width: 576px) {
    .nnp-modal-form-grid {
        grid-template-columns: 1fr;
    }

}

.nnp-modal-group {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.nnp-modal-group label {
    font-size: 0.8rem;
    font-weight: 700;
    color: #334155;
}

.nnp-modal-group label .req {
    color: #ef4444;
}

.nnp-modal-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.nnp-modal-input-wrapper .input-icon {
    position: absolute;
    left: 12px;
    color: #94a3b8;
    font-size: 0.88rem;
    pointer-events: none;
}

.nnp-modal-input-wrapper input,
.nnp-modal-input-wrapper select,
.nnp-modal-group textarea {
    width: 100%;
    padding: 10px 12px 10px 36px;
    border: 1px solid #cbd5e1;
    background: #f8faf6;
    font-size: 0.88rem;
    color: #0f172a;
    outline: none;
    border-radius: 0 !important;
    transition: all 0.2s ease;
}

.nnp-modal-input-wrapper input[type="date"],
.nnp-modal-input-wrapper input[type="number"] {
    padding-left: 12px;
}

.nnp-modal-group textarea {
    padding: 10px 12px;
    resize: vertical;
}

.nnp-modal-input-wrapper input:focus,
.nnp-modal-input-wrapper select:focus,
.nnp-modal-group textarea:focus {
    background: #ffffff;
    border-color: #1B5E20;
    box-shadow: 0 0 0 3px rgba(27, 94, 32, 0.12);
}

.nnp-modal-submit-btn {
    width: 100%;
    background: linear-gradient(135deg, #1B5E20, #0f2316);
    color: #ffffff;
    font-size: 1rem;
    font-weight: 700;
    padding: 14px;
    border: none;
    border-radius: 0 !important;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(27, 94, 32, 0.25);
}

.nnp-modal-submit-btn:hover {
    background: linear-gradient(135deg, #257a2b, #1b3b22);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(27, 94, 32, 0.35);
}

.nnp-modal-success {
    background: #dcfce7;
    color: #166534;
    border: 1px solid #bbf7d0;
    padding: 12px;
    font-size: 0.85rem;
    font-weight: 600;
    text-align: center;
    margin-top: 14px;
}

.nnp-modal-footer-info {
    background: #f8faf6;
    border-top: 1px solid #e2e8f0;
    padding: 12px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.8rem;
    color: #64748b;
}

.text-emerald {
    color: #166534;
}

.text-gold {
    color: #b45309;
}

/* ==========================================
   NAGARAHOLE NEWS & ARTICLES SECTION
   ========================================== */
.nnp-news-section {
    background: #f8faf6;
    border-top: 1px solid #e2ece2;
    border-bottom: 1px solid #e2ece2;
}

.nnp-news-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

.nnp-news-eyebrow {
    display: inline-block;
    color: #1B5E20;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: rgba(27, 94, 32, 0.08);
    padding: 4px 12px;
}

.nnp-news-view-all {
    color: #1B5E20;
    font-size: 0.92rem;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.25s ease;
}

.nnp-news-view-all:hover {
    color: #0f2316;
    transform: translateX(4px);
}

.nnp-news-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.nnp-news-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 30px rgba(27, 94, 32, 0.12);
    border-color: #1B5E20;
}

.nnp-news-img-wrapper {
    position: relative;
    width: 100%;
    height: 190px;
    overflow: hidden;
    background: #0f2316;
}

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

.nnp-news-card:hover .nnp-news-img-wrapper img {
    transform: scale(1.08);
}

.nnp-news-category {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #1B5E20;
    color: #ffffff;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 4px 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.nnp-news-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.nnp-news-meta {
    font-size: 0.78rem;
    color: #64748b;
    margin-bottom: 8px;
    font-weight: 600;
}

.nnp-news-title {
    font-family: var(--nnp-font-heading, 'Playfair Display', serif);
    font-size: 1.08rem;
    font-weight: 700;
    line-height: 1.35;
    margin: 0 0 10px 0;
}

.nnp-news-title a {
    color: #0f2316;
    text-decoration: none;
    transition: color 0.2s ease;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.nnp-news-card:hover .nnp-news-title a {
    color: #1B5E20;
}

.nnp-news-excerpt {
    font-size: 0.86rem;
    color: #475569;
    line-height: 1.5;
    margin-bottom: 16px;
    flex-grow: 1;
    text-align: left;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.nnp-news-link {
    font-size: 0.85rem;
    font-weight: 700;
    color: #1B5E20;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.2s ease;
}

.nnp-news-link i {
    font-size: 0.75rem;
    transition: transform 0.2s ease;
}

.nnp-news-card:hover .nnp-news-link {
    color: #0f2316;
}



.nnp-tariff-glass-card {
    background: rgba(13, 38, 16, 0.75);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 20px;
    box-shadow: var(--nnp-shadow);
}

.nnp-tariff-table {
    width: 100%;
    border-collapse: collapse;
    color: #ffffff;
    font-size: 0.92rem;
    font-family: var(--nnp-font-body);
}

.nnp-tariff-table tr {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: background 0.2s ease;
}

.nnp-tariff-table tr:last-child {
    border-bottom: none;
}

.nnp-tariff-table tr:hover {
    background: rgba(255, 255, 255, 0.05);
}

.nnp-tariff-table td.tariff-label {
    padding: 14px 18px;
    font-weight: 700;
    width: 140px;
    vertical-align: middle;
    color: var(--nnp-accent-gold);
}

.nnp-tariff-table td.tariff-val {
    padding: 14px 18px;
    color: rgba(255, 255, 255, 0.92);
    line-height: 1.55;
}

.nnp-inclusions-box {
    background: rgba(13, 38, 16, 0.65);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 8px;
    padding: 16px 20px;
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.6;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-family: var(--nnp-font-body);
}

/* Right Column Booking Card Widget */
.nnp-booking-card-widget {
    background: #ffffff;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(13, 38, 16, 0.25), var(--nnp-shadow);
    border: 1px solid var(--nnp-border);
    font-family: var(--nnp-font-body);
}

.nnp-booking-card-header {
    background: linear-gradient(135deg, var(--nnp-dark) 0%, var(--nnp-primary-dark) 60%, var(--nnp-primary) 100%);
    color: #ffffff;
    padding: 16px 20px;
    text-align: center;
    border-bottom: 3px solid var(--nnp-accent-gold);
    position: relative;
}

.nnp-booking-card-header h3 {
    margin: 0;
    font-family: var(--nnp-font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    letter-spacing: 0.4px;
}

.nnp-booking-card-body {
    background: #ffffff;
    padding: 18px 20px;
    color: var(--nnp-dark);
}

/* Month Navigation */
.nnp-cal-month-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--nnp-sand);
    border: 1px solid var(--nnp-border);
    border-radius: 8px;
    padding: 8px 14px;
    margin-bottom: 12px;
}

.nnp-cal-nav-btn {
    background: #ffffff;
    border: 1px solid var(--nnp-border);
    color: var(--nnp-dark);
    width: 32px;
    height: 32px;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 0.85rem;
    transition: all 0.2s ease;
    box-shadow: var(--nnp-shadow);
}

.nnp-cal-nav-btn:hover {
    background: var(--nnp-primary-dark);
    color: #ffffff;
    border-color: var(--nnp-primary-dark);
    transform: translateY(-1px);
}

.nnp-cal-month-title {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--nnp-dark);
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--nnp-font-heading);
}

/* Calendar Table & Container */
.nnp-calendar-table-container {
    width: 100%;
    overflow-x: auto;
    border-radius: 8px;
    border: 1px solid var(--nnp-border);
    margin-bottom: 12px;
    background: #ffffff;
}

.nnp-calendar-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 3px;
    table-layout: fixed;
    text-align: center;
    margin: 0;
}

.nnp-calendar-table thead tr {
    background: var(--nnp-dark);
}

.nnp-calendar-table th {
    padding: 8px 2px;
    font-size: 0.72rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border-radius: 4px;
}

.nnp-calendar-table td {
    padding: 0;
    height: 36px;
    vertical-align: middle;
    font-size: 0.82rem;
    border-radius: 6px;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    user-select: none;
}

/* Day Cell States using Root Variables */
.nnp-cal-cell-available {
    background: linear-gradient(135deg, var(--nnp-primary) 0%, var(--nnp-primary-dark) 100%) !important;
    color: #ffffff !important;
    font-weight: 700 !important;
    cursor: pointer !important;
    box-shadow: 0 2px 5px rgba(27, 94, 32, 0.25);
}

.nnp-cal-cell-available:hover {
    background: linear-gradient(135deg, var(--nnp-primary-light) 0%, var(--nnp-primary) 100%) !important;
    transform: scale(1.08);
    box-shadow: 0 4px 12px rgba(27, 94, 32, 0.35);
    z-index: 2;
}

.nnp-cal-cell-selected {
    background: var(--nnp-dark) !important;
    color: #fbbf24 !important;
    font-weight: 800 !important;
    border: 2px solid var(--nnp-orange) !important;
    box-shadow: 0 0 12px rgba(231, 111, 81, 0.5) !important;
    cursor: pointer !important;
    transform: scale(1.06);
    z-index: 3;
}

.nnp-cal-cell-closed {
    background: #f1f5f9 !important;
    color: var(--nnp-gray) !important;
    font-size: 0.78rem !important;
    cursor: not-allowed !important;
    opacity: 0.6;
}

.nnp-cal-cell-empty {
    background: transparent !important;
}

/* Legend & Badge */
.nnp-cal-meta-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 14px;
    padding: 8px 12px;
    background: var(--nnp-sand);
    border: 1px solid var(--nnp-border);
    border-radius: 8px;
}

.nnp-cal-legend {
    display: flex;
    gap: 12px;
    align-items: center;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--nnp-gray);
}

.nnp-legend-item {
    display: flex;
    align-items: center;
    gap: 5px;
}

.nnp-legend-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: inline-block;
}

.nnp-legend-dot.available {
    background: var(--nnp-primary);
}

.nnp-legend-dot.selected {
    background: var(--nnp-dark);
    border: 1px solid var(--nnp-orange);
}

.nnp-legend-dot.closed {
    background: #cbd5e1;
}

.nnp-selected-badge {
    background: var(--nnp-sand);
    color: var(--nnp-primary-dark);
    border: 1px solid var(--nnp-border);
    padding: 4px 10px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.78rem;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

/* Form Layout Controls */
.nnp-form-select-custom,
.nnp-form-input-custom {
    width: 100%;
    padding: 9px 12px;
    border: 1px solid var(--nnp-border);
    border-radius: 6px;
    font-size: 0.83rem;
    font-family: var(--nnp-font-body);
    color: var(--nnp-dark);
    background: #ffffff;
    outline: none;
    transition: all 0.2s ease;
    box-sizing: border-box;
}

.nnp-form-select-custom:focus,
.nnp-form-input-custom:focus {
    border-color: var(--nnp-primary);
    box-shadow: 0 0 0 3px rgba(27, 94, 32, 0.15);
}

.nnp-btn-book-submit {
    width: 100%;
    background: linear-gradient(135deg, var(--nnp-primary) 0%, var(--nnp-primary-dark) 100%);
    color: #ffffff;
    font-weight: 700;
    font-size: 0.92rem;
    border: none;
    border-radius: 6px;
    padding: 10px 16px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    letter-spacing: 0.3px;
    transition: all 0.25s ease;
    box-shadow: var(--nnp-shadow);
    font-family: var(--nnp-font-body);
}

.nnp-btn-book-submit:hover {
    background: linear-gradient(135deg, var(--nnp-primary-light) 0%, var(--nnp-primary) 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(27, 94, 32, 0.3);
}

.nnp-btn-book-submit:active {
    transform: translateY(0);
}

@media (max-width: 575px) {
    .nnp-booking-card-body {
        padding: 14px;
    }

    .nnp-calendar-table td {
        height: 32px;
        font-size: 0.78rem;
    }

    .nnp-cal-meta-bar {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* Page Banner Area & Breadcrumbs */
.page-banner-area {
    position: relative;
    width: 100%;
    padding: 120px 20px 70px 20px;
    background: linear-gradient(rgba(10, 24, 15, 0.82), rgba(10, 24, 15, 0.88)), url('https://images.unsplash.com/photo-1546182990-dffeafbe841d?auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
    color: #ffffff;
    text-align: center;
}

.page-banner-content h1 {
    font-family: var(--nnp-font-heading);
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}

.page-banner-content ul {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 0.92rem;
    font-family: var(--nnp-font-body);
}

.page-banner-content ul li {
    color: var(--nnp-accent-gold);
    font-weight: 600;
}

.page-banner-content ul li a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: color 0.2s ease;
}

.page-banner-content ul li a:hover {
    color: #ffffff;
    text-decoration: underline;
}

.page-banner-content ul li+li::before {
    content: "/";
    margin-right: 8px;
    color: rgba(255, 255, 255, 0.45);
}

/* Modern News Table & Card Styles */
.nnp-news-table-container {
    background: #ffffff;
    border-radius: 8px;
    border: 1px solid var(--nnp-border);
    box-shadow: var(--nnp-shadow);
    overflow: hidden;
    margin-bottom: 30px;
}

.nnp-news-table {
    width: 100%;
    border-collapse: collapse;
    margin: 0;
    font-family: var(--nnp-font-body);
}

.nnp-news-table thead tr {
    background: var(--nnp-dark);
}

.nnp-news-table th {
    padding: 14px 16px;
    font-size: 0.82rem;
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: none;
}

.nnp-news-table td {
    padding: 14px 16px;
    vertical-align: middle;
    border-bottom: 1px solid var(--nnp-sand);
    color: var(--nnp-dark);
    font-size: 0.9rem;
    transition: background 0.2s ease;
}

.nnp-news-table tbody tr:last-child td {
    border-bottom: none;
}

.nnp-news-table tbody tr:hover td {
    background: var(--nnp-sand);
}

.nnp-news-badge {
    display: inline-block;
    background: var(--nnp-sand);
    color: var(--nnp-primary-dark);
    font-size: 0.72rem;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 4px;
    border: 1px solid var(--nnp-border);
    margin-bottom: 4px;
    text-transform: uppercase;
}

.btn-nnp-news-view {
    background: linear-gradient(135deg, var(--nnp-primary) 0%, var(--nnp-primary-dark) 100%);
    color: #ffffff !important;
    font-weight: 600;
    font-size: 0.8rem;
    padding: 6px 14px;
    border-radius: 6px;
    border: none;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    text-decoration: none !important;
    box-shadow: var(--nnp-shadow);
}

.btn-nnp-news-view:hover {
    background: linear-gradient(135deg, var(--nnp-primary-light) 0%, var(--nnp-primary) 100%);
    color: #ffffff !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(27, 94, 32, 0.3);
}