@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600&family=Montserrat:wght@400;500;600;700;800&display=swap');

:root {
    --ntp-primary: #f0624d;
    /* Coral/Orange accent */
    --ntp-primary-hover: #d84b38;
    --ntp-dark: #1e293b;
    --ntp-gray: #475569;
    --ntp-light: #f8fafc;
    --ntp-white: #ffffff;
    --ntp-border: #e2e8f0;

    /* Elegant Premium Fonts */
    --ntp-font-head: 'Montserrat', sans-serif;
    --ntp-font-body: 'DM Sans', sans-serif;

    --ntp-radius: 8px;
    --ntp-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

/* Base Reset */
.ntp-redesign-wrapper {
    font-family: var(--ntp-font-body);
    color: #334155;
    line-height: 1.8;
    font-size: 17px;
    letter-spacing: 0.2px;
    word-spacing: 0.5px;
    background: #fff;
}

.ntp-redesign-wrapper * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.ntp-redesign-wrapper p {
    margin-top: 0;
    margin-bottom: 24px;
    line-height: 1.8;
    color: #334155;
}

.ntp-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ================= HERO ================= */
.ntp-hero {
    position: relative;
    height: 60vh;
    min-height: 400px;
    background-size: cover;
    background-position: center;
    background-color: var(--ntp-green-dark);
    /* Fallback */
    display: flex;
    align-items: flex-end;
    padding-bottom: 60px;
    color: #fff;
}

.ntp-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.2));
}

.ntp-hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
}

.ntp-hero-badges {
    margin-bottom: 15px;
}

.ntp-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-right: 10px;
}

.ntp-badge.featured {
    background: var(--ntp-orange);
    color: #fff;
}

.ntp-badge.popular {
    background: #fff;
    color: var(--ntp-orange);
}

.ntp-hero-title {
    font-family: var(--ntp-font-head);
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 20px;
    color: #fff;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    letter-spacing: -1px;
}

.ntp-hero-meta-ribbon {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 10px 20px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.ntp-ribbon-item {
    display: flex;
    align-items: center;
    font-weight: 500;
}

.ntp-ribbon-divider {
    margin: 0 15px;
    opacity: 0.5;
}

/* ================= LAYOUT ================= */
.ntp-main-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 80px;
    margin-top: 80px;
    margin-bottom: 100px;
}

/* Premium Overview Styling */
.ntp-overview {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 35px 40px;
    box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.05), 0 2px 4px -2px rgb(0 0 0 / 0.05);
    margin-bottom: 50px;
}

.ntp-overview-title {
    margin-top: 0 !important;
    margin-bottom: 25px !important;
    padding-bottom: 15px;
    border-bottom: 1px solid #f1f5f9;
}

/* Mobile Stack */
@media (max-width: 900px) {
    .ntp-redesign-wrapper {
        font-size: 16px;
        /* 16px is minimum for mobile */
    }

    .ntp-main-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-top: 40px;
        margin-bottom: 60px;
    }

    /* Hide sidebar on mobile — sticky bar already has Contact Agency */
    .ntp-sidebar-col {
        display: none;
    }

    .ntp-hero-title {
        font-size: 2rem;
    }

    /* Give text more breathing room on mobile by reducing the heavy desktop box padding */
    .ntp-overview {
        padding: 20px 15px;
    }

    .ntp-overview-title {
        margin-bottom: 15px !important;
        padding-bottom: 10px;
    }
}

/* Clamp comparison sticky bar agency names */
.scb-name {
    max-width: 110px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* ================= COMPONENTS ================= */
.ntp-h2 {
    font-family: var(--ntp-font-head);
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--ntp-dark);
    margin: 40px 0 25px 0;
    line-height: 1.3;
    letter-spacing: -0.5px;
    position: relative;
    padding-bottom: 15px;
    display: inline-block;
}

.ntp-h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 4px;
    background: var(--ntp-orange);
    border-radius: 2px;
}

.ntp-section {
    margin-bottom: 80px;
}

/* Masonry Gallery Preview (5 Items) */
.ntp-gallery-masonry {
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-template-rows: 200px 200px;
    gap: 10px;
}

.ntp-gal-item {
    background-size: cover;
    background-position: center;
    border-radius: 4px;
}

.ntp-gal-main {
    grid-row: span 2;
}

/* Itinerary Timeline */
.ntp-timeline {
    border-left: 2px solid var(--ntp-border);
    margin-left: 20px;
    padding-left: 30px;
}

.ntp-timeline-item {
    position: relative;
    margin-bottom: 40px;
}

.ntp-timeline-marker {
    position: absolute;
    left: -51px;
    top: 0;
    width: 40px;
    height: 40px;
    background: var(--ntp-green-dark);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    border: 4px solid #fff;
    /* whitespace ring */
}

.ntp-day-title {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--ntp-text);
}

.ntp-day-meta {
    margin-bottom: 15px;
}

.ntp-pill {
    display: inline-block;
    background: var(--ntp-offwhite);
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.85rem;
    color: var(--ntp-text-light);
    margin-right: 8px;
    border: 1px solid var(--ntp-border);
}

.ntp-weather-box {
    background: #e3f2fd;
    padding: 10px;
    border-radius: 4px;
    margin-top: 15px;
    font-size: 0.9rem;
    color: #1565c0;
}

/* Inc/Exc Redesign (Stacked Cards with 2-Column Lists) */
.ntp-inc-grid {
    display: grid;
    grid-template-columns: 1fr;
    /* Stack vertically instead of side-by-side */
    gap: 30px;
}

.ntp-inc-card {
    padding: 30px;
    border-radius: 12px;
}

.ntp-inc-card h3 {
    margin-bottom: 20px;
    padding-bottom: 15px;
    font-size: 1.3rem;
    font-weight: 700;
    color: #1e293b;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    /* Separator line like competitor */
}

/* 2-Column Grid inside the cards */
.ntp-inc-card ul {
    list-style: none;
    padding-left: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    /* Strictly 2 columns */
    row-gap: 15px;
    column-gap: 40px;
}

@media (max-width: 768px) {
    .ntp-inc-card ul {
        grid-template-columns: 1fr;
        /* Stack into 1 col on mobile */
    }
}

.ntp-inc-card li {
    padding-left: 30px;
    position: relative;
    font-size: 0.95rem;
    color: #334155;
    line-height: 1.5;
}

/* What's Included (Green Theme) */
.ntp-inc-card.included {
    background: #f0fdf4;
    /* Soft green tint */
    border: 1px solid #bbf7d0;
    /* Green border */
}

.ntp-inc-card.included li::before {
    content: '✓';
    color: #16a34a;
    /* Competitor green */
    position: absolute;
    left: 0;
    font-weight: 800;
    font-size: 1.1rem;
}

/* What's Excluded (Red Theme) */
.ntp-inc-card.excluded {
    background: #fef2f2;
    /* Soft red tint */
    border: 1px solid #fecaca;
    /* Red border */
}

.ntp-inc-card.excluded li::before {
    content: '✕';
    color: #dc2626;
    /* Competitor red */
    position: absolute;
    left: 0;
    font-weight: 800;
    font-size: 1.1rem;
}

/* FAQs */
.ntp-details {
    background: #fff;
    border: 1px solid var(--ntp-border);
    border-radius: var(--ntp-radius);
    margin-bottom: 15px;
}

.ntp-details summary {
    padding: 20px;
    cursor: pointer;
    font-weight: 600;
    list-style: none;
    /* Hide default arrow */
    position: relative;
}

.ntp-details summary::after {
    content: '+';
    position: absolute;
    right: 20px;
    font-weight: bold;
}

.ntp-details[open] summary::after {
    content: '-';
}

.ntp-details-content {
    padding: 0 20px 20px 20px;
    color: var(--ntp-text-light);
    border-top: 1px solid var(--ntp-border);
}

/* ================= SIDEBAR ================= */
.ntp-sticky-wrapper {
    position: sticky;
    top: 100px;
    z-index: 10;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.ntp-booking-card {
    background: #fff;
    padding: 30px;
    border-radius: var(--ntp-radius);
    box-shadow: var(--ntp-shadow);
    margin-bottom: 30px;
    border-top: 4px solid var(--ntp-orange);
}

.ntp-price-header {
    text-align: center;
    margin-bottom: 25px;
}

.ntp-price-label {
    display: block;
    font-size: 0.9rem;
    text-transform: uppercase;
    color: var(--ntp-text-light);
    letter-spacing: 1px;
}

.ntp-price-val {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--ntp-green-dark);
}

.ntp-price-val small {
    font-size: 1rem;
    font-weight: 400;
    color: var(--ntp-text-light);
}

.ntp-btn-primary {
    background: var(--ntp-orange);
    color: #fff;
    border: none;
    padding: 15px 25px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.2s;
}

.ntp-btn-primary:hover {
    background: var(--ntp-orange-hover);
}

.ntp-btn-outline {
    background: transparent;
    border: 1px solid var(--ntp-green-dark);
    color: var(--ntp-green-dark);
    padding: 12px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    margin-top: 10px;
}

.ntp-btn-sm {
    padding: 6px 15px;
    font-size: 0.85rem;
    margin-top: 0;
}

.ntp-sticky-wrapper {
    position: sticky;
    top: 40px;
    align-self: start;
    /* Critical for grid sticky */
}

/* Accordion Logic */
.ntp-day-content-wrapper {
    display: none;
    padding-top: 15px;
    animation: fadeIn 0.3s ease-in-out;
}

.ntp-timeline-item.active .ntp-day-content-wrapper {
    display: block;
}

.ntp-chevron {
    transition: transform 0.3s ease;
    display: inline-block;
}

.ntp-timeline-item.active .ntp-chevron {
    transform: rotate(180deg);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.full-width {
    width: 100%;
    display: block;
}

.ntp-itin-controls {
    position: relative;
    z-index: 10;
}

.ntp-snapshot-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.05), 0 2px 4px -2px rgb(0 0 0 / 0.05);
}

.ntp-snapshot-card h4 {
    margin-top: 0;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #f1f5f9;
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--ntp-dark);
}

.ntp-snapshot-card ul {
    list-style: none;
    padding: 0;
}

.ntp-snapshot-card li {
    padding: 12px 0;
    border-bottom: 1px solid #f1f5f9;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
}

.ntp-snap-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    color: #64748b;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.ntp-snap-val {
    font-size: 0.95rem;
    font-weight: 700;
    color: #1e293b;
    text-align: right;
}

.ntp-snapshot-card li:last-child {
    border-bottom: none;
}
/* ========================================================================= */
/* ⭐ BEST TREK OPERATORS HOMEPAGE SECTION                                   */
/* ========================================================================= */

.ntp-top-ops-section {
    margin-bottom: 60px;
    font-family: var(--ntp-font-body);
}

.ntp-ops-header {
    margin-bottom: 40px;
    max-width: 800px;
}

.ntp-ops-title {
    font-family: var(--ntp-font-head);
    font-size: 2.2rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.ntp-ops-subtitle {
    font-size: 1.05rem;
    color: #475569;
    line-height: 1.6;
}

/* 3 Column Grid */
.ntp-ops-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

@media (max-width: 991px) {
    .ntp-ops-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .ntp-ops-grid {
        grid-template-columns: 1fr;
    }
}

/* Individual Cards */
.ntp-op-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    border: 1px solid #e2e8f0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.ntp-op-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

/* Header Image & Badge */
.ntp-op-img-box {
    position: relative;
    height: 180px;
    width: 100%;
    overflow: hidden;
}

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

.ntp-op-card:hover .ntp-op-img-box img {
    transform: scale(1.05);
}

.ntp-op-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: rgba(255, 255, 255, 0.95);
    color: #0f172a;
    font-size: 0.70rem;
    font-weight: 800;
    padding: 6px 12px;
    border-radius: 6px;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* Card Body Content */
.ntp-op-body {
    padding: 24px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

/* Title & Icon Row */
.ntp-op-title-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.ntp-op-name {
    font-family: var(--ntp-font-head);
    font-size: 1.4rem;
    font-weight: 800;
    color: #0f172a;
    margin: 0;
}

.ntp-op-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #fff3ed;
    color: var(--ntp-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    box-shadow: 0 0 0 1px rgba(240, 98, 77, 0.1);
}

/* Sets Apart Quote */
.ntp-op-quote {
    font-size: 0.9rem;
    color: #64748b;
    font-style: italic;
    margin: 0 0 20px 0;
    line-height: 1.5;
}

/* Features List (Advantage & Safety) */
.ntp-op-features {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
    flex-grow: 1;
}

.ntp-op-features li {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
    align-items: flex-start;
}

.ntp-op-features li i {
    font-size: 1.2rem;
    margin-top: 2px;
}

.ntp-op-features li div {
    display: flex;
    flex-direction: column;
}

.ntp-op-features li strong {
    font-size: 0.75rem;
    color: #334155;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}

.ntp-op-features li p {
    font-size: 0.9rem;
    color: #0f172a;
    margin: 0;
    line-height: 1.4;
}

/* Footer Buttons */
.ntp-op-footer {
    padding: 0 24px 24px 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.ntp-op-footer .ntp-btn-book {
    background: var(--ntp-primary);
    color: #fff;
    border: none;
    padding: 12px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    transition: background 0.2s;
    text-align: center;
}

.ntp-op-footer .ntp-btn-book:hover {
    background: var(--ntp-primary-hover);
}

.ntp-op-footer .ntp-btn-outline {
    background: #f8fafc;
    color: #475569;
    border: 1px solid #cbd5e1;
    padding: 12px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.2s;
    text-align: center;
}

.ntp-op-footer .ntp-btn-outline:hover {
    background: #e2e8f0;
    color: #0f172a;
}

/* ========================================================================= */
/* 💡 VALUE BEYOND TABLE SECTION                                             */
/* ========================================================================= */

.ntp-ops-vbt-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid #e2e8f0;
}

@media (max-width: 768px) {
    .ntp-ops-vbt-grid {
        grid-template-columns: 1fr;
    }
}

.ntp-vbt-card {
    background: #f8fafc;
    border-radius: 12px;
    padding: 24px;
    border: 1px solid #e2e8f0;
}

.ntp-vbt-icon {
    font-size: 1.8rem;
    color: #10b981; /* Default green */
    margin-bottom: 12px;
}

.ntp-vbt-card h4 {
    font-family: var(--ntp-font-head);
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0 0 10px 0;
    color: #0f172a;
}

.ntp-vbt-card p {
    font-size: 0.95rem;
    color: #475569;
    line-height: 1.6;
    margin: 0;
}
