/* ----------------------------------------------------------------
   ABC Wildlife Tours - Central Stylesheet
   ---------------------------------------------------------------- */

/* --- CSS VARIABLES (Design System) --- */
:root {
    --primary: #0b3022;
    /* Deep Emerald Green */
    --primary-light: #184a37;
    /* Lighter Green for hovers/badges */
    --primary-rgb: 11, 48, 34;
    /* For alpha transparency */
    --accent: #c5a059;
    /* Gold/Amber Accent */
    --accent-hover: #a88440;
    /* Darker Gold */
    --accent-light: #fcf8f0;
    /* Soft gold tint for backgrounds */
    --bg-light: #f5f7f6;
    /* Soft Off-white page background */
    --bg-white: #ffffff;
    /* Pure white for cards & boxes */
    --text-dark: #1d2521;
    /* Dark Charcoal-Green for text */
    --text-muted: #5e6b64;
    /* Soft Gray-Green for body copy */
    --text-light: #ffffff;
    /* White text */
    --gold: #e2b73c;
    --gold-2: #d4a93a;
    --gold-soft: #f0cf6a;

    --font-primary: 'Inter', sans-serif;
    --font-heading: 'Outfit', sans-serif;

    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 16px 40px rgba(0, 0, 0, 0.12);

    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-full: 9999px;

    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --transition-slow: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);

    --header-height: 90px;
    --site-max-width: 1240px;
}

/* --- BASE STYLES --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
   
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

input,
select,
button,
textarea {
    font-family: inherit;
    font-size: inherit;
    color: inherit;
    border: none;
    background: none;
    outline: none;
}

button {
    cursor: pointer;
}

/* --- LAYOUT UTILITIES --- */
.container {
    width: 100%;
    max-width: var(--site-max-width);
    margin: 0 auto;
    padding: 0 24px;
}

.section-padding {
    padding: 10px 0;
}

.text-center {
    text-align: center;
}

/* --- BUTTONS --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    text-transform: capitalize;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--text-light);
}

.btn-primary:hover {
    background-color: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(11, 48, 34, 0.25);
}

.btn-secondary {
    background-color: var(--accent);
    color: var(--primary);
}

.btn-secondary:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(197, 160, 89, 0.25);
}

.btn-outline {
    border: 2px solid var(--border-color, #d1d5db);
    color: var(--text-dark);
    background-color: transparent;
}

.btn-outline:hover {
    background-color: var(--primary);
    border-color: var(--primary);
    color: var(--text-light);
    transform: translateY(-2px);
}

.btn-outline-white {
    border: 2px solid var(--text-light);
    color: var(--text-light);
    background-color: transparent;
}

.btn-outline-white:hover {
    background-color: var(--text-light);
    color: var(--primary);
    transform: translateY(-2px);
}

/* --- SECTION HEADER --- */
.section-header {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 50px auto;
}

.section-subtitle-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 8px;
}

.section-subtitle-line {
    height: 1px;
    width: 40px;
    background-color: var(--accent);
}

.section-subtitle {
    font-family: var(--font-heading);
    color: var(--accent);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 12px;
    line-height: 1.2;
}

.section-desc {
    color: var(--text-muted);
    font-size: 1rem;
}

/* ----------------------------------------------------------------
   HEADER SECTION
   ---------------------------------------------------------------- */
.site-header {
   
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background-color: var(--bg-white);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: var(--transition);
}

.site-header.scrolled {
    height: 80px;
    box-shadow: var(--shadow-md);
}

.header-container {
    height: 100%;
    max-width: var(--site-max-width);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Brand Logo */
.logo {
    display: flex;
    flex-direction: column;
    position: relative;
    line-height: 1.1;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: 1px;
}

.logo-icon-wrapper {
    position: absolute;
    top: -2px;
    left: 58px;
    color: var(--accent);
    font-size: 0.85rem;
    transform: rotate(15deg);
}

.logo-subtext {
    font-family: var(--font-primary);
    font-size: 0.6rem;
    font-weight: 700;
    color: var(--text-muted);
    letter-spacing: 2.2px;
    margin-top: -2px;
}

/* Navigation Links */
.main-navigation {
    height: 100%;
}

.nav-menu {
    display: flex;
    align-items: center;
    height: 100%;
    gap: 18px;
}

.nav-link {
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 0.8rem;
    color: var(--text-dark);
    position: relative;
    padding: 10px 0;
    white-space: nowrap;
}

.nav-link-pay {
    color: var(--primary-light);
    font-weight: 700;
}

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

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 0%;
    height: 2px;
    background-color: var(--accent);
    transition: var(--transition);
}

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

/* --- DROPDOWN NAVIGATION MENU --- */
.dropdown {
    position: relative;
    display: flex;
    align-items: center;
    height: 100%;
}

.dropdown-toggle {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

/* Chevron arrows removed to fit Pay Now in the nav */
.dropdown-icon {
    display: none !important;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(15px);
    background-color: var(--bg-white);
    min-width: 250px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    padding: 12px 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
    z-index: 1000;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-menu li {
    width: 100%;
}

.dropdown-menu a {
    display: block;
    padding: 10px 20px;
    font-family: var(--font-primary);
    font-weight: 500;
    font-size: 0.88rem;
    color: var(--text-dark);
    text-align: left;
    transition: var(--transition);
}

.dropdown-menu a:hover {
    background-color: var(--accent-light);
    color: var(--primary);
    padding-left: 26px;
}

/* Header Contact Info */
.header-contact {
    display: flex;
    align-items: center;
    gap: 15px;
}

.contact-button {
    display: flex;
    align-items: center;
    gap: 12px;
}

.contact-icon-box {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-full);
    background-color: var(--primary);
    color: var(--text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    box-shadow: 0 4px 10px rgba(11, 48, 34, 0.15);
}

.contact-button:hover .contact-icon-box {
    background-color: var(--accent);
    color: var(--primary);
    transform: scale(1.05);
}

.contact-text-box {
    display: flex;
    flex-direction: column;
}

.phone-number {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.98rem;
    color: var(--text-dark);
}

.call-caption {
    font-size: 0.72rem;
    color: var(--text-muted);
    font-weight: 500;
}

.mobile-nav-toggle {
    display: none;
    font-size: 1.4rem;
    color: var(--primary);
}

/* ----------------------------------------------------------------
   HERO BANNER SECTION
   ---------------------------------------------------------------- */
.hero-section {
    position: relative;
    padding-top: 0px;
    padding-bottom: 0px;
    min-height: 50vh;
    display: flex;
    align-items: center;
   background: linear-gradient(rgba(0, 0, 0, 0.5), rgb(0 0 0 / 0%)), url(../images/kanhabanner.jpg) no-repeat center center / cover;
    color: var(--text-light);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: center;
}

/* Hero Content Details */
.hero-content {
    animation: fadeInUp 1s ease;
}

.hero-pretitle {
    font-family: var(--font-heading);
    color: var(--accent);
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 3px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 15px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-locations {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px 18px;
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--bg-light);
    margin-bottom: 25px;
}

.location-divider {
    color: var(--accent);
    font-weight: 400;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}

.hero-actions .btn {
    border-radius: var(--radius-sm);
    min-width: 180px;
}

/* Trust Badge */
.trust-badge-wrapper {
    display: flex;
    align-items: center;
    gap: 15px;
}

.avatar-stack {
    display: flex;
    align-items: center;
}

.avatar-img {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-full);
    border: 3px solid rgba(255, 255, 255, 0.8);
    box-shadow: var(--shadow-sm);
    margin-left: -12px;
}

.avatar-img:first-child {
    margin-left: 0;
}

.trust-rating-info {
    display: flex;
    flex-direction: column;
}

.stars-list {
    color: #f59e0b;
    /* Yellow star */
    font-size: 0.82rem;
    display: flex;
    gap: 2px;
    margin-bottom: 2px;
}

.trust-caption {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--bg-light);
}

/* Hero Reservation Form Card */
.availability-card-wrapper {
    background-color: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 24px;
    color: var(--text-dark);
    box-shadow: var(--shadow-lg);
    animation: fadeInRight 1s ease;
}

.card-title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 8px;
}

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

.availability-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

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

.form-group label {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--text-muted);
    letter-spacing: 0.5px;
}

.input-field-wrapper {
    position: relative;
    border: 1px solid #e2e8f0;
    border-radius: var(--radius-sm);
    background-color: #f8fafc;
    transition: var(--transition);
}

.input-field-wrapper:focus-within {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(11, 48, 34, 0.1);
}

.input-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    font-size: 0.9rem;
}

.form-input {
    width: 100%;
    padding: 10px 14px 10px 42px;
    background-color: transparent;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-dark);
}

.form-input::placeholder {
    color: #a0aec0;
}

.btn-form-submit {
    margin-top: 5px;
    width: 100%;
    padding: 11px;
}

.form-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 15px;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--text-muted);
}

.form-footer-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

.form-footer-item i {
    color: var(--primary);
}

/* ----------------------------------------------------------------
   INTRO TO WILDLIFE TOURISM SECTION
   ---------------------------------------------------------------- */
.intro-section {
    position: relative;
   
    background-attachment: fixed;
    padding-top: 20px;
    padding-bottom: 22px;
    border-bottom: none;
    overflow: hidden;
}

.intro-section .section-title {
    color: var(--accent);
    margin-bottom: 24px;
}

.intro-content-box {
    margin: 0 auto;
    text-align: center;

}

.intro-desc {
    font-size: 1.05rem;
    color: rgba(16, 15, 15, 0.9);
    line-height: 1.8;
    text-align: justify;
}

/* ----------------------------------------------------------------
   TOP NATIONAL PARKS SECTION
   ---------------------------------------------------------------- */
.parks-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 30px;
}

.park-card {
    background-color: var(--bg-white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.park-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.park-media {
    position: relative;
    height: 160px;
    overflow: hidden;
}

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

.park-media img {
    width: 100%;
    height: 100%;
    transition: var(--transition-slow);
}

.park-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    text-align: center;
}

.park-title {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 2px;
}

.park-category {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.park-text {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-bottom: 18px;
    line-height: 1.5;
    flex-grow: 1;
}

.park-actions {
    display: flex;
    flex-direction: row;
    gap: 10px;
}

.park-actions .btn {
    flex: 1;
    padding: 10px 10px;
    font-size: 0.82rem;
    font-weight: 700;
    white-space: nowrap;
}

/* ----------------------------------------------------------------
   WHY CHOOSE US SECTION
   ---------------------------------------------------------------- */
.why-section {
    background-color: var(--primary);
    color: var(--text-light);
}

.why-section .section-title {
    color: var(--text-light);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 10px;
}

.why-item {
    text-align: center;
    position: relative;
    padding: 10px;
}

/* Vertical separator line between why-items in desktop view */
.why-item::after {
    content: '';
    position: absolute;
    top: 20%;
    right: -15px;
    height: 60%;
    width: 1px;
    background-color: rgba(255, 255, 255, 0.15);
}

.why-item:last-child::after {
    display: none;
}

.why-icon-box {
    font-size: 2.2rem;
    color: var(--accent);
    margin-bottom: 20px;
    transition: var(--transition);
}

.why-item:hover .why-icon-box {
    transform: scale(1.15) rotate(5deg);
}

.why-item-title {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.why-item-desc {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 200px;
    margin: 0 auto;
    line-height: 1.5;
}

/* ----------------------------------------------------------------
   POPULAR SAFARI PACKAGES SECTION
   ---------------------------------------------------------------- */
.packages-carousel-container {
    position: relative;
    margin-top: 20px;
}

.packages-grid {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    gap: 25px;
    padding: 10px 5px 25px 5px;
    scrollbar-width: none;
}

.packages-grid::-webkit-scrollbar {
    display: none;
}

.pkg-card {
    background-color: var(--bg-white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    flex: 0 0 calc(25% - 19px);
    min-width: 280px;
}

.pkg-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.pkg-media {
    position: relative;
    height: 170px;
    overflow: hidden;
}

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

.pkg-media img {
    width: 100%;
    height: 100%;
    transition: var(--transition-slow);
}

.pkg-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: var(--primary-light);
    color: var(--text-light);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.75rem;
    padding: 5px 12px;
    border-radius: var(--radius-sm);
    letter-spacing: 0.5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.pkg-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    text-align: center;
}

.pkg-title {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 6px;
    line-height: 1.3;
}

.pkg-duration {
    font-size: 0.8rem;
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 8px;
}

.pkg-features {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.pkg-footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin-top: auto;
    border-top: 1px solid #f1f5f9;
    padding-top: 15px;
}

.pkg-price-wrapper {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.pkg-price {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--primary);
}

.pkg-price-info {
    font-size: 0.72rem;
    color: var(--text-muted);
    font-weight: 500;
}

.pkg-btn {
    width: 100%;
    padding: 12px;
    font-size: 0.88rem;
}

/* Slider Controls (Chevron buttons shown on outer sides) */
.carousel-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: var(--radius-full);
    background-color: var(--bg-white);
    box-shadow: var(--shadow-md);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: var(--transition);
    z-index: 10;
}

.carousel-nav-btn:hover {
    background-color: var(--primary);
    color: var(--text-light);
}

.carousel-prev {
    left: -22px;
}

.carousel-next {
    right: -22px;
}

/* ----------------------------------------------------------------
   WHAT OUR TRAVELLERS SAY SECTION (Testimonials)
   ---------------------------------------------------------------- */
.testimonials-section {
    background-color: #edf1ef;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 20px;
}

.testimonial-card {
    background-color: var(--bg-white);
    border-radius: var(--radius-md);
    padding: 30px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.testimonial-avatar {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-full);
    object-fit: cover;
    border: 2px solid var(--accent);
}

.testimonial-meta {
    display: flex;
    flex-direction: column;
}

.testimonial-name {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.98rem;
    color: var(--primary);
}

.testimonial-location {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 500;
}

.testimonial-stars {
    color: #f59e0b;
    font-size: 0.78rem;
    margin-bottom: 12px;
    display: flex;
    gap: 2px;
}

.testimonial-text {
    font-size: 0.88rem;
    color: var(--text-muted);
    font-style: italic;
    line-height: 1.6;
}

.slider-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 40px;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: var(--radius-full);
    background-color: #cbd5e1;
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    width: 24px;
    background-color: var(--primary);
}

/* ----------------------------------------------------------------
   LATEST FROM OUR BLOG SECTION
   ---------------------------------------------------------------- */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 20px;
}

.blog-card {
    background-color: var(--bg-white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.blog-media {
    position: relative;
    height: 180px;
    overflow: hidden;
}

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

.blog-media img {
    width: 100%;
    height: 100%;
    transition: var(--transition-slow);
}

.blog-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-date {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--accent);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-card-title {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 15px;
    line-height: 1.35;
    flex-grow: 1;
}

.blog-readmore {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: auto;
}

.blog-card:hover .blog-readmore {
    color: var(--accent);
}

.blog-readmore i {
    transition: var(--transition);
}

.blog-card:hover .blog-readmore i {
    transform: translateX(4px);
}

.blog-action-bottom {
    display: flex;
    justify-content: center;
    margin-top: 50px;
}

.blog-action-bottom .btn {
    min-width: 180px;
}

/* ----------------------------------------------------------------
   FOOTER CTA SECTION
   ---------------------------------------------------------------- */
.footer-cta {
    position: relative;
    padding: 24px 0;
    background: linear-gradient(rgba(11, 48, 34, 0.9), rgba(11, 48, 34, 0.95)),
        url('../images/ranthambore.png') no-repeat center center/cover;
    color: var(--text-light);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-cta-container {
    max-width: var(--site-max-width);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cta-text-side {
    max-width: 600px;
}

.cta-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.cta-subtitle {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
}

.cta-actions-side {
    display: flex;
    align-items: center;
    gap: 15px;
}

.cta-actions-side .btn {
    min-width: 160px;
}

/* ----------------------------------------------------------------
   FOOTER SECTION
   ---------------------------------------------------------------- */
.site-footer {
    background-color: #03140e;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.88rem;
    overflow: visible;
}

/* Newsletter Subscription Banner */
.footer-newsletter {
    background: linear-gradient(rgba(11, 48, 34, 0.85), rgba(11, 48, 34, 0.9)),
        url('../images/hero_safari_bg.png') no-repeat center center/cover;
    position: relative;
    padding: 35px 0;
    overflow: visible;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.newsletter-container {
    max-width: var(--site-max-width);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    position: relative;
}

.newsletter-left {
    display: flex;
    align-items: center;
    position: relative;
    padding-left: 140px;
    min-height: 80px;
}

.newsletter-deer-img {
    position: absolute;
    bottom: -35px;
    /* sit flush on the bottom edge */
    left: -10px;
    height: 155px;
    /* pop out of the top */
    width: auto;
    object-fit: contain;
    z-index: 10;
}

.newsletter-text {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--text-light);
    line-height: 1.4;
    max-width: 500px;
}

.newsletter-right {
    flex-shrink: 0;
}

.newsletter-form {
    display: flex;
    gap: 12px;
    width: 440px;
}

.newsletter-input {
    flex: 1;
    background-color: var(--bg-white);
    color: var(--text-dark);
    padding: 12px 18px;
    border-radius: var(--radius-sm);
    font-size: 0.92rem;
    border: 1px solid transparent;
}

.newsletter-input:focus {
    border-color: var(--accent);
}

.newsletter-btn {
    background-color: #5c7f4b;
    color: var(--text-light);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    padding: 12px 26px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    cursor: pointer;
}

.newsletter-btn:hover {
    background-color: var(--accent);
    color: var(--primary);
}

/* Footer Main Directory Grid */
.footer-main {
    padding: 60px 0;
}

.main-footer-grid {
    display: grid;
       grid-template-columns: 1.5fr repeat(4, 1fr);
    gap: 25px;
    align-items: start;
}

.brand-column {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.footer-logo-main {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-light);
}

.footer-logo-main .logo-icon {
    font-size: 1.4rem;
    color: var(--text-light);
}

.footer-logo-main .logo-text {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 800;
    letter-spacing: 0.5px;
}

.footer-logo .logo-subtext {
    font-family: var(--font-primary);
    font-size: 0.65rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 1px;
    margin-top: 1px;
}

.footer-desc {
    font-size: 0.82rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.55);
}

.brand-column .social-links {
    display: flex;
    gap: 10px;
    margin-top: 5px;
}

.brand-column .social-links a {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 0.85rem;
    transition: var(--transition);
}

.brand-column .social-links a:hover {
    background-color: var(--accent);
    color: var(--primary);
    transform: translateY(-2px);
}

/* Links Columns */
.site-footer .footer-title {
    font-family: var(--font-heading);
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.site-footer .footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.site-footer .footer-links a {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    transition: var(--transition);
}

.site-footer .footer-links a:hover {
    color: var(--text-light);
}

/* Footer Bottom Strip */
.footer-bottom {
    background-color: #020f0a;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    padding: 20px 0;
}

.bottom-footer-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.copyright-text {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.4);
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.78rem;
}

.footer-bottom-links li {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-bottom-links li:not(:last-child)::after {
    content: '|';
    color: rgba(255, 255, 255, 0.15);
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.4);
    transition: var(--transition);
}

.footer-bottom-links a:hover {
    color: var(--text-light);
}

/* ----------------------------------------------------------------
   KEYFRAME ANIMATIONS
   ---------------------------------------------------------------- */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(25px);
    }

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

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(25px);
    }

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

/* ----------------------------------------------------------------
   RESPONSIVE DESIGN (Media Queries)
   ---------------------------------------------------------------- */

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

    .packages-grid .pkg-card {
        flex: 0 0 calc(50% - 13px);
    }

    .carousel-prev {
        left: 10px;
    }

    .carousel-next {
        right: 10px;
    }
}

@media (max-width: 991px) {
    :root {
        --header-height: 80px;
    }

    .section-padding {
        padding: 6px 0;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-content {
        text-align: center;
    }

    .hero-title {
        font-size: 2.8rem;
    }

    .hero-locations {
        justify-content: center;
    }

    .hero-actions {
        justify-content: center;
    }

    .trust-badge-wrapper {
        justify-content: center;
    }

    .why-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .why-item::after {
        display: none;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .main-footer-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }

    .brand-column {
        grid-column: span 3;
    }

    .footer-newsletter .newsletter-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 20px;
    }

    .footer-newsletter .newsletter-left {
        padding-left: 0;
        padding-top: 110px;
        justify-content: center;
    }

    .footer-newsletter .newsletter-deer-img {
        left: 50%;
        transform: translateX(-50%);
        bottom: auto;
        top: -15px;
        height: 120px;
    }

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

@media (max-width: 768px) {

    /* Mobile Menu Toggle logic */
    .mobile-nav-toggle {
        display: block;
    }

    .main-navigation {
        position: fixed;
        top: var(--header-height);
        left: -100%;
        width: 100%;
        height: calc(100vh - var(--header-height));
        background-color: var(--bg-white);
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
        transition: var(--transition);
        z-index: 999;
    }

    .main-navigation.open {
        left: 0;
    }

    .nav-menu {
        flex-direction: column;
        padding: 40px 24px;
        height: auto;
        gap: 20px;
        align-items: flex-start;
    }

    .nav-link {
        font-size: 1.1rem;
        width: 100%;
        display: block;
    }

    /* Mobile Dropdown Menu Styles */
    .dropdown {
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
        height: auto;
    }

    .dropdown-toggle {
        justify-content: space-between;
        width: 100%;
    }

    .dropdown .dropdown-icon {
        font-size: 0.8rem;
        transition: transform var(--transition);
    }

    .dropdown.open .dropdown-icon {
        transform: rotate(180deg);
    }

    .dropdown-menu {
        position: static;
        transform: none;
        box-shadow: none;
        border: none;
        padding: 5px 0 5px 15px;
        min-width: 100%;
        width: 100%;
        display: none;
        opacity: 1;
        visibility: visible;
        background-color: transparent;
        transition: none;
    }

    .dropdown.open .dropdown-menu {
        display: block;
    }

    .dropdown-menu li {
        width: 100%;
    }

    .dropdown-menu a {
        font-size: 0.95rem;
        padding: 8px 12px;
        color: var(--text-muted);
    }

    .dropdown-menu a:hover {
        padding-left: 18px;
        background-color: transparent;
        color: var(--primary);
    }

    .parks-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .blog-grid {
        grid-template-columns: 1fr;
    }

    .main-footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .brand-column {
        grid-column: span 2;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2.2rem;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .parks-grid {
        grid-template-columns: 1fr;
        max-width: 320px;
        margin: 0 auto;
    }

    .packages-grid {
        max-width: 100%;
        margin: 0;
    }
    .packages-grid .pkg-card {
        flex: 0 0 calc(100% - 30px);
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

/*    .main-footer-grid {
        grid-template-columns: 1fr;
    }*/

    .brand-column {
        grid-column: span 1;
    }

    .newsletter-form {
        width: 100%;
        flex-direction: column;
    }

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

    .footer-bottom-links {
        flex-direction: column;
        gap: 10px;
    }

    .cta-actions-side {
        flex-direction: column;
        width: 100%;
    }

    .cta-actions-side .btn {
        width: 100%;
    }
}


.table-container{
   
    margin:auto;
    overflow-x:auto;
}

.price-table{
    width:100%;
    border-collapse:collapse;
    background:#fff;
    border-radius:10px;
    overflow:hidden;
    box-shadow:0 8px 20px rgba(0,0,0,.12);
}

.price-table thead{
    background:#2e7d32;
    color:#fff;
}
.price-table tr{

}
.price-table tr td {
            border: 1px solid #dfdbdb;
                font-size: 13px;
}
.price-table th,
.price-table td{
      padding: 5px;
    /* border-bottom: 1px solid #e5e5e5; */
    text-align: left;
    font-size: 13px;
}

.price-table tbody tr:hover{
    background:#f1f8e9;
}

.price{
    color:#ff1a00;
    font-weight:bold;
    font-size:18px;
}

.book-btn{
    background:#ff9800;
    color:#fff;
    padding:10px 20px;
    text-decoration:none;
    border-radius:5px;
    font-weight:bold;
    transition:.3s;
}

.book-btn:hover{
    background:#e65100;
}

@media(max-width:768px){

.price-table th,
.price-table td{
    padding:6px;
    font-size:14px;
}

.book-btn{
    padding:8px 15px;
}
}
/* ==========================================================================
   Legal / Policy pages (Privacy, Terms, Payment, Cancellation)
   ========================================================================== */

.legal-page {
    background: var(--bg-light);
}

.legal-hero {
    position: relative;
    min-height: 240px;
    display: flex;
    align-items: flex-end;
    color: #fff;
    overflow: hidden;
}

.legal-hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, #0b3022 0%, #164a36 45%, #1a3a28 100%);
    z-index: 0;
}

.legal-hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 15% 30%, rgba(197, 160, 89, 0.18) 0 2px, transparent 3px),
        radial-gradient(circle at 80% 40%, rgba(255, 255, 255, 0.08) 0 2px, transparent 3px);
}

.legal-hero-inner {
    position: relative;
    z-index: 1;
    width: 100%;
    padding-top: calc(var(--header-height) + 16px);
      padding-bottom: 50px !important;
}

.legal-hero-title {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 3.2vw, 2.2rem);
    font-weight: 800;
    margin: 8px 0 8px;
    line-height: 1.2;
}

.legal-hero-sub {
    margin: 0;
    max-width: 560px;
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.5;
}

.legal-body {
    padding: 36px 0 10px;
}

.legal-layout {
    display: grid;
    grid-template-columns: 1fr 280px;
    gap: 24px;
    align-items: start;
}

.legal-card {
    background: #fff;
    border: 1px solid #e8ebe9;
    border-radius: 14px;
    padding: 28px 28px 32px;
    box-shadow: 0 4px 18px rgba(11, 48, 34, 0.05);
}

.legal-card h2 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary);
    margin: 28px 0 12px;
    padding-bottom: 8px;
    border-bottom: 2px solid rgba(197, 160, 89, 0.35);
}

.legal-card h2:first-child {
    margin-top: 0;
}

.legal-card h3 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary);
    margin: 20px 0 8px;
}

.legal-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.65;
    margin: 0 0 12px;
}

.legal-card ul,
.legal-card ol {
    margin: 0 0 14px;
    padding-left: 18px;
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
}

.legal-card li {
    margin-bottom: 6px;
}

.legal-card a {
    color: var(--primary);
    font-weight: 600;
}

.legal-card a:hover {
    color: var(--accent-hover);
}

.legal-note {
    background: #fcf8f0;
    border: 1px solid rgba(197, 160, 89, 0.35);
    border-left: 4px solid var(--accent);
    border-radius: 10px;
    padding: 14px 16px;
    margin: 16px 0;
    font-size: 0.88rem;
    color: var(--text-dark);
    line-height: 1.55;
}

.legal-cancel-table {
    width: 100%;
    border-collapse: collapse;
    margin: 12px 0 18px;
    font-size: 0.88rem;
    overflow: hidden;
    border-radius: 10px;
    border: 1px solid #e8ebe9;
}

.legal-cancel-table th,
.legal-cancel-table td {
    padding: 11px 14px;
    text-align: left;
    border-bottom: 1px solid #e8ebe9;
}

.legal-cancel-table th {
    background: #eef5f1;
    color: var(--primary);
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.legal-cancel-table tr:last-child td {
    border-bottom: none;
}

.legal-cancel-table .warn {
    color: #b91c1c;
    font-weight: 700;
}

.legal-pay-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin: 16px 0 20px;
}

.legal-pay-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: var(--bg-light);
    border: 1px solid #e8ebe9;
    border-radius: 12px;
    padding: 14px;
}

.legal-pay-item i {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #eef5f1, #f7f1e4);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.legal-pay-item strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.88rem;
    color: var(--primary);
    margin-bottom: 2px;
}

.legal-pay-item span {
    font-size: 0.78rem;
    color: var(--text-muted);
    line-height: 1.4;
}

.legal-side {
    position: sticky;
    top: calc(var(--header-height) + 16px);
}

.legal-side-card {
    background: #fff;
    border: 1px solid #e8ebe9;
    border-radius: 14px;
    padding: 18px;
    margin-bottom: 14px;
}

.legal-side-card h3 {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--primary);
    margin: 0 0 12px;
}

.legal-side-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    padding: 10px 12px;
    border-radius: 8px;
    text-decoration: none;
    color: var(--text-dark);
    font-size: 0.84rem;
    font-weight: 600;
    margin-bottom: 4px;
    transition: background 0.2s ease;
}

.legal-side-link:hover,
.legal-side-link.active {
    background: #eef5f1;
    color: var(--primary);
}

.legal-side-link i {
    font-size: 0.72rem;
    color: var(--text-muted);
}

.legal-side-cta {
    background: linear-gradient(145deg, var(--primary), #0d4a35);
    color: #fff;
    border-radius: 14px;
    padding: 18px;
}

.legal-side-cta h3 {
    font-family: var(--font-heading);
    font-size: 1rem;
    margin: 0 0 8px;
}

.legal-side-cta p {
    font-size: 0.82rem;
    opacity: 0.9;
    line-height: 1.45;
    margin: 0 0 12px;
}

.legal-side-cta a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    color: var(--primary);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.82rem;
    padding: 10px 14px;
    border-radius: 8px;
}

.legal-side-cta a:hover {
    background: var(--accent);
    color: var(--primary);
}

.legal-updated {
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-top: 20px;
    padding-top: 14px;
    border-top: 1px dashed #e8ebe9;
}

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

.legal-pay-form-grid .full {
    grid-column: 1 / -1;
}

.legal-pay-form-grid label {
    display: block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 6px;
}

.legal-pay-form-grid label span {
    color: #b91c1c;
}

.legal-pay-form-grid input,
.legal-pay-form-grid textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #dce5e0;
    border-radius: 10px;
    font: inherit;
    font-size: 0.95rem;
    color: var(--text-dark);
    background: #fff;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.legal-pay-form-grid input:focus,
.legal-pay-form-grid textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(11, 48, 34, 0.12);
}

.pay-form-panel {
    margin: 0 0 28px;
    padding: 22px 22px 20px;
    border-radius: 16px;
    background:
        linear-gradient(160deg, rgba(238, 245, 241, 0.95), rgba(255, 255, 255, 0.98) 42%),
        #fff;
    border: 1px solid #d9e6df;
    box-shadow: 0 10px 28px rgba(11, 48, 34, 0.06);
}

.pay-form-head {
    margin-bottom: 18px;
}

.pay-form-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--primary);
    background: #e8f3ed;
    border: 1px solid #cfe3d8;
    border-radius: 999px;
    padding: 6px 12px;
    margin-bottom: 12px;
}

.pay-form-head h2 {
    margin: 0 0 6px;
    font-family: var(--font-heading);
    font-size: 1.35rem;
    color: var(--primary);
}

.pay-form-head p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.pay-amount-wrap {
    position: relative;
}

.pay-amount-wrap .pay-currency {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    font-weight: 700;
    color: var(--primary);
    pointer-events: none;
}

.pay-amount-wrap input {
    padding-left: 32px;
}

.pay-form-footer {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-top: 18px;
    padding-top: 16px;
    border-top: 1px dashed #d9e6df;
}

.pay-trust-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    font-size: 0.78rem;
    color: var(--text-muted);
    font-weight: 600;
}

.pay-trust-list li {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.pay-trust-list i {
    font-size: 1.15rem;
    color: var(--primary);
    opacity: 0.85;
}

.pay-submit-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-width: 200px;
    padding: 13px 22px;
    border: none;
    border-radius: 10px;
    background: linear-gradient(145deg, var(--primary), #0d4a35);
    color: #fff;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    box-shadow: 0 8px 18px rgba(11, 48, 34, 0.22);
    transition: transform 0.15s ease, box-shadow 0.15s ease, opacity 0.15s ease;
}

.pay-submit-btn:hover:not(:disabled) {
    transform: translateY(-1px);
    box-shadow: 0 10px 22px rgba(11, 48, 34, 0.28);
}

.pay-submit-btn:disabled {
    opacity: 0.75;
    cursor: wait;
}

.pay-alert {
    margin-bottom: 14px;
    padding: 12px 14px;
    border-radius: 10px;
    font-size: 0.88rem;
    line-height: 1.45;
    border: 1px solid transparent;
}

.pay-alert.is-ok {
    background: #ecfdf5;
    border-color: #a7f3d0;
    color: #065f46;
}

.pay-alert.is-error {
    background: #fef2f2;
    border-color: #fecaca;
    color: #991b1b;
}

.pay-success-banner {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin: 0 0 22px;
    padding: 16px 18px;
    border-radius: 14px;
    background: linear-gradient(135deg, #ecfdf5, #f0fdf4);
    border: 1px solid #a7f3d0;
}

.pay-success-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #059669;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.2rem;
}

.pay-success-banner strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.05rem;
    color: #065f46;
    margin-bottom: 4px;
}

.pay-success-banner p {
    margin: 0;
    font-size: 0.88rem;
    color: #047857;
    line-height: 1.45;
}
.detail-hero {
    position: relative;
    min-height: 260px;
    display: flex;
    align-items: flex-end;
    color: var(--text-light);
    overflow: hidden;
}
.detail-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
    transform: scale(1.02);
}
.detail-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(11, 48, 34, 0.72) 0%, rgba(11, 48, 34, 0.55) 45%, rgba(11, 48, 34, 0.82) 100%);
    z-index: 1;
}
.detail-hero-inner {
    position: relative;
    z-index: 2;
    width: 100%;
   
    padding-bottom: 87px;
}
.detail-hero-content {
    max-width: 780px;
}
.detail-hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 10px;
}
.detail-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.22);
    backdrop-filter: blur(4px);
    padding: 4px 11px;
    border-radius: var(--radius-full);
    font-size: 0.72rem;
    font-weight: 600;
    line-height: 1.3;
}
.detail-hero-badge i {
    color: #ffae14;
    font-size: 0.75rem;
}
.detail-hero-title {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(1.35rem, 3.2vw, 2rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 6px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
}

@media (max-width: 600px) {
    .legal-pay-form-grid {
        grid-template-columns: 1fr;
    }
.legal-hero{    min-height: 127px;}
    .legal-pay-form-grid .full {
        grid-column: auto;
    }

    .pay-form-panel {
        padding: 16px;
    }
    legal-hero-title {
    
    font-size: 18px;
    }
    .container {
   
  
    padding: 10px 13px !important
}
.legal-hero-title{
        font-size: 18px;
}
.legal-hero-inner {
  
   
    padding-bottom: 13px !important;
}
    .legal-layout {
    
    grid-template-columns: 1fr;
    }
    .pay-form-footer {
        flex-direction: column;
        align-items: stretch;
    }
        .detail-hero {
        min-height: 120px;
    }
    .detail-hero-title {
    
    font-size: 16px;
    }

    .pay-submit-btn {
        width: 100%;
    }
}
.hotels-alert{
    background: linear-gradient(135deg, #fff9e8 0%, #f5edd6 100%);
    border: 1px solid #e2c96a;
    border-left: 5px solid var(--gold);
    border-radius: 12px;
    padding: 20px 22px;
    font-size: 0.9rem;
    color: #45524b;
    line-height: 1.65;
    margin: 0 0 12px;
    margin-bottom: 36px;
}
.hotels-alert h2{
        color: #1a2e22;
    font-size: 18px;
}
/* ---------- SECTIONS / DIVIDERS ---------- */
.sh-section { padding: 4px 0 61px; position: relative; }
.sh-section-alt { background: #fff; }
.sh-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin: 0 auto 10px;
    max-width: 220px;
    color: var(--sh-accent);
}
.sh-divider::before,
.sh-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, #d4c09a, transparent);
}
.sh-divider i { font-size: .85rem; }
.sh-section-head {
    text-align: center;
    margin-bottom: 30px;
}
.sh-section-head > i {
    color: var(--sh-accent);
    font-size: .95rem;
    margin-bottom: 8px;
    display: inline-block;
}

.sh-section-head h2::before,
.sh-section-head h2::after {
    content: '';
    width: 48px;
    height: 1px;
    background: #c9b48a;
}
.sh-section-head p {
    margin: 0;
    color: var(--sh-muted);
    font-size: .9rem;
}

.sh-section-head-row h2::before,
.sh-section-head-row h2::after { display: none; }
.sh-section-head-row > div i {
    display: block;
    color: var(--sh-accent);
    margin-bottom: 6px;
}

/* ---------- PARK CARDS ---------- */
.sh-park-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}
.sh-park-card {
    background: #fff;
        border: 1px solid #e3dac4;
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 8px 20px rgba(10, 47, 34, .05);
    transition: transform .2s ease, box-shadow .2s ease;
}
.sh-park-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 28px rgba(10, 47, 34, .1);
}
.sh-park-media {
    height: 155px;
    overflow: hidden;
}
.sh-park-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .35s ease;
}
.sh-park-card:hover .sh-park-media img { transform: scale(1.06); }
.sh-park-body {
    padding: 12px 12px 14px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex: 1;
}
.sh-park-body h3 {
    margin: 0;
    font-size: .82rem;
    font-weight: 800;
    color: var(--sh-green);
    line-height: 1.3;
}
.sh-park-loc {
    margin: 0;
    font-size: .72rem;
    color: var(--sh-muted);
    font-weight: 600;
}
.sh-park-loc i { color: var(--sh-accent); margin-right: 2px; }
.sh-park-body ul {
    margin: 2px 0 0;
    padding-left: 14px;
    color: #4a5a52;
    font-size: .72rem;
    line-height: 1.45;
}
.sh-park-foot {
    margin-top: auto;
    padding-top: 10px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 6px;
    border-top: 1px dashed var(--sh-line);
}
.sh-park-foot span {
    font-size: .68rem;
    color: var(--sh-muted);
    text-align: left;
    line-height: 1.3;
}
.sh-park-foot strong {
    color: var(--sh-green);
    font-size: .82rem;
}
.sh-park-foot .sh-btn {
    width: auto;
       flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(180deg, var(--gold-soft) 0%, var(--gold) 100%);
    color: #1a1a1a;
    padding: 9px 14px;
    border-radius: 8px;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .06em;
    text-transform: uppercase;
    text-decoration: none;
    white-space: nowrap;
    border: 1px solid rgba(255, 255, 255, .15);
    box-shadow: 0 2px 8px rgba(0, 0, 0, .18);
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}


/* ==========================================================================
   Tour Package Detail Page â€” image-led wildlife journeys layout
   ========================================================================== */

.tour-detail-page {
    background: #f5f7f6;
}

/* --- HERO --- */
.td-hero {
    position: relative;
    min-height: 378px;
    display: flex;
    align-items: stretch;
    color: #fff;
    overflow: visible;
}

.td-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    z-index: 0;
/*    transform: scale(1.03);*/
    clip-path: inset(0);
}

.td-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        105deg,
        rgba(11, 48, 34, 0.9) 0%,
        rgba(11, 48, 34, 0.55) 50%,
        rgba(11, 48, 34, 0.4) 100%
    );
    z-index: 1;
}

.td-hero-inner {
    position: relative;
    z-index: 2;
    width: 100%;
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 28px;
    align-items: end;
   
    padding-bottom: 36px;
}

.td-hero-main {
    min-width: 0;
}

.td-hero-main .detail-breadcrumb {
    margin-bottom: 14px;
}

.td-hero-copy {
    max-width: 640px;
}

.td-hero-badge-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 12px;
}

.td-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 12px;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 700;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.22);
}

.td-pill i { color: var(--accent); }

.td-hero-title {
    font-family: var(--font-heading);
    font-size: clamp(1.6rem, 3.8vw, 2.45rem);
    font-weight: 800;
    line-height: 1.15;
    margin: 0 0 12px;
    text-shadow: 0 2px 14px rgba(0, 0, 0, 0.28);
}

.td-hero-sub {
    font-size: 0.95rem;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.88);
    margin: 0 0 16px;
    max-width: 520px;
}

.td-hero-price {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 18px;
}

.td-hero-price small {
    font-size: 0.78rem;
    font-weight: 500;
    opacity: 0.85;
    margin-left: 4px;
}

.td-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

/* Hero enquiry card (replaces search bar) */
.td-book-card {
    background: rgba(255, 255, 255, 0.97);
    border-radius: 14px;
    padding: 18px 16px;
    color: var(--text-dark);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(8px);
    max-width: 360px;
    margin-left: auto;
    width: 100%;
    position: relative;
    z-index: 8;
    overflow: visible;
}

.td-book-card h3 {
    font-family: var(--font-heading);
    font-size: 1.02rem;
    font-weight: 700;
    color: var(--primary);
    margin: 0 0 4px;
    text-align: center;
}

.td-book-sub {
    font-size: 0.78rem;
    color: var(--text-muted);
    text-align: center;
    margin: 0 0 14px;
    line-height: 1.4;
}

.td-book-field {
    margin-bottom: 10px;
}

.td-book-field label {
    display: block;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 5px;
}

.td-book-field input,
.td-book-field select {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #e2e8e5;
    border-radius: 8px;
    font-size: 0.86rem;
    background: #fff;
    color: var(--text-dark);
    outline: none;
    font-family: inherit;
}

.td-book-field input:focus,
.td-book-field select:focus {
    border-color: var(--primary);
}

.td-book-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.td-book-row .td-book-field {
    min-width: 0;
}

.td-book-submit {
    width: 100%;
    margin-top: 4px;
    padding: 12px 14px;
    border: none;
    border-radius: 10px;
    background: var(--primary);
    color: #fff;
    font-size: 0.88rem;
    font-weight: 700;
    cursor: pointer;
    font-family: inherit;
    transition: background 0.2s ease, transform 0.2s ease;
}

.td-book-submit:hover {
    background: var(--primary-light);
    transform: translateY(-1px);
}

.td-book-field input.td-park-locked {
    background: #f3f6f4;
    color: #334155;
    cursor: default;
    pointer-events: none;
    border-color: #e2e8e5;
}

.td-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 11px 20px;
    border-radius: 10px;
    font-size: 0.84rem;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.td-btn-gold {
    background: var(--accent);
    color: var(--primary);
    border: 2px solid var(--accent);
}

.td-btn-gold:hover {
    background: #d4b36a;
    color: var(--primary);
    transform: translateY(-2px);
}

.td-btn-outline {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.55);
}

.td-btn-outline:hover {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    border-color: #fff;
}

.td-btn-green {
    background: var(--primary);
    color: #fff;
    border: none;
    cursor: pointer;
}

.td-btn-green:hover {
    background: #0d3d2b;
    color: #fff;
}

/* --- SEARCH BAR --- */
.td-search-wrap {
    position: relative;
    z-index: 5;
    margin-top: -28px;
    margin-bottom: 0;
}

.td-search-bar {
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 12px 36px rgba(11, 48, 34, 0.14);
    padding: 14px;
    display: grid;
    grid-template-columns: repeat(5, 1fr) auto;
    gap: 10px;
    align-items: end;
}

.td-search-field label {
    display: block;
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--text-muted);
    margin-bottom: 5px;
}

.td-search-field select,
.td-search-field input {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #e2e8e5;
    border-radius: 8px;
    font-size: 0.84rem;
    background: #fff;
    color: var(--text-dark);
}

.td-search-bar .td-btn-green {
    padding: 11px 18px;
    white-space: nowrap;
    border-radius: 8px;
    font-size: 0.82rem;
}

/* --- TRUST --- */
.td-trust {
    background: #fff;
    border-bottom: 1px solid #e8ebe9;
    padding: 18px 0;
    margin-top: 20px;
}

.td-trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.td-trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.td-trust-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #eef5f1, #f7f1e4);
    color: var(--primary);
    border: 1px solid rgba(11, 48, 34, 0.08);
    flex-shrink: 0;
}

.td-trust-text strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.82rem;
    color: var(--primary);
    line-height: 1.25;
}

.td-trust-text span {
    font-size: 0.72rem;
    color: var(--text-muted);
}

/* --- SECTION --- */
.td-section {
    padding: 18px 0;
}

.td-section-alt {
    background: #fff;
}

.td-section-head {
    text-align: center;
    margin-bottom: 26px;
}

.td-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent-hover, #b08d3e);
    margin-bottom: 8px;
}

.td-eyebrow::before,
.td-eyebrow::after {
    content: '';
    width: 22px;
    height: 1px;
    background: var(--accent);
}

.td-title {
    font-family: var(--font-heading);
    font-size: clamp(1.25rem, 2.5vw, 1.65rem);
    font-weight: 800;
    color: var(--primary);
    margin: 0;
}

.td-sub {
    margin: 8px auto 0;
    max-width: 540px;
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* --- EXPLORE + PACKAGES GRID --- */
.td-explore-grid {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 22px;
    align-items: start;
}

.td-park-side {
    background: #fff;
    border: 1px solid #e8ebe9;
    border-radius: 14px;
    padding: 16px;
    position: sticky;
    top: calc(var(--header-height) + 16px);
}

.td-park-side h3 {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--primary);
    margin: 0 0 12px;
}

.td-park-link {
       display: flex;
    align-items: center;
    gap: 10px;
    background: #0b3022;
    padding: 8px;
    border-radius: 10px;
    text-decoration: none;
    color: #ffffff;
    transition: background 0.2s ease;
    margin-bottom: 4px;
}

.td-park-link:hover,
.td-park-link.active {
    background: #2f3833;
}

.td-park-link img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.td-park-link span {
    flex: 1;
    font-size: 0.84rem;
    font-weight: 600;
}

.td-park-link i {
    color: #fff;
    font-size: 0.75rem;
}

.td-pkg-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.td-pkg-card {
    background: #fff;
    border: 1px solid #e8ebe9;
    border-radius: 14px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    display: block;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    position: relative;
}

.td-pkg-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(11, 48, 34, 0.1);
}

.td-pkg-media {
    position: relative;
    height: 150px;
}

.td-pkg-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.td-pkg-ribbon {
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 4px 9px;
    border-radius: 6px;
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #fff;
}

.td-pkg-ribbon.best { background: #c5a059; }
.td-pkg-ribbon.popular { background: #2563eb; }
.td-pkg-ribbon.new { background: var(--primary); }

.td-pkg-body {
    padding: 14px;
}

.td-pkg-body h4 {
    font-family: var(--font-heading);
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--primary);
    margin: 0 0 6px;
    line-height: 1.3;
}

.td-pkg-body p {
       font-size: 13px;
    color: #373c39;
    margin: 0 0 10px;
    line-height: 1.4;
}

.td-pkg-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

.td-pkg-duration {
    font-size: 0.75rem;
    color: var(--text-muted);
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.td-pkg-price {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 800;
    color: var(--accent-hover, #b08d3e);
}

/* Overview highlight card */
.td-overview-card {
    grid-column: 1 / -1;
    background: linear-gradient(135deg, #fff 0%, #f8faf8 100%);
    border: 1px solid #e8ebe9;
    border-radius: 14px;
    padding: 20px;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 18px;
}

.td-overview-card h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary);
    margin: 0 0 10px;
}

.td-overview-card p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0 0 12px;
}

.td-overview-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.td-stat {
    background: #fff;
    border: 1px solid #e8ebe9;
    border-radius: 10px;
    padding: 12px;
    text-align: center;
}

.td-stat strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 1rem;
    color: var(--primary);
}

.td-stat span {
    font-size: 0.72rem;
    color: var(--text-muted);
}

/* --- ITINERARY + DESTINATIONS --- */
.td-trip-grid {
       display: grid;
    grid-template-columns: 0.65fr 0.85fr 0.65fr;
    gap: 18px;
    align-items: start;
}

.td-panel {
    background: #fff;
    border: 1px solid #e8ebe9;
    border-radius: 14px;
    padding: 18px;
}

.td-panel h3 {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--primary);
    margin: 0 0 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.td-panel h3 i { color: var(--accent); }

.td-timeline {
    position: relative;
    padding-left: 28px;
}

.td-timeline::before {
    content: '';
    position: absolute;
    left: 9px;
    top: 6px;
    bottom: 6px;
    width: 2px;
    background: #d7e5dd;
}

.td-day {
    position: relative;
    margin-bottom: 18px;
}

.td-day:last-child { margin-bottom: 0; }

.td-day-dot {
    position: absolute;
    left: -28px;
    top: 2px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    font-size: 0.65rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid #eef5f1;
}

.td-day h4 {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--primary);
    margin: 0 0 6px;
}

.td-day p {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.55;
    margin: 0;
}

.td-map-box {
    background: linear-gradient(160deg, #e8f2ec, #f4efe4);
    border-radius: 12px;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 16px;
    text-align: center;
    margin-bottom: 12px;
    position: relative;
    overflow: hidden;
}

.td-map-box i.fa-map {
    font-size: 3rem;
    color: var(--primary);
    opacity: 0.35;
    margin-bottom: 8px;
}

.td-map-box strong {
    font-family: var(--font-heading);
    color: var(--primary);
    font-size: 0.95rem;
}

.td-map-box span {
    font-size: 0.78rem;
    color: var(--text-muted);
}

.td-legend {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.td-legend span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
    color: var(--text-muted);
}

.td-legend i { color: var(--primary); }

.td-attraction {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-bottom: 12px;
    text-decoration: none;
    color: inherit;
}

.td-attraction:last-child { margin-bottom: 0; }

.td-attraction img {
    width: 56px;
    height: 48px;
    object-fit: cover;
    border-radius: 8px;
}

.td-attraction h4 {
    font-size: 0.84rem;
    font-weight: 700;
    color: var(--primary);
    margin: 0 0 2px;
    font-family: var(--font-heading);
}

.td-attraction p {
    font-size: 0.74rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.35;
}

/* --- INC / EXC + PRICING --- */
.td-inc-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 20px;
}

.td-inc-col {
    background: #fff;
    border: 1px solid #e8ebe9;
    border-radius: 14px;
    padding: 18px;
}

.td-inc-col h3 {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    margin: 0 0 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.td-inc-col.include h3 { color: #166534; }
.td-inc-col.exclude h3 { color: #b91c1c; }

.td-inc-col ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.td-inc-col li {
/*    display: flex;*/
    align-items: flex-start;
    gap: 8px;
    font-size: 0.84rem;
    color: var(--text-muted);
    line-height: 1.45;
    margin-bottom: 8px;
}

.td-inc-col.include li i { color: #16a34a; margin-top: 2px; }
.td-inc-col.exclude li i { color: #dc2626; margin-top: 2px; }

.td-price-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid #e8ebe9;
    font-size: 0.88rem;
}

.td-price-table th,
.td-price-table td {
    padding: 12px 16px;
    text-align: left;
    border-bottom: 1px solid #e8ebe9;
}

.td-price-table th {
    background: #eef5f1;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--primary);
}

.td-price-table .price-cell {
    font-weight: 800;
    color: var(--primary);
    font-family: var(--font-heading);
}

.td-tier {
    display: inline-block;
    padding: 3px 9px;
    border-radius: 999px;
    font-size: 0.7rem;
    font-weight: 700;
    background: #f3f4f6;
    color: var(--text-dark);
}

.td-tier.deluxe { background: #eff6ff; color: #1d4ed8; }
.td-tier.premium { background: #faf5ff; color: #7e22ce; }
.td-tier.luxury { background: #fffbeb; color: #b45309; }

/* --- GALLERY --- */
.td-gallery {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr;
    grid-template-rows: 140px 140px;
    gap: 10px;
}

.td-gallery a {
    display: block;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
}

.td-gallery a:first-child {
    grid-row: 1 / 3;
}

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

.td-gallery a:hover img {
    transform: scale(1.06);
}

/* --- REVIEWS --- */
.td-reviews {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.td-review {
    background: #fff;
    border: 1px solid #e8ebe9;
    border-radius: 14px;
    padding: 18px;
}

.td-review-stars {
    color: #f5b301;
    font-size: 0.8rem;
    margin-bottom: 10px;
    display: flex;
    gap: 2px;
}

.td-review p {
    font-size: 0.86rem;
    color: var(--text-muted);
    line-height: 1.55;
    font-style: italic;
    margin: 0 0 14px;
}

.td-review-author {
    display: flex;
    align-items: center;
    gap: 10px;
}

.td-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
}

.td-review-author strong {
    display: block;
    font-size: 0.84rem;
    color: var(--primary);
    font-family: var(--font-heading);
}

.td-review-author span {
    font-size: 0.72rem;
    color: var(--text-muted);
}

/* --- FAQ --- */
.td-faq-list {
    max-width: 820px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.td-faq-item {
    background: #fff;
    border: 1px solid #e8ebe9;
    border-radius: 10px;
    overflow: hidden;
}

.td-faq-q {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 16px;
    background: transparent;
    border: none;
    text-align: left;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--primary);
    cursor: pointer;
    font-family: var(--font-heading);
}

.td-faq-q i {
    color: var(--accent);
    transition: transform 0.25s ease;
}

.td-faq-item.is-open .td-faq-q i {
    transform: rotate(45deg);
}

.td-faq-a {
    display: none;
    padding: 0 16px 14px;
    font-size: 0.86rem;
    color: var(--text-muted);
    line-height: 1.55;
}

.td-faq-item.is-open .td-faq-a {
    display: block;
}

/* --- OFFERS --- */
.td-offers {
    background: linear-gradient(120deg, #0b3022 0%, #164a36 55%, #1a3a28 100%);
    color: #fff;
    padding: 28px 0;
}

.td-offers-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.td-offers-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
}

.td-offer-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.84rem;
}

.td-offer-item i {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(197, 160, 89, 0.5);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
}

.td-offers .td-btn-gold {
    flex-shrink: 0;
}

/* --- NEWSLETTER --- */
.td-newsletter {
    background: #0b3022;
    color: #fff;
    padding: 28px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.td-newsletter-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.td-newsletter-inner h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    margin: 0 0 4px;
}

.td-newsletter-inner p {
    margin: 0;
    font-size: 0.84rem;
    opacity: 0.85;
}

.td-newsletter-form {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.td-newsletter-form input {
    min-width: 220px;
    padding: 11px 14px;
    border: none;
    border-radius: 8px;
}

.td-newsletter-form button {
    padding: 11px 18px;
    background: var(--accent);
    color: var(--primary);
    border: none;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
}

/* --- RESPONSIVE --- */
@media (max-width: 1100px) {
    .td-search-bar {
        grid-template-columns: repeat(3, 1fr);
    }

    .td-hero-inner {
        grid-template-columns: 1fr;
        gap: 20px;
        align-items: stretch;
    }

    .td-book-card {
        max-width: none;
        margin-left: 0;
    }

    .td-trip-grid {
        grid-template-columns: 1fr 1fr;
    }

    .td-trip-grid .td-panel:first-child {
        grid-column: 1 / -1;
    }
}

@media (max-width: 900px) {
    .td-explore-grid {
        grid-template-columns: 1fr;
    }

    .td-park-side {
        position: static;
    }

    .td-trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .td-overview-card {
        grid-template-columns: 1fr;
    }

    .td-gallery {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 160px 120px 120px;
    }

    .td-gallery a:first-child {
        grid-column: 1 / 3;
        grid-row: 1;
    }

    .td-reviews {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .td-search-bar {
        grid-template-columns: 1fr;
    }

    .td-pkg-grid {
        grid-template-columns: 1fr;
    }

    .td-trip-grid,
    .td-inc-grid,
    .td-trust-grid {
        grid-template-columns: 1fr;
    }

    .td-gallery {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(5, 150px);
    }

    .td-gallery a:first-child {
        grid-column: auto;
        grid-row: auto;
    }

    .td-newsletter-form input {
        min-width: 0;
        width: 100%;
    }
}
.hotel-detail-facilities {
   
  
    list-style: none;
    margin: 0 0 32px;
    padding: 0;
}
.hotel-detail-facilities li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    /* background: #fff; */
    /* border: 1px solid #ebe3cf; */
    border-radius: 12px;
    font-size: 14px;
    color: #2f3b33;
    /* box-shadow: 0 2px 10px rgba(26, 46, 34, .04); */
    transition: border-color .2s, transform .2s, box-shadow .2s;
}
.hotel-detail-facilities .hf-icon {
    flex-shrink: 0;
       width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f7f0dc, #fff);
    border: 1px solid #e8dfc8;
    border-radius: 10px;
    color: #6b7a62;
}
/* ==========================================================================
   Hotel / Resort Detail Page â€” compact, image-led layout
   ========================================================================== */

.hotel-detail-page {
    background: var(--bg-light);
}

/* --- HERO WITH BOOKING WIDGET --- */
.hd-hero {
    position: relative;
    min-height: 420px;
    display: flex;
    align-items: stretch;
    color: #fff;
    /* visible so booking widget custom dropdown is not clipped */
    overflow: visible;
}

.hd-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    z-index: 0;
  
    overflow: hidden;
    border-radius: 0;
    clip-path: inset(0);
}

.hd-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        105deg,
        rgba(11, 48, 34, 0.88) 0%,
        rgba(11, 48, 34, 0.62) 48%,
        rgba(11, 48, 34, 0.45) 100%
    );
    z-index: 1;
}

.hd-hero-inner {
    position: relative;
    z-index: 2;
    width: 100%;
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 28px;
    align-items: end;
   
    padding-bottom: 32px;
}

.hd-hero-copy {
    max-width: 560px;
    padding-bottom: 76px;
}

.hd-hero-copy .detail-breadcrumb {
    margin-bottom: 14px;
}

.hd-hero-stars {
    display: flex;
    align-items: center;
    gap: 4px;
    color: #f5b301;
    font-size: 0.85rem;
    margin-bottom: 10px;
}

.hd-hero-stars .hd-star-label {
    margin-left: 8px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.78rem;
    font-weight: 600;
}

.hd-hero-title {
    font-family: var(--font-heading);
    font-size: clamp(1.55rem, 3.6vw, 2.35rem);
    font-weight: 800;
    line-height: 1.15;
    margin: 0 0 10px;
    text-shadow: 0 2px 14px rgba(0, 0, 0, 0.3);
}

.hd-hero-desc {
    font-size: 0.92rem;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.88);
    margin: 0 0 14px;
    max-width: 480px;
}

.hd-hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 14px 18px;
    margin-bottom: 18px;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.85);
}

.hd-hero-meta span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.hd-hero-meta i {
    color: var(--accent);
}

.hd-hero-price {
    font-family: var(--font-heading);
    font-size: 1.45rem;
    font-weight: 800;
    margin-bottom: 16px;
}

.hd-hero-price small {
    font-size: 0.78rem;
    font-weight: 500;
    opacity: 0.8;
    margin-left: 4px;
}

.hd-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.hd-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 11px 20px;
    border-radius: var(--radius-md);
    font-size: 0.82rem;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: 0.02em;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.hd-btn-primary {
    background: var(--primary);
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
}

.hd-btn-primary:hover {
    background: #0d3d2b;
    color: #fff;
    transform: translateY(-2px);
}

.hd-btn-outline {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.55);
}

.hd-btn-outline:hover {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    border-color: #fff;
}

/* Booking widget */
.hd-book-card {
    background: rgba(255, 255, 255, 0.96);
    border-radius: 14px;
    padding: 20px 18px;
    color: var(--text-dark);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(8px);
    max-width: 340px;
    margin-left: auto;
    position: relative;
    z-index: 8;
    overflow: visible;
        margin-top: 12px;
}

.hd-book-card h3 {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--primary);
    margin: 0 0 14px;
    text-align: center;
}

.hd-book-field {
    margin-bottom: 12px;
}

.hd-book-field label {
    display: block;
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 5px;
}

.hd-book-field input,
.hd-book-field select {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #e2e8e5;
    border-radius: 8px;
    font-size: 0.88rem;
    background: #fff;
    color: var(--text-dark);
    outline: none;
    transition: border-color 0.2s ease;
}

.hd-book-field input:focus,
.hd-book-field select:focus {
    border-color: var(--primary);
}

.hd-book-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.hd-book-row .hd-book-field {
    min-width: 0;
}

/* Custom National Park dropdown (native select is clipped by hero layers) */
.hd-select {
    position: relative;
    z-index: 20;
}

.hd-select-trigger {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 10px 12px;
    border: 1px solid #e2e8e5;
    border-radius: 8px;
    font-size: 0.88rem;
    font-family: inherit;
    background: #fff;
    color: var(--text-dark);
    cursor: pointer;
    text-align: left;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.hd-select-trigger:hover,
.hd-select-trigger:focus,
.hd-select.is-open .hd-select-trigger {
    border-color: var(--primary);
    outline: none;
    box-shadow: 0 0 0 3px rgba(11, 48, 34, 0.08);
}

.hd-select-label {
    flex: 1;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.hd-select-trigger i {
    font-size: 0.72rem;
    color: #64748b;
    transition: transform 0.2s ease;
}

.hd-select.is-open .hd-select-trigger i {
    transform: rotate(180deg);
}

.hd-select-menu {
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 6px);
    margin: 0;
    padding: 6px;
    list-style: none;
    background: #fff;
    border: 1px solid #e2e8e5;
    border-radius: 10px;
    box-shadow: 0 14px 32px rgba(11, 48, 34, 0.16);
    z-index: 40;
    max-height: 240px;
    overflow-y: auto;
}

.hd-select-menu[hidden] {
    display: none !important;
}

.hd-select-menu li {
    padding: 10px 12px;
    border-radius: 7px;
    font-size: 0.86rem;
    color: var(--text-dark);
    cursor: pointer;
    line-height: 1.35;
}

.hd-select-menu li:hover,
.hd-select-menu li:focus {
    background: #f3f7f5;
    outline: none;
}

.hd-select-menu li.is-selected {
    background: var(--primary);
    color: #fff;
    font-weight: 600;
}

.hd-category-tabs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 4px;
    background: var(--bg-light);
    padding: 4px;
    border-radius: 8px;
}

.hd-category-tab {
    border: none;
    background: transparent;
    padding: 7px 4px;
    font-size: 0.68rem;
    font-weight: 700;
    color: var(--text-muted);
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.hd-category-tab.active,
.hd-category-tab:hover {
    background: var(--primary);
    color: #fff;
}

.hd-book-submit {
    width: 100%;
    margin-top: 4px;
    padding: 12px;
    background: var(--primary);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
}

.hd-book-submit:hover {
    background: #0d3d2b;
    transform: translateY(-1px);
}

/* --- TRUST BAR --- */
.hd-trust {
    background: #fff;
    border-bottom: 1px solid #e8ebe9;
    padding: 18px 0;
}

.hd-trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.hd-trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 4px 8px;
}

.hd-trust-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, #eef5f1, #f7f1e4);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
    border: 1px solid rgba(11, 48, 34, 0.08);
}

.hd-trust-text strong {
    display: block;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--primary);
    font-family: var(--font-heading);
    line-height: 1.25;
}

.hd-trust-text span {
    font-size: 0.72rem;
    color: var(--text-muted);
    line-height: 1.3;
}

/* --- SECTION COMMON --- */
.hd-section {
    padding: 15px 0;
}

.hd-section-alt {
    background: #fff;
}

.hd-section-head {
    text-align: center;
    margin-bottom: 28px;
}

.hd-section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent-hover, #b08d3e);
    margin-bottom: 8px;
}

.hd-section-eyebrow::before,
.hd-section-eyebrow::after {
    content: '';
    width: 22px;
    height: 1px;
    background: var(--accent);
}

.hd-section-title {
    font-family: var(--font-heading);
    font-size: clamp(1.25rem, 2.5vw, 1.65rem);
    font-weight: 800;
    color: var(--primary);
    margin: 0;
}

.hd-section-sub {
    margin: 8px auto 0;
    max-width: 520px;
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* --- ABOUT SPLIT --- */
.hd-about-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 28px;
    align-items: start;
}

.hd-about-card {
    background: #fff;
    border-radius: 14px;
    padding: 24px;
    border: 1px solid #e8ebe9;
    box-shadow: 0 4px 18px rgba(11, 48, 34, 0.05);
}

.hd-about-card h2 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--primary);
    margin: 0 0 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.hd-about-card h2 i {
    color: var(--accent);
}

.hd-about-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.65;
    margin: 0 0 12px;
}

.hd-about-card p:last-child {
    margin-bottom: 0;
}

.hd-location-pill {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 0.84rem;
    color: var(--text-muted);
    background: var(--bg-light);
    border-radius: 8px;
    padding: 10px 12px;
    margin-bottom: 14px;
    border-left: 3px solid var(--accent);
}

.hd-location-pill i {
    color: var(--accent-hover, #b08d3e);
    margin-top: 2px;
}

.hd-rooms-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.hd-room-row {
    display: grid;
    grid-template-columns: 72px 1fr auto;
    gap: 12px;
    align-items: center;
    background: #fff;
    border: 1px solid #e8ebe9;
    border-radius: 10px;
    padding: 10px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.hd-room-row:hover {
    border-color: var(--accent);
    box-shadow: 0 4px 14px rgba(11, 48, 34, 0.08);
}

.hd-room-row img {
    width: 72px;
    height: 56px;
    object-fit: cover;
    border-radius: 7px;
}

.hd-room-row h4 {
    font-family: var(--font-heading);
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--primary);
    margin: 0 0 2px;
}

.hd-room-row p {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.35;
}

.hd-room-count {
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--accent-hover, #b08d3e);
    white-space: nowrap;
    background: #faf6ee;
    padding: 4px 8px;
    border-radius: 999px;
}

/* --- AMENITIES --- */
.hd-amenities-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 14px;
}

.hd-amenity {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
    padding: 18px 10px;
    background: #fff;
    border: 1px solid #e8ebe9;
    border-radius: 12px;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.hd-amenity:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(11, 48, 34, 0.08);
    border-color: rgba(197, 160, 89, 0.45);
}

.hd-amenity-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    background: linear-gradient(145deg, #eef5f1, #f8f1e3);
    color: var(--primary);
    border: 1px solid rgba(11, 48, 34, 0.08);
}

.hd-amenity span {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.3;
}

/* --- GALLERY --- */
.hd-gallery {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    grid-template-rows: 160px 160px;
    gap: 10px;
}

.hd-gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    display: block;
}

.hd-gallery-item:first-child {
    grid-row: 1 / 3 ;
}

.hd-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.hd-gallery-item:hover img {
    transform: scale(1.06);
}

.hd-gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 55%, rgba(11, 48, 34, 0.45) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.hd-gallery-item:hover::after {
    opacity: 1;
}

/* --- IDEAL TAGS --- */
.hd-ideal {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin-top: 8px;
}

.hd-ideal span {
    padding: 7px 14px;
    background: #fff;
    border: 1px solid rgba(197, 160, 89, 0.35);
    color: var(--primary);
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* --- TESTIMONIALS --- */
.hd-reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.hd-review-card {
    background: #fff;
    border: 1px solid #e8ebe9;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 14px rgba(11, 48, 34, 0.04);
}

.hd-review-stars {
    color: #f5b301;
    font-size: 0.8rem;
    margin-bottom: 10px;
    display: flex;
    gap: 2px;
}

.hd-review-card p {
    font-size: 0.86rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0 0 14px;
    font-style: italic;
}

.hd-review-author {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--primary);
    font-family: var(--font-heading);
}

.hd-review-author span {
    display: block;
    font-size: 0.72rem;
    font-weight: 500;
    color: var(--text-muted);
    font-family: var(--font-body, inherit);
    margin-top: 2px;
}

/* --- FAQ + CTA SPLIT --- */
.hd-faq-cta-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 24px;
    align-items: start;
}

.hd-faq-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.hd-faq-item {
    background: #fff;
    border: 1px solid #e8ebe9;
    border-radius: 10px;
    overflow: hidden;
}

.hd-faq-q {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 16px;
    background: transparent;
    border: none;
    text-align: left;
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--primary);
    cursor: pointer;
    font-family: var(--font-heading);
}

.hd-faq-q i {
    color: var(--accent);
    transition: transform 0.25s ease;
    flex-shrink: 0;
}

.hd-faq-item.is-open .hd-faq-q i {
    transform: rotate(45deg);
}

.hd-faq-a {
    display: none;
    padding: 0 16px 14px;
    font-size: 0.84rem;
    color: var(--text-muted);
    line-height: 1.55;
}

.hd-faq-item.is-open .hd-faq-a {
    display: block;
}

.hd-side-cta {
    background: linear-gradient(145deg, var(--primary) 0%, #0d4a35 100%);
    color: #fff;
    border-radius: 14px;
    padding: 24px;
    position: sticky;
    top: calc(var(--header-height) + 16px);
}

.hd-side-cta h3 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 800;
    margin: 0 0 8px;
}

.hd-side-cta p {
    font-size: 0.86rem;
    opacity: 0.9;
    line-height: 1.5;
    margin: 0 0 16px;
}

.hd-side-cta .hd-btn-primary {
    width: 100%;
    background: #fff;
    color: var(--primary);
    border-color: #fff;
    margin-bottom: 10px;
}

.hd-side-cta .hd-btn-primary:hover {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent);
}

.hd-side-cta .hd-btn-outline {
    width: 100%;
    border-color: rgba(255, 255, 255, 0.45);
}

.hd-side-phone {
    margin-top: 16px;
    padding-top: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    font-size: 0.82rem;
    opacity: 0.9;
}

.hd-side-phone strong {
    display: block;
    font-size: 1rem;
    margin-top: 4px;
}

/* --- RELATED RESORTS (horizontal rows like mockup) --- */
.hd-related-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.hd-related-row {
    display: grid;
    grid-template-columns: 120px 1fr auto;
    gap: 16px;
    align-items: center;
    background: #fff;
    border: 1px solid #e8ebe9;
    border-radius: 12px;
    padding: 10px;
    text-decoration: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.hd-related-row:hover {
    border-color: var(--accent);
    box-shadow: 0 8px 22px rgba(11, 48, 34, 0.08);
    transform: translateY(-2px);
}

.hd-related-row img {
    width: 120px;
    height: 78px;
    object-fit: cover;
    border-radius: 8px;
}

.hd-related-row h4 {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--primary);
    margin: 0 0 4px;
}

.hd-related-row p {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.4;
}

.hd-related-explore {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 9px 16px;
    background: var(--primary);
    color: #fff;
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    white-space: nowrap;
}

.hd-related-row:hover .hd-related-explore {
    background: #0d3d2b;
}

/* --- NEWSLETTER STRIP --- */
.hd-newsletter {
    background: linear-gradient(120deg, #0b3022 0%, #164a36 55%, #1a3a28 100%);
    color: #fff;
    padding: 28px 0;
}

.hd-newsletter-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.hd-newsletter-copy {
    display: flex;
    align-items: center;
    gap: 14px;
}

.hd-newsletter-copy i {
    font-size: 1.6rem;
    color: var(--accent);
}

.hd-newsletter-copy h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0 0 4px;
}

.hd-newsletter-copy p {
    margin: 0;
    font-size: 0.84rem;
    opacity: 0.85;
}

.hd-newsletter-form {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.hd-newsletter-form input {
    min-width: 220px;
    padding: 11px 14px;
    border: none;
    border-radius: 8px;
    font-size: 0.88rem;
}

.hd-newsletter-form button {
    padding: 11px 18px;
    background: var(--accent);
    color: var(--primary);
    border: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.82rem;
    cursor: pointer;
}

.hd-newsletter-form button:hover {
    background: #d4b36a;
}

/* --- RESPONSIVE --- */
@media (max-width: 992px) {
    .hd-hero-inner {
        grid-template-columns: 1fr;
        align-items: start;
    }

    .hd-book-card {
        max-width: none;
        margin-left: 0;
    }

    .hd-hero {
        min-height: auto;
    }

    .hd-trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hd-about-grid,
    .hd-faq-cta-grid {
        grid-template-columns: 1fr;
    }

    .hd-amenities-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .hd-gallery {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 180px 140px 140px;
    }

    .hd-gallery-item:first-child {
             grid-column: 1 / 3 !important;
        grid-row: 1;
    }

    .hd-reviews-grid {
        grid-template-columns: 1fr;
    }

    .hd-side-cta {
        position: static;
    }
}

@media (max-width: 600px) {
    .hd-trust-grid {
        grid-template-columns: 1fr;
    }

    .hd-amenities-grid {
        grid-template-columns: repeat(2, 1fr);
    }

/*    .hd-gallery {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(5, 160px);
    }*/
.hd-hero-copy{
    max-width: 543px;
    padding-bottom: 1px;
}

    .hd-gallery-item:first-child {
        grid-column: auto;
        grid-row: auto;
    }

    .hd-related-row {
        grid-template-columns: 88px 1fr;
    }

    .hd-related-explore {
        grid-column: 1 / -1;
        justify-content: center;
    }

    .hd-room-row {
        grid-template-columns: 64px 1fr;
    }

    .hd-room-count {
        grid-column: 2;
        justify-self: start;
    }

    .hd-category-tabs {
        grid-template-columns: repeat(2, 1fr);
    }

    .hd-newsletter-form input {
        min-width: 0;
        width: 100%;
    }
}

.sh-section {
    padding: 0px 0 48px;
    position: relative;
}
.sh-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin: 0 auto 10px;
    max-width: 220px;
    color: var(--sh-accent);
}
.sh-section-head-row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    text-align: left;
    gap: 12px;
}
.sh-section-head {
   
    margin-bottom: 30px;
}

.sh-section-head h2 {
   
    font-family: inherit;
   font-size: 17px;
    font-weight: 800;
    color: var(--sh-green);
   
    
    display: inline-flex;
    align-items: center;
    gap: 16px;
}
.sh-blog-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}
.sh-blog-item {
    display: flex;
    flex-direction: column;
    gap: 10px;
    background: #fff;
    border: 1px solid #dfe6e1;
    border-radius: 10px;
    padding: 8px;
    text-decoration: none;
    color: inherit;
    transition: box-shadow .15s ease, transform .15s ease;
}
.sh-blog-item img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 7px;
    display: block;
}
.sh-blog-item h3 {
    display: block;
    font-size: .8rem;
    color: var(--sh-green);
    line-height: 1.35;
    margin-bottom: 4px;
}
.sh-blog-item p {
  color: var(--text-muted);
    font-size: 13px;
    line-height: 1.65;
    text-align: justify;
}
/* ---- Split detail + calendar booking (8 / 4) ---- */
.sb-hero-compact { min-height: 170px; }
.sb-hero-compact .sb-hero-inner { padding-bottom: 20px; padding-top: calc(var(--header-height, 80px) + 12px); }
.sb-hero-compact h1 { font-size: clamp(1.35rem, 2.6vw, 1.85rem); margin: 4px 0 0; }
.sb-section { padding: 5px 0 36px; }

.sb-split {
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(280px, 1fr); /* ~8 / 4 */
    gap: 16px;
    align-items: start;
}

.sb-details-card,
.sb-book-card {
    background: #fff;
    border: 1px solid #e5e9e6;
    border-radius: 14px;
    box-shadow: 0 6px 18px rgba(11,48,34,.06);
}

.sb-details-card { padding: 16px 16px 18px; }
.sb-details-title {
    font-family: var(--font-heading);
    font-size: clamp(1.15rem, 2vw, 1.4rem);
    font-weight: 800;
    color: var(--primary, #0b3022);
    margin: 0 0 12px;
    line-height: 1.25;
}

.sb-alert-bar {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    background: #0b3022;
    color: #fff;
    border-radius: 10px;
    padding: 10px 12px;
    margin-bottom: 12px;
}
.sb-alert-bar i { color: var(--accent, #c5a059); margin-top: 2px; font-size: .9rem; }
.sb-alert-bar p { margin: 0; font-size: .78rem; line-height: 1.45; }

.sb-price-grid {
    display: grid;
       grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 10px;
    margin-bottom: 12px;
}
.dd-price-grid {
    display: grid;
       grid-template-columns: 1fr 1fr ;
    gap: 10px;
    margin-bottom: 12px;
}
.sb-price-card {
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    transition: box-shadow .2s ease, border-color .2s ease;
}
.sb-price-card:hover {
    border-color: #c9d8ce;
    box-shadow: 0 6px 16px rgba(11,48,34,.08);
}
.sb-price-card-head {
    background: #f3f4f6;
    padding: 8px 12px;
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .08em;
    color: #4b5563;
}
.sb-price-card-body { padding: 12px 12px 10px; }
.sb-price-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 6px;
}
.sb-price-row span {
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .05em;
    color: #64748b;
}
.sb-price-row strong {
    font-family: var(--font-heading);
    font-size: 1.28rem;
    font-weight: 800;
    color: #0b3022;
}
.sb-price-row strong .sb-price-indian-amt,
.sb-price-row strong .sb-price-foreigner-amt {
    font-size: 1.28rem;
    font-weight: 800;
    color: #0b1220;
    letter-spacing: 0;
}
.sb-price-row strong small {
    font-size: .72rem;
    font-weight: 600;
    color: #6b7280;
}
.sb-price-row.muted { margin-bottom: 4px; }
.sb-price-row.muted span { color: #a88440; }
.sb-price-row.muted strong { font-size: .88rem; color: #6b7280; }
.sb-price-dates-note {
    margin: 0 0 8px;
    font-size: 0.72rem;
    line-height: 1.35;
    color: #94a3b8;
}
.sb-zone-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin-top: 8px;
    padding-top: 8px;
    border-top: 1px dashed #e5e7eb;
}
.sb-zone-tags span {
    font-size: .68rem;
    font-weight: 600;
    color: #4b5563;
    background: #f3f4f6;
    border-radius: 999px;
    padding: 3px 8px;
    line-height: 1.3;
}

.sb-timings {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 12px;
    background: #f7f1e4;
    border-radius: 10px;
    padding: 10px 12px;
    margin-bottom: 10px;
}
.sb-timing-item {
    display: flex;
    align-items: center;
    gap: 8px;
}
.sb-timing-item i {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #fff;
    color: #a88440;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: .8rem;
}
.sb-timing-item strong {
    display: block;
    font-size: .75rem;
    color: var(--primary, #0b3022);
}
.sb-timing-item span {
    font-size: .72rem;
    color: #64748b;
}
.sb-timing-note {
    grid-column: 1 / -1;
    margin: 0;
    font-size: .68rem;
    color: #8a7a5a;
}

.sb-info-boxes {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-bottom: 12px;
}
.sb-info-box {
    display: flex;
    gap: 8px;
    align-items: flex-start;
    background: #fdf4f0;
    border: 1px solid #f3d5c8;
    border-radius: 10px;
    padding: 8px 10px;
}
.sb-info-box i { color: #c45c3e; margin-top: 1px; font-size: .85rem; }
.sb-info-box p {
    margin: 0;
    font-size: .72rem;
    color: #5c4033;
    line-height: 1.4;
}

.sb-cms-content {
    margin-top: 4px;
    font-size: .8rem;
    color: #475569;
    line-height: 1.45;
    max-height: 220px;
    overflow: auto;
    border-top: 1px solid #eef2f0;
    padding-top: 10px;
}
.sb-cms-content h1,
.sb-cms-content h2,
.sb-cms-content h3 {
    font-family: var(--font-heading);
    color: var(--primary, #0b3022);
    font-size: .92rem;
    margin: 8px 0 6px;
}
.sb-cms-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 6px 0 10px;
    font-size: .75rem;
}
.sb-cms-content table td,
.sb-cms-content table th {
    border: 1px solid #e5e9e6;
    padding: 5px 8px;
}
.sb-cms-content ul { padding-left: 16px; margin: 0 0 8px; }

.sb-book-panel { position: sticky; top: 88px; }
.sb-book-card { padding: 12px 12px 14px; }
.sb-book-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 10px;
}
.sb-book-head h2 {
    font-family: var(--font-heading);
    font-size: .92rem;
    margin: 0;
    color: var(--primary, #0b3022);
    line-height: 1.3;
}
.sb-from {
    font-size: .62rem;
    font-weight: 700;
    color: #94a3b8;
    white-space: nowrap;
    text-align: right;
}
.sb-from strong {
    display: block;
    font-size: .88rem;
    color: var(--primary, #0b3022);
}

.sb-cal-wrap {
    border: 1px solid #e8ebe9;
    border-radius: 10px;
    padding: 8px;
    margin-bottom: 10px;
    background: #fafbfa;
}
.sb-cal-label {
    font-size: .72rem;
    font-weight: 700;
    color: var(--primary, #0b3022);
    margin-bottom: 6px;
}
.sb-cal-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 6px;
}
.sb-cal-btn {
    width: 26px;
    height: 26px;
    border: 1px solid #d6e0da;
    background: #fff;
    border-radius: 6px;
    color: var(--primary, #0b3022);
    cursor: pointer;
    font-size: .7rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.sb-cal-btn:hover { background: #eef5f1; }
.sb-cal-month {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: .82rem;
    color: var(--primary, #0b3022);
}
.sb-cal-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 3px;
    text-align: center;
}
.sb-cal-dow {
    font-size: .58rem;
    font-weight: 700;
    color: #94a3b8;
    padding: 2px 0;
    text-transform: uppercase;
}
.sb-cal-day {
    aspect-ratio: 1;
    border: none;
    background: transparent;
    border-radius: 50%;
    font-size: .72rem;
    font-weight: 600;
    color: #334155;
    cursor: default;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-height: 32px;
    padding: 0;
}
.sb-cal-day.muted { color: #d1d5db; }
.sb-cal-day.available {
    background: #dcf5e2;
    color: #137333;
    cursor: pointer;
}
.sb-cal-day.available:hover {
    background: #34a853;
    color: #fff;
}
.sb-cal-day.booked {
    background: #ffe2d6;
    color: #c2410c;
}
.sb-cal-day.closed {
    color: #dc2626;
    font-weight: 700;
}
.sb-cal-day.selected {
    background: #0b3022 !important;
    color: #fff !important;
    box-shadow: 0 0 0 2px #fff, 0 0 0 3px #0b3022;
}
.sb-cal-legend {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 6px;
    font-size: .62rem;
    font-weight: 600;
    color: #64748b;
}
.sb-cal-legend .dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    display: inline-block;
    margin-right: 3px;
}
.sb-cal-legend .dot.available { background: #34a853; }
.sb-cal-legend .dot.booked { background: #fb923c; }
.sb-cal-legend .dot.closed { background: #dc2626; }
.sb-cal-selected {
    margin-top: 6px;
    background: #e8f5ec;
    color: #0b3022;
    border-radius: 6px;
    padding: 5px 8px;
    font-size: .7rem;
    font-weight: 700;
    text-align: center;
}

.sb-form-grid.compact { gap: 8px; }
.sb-book-card .sb-field label { font-size: .68rem; }
.sb-book-card .sb-field input,
.sb-book-card .sb-field select {
    padding: 8px 9px;
    font-size: .8rem;
    border-radius: 8px;
}
.sb-book-now {
    width: 100%;
    margin-top: 10px;
    border: none;
    border-radius: 9px;
    background: #c45c3e;
    color: #fff;
    font-weight: 800;
    font-size: .85rem;
    letter-spacing: .02em;
    padding: 11px 12px;
    cursor: pointer;
}
.sb-book-now:hover { filter: brightness(1.05); }
.sb-book-now:disabled { opacity: .7; cursor: wait; }
.sb-note.center { text-align: center; margin-top: 8px; font-size: .68rem; }
.sb-book-card .sb-alert { margin-top: 8px; font-size: .75rem; padding: 8px 10px; }
.box-compare{
        display: grid;
       grid-template-columns: 1fr 1fr;
    gap: 12px;
}
.why-section p{
        font-size: 14px;
} 
.why-section h2{
         margin-bottom: 7px;
    margin-top: 6px;
    font-size: 20px;
}


.contact-page {
    --ct-ink: #0b3022;
    --ct-gold: #c5a059;
    --ct-sand: #f3efe6;
    --ct-mist: #e8f0eb;
    background: #f7f5f0;
}

.ct-hero {
    position: relative;
    min-height: 0;
    display: flex;
    align-items: flex-end;
    color: #fff;
    overflow: hidden;
}

.ct-hero-media {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
}

.ct-hero-shade {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(105deg, rgba(8, 28, 20, 0.9) 0%, rgba(8, 28, 20, 0.62) 55%, rgba(8, 28, 20, 0.4) 100%),
        linear-gradient(to top, rgba(8, 28, 20, 0.45) 0%, transparent 55%);
}

.ct-hero-inner {
    position: relative;
    z-index: 1;
    width: 100%;
    padding: calc(var(--header-height, 90px) + 18px) 0 34px;
    animation: ctRise 0.8s ease-out both;
}

.ct-brand {
    margin: 0 0 6px;
    font-family: var(--font-heading, Outfit, sans-serif);
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: var(--ct-gold);
    text-transform: uppercase;
}

.ct-hero-title {
    margin: 0 0 8px;
    font-family: var(--font-heading, Outfit, sans-serif);
    font-size: clamp(1.7rem, 3.6vw, 2.35rem);
    font-weight: 800;
    line-height: 1.1;
    max-width: none;
}

.ct-hero-sub {
    margin: 0 0 16px;
    max-width: 36rem;
    font-size: 0.95rem;
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.88);
}

.ct-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.ct-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: 999px;
    font-family: var(--font-heading, Outfit, sans-serif);
    font-weight: 700;
    font-size: 0.88rem;
    text-decoration: none;
    transition: transform 0.2s ease, filter 0.2s ease, background 0.2s ease;
}

.ct-btn:hover {
    transform: translateY(-1px);
    filter: brightness(1.04);
}

.ct-btn-gold {
    background: linear-gradient(135deg, #d4b46a, #c5a059);
    color: #1a1a1a;
}

.ct-btn-ghost {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.45);
}

.ct-btn-ghost:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Quick reach strip */
.ct-quick {
    position: relative;
    z-index: 2;
    margin-top: -18px;
    margin-bottom: 4px;
}

.ct-quick-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.ct-quick-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    background: #fff;
    border: 1px solid rgba(11, 48, 34, 0.08);
    border-radius: 14px;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 8px 22px rgba(11, 48, 34, 0.07);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    animation: ctRise 0.7s ease-out both;
}

.ct-quick-item:nth-child(2) { animation-delay: 0.08s; }
.ct-quick-item:nth-child(3) { animation-delay: 0.16s; }
.ct-quick-item:nth-child(4) { animation-delay: 0.24s; }

.ct-quick-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 34px rgba(11, 48, 34, 0.12);
}

.ct-quick-item i {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--ct-mist);
    color: var(--ct-ink);
    font-size: 0.95rem;
    flex-shrink: 0;
}

.ct-quick-item .fa-whatsapp {
    color: #128c7e;
    background: #e8f8f3;
}

.ct-quick-item strong {
    display: block;
    font-family: var(--font-heading, Outfit, sans-serif);
    font-size: 0.92rem;
    color: var(--ct-ink);
    margin-bottom: 2px;
}

.ct-quick-item span {
    font-size: 0.8rem;
    color: #64748b;
}

/* Main split */
.ct-main {
    position: relative;
    padding: 28px 0 48px;
    overflow: hidden;
}

.ct-main-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 10% 20%, rgba(197, 160, 89, 0.14), transparent 45%),
        radial-gradient(ellipse at 90% 80%, rgba(11, 48, 34, 0.08), transparent 40%),
        linear-gradient(180deg, #f7f5f0 0%, #eef3ef 100%);
    z-index: 0;
}

.ct-split {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 28px;
    align-items: stretch;
}

.ct-form-panel {
    background: #fff;
    border-radius: 22px;
    padding: 34px 34px 30px;
    border: 1px solid rgba(11, 48, 34, 0.08);
    box-shadow: 0 18px 40px rgba(11, 48, 34, 0.07);
    animation: ctRise 0.75s ease-out 0.1s both;
}

.ct-kicker {
    margin: 0 0 8px;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--ct-gold);
}

.ct-kicker.light { color: #d4b46a; }

.ct-form-panel h2,
.ct-info-body h2 {
    margin: 0 0 10px;
    font-family: var(--font-heading, Outfit, sans-serif);
    font-size: clamp(1.45rem, 2.4vw, 1.9rem);
    font-weight: 800;
    color: var(--ct-ink);
    line-height: 1.15;
}

.ct-lead {
    margin: 0 0 22px;
    color: #5b6b63;
    font-size: 0.95rem;
    line-height: 1.55;
    max-width: 36rem;
}

.ct-form .ct-field { margin-bottom: 14px; }

.ct-form label {
    display: block;
    margin-bottom: 6px;
    font-size: 0.78rem;
    font-weight: 700;
    color: #3d4f46;
    letter-spacing: 0.02em;
}

.ct-form input,
.ct-form select,
.ct-form textarea {
    width: 100%;
    border: 1px solid #d7e0da;
    border-radius: 12px;
    padding: 13px 14px;
    font-size: 0.95rem;
    background: #fbfcfb;
    color: #0f172a;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.ct-form textarea {
    resize: vertical;
    min-height: 130px;
    line-height: 1.5;
}

.ct-form input:focus,
.ct-form select:focus,
.ct-form textarea:focus {
    border-color: #2f8f5b;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(47, 143, 91, 0.12);
}

.ct-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.ct-submit {
    margin-top: 6px;
    width: 100%;
    border: 0;
    border-radius: 14px;
    padding: 15px 18px;
    background: linear-gradient(135deg, #0b3022, #164a36);
    color: #fff;
    font-family: var(--font-heading, Outfit, sans-serif);
    font-weight: 800;
    font-size: 1rem;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: transform 0.2s ease, filter 0.2s ease;
}

.ct-submit:hover {
    filter: brightness(1.06);
    transform: translateY(-1px);
}

.ct-submit:disabled {
    opacity: 0.65;
    cursor: not-allowed;
    transform: none;
}

.ct-submit i {
    color: var(--ct-gold);
    transition: transform 0.2s ease;
}

.ct-submit:hover i {
    transform: translateX(3px);
}

.ct-msg {
    margin-bottom: 14px;
    padding: 12px 14px;
    border-radius: 12px;
    font-size: 0.88rem;
    font-weight: 600;
    line-height: 1.4;
}

.ct-msg.ok {
    background: #e8f8ee;
    color: #137333;
    border: 1px solid #b7ebc6;
}

.ct-msg.err {
    background: #fdecea;
    color: #b3261e;
    border: 1px solid #f5c2c0;
}

/* Info panel */
.ct-info-panel {
    border-radius: 22px;
    overflow: hidden;
    background: #0b3022;
    color: #fff;
    display: flex;
    flex-direction: column;
    min-height: 100%;
    box-shadow: 0 18px 40px rgba(11, 48, 34, 0.18);
    animation: ctRise 0.75s ease-out 0.2s both;
}

.ct-info-photo {
    height: 180px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.ct-info-photo::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 20%, rgba(11, 48, 34, 0.85) 100%);
}

.ct-info-body {
    padding: 8px 26px 26px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.ct-info-body h2 {
    color: #fff;
    margin-bottom: 18px;
}

.ct-info-block {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.ct-info-block:last-of-type {
    border-bottom: 0;
}

.ct-info-block i {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    background: rgba(197, 160, 89, 0.18);
    color: var(--ct-gold);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.ct-info-block strong {
    display: block;
    font-family: var(--font-heading, Outfit, sans-serif);
    font-size: 0.88rem;
    margin-bottom: 4px;
    color: #fff;
}

.ct-info-block p {
    margin: 0;
    font-size: 0.86rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.78);
}

.ct-info-block a {
    color: #f0d9a0;
    text-decoration: none;
}

.ct-info-block a:hover {
    color: #fff;
}

.ct-info-links {
    margin-top: auto;
    padding-top: 18px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.ct-info-links a {
    text-decoration: none;
    color: #fff;
    font-size: 0.78rem;
    font-weight: 700;
    padding: 8px 12px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    transition: background 0.2s ease, border-color 0.2s ease;
}

.ct-info-links a:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.4);
}

/* Bottom CTA */
.ct-map-note {
    padding: 0 0 64px;
}

.ct-map-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 28px 32px;
    border-radius: 20px;
    background:
        linear-gradient(120deg, rgba(11, 48, 34, 0.94), rgba(22, 74, 54, 0.9)),
        url('../backup/uploads/demo/general/bg-contact.jpg') center/cover;
    color: #fff;
    box-shadow: 0 16px 36px rgba(11, 48, 34, 0.16);
}

.ct-map-inner h2 {
    margin: 0 0 8px;
    font-family: var(--font-heading, Outfit, sans-serif);
    font-size: 1.35rem;
    font-weight: 800;
}

.ct-map-inner p {
    margin: 0;
    max-width: 40rem;
    font-size: 0.92rem;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.84);
}

@keyframes ctHeroZoom {
    from { transform: scale(1.08); }
    to { transform: scale(1.02); }
}

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

@media (max-width: 980px) {
    .ct-quick-row {
        grid-template-columns: 1fr 1fr;
    }
    .ct-split {
        grid-template-columns: 1fr;
    }
    .ct-map-inner {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 640px) {
    .ct-quick {
        margin-top: 11px;
    }
    .ct-quick-row,
    .ct-grid-2 {
        grid-template-columns: 1fr;
    }
    .ct-form-panel {
        padding: 24px 18px;
    }
    .ct-hero-inner {
        padding: calc(var(--header-height, 90px) + 14px) 0 28px;
    }
    .about-story-gridss{
            grid-template-columns: repeat(1, 1fr);
    }
    .sh-blog-list {
  
    grid-template-columns: repeat(1, 1fr);
    
}
.box-compare {
   
    grid-template-columns: 1fr;
   
}
.sh-section {
    padding: 0px 0 10px;
    position: relative;
}
    .contact-icon-box {
        width: 30px;
        height: 30px;
    }
    .section-header {
   
    max-width: 650px;
  
}
.sb-price-grid{
        grid-template-columns: 1fr;
}
}
/* Pay Now + Thank You â€” GTI Travels theme */
.pay-now-page {
    background: #f6f4ef;
}

.pn-hero {
    position: relative;
    min-height: 220px;
    display: flex;
    align-items: flex-end;
    color: #fff;
    overflow: hidden;
}

.pn-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background:
        linear-gradient(120deg, #0b3022 0%, #164a36 45%, #1a3a28 100%);
}

.pn-hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 15% 30%, rgba(197, 160, 89, 0.18) 0 2px, transparent 3px),
        radial-gradient(circle at 80% 40%, rgba(255, 255, 255, 0.08) 0 2px, transparent 3px);
}

.pn-hero--success .pn-hero-bg {
    background: linear-gradient(120deg, #0b3022 0%, #145a37 50%, #1a3a28 100%);
}

.pn-hero-inner {
    position: relative;
    z-index: 1;
    width: 100%;
    padding-top: calc(var(--header-height, 80px) + 16px);
    padding-bottom: 28px;
}

.pn-hero .detail-breadcrumb {
    margin-bottom: 8px;
}

.pn-hero h1 {
    margin: 8px 0 8px;
    font-family: var(--font-heading, Georgia, serif);
    font-size: clamp(1.5rem, 3.2vw, 2.2rem);
    font-weight: 800;
    line-height: 1.2;
}

.pn-hero-sub {
    margin: 0;
    font-size: 0.92rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.85);
    max-width: 560px;
}

.pn-section {
    padding: 36px 0 56px;
}

.pn-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.55fr) minmax(240px, 0.7fr);
    gap: 22px;
    align-items: start;
}

.pn-card {
    background: #fff;
    border: 1px solid #e5e1d6;
    border-radius: 14px;
    padding: 26px 26px 22px;
    box-shadow: 0 12px 32px rgba(15, 40, 28, 0.06);
}

.pn-card-head {
    margin-bottom: 20px;
    padding-bottom: 14px;
    border-bottom: 1px solid #eee9df;
}

.pn-card-head h2 {
    margin: 0 0 6px;
    font-family: var(--font-heading, Georgia, serif);
    font-size: 1.35rem;
    color: var(--primary, #0b3022);
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.pn-card-head p {
    margin: 0;
    font-size: 0.86rem;
    color: #64748b;
    line-height: 1.45;
}

.pn-card-head span {
    color: #c2410c;
    font-weight: 700;
}

.pn-alert {
    margin-bottom: 14px;
    padding: 10px 12px;
    border-radius: 8px;
    font-size: 0.84rem;
    font-weight: 600;
    line-height: 1.4;
}

.pn-alert.is-error {
    background: #fef2f2;
    border: 1px solid #fecaca;
    color: #b42318;
}

.pn-alert.is-ok {
    background: #ecfdf3;
    border: 1px solid #abefc6;
    color: #067647;
}

.pn-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px 18px;
}

.pn-field label {
    display: block;
    margin-bottom: 6px;
    font-size: 0.78rem;
    font-weight: 700;
    color: #334155;
}

.pn-field label span {
    color: #c2410c;
}

.pn-field input,
.pn-field select,
.pn-field textarea {
    width: 100%;
    border: 1px solid #d6d3c9;
    border-radius: 8px;
    background: #fcfbf8;
    padding: 11px 12px;
    font-size: 0.9rem;
    color: #1e293b;
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
    font-family: inherit;
}

.pn-field textarea {
    min-height: 88px;
    resize: vertical;
}

.pn-field input:focus,
.pn-field select:focus,
.pn-field textarea:focus {
    outline: none;
    border-color: #0b3022;
    box-shadow: 0 0 0 3px rgba(11, 48, 34, 0.12);
    background: #fff;
}

.pn-amount-wrap {
    position: relative;
}

.pn-currency {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    font-weight: 800;
    color: #0b3022;
}

.pn-amount-wrap input {
    padding-left: 28px;
}

.pn-form-actions {
    margin-top: 22px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 14px 18px;
}

.pn-submit-btn {
    appearance: none;
    border: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 13px 22px;
    border-radius: 8px;
    background: linear-gradient(135deg, #0b3022, #1a4734);
    color: #fff !important;
    font-size: 0.88rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    box-shadow: 0 8px 18px rgba(11, 48, 34, 0.22);
    transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.pn-submit-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 12px 22px rgba(11, 48, 34, 0.28);
    background: linear-gradient(135deg, #14432f, #1f5a40);
}

.pn-submit-btn:disabled {
    opacity: 0.7;
    cursor: wait;
    transform: none;
}

.pn-secure-note {
    margin: 0;
    font-size: 0.76rem;
    color: #64748b;
    font-weight: 600;
}

.pn-secure-note i {
    color: #0b3022;
    margin-right: 4px;
}

.pn-aside {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.pn-aside-card {
    background: #fff;
    border: 1px solid #e5e1d6;
    border-radius: 14px;
    padding: 18px;
    box-shadow: 0 8px 20px rgba(15, 40, 28, 0.04);
}

.pn-aside-card h3 {
    margin: 0 0 10px;
    font-size: 0.95rem;
    color: #0b3022;
    display: flex;
    align-items: center;
    gap: 8px;
}

.pn-aside-card ul {
    margin: 0;
    padding: 0 0 0 16px;
    color: #475569;
    font-size: 0.82rem;
    line-height: 1.55;
}

.pn-aside-card li + li {
    margin-top: 4px;
}

.pn-aside-help p {
    margin: 0 0 12px;
    font-size: 0.82rem;
    color: #64748b;
    line-height: 1.45;
}

.pn-help-phone {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 800;
    color: #0b3022;
    text-decoration: none;
}

.pn-help-phone:hover {
    color: #c5a059;
}

/* Thank you */
.pn-thanks-card {
    max-width: 720px;
    margin: 0 auto;
    background: #fff;
    border: 1px solid #e5e1d6;
    border-radius: 16px;
    padding: 34px 28px;
    text-align: center;
    box-shadow: 0 14px 36px rgba(15, 40, 28, 0.07);
}

.pn-thanks-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 14px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ecfdf3;
    color: #067647;
    font-size: 1.8rem;
}

.pn-thanks-card h2 {
    margin: 0 0 8px;
    font-family: var(--font-heading, Georgia, serif);
    color: #0b3022;
    font-size: 1.5rem;
}

.pn-thanks-card > p {
    margin: 0 auto 20px;
    max-width: 46ch;
    color: #64748b;
    font-size: 0.92rem;
    line-height: 1.5;
}

.pn-thanks-meta {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    text-align: left;
    margin-bottom: 22px;
    padding: 14px;
    border-radius: 12px;
    background: #f8f7f3;
    border: 1px solid #ebe6da;
}

.pn-thanks-meta .full {
    grid-column: 1 / -1;
}

.pn-thanks-meta span {
    display: block;
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #94a3b8;
    margin-bottom: 3px;
}

.pn-thanks-meta strong {
    font-size: 0.92rem;
    color: #0b3022;
    word-break: break-all;
}

.pn-status-paid {
    color: #067647 !important;
}

.pn-thanks-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.pn-secondary-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 18px;
    border-radius: 8px;
    border: 1px solid #d6d3c9;
    background: #fff;
    color: #0b3022;
    font-size: 0.84rem;
    font-weight: 700;
    text-decoration: none;
}

.pn-secondary-btn:hover {
    border-color: #0b3022;
    background: #f8faf8;
}

@media (max-width: 900px) {
    .pn-layout {
        grid-template-columns: 1fr;
    }

    .pn-form-grid,
    .pn-thanks-meta {
        grid-template-columns: 1fr;
    }

    .pn-thanks-meta .full {
        grid-column: auto;
    }
    .aboutss-grid {
 
    grid-template-columns: 1fr;
 
    }
}