
@import url('https://fonts.googleapis.com/css2?family=Anybody:wght@400;700;800&family=Inclusive+Sans&family=DM+Sans:wght@400;500;700;800&family=Playfair+Display:wght@700&display=swap');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css');
:root {
    --color-primary: #E67D3C;
    --color-secondary: #DEED58;
    --color-dark: #084D2A;
    --color-text: #333;
    --color-light-bg: #F7F0E5;
    --color-section-bg: #EDEBE5;
    --color-white: #fff;
    --font-primary:'Anybody';
    --font-heading: 'Anybody', serif;
}
.fs-stat-icon i,
.fs-zone-icon i,
.fs-cb-icon i,
.fs-time-badge i,
.fs-cb-list li i,
.fs-timings-table th i {
    font-family: "Font Awesome 6 Free" !important;
    font-weight: 900 !important;
}
/* ========================================= */
/* RESET */
/* ========================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-primary);
    color: var(--color-text);
    background-color: var(--color-light-bg);
    line-height: 1.6;
    font-size: 16px;
    overflow-x: hidden;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--color-dark);
    line-height: 1.3;
}

.text-center {
    text-align: center;
}

/* ========================================= */
/* BUTTONS */
/* ========================================= */
.btn-primary,
.btn-secondary,
.btn-outline,
.btn-white,
.btn-primary-small {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    text-align: center;
}

.btn-primary {
    background: var(--color-secondary);
    color: var(--color-dark);
}

.btn-primary:hover {
    background: var(--color-primary);
    color: var(--color-white);
    transform: translateY(-2px);
}

.btn-secondary {
    background: var(--color-dark);
    color: var(--color-white);
}

.btn-secondary:hover {
    background: var(--color-primary);
}

.btn-outline {
    background: transparent;
    border-color: var(--color-primary);
    color: var(--color-primary);
}

.btn-outline:hover {
    background: var(--color-primary);
    color: var(--color-white);
}

.btn-white {
    background: var(--color-white);
    color: var(--color-dark);
}

.btn-white:hover {
    background: var(--color-secondary);
    transform: translateY(-2px);
}

.btn-primary-small {
    padding: 10px 24px;
    font-size: 14px;
    background: var(--color-primary);
    color: var(--color-white);
}

.btn-primary-small:hover {
    background: var(--color-dark);
}

/* ========================================= */
/* HEADER */
/* ========================================= */
.site-header {
    background: var(--color-white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-top {
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

.header-top .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-left,
.header-center,
.header-right {
    flex: 1;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header-center {
    text-align: center;
}

.header-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 15px;
}

.logo-text {
    font-size: 32px;
    font-weight: 700;
    color: var(--color-dark);
    font-family: var(--font-heading);
}

.custom-logo {
    max-height: 60px;
    width: auto;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    color: var(--color-text);
    font-size: 16px;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--color-primary);
    color: var(--color-white);
}

.header-contact {
    font-size: 14px;
    color: var(--color-text);
    display: flex;
    align-items: center;
    gap: 8px;
}

.header-contact i {
    color: var(--color-primary);
}

.header-contact:hover {
    color: var(--color-primary);
}

.header-divider {
    height: 1px;
    background: #eee;
}

.header-bottom {
    padding: 0;
}

.header-bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.main-nav {}

.nav-menu {
    display: flex;
    gap: 30px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-menu li {}

.nav-menu a {
    display: block;
    padding: 20px 0;
    color: var(--color-text);
    font-weight: 500;
    font-size: 15px;
    border-bottom: 3px solid transparent;
}

.nav-menu a:hover,
.nav-menu .current-menu-item a {
    color: var(--color-primary);
    border-bottom-color: var(--color-primary);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--color-dark);
    cursor: pointer;
}

/* Mobile Menu */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100vh;
    background: rgba(0,0,0,0.8);
    z-index: 9999;
    transition: left 0.3s ease;
}

.mobile-menu-overlay.active {
    left: 0;
}

.mobile-menu-inner {
    position: absolute;
    left: 0;
    top: 0;
    width: 300px;
    height: 100%;
    background: var(--color-white);
    padding: 30px;
    overflow-y: auto;
}

.mobile-menu-close {
    background: none;
    border: none;
    font-size: 28px;
    color: var(--color-dark);
    cursor: pointer;
    float: right;
    margin-bottom: 30px;
}

.mobile-nav-menu {
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

.mobile-nav-menu li {
    border-bottom: 1px solid #eee;
}

.mobile-nav-menu a {
    display: block;
    padding: 15px 0;
    color: var(--color-text);
    font-weight: 500;
    font-size: 16px;
}

.mobile-nav-menu a:hover {
    color: var(--color-primary);
    padding-left: 10px;
}

.mobile-menu-footer {
    margin-top: 30px;
}

.hero-section {
    position: relative;
    min-height: 100svh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-size: cover;
    background-position: center;
    animation: heroZoom 20s infinite alternate;
}

@keyframes heroZoom {
    0%   { transform: scale(1); }
    100% { transform: scale(1.1); }
}

/* =============================================
   MOBILE HEADER FIX - FINAL
   ============================================= */
@media (max-width: 991px) {

    .site-header {
        display: block !important;
        position: sticky !important;
        top: 0 !important;
        z-index: 9999 !important;
        background: #fff !important;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1) !important;
    }

    .header-top {
        display: block !important;
        padding: 12px 0 !important;
    }

    .header-top .container {
        display: flex !important;
        flex-direction: row !important;
        justify-content: space-between !important;
        align-items: center !important;
    }

    .header-left {
        display: flex !important;
        align-items: center !important;
    }

    .header-left .social-links,
    .header-left .social-icons,
    .header-left .contact-phone {
        display: none !important;
    }

    .header-center {
        display: flex !important;
        position: relative !important;
        left: auto !important;
        transform: none !important;
        align-items: center !important;
        justify-content: center !important;
        flex: 1 !important;
    }

    .header-right {
        display: flex !important;
        align-items: center !important;
        justify-content: flex-end !important;
    }

    .header-right .contact-email,
    .header-right .header-contact {
        display: none !important;
    }

    .mobile-menu-toggle,
    .mobile-toggle {
        display: block !important;
        font-size: 24px !important;
        cursor: pointer !important;
        background: none !important;
        border: none !important;
        color: #084D2A !important;
        z-index: 99999 !important;
        position: relative !important;
    }

    .header-bottom,
    .header-divider {
        display: none !important;
    }
}

.mobile-menu-overlay {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background: rgba(0, 0, 0, 0.6) !important;
    z-index: 99998 !important;
    opacity: 0 !important;
    visibility: hidden !important;
    transition: opacity 0.3s ease, visibility 0.3s ease !important;
}

.mobile-menu-overlay.active {
    opacity: 1 !important;
    visibility: visible !important;
}

/* Inner panel - slides in from right */
.mobile-menu-inner {
    position: absolute !important;
    top: 0 !important;
    right: 0 !important;
    width: 280px !important;
    height: 100% !important;
    background: #fff !important;
    padding: 30px 24px !important;
    overflow-y: auto !important;
    transform: translateX(100%) !important;
    transition: transform 0.35s ease !important;
    box-shadow: -4px 0 20px rgba(0,0,0,0.15) !important;
    box-sizing: border-box !important;
}

.mobile-menu-overlay.active .mobile-menu-inner {
    transform: translateX(0) !important;
}

/* Close button */
.mobile-menu-close {
    display: block !important;
    background: none !important;
    border: none !important;
    font-size: 22px !important;
    color: #084D2A !important;
    cursor: pointer !important;
    margin-bottom: 24px !important;
    padding: 0 !important;
    text-align: right !important;
    width: 100% !important;
}

/* Nav links */
.mobile-nav-menu {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 0 30px !important;
}

.mobile-nav-menu li {
    border-bottom: 1px solid #f0f0f0 !important;
}

.mobile-nav-menu li a {
    display: block !important;
    padding: 14px 0 !important;
    font-size: 1rem !important;
    font-weight: 600 !important;
    color: #084D2A !important;
    text-decoration: none !important;
    transition: color 0.2s !important;
}

.mobile-nav-menu li a:hover,
.mobile-nav-menu li.current-menu-item a {
    color: #E67D3C !important;
}

/* Footer social icons inside menu */
.mobile-menu-footer {
    margin-top: 20px !important;
    padding-top: 20px !important;
    border-top: 1px solid #f0f0f0 !important;
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.6));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--color-white);
    width: 100%;
    padding: 40px 20px;
}

.hero-content .container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-label {
    display: block;
    font-size: clamp(9px, 1.5vw, 13px);
    letter-spacing: 3px;
    color: var(--color-secondary);
    margin-bottom: 15px;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
    text-transform: uppercase;
}

.hero-title {
    font-size: clamp(22px, 5vw, 56px);
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 0 4px 8px rgba(0,0,0,0.3);
}
.hero-text {
    font-size: clamp(13px, 2vw, 20px);
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.hero-buttons {
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 10px;
}

.btn-outline-white {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: clamp(13px, 1.5vw, 16px);
    text-decoration: none;
    border: 2px solid #ffffff;
    color: #ffffff;
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.btn-outline-white:hover {
    background: #ffffff;
    color: #084D2A;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

@media (max-width: 768px) {
    .hero-buttons {
        flex-direction: column;
        gap: 12px;
    }
    .btn-primary,
    .btn-outline-white {
        width: 100%;
        max-width: 260px;
        text-align: center;
        padding: 12px 20px;
    }
}

/* ========================================= */
/* WELCOME SECTION */
/* ========================================= */
.welcome-section {
    padding: 80px 0;
    background: var(--color-white);
}

.welcome-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.section-badge {
    display: inline-block;
    padding: 6px 16px;
    background: var(--color-secondary);
    color: var(--color-dark);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    border-radius: 20px;
    margin-bottom: 15px;
}

.welcome-content h2 {
    font-size: 40px;
    margin-bottom: 20px;
}

.welcome-content p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 25px;
    color: #555;
}

.feature-list {
    list-style: none;
    margin: 30px 0;
}

.feature-list li {
    padding: 10px 0;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.feature-list i {
    color: var(--color-primary);
    font-size: 18px;
}

.welcome-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

/* ============================
   PACKAGES SECTION
============================ */
@import url('https://fonts.googleapis.com/css2?family=Anybody:wght@400;700;800&family=DM+Sans:wght@400;500;700&display=swap');

/* ── SECTION ── */
.pkg-section {
  background: #f0ece0;
  padding: 70px 20px 80px;
}

.pkg-section .pkg-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* ── HEADER ── */
.pkg-header {
  text-align: center;
  margin-bottom: 48px;
}

.pkg-badge-label {
  display: inline-block;
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2.5px;
  color: #e07c3a;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.pkg-header h2 {
  font-family: 'Anybody', sans-serif;
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 600;
  color: #1a4d2e;
  margin: 0 0 10px;
}

.pkg-header p {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  color: #201f1f;
  margin: 0;
}

/* ── GRID ── */
.pkg-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

/* ── CARD ── */
.pkg-card {
  background: #ffffff;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 6px 28px rgba(0, 0, 0, 0.09);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.pkg-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.15);
}

/* ── IMAGE WRAPPER ── */
.pkg-img {
  position: relative;
  width: 100%;
  height: 255px;
  overflow: hidden;
  border-radius: 18px 18px 0 0;
}

.pkg-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}

.pkg-card:hover .pkg-img img {
  transform: scale(1.06);
}

/* ── DISCOUNT BADGE — top left ── */
.pkg-discount-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: #e07c3a;
  color: #fff;
  font-family: 'Anybody', sans-serif;
  font-size: 13px;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 50px;
  z-index: 3;
  letter-spacing: 0.3px;
}

/* ── HEART ICON — top right ── */
.pkg-heart-btn {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.92);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 3;
  transition: background 0.2s, transform 0.2s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
}

.pkg-heart-btn:hover {
  background: #fff;
  transform: scale(1.1);
}

.pkg-heart-btn svg {
  width: 16px;
  height: 16px;
  stroke: #aaa;
  fill: none;
  stroke-width: 2;
  transition: stroke 0.2s, fill 0.2s;
}

.pkg-heart-btn:hover svg {
  stroke: #e07c3a;
  fill: #e07c3a;
}

/* ── HOVER OVERLAY — "View Details" ── */
.pkg-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.30);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 18px 18px 0 0;
  z-index: 2;
}

.pkg-card:hover .pkg-overlay {
  opacity: 1;
}

.pkg-view-btn {
  background: #ffffff;
  color: #1a4d2e;
  font-family: 'Anybody', sans-serif;
  font-size: 14px;
  font-weight: 700;
  padding: 11px 28px;
  border-radius: 50px;
  text-decoration: none;
  transition: background 0.2s;
  box-shadow: 0 4px 14px rgba(0,0,0,0.18);
}

.pkg-view-btn:hover {
  background: #c8e63c;
  color: #1a4d2e;
}

/* ── CARD BODY ── */
.pkg-body {
  padding: 18px 20px 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

/* ── META ROW (clock + pin) ── */
.pkg-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}

.pkg-meta-item {
  display: flex;
  align-items: center;
  gap: 5px;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  color: #3a3838;
  font-weight: 400;
}

.pkg-meta-item svg {
  width: 14px;
  height: 14px;
  stroke: #e07c3a;
  fill: none;
  stroke-width: 2;
  flex-shrink: 0;
}

/* ── TITLE ── */
.pkg-body h3 {
  font-family: 'Anybody', sans-serif;
  font-size: 16.5px;
  font-weight: 600;
  color: #2e2e2e;
  line-height: 1.4;
  margin: 0 0 16px;
}

.pkg-body h3 a {
  color: #363535;
  text-decoration: none;
  transition: color 0.2s;
}

.pkg-body h3 a:hover {
  color: #e07c3a;
}

/* ── PRICE ── */
.pkg-price-block {
  margin-top: auto;
}

.pkg-price-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  color: #333232;
  font-weight: 400;
  display: block;
  margin-bottom: 4px;
}

.pkg-price-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.pkg-price-old {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: #2e2e2e;
  text-decoration: line-through;
  font-weight: 400;
}

.pkg-price-new {
  font-family: 'Anybody', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: #e07c3a;
}

/* ── VIEW ALL BUTTON ── */
.pkg-footer {
  text-align: center;
  margin-top: 40px;
}

.pkg-btn-all {
  display: inline-block;
  background: #c8e63c;
  color: #1a4d2e;
  font-family: 'Anybody', sans-serif;
  font-size: 15px;
  font-weight: 700;
  padding: 14px 42px;
  border-radius: 50px;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
}

.pkg-btn-all:hover {
  background: #b5d132;
  transform: translateY(-2px);
  color:black;
}

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  .pkg-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .pkg-grid { grid-template-columns: 1fr; }
  .pkg-img  { height: 220px; }
}

/* ========================================= */
/* FEATURES SECTION */
/* ========================================= */
.features-section {
    padding: 80px 0;
    background: var(--color-white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.feature-box {
    text-align: center;
    padding: 30px 20px;
    border-radius: 15px;
    background: var(--color-light-bg);
    transition: all 0.3s ease;
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.feature-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--color-dark), var(--color-primary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--color-white);
}

.feature-box h4 {
    font-size: 18px;
    margin-bottom: 10px;
}

.feature-box p {
    font-size: 14px;
    color: #666;
}

/* ========================================= */
/* CTA SECTION */
/* ========================================= */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--color-dark), #0b2e1d);
    color: var(--color-white);
}

.cta-section h2 {
    font-size: 42px;
    color: var(--color-white);
    margin-bottom: 15px;
}

.cta-section p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

/* ========================================= */
/* FOOTER */
/* ========================================= */:root {
    --tmp-uf-text-color: #ffffff;
    --tmp-uf-bg-color: #084D2A;
    --tmp-uf-link-hover-color: rgba(255,255,255,0.8);
    --tmp-uf-widget-heading-color: #DEED58;
    --tmp-bf-text-color: #ffffff;
    --tmp-bf-bg-color: #084D2A;
    --tmp-bf-link-initial-color: #ffffff;
    --tmp-bf-link-hover-color: rgba(255,255,255,0.8);
    --tmp-primary-font-family: "Inclusive Sans", sans-serif;
    --tmp-heading-font-family: "Anybody", sans-serif;
}

body {
    margin: 0;
    font-family: var(--tmp-primary-font-family);
}

.site-footer {
    background-color: var(--tmp-uf-bg-color);
    color: var(--tmp-uf-text-color);
    font-size: 16px;
    line-height: 1.7;
}

.site-footer a {
    text-decoration: none;
    color: var(--tmp-uf-text-color);
    transition: color 0.3s ease;
}

.site-footer a:hover {
    color: var(--tmp-uf-link-hover-color);
}

.container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Top Footer Section */
.footer-t {
    padding: 80px 0 50px;
}

.footer-widgets-area {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

@media (max-width: 1024px) {
    .footer-widgets-area {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .footer-widgets-area {
        grid-template-columns: 1fr;
    }
}

.widget {
    margin-bottom: 30px;
}

.widget-title {
    font-family: var(--tmp-heading-font-family);
    color: var(--tmp-uf-widget-heading-color);
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 25px;
    text-transform: none;
}

.widget ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.widget ul li {
    margin-bottom: 12px;
}

.widget ul li a {
    display: inline-block;
}

/* Logo Widget */
.widget_block .wp-block-image {
    margin: 0 0 20px 0;
}

.widget_block .wp-block-image img {
    max-width: 100%;
    height: auto;
}

/* Social Links */
.wp-block-social-links {
    padding: 0;
    margin: 20px 0 0;
}

.wp-block-social-links-list {
    display: flex;
    padding-left: 0;
    list-style: none;
    margin: 0;
    flex-wrap: wrap;
    align-items: center;
}

.wp-social-link {
    margin-right: 15px;
    width: 40px !important;
    height: 40px !important;
    min-width: 40px !important;
    min-height: 40px !important;
    max-width: 40px !important;
    max-height: 40px !important;
    border-radius: 50% !important;
    overflow: hidden !important;
    flex-shrink: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.wp-social-link a {
    color: var(--tmp-uf-text-color);
    background-color: rgba(255,255,255,0.1);
    border-radius: 50%;
    width: 40px !important;
    height: 40px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: all 0.3s ease;
    overflow: hidden !important;
    padding: 0 !important;
}

.wp-social-link a:hover {
    background-color: var(--tmp-uf-widget-heading-color);
    color: var(--tmp-uf-bg-color);
}

.wp-social-link svg {
    fill: currentColor;
    width: 20px !important;
    height: 20px !important;
    flex-shrink: 0 !important;
    display: block !important;
}
/* Contact Widget */
.widget_text p {
    margin-bottom: 15px;
}

/* Bottom Footer Section */
.footer-b {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 25px 0;
    background-color: var(--tmp-bf-bg-color);
    color: var(--tmp-bf-text-color);
    font-size: 14px;
}

.footer-b .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.site-info a {
    color: var(--tmp-bf-link-initial-color);
    font-weight: 600;
}

.site-info a:hover {
    color: var(--tmp-bf-link-hover-color);
}

/* Payment Icons */
.payments-showcase {
    display: flex;
    gap: 10px;
}

.payment-list {
    display: inline-block;
    width: 40px;
    height: 25px;
    background-color: #fff;
    border-radius: 3px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

/* Note: You would typically replace these with actual image URLs or SVG backgrounds */
.payment-list.visa { background-image: url('https://upload.wikimedia.org/wikipedia/commons/5/5e/Visa_Inc._logo.svg'); }
.payment-list.mastercard { background-image: url('https://upload.wikimedia.org/wikipedia/commons/2/2a/Mastercard-logo.svg'); }
.payment-list.amex { background-image: url('https://upload.wikimedia.org/wikipedia/commons/3/30/American_Express_logo.svg'); }
.payment-list.discover { background-image: url('https://upload.wikimedia.org/wikipedia/commons/5/57/Discover_Card_logo.svg'); }
.payment-list.stripe { background-image: url('https://upload.wikimedia.org/wikipedia/commons/b/ba/Stripe_Logo%2C_revised_2016.svg'); }

@media (max-width: 767px) {
    .footer-b .container {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}
@media (max-width: 991px) {
    .hero-section {
        min-height: auto !important;
        padding: 60px 0;
    }
}
/* ========================================= */
/* RESPONSIVE */
/* ========================================= */
@media (max-width: 1024px) {
    .header-bottom,
    .header-divider {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
    }
}

@media (max-width: 768px) {
    .header-left .social-links,
    .header-right .header-contact {
        display: none;
    }

    .hero-section {
        height: 500px;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-text {
        font-size: 16px;
    }

    .welcome-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .welcome-image {
        order: -1;
    }

    .section-header h2,
    .welcome-content h2,
    .cta-section h2 {
        font-size: 32px;
    }

    .packages-grid,
    .features-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-section {
        height: 450px;
    }

    .hero-title {
        font-size: 28px;
    }

    .btn-primary,
    .btn-secondary,
    .btn-outline,
    .btn-white {
        padding: 12px 24px;
        font-size: 14px;
    }

    .logo-text {
        font-size: 24px;
    }
}



/* ========================================= */
/* PAGE TEMPLATES CSS */
/* ========================================= */

/* Page Header */
.page-header {
    padding: 80px 0 60px;
    background: linear-gradient(135deg, var(--color-dark), #0b2e1d);
    color: var(--color-white);
    text-align: center;
}

.page-title {
    font-size: 48px;
    color: var(--color-white);
    margin-bottom: 10px;
}

.page-subtitle {
    font-size: 18px;
    color: rgba(255,255,255,0.9);
    margin: 0;
}

.breadcrumbs {
    margin-top: 15px;
    font-size: 14px;
    opacity: 0.8;
}

/* Page Content */
.page-content {
    padding: 80px 0;
    background: var(--color-white);
}

.page-article {
    max-width: 900px;
    margin: 0 auto;
}

.page-article h2 {
    font-size: 32px;
    margin: 40px 0 20px;
    color: var(--color-dark);
}

.page-article h3 {
    font-size: 26px;
    margin: 30px 0 15px;
    color: var(--color-dark);
}

.page-article p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #555;
}

.page-article ul,
.page-article ol {
    margin: 20px 0;
    padding-left: 30px;
}

.page-article li {
    margin-bottom: 10px;
    line-height: 1.8;
}

.page-article img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin: 30px 0;
}

/* ========================================= */
/* SINGLE PACKAGE PAGE */
/* ========================================= */

.package-header {
    position: relative;
    padding: 120px 0 80px;
    overflow: hidden;
}

.package-header-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.package-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.4), rgba(0,0,0,0.7));
}

.package-header-content {
    position: relative;
    z-index: 2;
    color: var(--color-white);
}
.duration-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #E67D3C;
    color: #fff;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 4px 10px rgba(230,125,60,0.3);
    transition: 0.3s ease;
}

.duration-badge i {
    font-size: 13px;
}

.duration-badge:hover {
    transform: translateY(-2px);
}
.package-location-badge {
    display: inline-block;
    padding: 8px 16px;
    background: var(--color-primary);
    color: var(--color-white);
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}

.package-location-badge i {
    margin-right: 5px;
}

.package-title {
    font-size: 52px;
    color: var(--color-white);
    margin-bottom: 20px;
}

.package-header-meta {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.package-meta-item {
    font-size: 16px;
    color: rgba(255,255,255,0.9);
}

.package-meta-item i {
    color: var(--color-secondary);
    margin-right: 8px;
}

/* Package Content Layout */
.package-content-section {
    padding: 80px 0;
    background: var(--color-light-bg);
}

.package-layout {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 50px;
}

.package-main {
    background: var(--color-white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.package-description h2 {
    font-size: 32px;
    color: var(--color-dark);
    margin: 30px 0 20px;
}

.package-description h3 {
    font-size: 26px;
    color: var(--color-dark);
    margin: 25px 0 15px;
}

.package-description p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #555;
}

.package-description ul,
.package-description ol {
    margin: 20px 0;
    padding-left: 30px;
}

.package-description li {
    margin-bottom: 10px;
    line-height: 1.8;
}

/* Booking Card */
.package-sidebar {
    position: sticky;
    top: 100px;
}

.package-booking-card {
    background: var(--color-white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.package-booking-card h3 {
    font-size: 24px;
    color: var(--color-dark);
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--color-secondary);
}

.booking-price {
    text-align: center;
    padding: 20px 0;
    margin-bottom: 20px;
    background: var(--color-light-bg);
    border-radius: 10px;
}

.booking-price .price-old {
    display: block;
    text-decoration: line-through;
    color: #999;
    font-size: 18px;
    margin-bottom: 5px;
}

.booking-price .price-current {
    display: block;
    font-size: 36px;
    font-weight: 700;
    color: var(--color-primary);
}

.booking-price .price-discount {
    display: inline-block;
    margin-top: 10px;
    padding: 4px 12px;
    background: var(--color-primary);
    color: var(--color-white);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
}

.booking-details {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.booking-details li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

.booking-details li:last-child {
    border-bottom: none;
}

.booking-details i {
    color: var(--color-primary);
    font-size: 18px;
    width: 20px;
}

.booking-details span {
    flex: 1;
    color: #777;
    font-size: 14px;
}

.booking-details strong {
    color: var(--color-dark);
    font-size: 15px;
}

.btn-block {
    display: block;
    width: 100%;
    text-align: center;
    margin-bottom: 10px;
}

/* ========================================= */
/* ARCHIVE PACKAGES */
/* ========================================= */

.packages-archive-section {
    padding: 80px 0;
    background: var(--color-light-bg);
}

.no-packages {
    text-align: center;
    padding: 60px 20px;
    grid-column: 1 / -1;
}

.no-packages h3 {
    font-size: 28px;
    color: var(--color-dark);
    margin: 20px 0 10px;
}

.no-packages p {
    color: #666;
    font-size: 16px;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 50px;
}

.pagination .page-numbers {
    display: inline-block;
    padding: 10px 18px;
    background: var(--color-white);
    color: var(--color-dark);
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.pagination .page-numbers:hover,
.pagination .page-numbers.current {
    background: var(--color-primary);
    color: var(--color-white);
}

/* ========================================= */
/* RESPONSIVE FOR NEW TEMPLATES */
/* ========================================= */

@media (max-width: 1024px) {
    .package-layout {
        grid-template-columns: 1fr;
    }

    .package-sidebar {
        position: static;
        order: -1;
    }
}

@media (max-width: 768px) {
    .page-title {
        font-size: 36px;
    }

    .package-title {
        font-size: 32px;
    }

    .package-header {
        padding: 80px 0 60px;
    }

    .package-header-meta {
        flex-direction: column;
        gap: 10px;
    }

    .package-main {
        padding: 25px;
    }
}

:root {
    /* COLORS */
    --primary: #e67e22;       /* The Tadoba Orange */
    --primary-hover: #d35400;
    --heading-green: #2b4538; /* Dark Dull Green (Forest Theme) */
    --text-dark: #1a3332;     /* Very dark green-grey for body text */
    --text-light: #6b7c7a;    /* Muted grey-green for descriptions */
    
    /* BACKGROUNDS */
    --light-bg: #fdfaf5;      
    --white: #ffffff;
    
    /* UTILS */
    --border: #ececec;        
    --radius: 16px;           
    --shadow: 0 10px 40px rgba(43, 69, 56, 0.08); 
    --transition: all 0.3s ease;
}

body {
    background-color: var(--light-bg);
    color: var(--text-dark);
    font-family:'Anybody';
    line-height: 1.8; /* Increased spacing for "Free" look */
    font-size: 17px;  /* Slightly larger readable text */
}

h1, h2, h3, h4 {
    font-family: 'Anybody', sans-serif;
    color: var(--heading-green); /* Dull Green Headings */
    margin-top: 0;
    line-height: 1.3;
}

a { text-decoration: none; transition: var(--transition); }
img { max-width: 100%; height: auto; }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* =========================================
   2. LAYOUT GRID
   ========================================= */
.package-view-wrapper { padding-bottom: 100px; }

.package-main-flex {
    display: flex;
    gap: 60px; /* Wider gap between content and sidebar */
    margin-top: 50px;
}

.package-left { flex: 2; }
.package-sidebar { flex: 1; min-width: 350px; }

/* Main Title Style */
.package-main-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: var(--heading-green);
}

/* =========================================
   3. HERO COLLAGE
   ========================================= */
.package-collage {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 20px;
    height: 520px; /* Taller for impact */
    max-width: 1400px;
    margin: 30px auto;
    padding: 0 20px;
}

.collage-large, .thumb-box {
    background-size: cover;
    background-position: center;
    border-radius: var(--radius);
    position: relative;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.collage-large:hover, .thumb-box:hover { transform: translateY(-3px); }

.days-label {
    position: absolute;
    bottom: 25px;
    right: 25px;
    background: var(--white);
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 800;
    color: var(--heading-green);
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
}
.days-label span { color: var(--primary); font-size: 1.3em; margin-right: 5px; }

.collage-thumbs { display: grid; grid-template-rows: 1fr 1fr; gap: 20px; }

.overlay-txt {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: rgba(26, 51, 50, 0.85); /* Dark green tint */
    color: #fff;
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    backdrop-filter: blur(5px);
}

/* =========================================
   4. HORIZONTAL ICONS (Top)
   ========================================= */
.package-icon-bar.horizontal {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    background: var(--white);
    padding: 35px; /* More breathing room */
    border-radius: var(--radius);
    border: 1px solid var(--border);
    margin-bottom: 50px;
    text-align: center;
    box-shadow: var(--shadow);
}

.package-icon-bar.horizontal .p-icon-box i {
    font-size: 28px;
    color: var(--primary); /* CHANGED TO ORANGE */
    margin-bottom: 12px;
    display: block;
    transition: var(--transition);
}

.package-icon-bar.horizontal:hover .p-icon-box i { transform: scale(1.1); }

.package-icon-bar.horizontal p {
    margin: 0;
    font-size: 12px;
    text-transform: uppercase;
    color: var(--text-light);
    letter-spacing: 1px;
    font-weight: 600;
}

.package-icon-bar.horizontal span {
    font-weight: 700;
    font-size: 16px;
    color: var(--heading-green);
    display: block;
    margin-top: 5px;
}

/* =========================================
   5. SECTIONS (General)
   ========================================= */
.details-section { margin-bottom: 70px; /* Big gaps between sections */ }

.h2-title {
    font-size: 2.2rem;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid #eee; /* Subtle underline */
}

/* Text Content */
.overview-txt, .path-text, .faq-answer {
    color: var(--text-light);
    font-size: 1.05rem;
}

/* Highlights */
.h3-subtitle {
    font-size: 1.5rem;
    margin-top: 40px;
    margin-bottom: 20px;
    color: var(--heading-green);
}

.highlight-check-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}
.highlight-check-list li {
    display: flex;
    align-items: center;
    color: var(--text-dark);
    font-weight: 500;
}
.highlight-check-list li i {
    color: var(--primary);
    margin-right: 12px;
    font-size: 1.1rem;
}

/* =========================================
   6. ORANGE TIMELINE
   ========================================= */
.orange-path-timeline {
    border-left: 2px dashed #d1d8d5;
    margin-left: 20px;
    padding-left: 50px; /* More space from line to text */
    position: relative;
}

.path-day { position: relative; margin-bottom: 50px; }

.path-dot {
    position: absolute;
    left: -59px; /* Re-aligned for wider padding */
    top: 0;
    width: 20px;
    height: 20px;
    background: var(--light-bg);
    border: 3px solid var(--primary);
    border-radius: 50%;
    box-shadow: 0 0 0 5px var(--light-bg); /* Clean whitespace around dot */
}

.path-info h4 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: var(--heading-green);
}

/* =========================================
   7. COST SECTION
   ========================================= */
.cost-split-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.cost-item {
    background: var(--white);
    padding: 30px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
}

.cost-item h3 { font-size: 1.3rem; margin-bottom: 20px; display: flex; align-items: center; gap: 10px; }
.cost-item ul { list-style: none; padding: 0; margin: 0; }
.cost-item li { margin-bottom: 15px; font-size: 1rem; color: var(--text-light); display: flex; align-items: flex-start; }
.cost-item li i { margin-top: 6px; margin-right: 12px; flex-shrink: 0; }

/* Colors */
.cost-item.inc h3 { color: #27ae60; }
.cost-item.inc li i { color: #27ae60; }
.cost-item.inc { border-top: 4px solid #27ae60; }

.cost-item.exc h3 { color: #e74c3c; }
.cost-item.exc li i { color: #e74c3c; }
.cost-item.exc { border-top: 4px solid #e74c3c; }

/* =========================================
   8. FAQ ACCORDION
   ========================================= */
.faq-accordion { display: flex; flex-direction: column; gap: 15px; }

.faq-item {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
}
.faq-item:hover { box-shadow: var(--shadow); border-color: transparent; }

.faq-trigger {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 20px 25px; /* Larger click area */
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--heading-green);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-answer {
    display: none;
    padding: 0 25px 25px;
    color: var(--text-light);
    border-top: 1px solid #f5f5f5;
}

/* =========================================
   9. MAP
   ========================================= */
.map-container {
    border-radius: var(--radius);
    overflow: hidden;
    border: 5px solid var(--white);
    box-shadow: var(--shadow);
}

/* =========================================
   10. SIDEBAR (Sticky)
   ========================================= */
.sticky-wrapper { position: sticky; top: 30px; }

/* Price Card */
.sticky-price-card {
    background: var(--white);
    padding: 40px; /* Big padding */
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    text-align: center;
    border: 1px solid var(--border);
}

.price-data { margin-bottom: 25px; }
.old-p { text-decoration: line-through; color: #aaa; font-size: 1rem; display: block; margin-bottom: 5px; }
.new-p { font-size: 2.5rem; font-weight: 800; color: var(--heading-green); line-height: 1; }
.new-p span { font-size: 1rem; color: var(--text-light); font-weight: 500; }

.cta-booking-btn {
    display: block;
    background: #c5e063;
    color: #1a3332;
    padding: 18px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 5px 15px rgba(197, 224, 99, 0.4);
    transition: var(--transition);
}
.cta-booking-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(197, 224, 99, 0.6);
}

.cta-help { margin-top: 20px; font-size: 0.9rem; color: var(--text-light); }
.cta-help a { color: var(--primary); font-weight: 600; }

/* Vertical Icons (Sidebar) */
.sidebar-icons-vertical {
    margin-top: 30px;
    background: var(--white);
    padding: 30px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
}

.v-icon-box {
    display: flex;
    align-items: center;
    gap: 20px;
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid #f0f0f0;
}
.v-icon-box:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }

.v-icon-box i { font-size: 24px; color: var(--primary); width: 30px; text-align: center; }
.v-icon-box div { display: flex; flex-direction: column; }
.v-icon-box strong { font-size: 13px; color: var(--text-light); text-transform: uppercase; letter-spacing: 0.5px; }
.v-icon-box span { font-weight: 700; color: var(--heading-green); font-size: 1.1rem; }

/* =========================================
   11. MOBILE RESPONSIVE
   ========================================= */
@media (max-width: 900px) {
    .package-main-flex { flex-direction: column; gap: 40px; }
    .package-collage { height: auto; grid-template-columns: 1fr; }
    .collage-large { height: 300px; }
    .collage-thumbs { display: none; } /* Hide thumbs on mobile for clean look */
    .package-icon-bar.horizontal { grid-template-columns: 1fr 1fr; }
    .cost-split-row { grid-template-columns: 1fr; }
}

/* =========================================
   11. MOBILE RESPONSIVE (Updated)
   ========================================= */
@media (max-width: 900px) {
    /* Stack sidebar below content */
    .package-main-flex { flex-direction: column; gap: 40px; }
    
    /* Adjust Collage */
    .package-collage { height: auto; grid-template-columns: 1fr; }
    .collage-large { height: 300px; }
    .collage-thumbs { display: none; } 

    /* Adjust Top Icons to 2x2 Grid */
    .package-icon-bar.horizontal { grid-template-columns: 1fr 1fr; }
    
    /* Cost section stacks vertically */
    .cost-split-row { grid-template-columns: 1fr; }

    /* HIDE DUPLICATE ICONS IN SIDEBAR */
    .sidebar-icons-vertical { display: none; }
}


.forest-hero {
    height: 400px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    color: #fff;
    margin-bottom: 40px;
}


/* Layout */
.forest-layout { display: flex; gap: 50px; }
.forest-main { flex: 2; }
.forest-sidebar { flex: 1; }

/* Quick Info Bar */
.forest-info-bar {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    background: var(--white);
    padding: 25px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    margin-bottom: 40px;
    margin-top: -80px; /* Overlap effect */
    position: relative;
    z-index: 10;
}
.f-info-box { display: flex; align-items: center; gap: 15px; }
.f-info-box i { font-size: 28px; color: var(--primary); }
.f-info-box div { display: flex; flex-direction: column; }
.f-info-box strong { text-transform: uppercase; font-size: 0.8rem; color: #888; letter-spacing: 1px; }
.f-info-box span { font-weight: 700; color: var(--heading-green); font-size: 1.1rem; }

/* Zones Grid */
.zones-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.zone-card { background: var(--white); padding: 30px; border-radius: var(--radius); border: 1px solid var(--border); }
.zone-card h3 { font-size: 1.3rem; margin-bottom: 20px; display: flex; align-items: center; gap: 10px; }
.zone-card.core h3 { color: #e67e22; }
.zone-card.buffer h3 { color: #27ae60; }
.zone-card ul { list-style: none; padding: 0; }
.zone-card li { padding: 8px 0; border-bottom: 1px solid #f5f5f5; font-weight: 500; color: var(--text-dark); }
.zone-card li:last-child { border-bottom: none; }

/* Timings */
.timing-box { background: #e8f6f3; padding: 25px; border-radius: var(--radius); display: flex; gap: 20px; align-items: flex-start; color: var(--heading-green); }
.timing-box i { font-size: 24px; margin-top: 5px; }

/* Sidebar Widget */
.sidebar-widget { background: var(--white); padding: 30px; border-radius: var(--radius); border: 1px solid var(--border); }
.mini-pkg { display: flex; gap: 15px; margin-bottom: 20px; align-items: center; transition: var(--transition); }
.mini-pkg:hover { transform: translateX(5px); }
.mini-img { width: 80px; height: 80px; border-radius: 10px; background-size: cover; }
.mini-info h4 { font-size: 1rem; margin-bottom: 5px; color: var(--heading-green); }
.mini-price { color: var(--primary); font-weight: 700; font-size: 0.9rem; }
.view-all-btn { display: block; text-align: center; background: var(--heading-green); color: #fff; padding: 12px; border-radius: 30px; font-weight: bold; margin-top: 20px; }

@media (max-width: 900px) {
    .forest-layout { flex-direction: column; }
    .forest-info-bar { grid-template-columns: 1fr; margin-top: 0; }
    .zones-grid { grid-template-columns: 1fr; }
}

/*
Theme Name: Tadoba Custom
Description: Custom Theme based on User Request
Version: 1.0
*/

/* ============================================
   CSS VARIABLES (Shared Theme)
============================================ */
:root {
    --tmp-primary-color: #E67D3C;
    --tmp-secondary-color: #DEED58;
    --tmp-heading-color: #084D2A;
    --tmp-body-font-color: #171717;
    --tmp-background-color: #F7F0E5; 
    --tmp-section-bg-alt: #EDEBE5;    
    --tmp-dark-forest: #0b2e1d;       
    --tmp-primary-font-family:'Anybody';
    --tmp-container-width: 1280px;
    --tmp-border-color: rgba(0,0,0,0.08);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    font-family: var(--tmp-primary-font-family);
    color: var(--tmp-body-font-color);
    background-color: var(--tmp-background-color);
    line-height: 1.6;
    font-size: 18px;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; }

img { max-width: 100%; height: auto; display: block; }

/* ============================================
   COMMON STYLES & UTILS
============================================ */
.section { padding: 80px 0; position: relative; }

.container {
    max-width: var(--tmp-container-width);
    margin: 0 auto;
    padding: 0 30px;
    position: relative;
    z-index: 2;
}

.section-title {
    font-size: clamp(28px, 5vw, 48px);
    color: var(--tmp-heading-color);
    margin-bottom: 20px;
    font-weight: 700;
    font-family: 'Anybody', serif;
    line-height: 1.1;
}

.section-subtitle {
    font-size: 13px;
    color: var(--tmp-primary-color);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    display: block;
}

.section-description {
    font-size: clamp(16px, 2vw, 18px);
    line-height: 1.7;
    margin-bottom: 25px;
    color: #444;
}

.btn-primary {
    background-color: var(--tmp-secondary-color);
    color: var(--tmp-heading-color);
    padding: 16px 36px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 15px;
    display: inline-block;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    text-align: center;
}

.btn-primary:hover {
    background-color: var(--tmp-primary-color);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(230, 125, 60, 0.3);
}

/* Scroll Reveal */
.reveal-on-scroll { opacity: 0; transform: translateY(20px); transition: all 0.7s ease-out; }
.reveal-on-scroll.is-visible { opacity: 1; transform: translateY(0); }

/* Pattern BG */
.pattern-bg {
    background-image: radial-gradient(#084D2A 0.5px, transparent 0.5px);
    background-size: 20px 20px; opacity: 0.04;
    position: absolute; top: 0; left: 0; right: 0; bottom: 0; pointer-events: none; z-index: 0;
}

/* Transitions */
.feed-to-cream {
    position: absolute; bottom: 0; left: 0; right: 0; height: 100px;
    background: linear-gradient(to bottom, transparent, var(--tmp-background-color));
    z-index: 5; pointer-events: none;
}
.feed-from-cream {
    position: absolute; top: 0; left: 0; right: 0; height: 100px;
    background: linear-gradient(to top, transparent, var(--tmp-background-color));
    z-index: 5; pointer-events: none;
}
.feed-to-dark {
    position: absolute; bottom: 0; left: 0; right: 0; height: 100px;
    background: linear-gradient(to bottom, transparent, var(--tmp-dark-forest));
    z-index: 5; pointer-events: none;
}

/* ============================================
   HEADER
==================================.single-trip .entry-header========== */

.header-top { padding: 10px 0; position: relative; }
.header-top .container { display: flex; justify-content: space-between; align-items: center; }
.header-left { display: flex; align-items: center; gap: 25px; }
.social-icons { display: flex; gap: 15px; }
.social-icons a { font-size: 16px; color: var(--tmp-body-font-color); transition: color 0.3s; }
.social-icons a:hover { color: var(--tmp-primary-color); }
.contact-phone { display: flex; align-items: center; gap: 8px; font-size: 15px; color: var(--tmp-body-font-color); font-weight: 500; }
.header-center { position: absolute; left: 50%; transform: translateX(-50%); display: flex; align-items: center; gap: 10px; }
.logo-img { height: 50px; width: auto; }
.logo-text { font-family: 'DM Serif Display', serif; font-size: 32px; color: var(--tmp-heading-color); line-height: 1; text-transform: capitalize; }
.header-right { display: flex; align-items: center; }
.contact-email { display: flex; align-items: center; gap: 8px; font-size: 15px; color: var(--tmp-body-font-color); font-weight: 500; }
.header-divider { height: 1px; background-color: var(--tmp-border-color); width: 100%; }
.header-bottom { padding: 0; }
.header-bottom .container { display: flex; justify-content: space-between; align-items: center; }

/* Navigation */
.main-nav ul { display: flex; gap: 30px; list-style: none; margin: 0; padding: 0; }
.main-nav a {
    font-size: 16px; font-weight: 500; color: var(--tmp-body-font-color); padding: 20px 0;
    display: flex; align-items: center; gap: 5px; transition: all 0.3s; border-bottom: 3px solid transparent;
}
.main-nav a i { font-size: 10px; margin-top: 2px; color: #666; }
.main-nav a:hover, .main-nav li.current-menu-item a { color: var(--tmp-primary-color); border-bottom-color: var(--tmp-primary-color); }
.account-link a { font-size: 16px; font-weight: 500; color: var(--tmp-body-font-color); transition: color 0.3s; }
.account-link a:hover { color: var(--tmp-primary-color); }

/* Mobile Nav */
.mobile-toggle { display: none; font-size: 24px; background: none; border: none; cursor: pointer; color: var(--tmp-heading-color); }
.mobile-nav-overlay {
    position: fixed; top: 0; right: -100%; width: 100%; height: 100vh;
    background: var(--tmp-background-color); z-index: 2000; transition: 0.4s ease;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
}
.mobile-nav-overlay.active { right: 0; }
.mobile-nav-overlay ul { list-style: none; text-align: center; }
.mobile-nav-overlay ul li { margin-bottom: 25px; }
.mobile-nav-overlay ul a { font-size: 28px; font-weight: 700; color: var(--tmp-heading-color); font-family: 'Anybody', serif; }
.close-nav { position: absolute; top: 20px; right: 30px; font-size: 40px; cursor: pointer; color: var(--tmp-heading-color); }

/* ============================================
   GRID LAYOUTS & TABLES
============================================ */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: start; }
.about-grid.reverse { grid-template-columns: 1fr 1fr; }
.about-image-wrapper { position: relative; width: 100%; }
.about-image { 
    width: 100%; aspect-ratio: 16/10; object-fit: cover; 
    border-radius: 20px; box-shadow: 15px 15px 0px rgba(8, 77, 42, 0.08); 
}

.amenities-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 40px; }
.amenity-card {
    background: #fff; padding: 30px 20px; border-radius: 16px; transition: 0.3s; 
    border: 1px solid rgba(0,0,0,0.03); height: 100%;
}
.amenity-card h4 { font-family: 'Anybody', serif; font-size: 19px; margin-bottom: 10px; color: var(--tmp-heading-color); }
.amenity-card p { font-size: 15px; color: #666; line-height: 1.5; }

.info-card { background: #fff; padding: 25px; border-radius: 16px; box-shadow: 0 8px 24px rgba(0,0,0,0.04); margin-top: 15px; width: 100%; max-width: 100%; overflow-x: auto; }
.info-table { width: 100%; border-collapse: collapse; min-width: 380px; }
.info-table th { text-align: left; padding: 12px; color: var(--tmp-primary-color); font-size: 11px; text-transform: uppercase; border-bottom: 2px solid var(--tmp-background-color); letter-spacing: 1px;}
.info-table td { padding: 12px; border-bottom: 1px solid #f5f5f5; font-size: 14px; }

.rules-list { list-style: none; padding: 0; }
.rules-list li { margin-bottom: 10px; padding-left: 28px; position: relative; font-size: 15px; color: #555; }
.rules-list li::before { content: '\f058'; font-family: 'Font Awesome 6 Free'; font-weight: 900; position: absolute; left: 0; color: #fff; /* Changed for dark bg compatibility */ }

/* ============================================
   FOOTER
============================================ */
.footer { background-color: var(--tmp-dark-forest); color: #fff; padding: 60px 0 30px; position: relative; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 40px; }
.footer-logo { font-family: 'Anybody', serif; font-size: 24px; color: var(--tmp-secondary-color); margin-bottom: 10px; display: block; }
.footer h3 { font-family: 'Anybody', serif; margin-bottom: 15px; color: #fff; font-size: 17px;}
.footer p, .footer a { color: rgba(255,255,255,0.6); font-size: 14px; margin-bottom: 8px; display: block; transition: 0.2s; }
.footer a:hover { color: #fff; transform: translateX(3px); }
.footer-bottom { margin-top: 40px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.08); text-align: center; color: rgba(255,255,255,0.3); font-size: 12px; }

/* ============================================
   MOBILE RESPONSIVENESS
============================================ */
@media (max-width: 991px) {
    .header-top .container { flex-direction: row; }
    .header-left, .header-right .contact-email, .header-bottom, .header-divider { display: none; }
    .header-center { position: relative; left: auto; transform: none; }
    .mobile-toggle { display: block; }
    .header-top { padding: 15px 0; }
    
    .container { padding: 0 20px; }
    .about-grid, .about-grid.reverse { grid-template-columns: 1fr; gap: 35px; text-align: center; }
    .about-image { aspect-ratio: 16/9; box-shadow: 10px 10px 0px rgba(8, 77, 42, 0.08); }
    .amenities-grid { grid-template-columns: repeat(2, 1fr); gap: 15px; }
    .section { padding: 60px 0; }
}

@media (max-width: 767px) {
    .amenities-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; text-align: center; }
    .about-grid.reverse { display: flex; flex-direction: column-reverse; }
    .info-card { padding: 15px; width: calc(100vw - 40px); margin-left: auto; margin-right: auto; }
    .rules-list li { text-align: left; }
    .section-title { margin-bottom: 15px; }
    .section-description { margin-bottom: 20px; }
}


/* ============================================
   ARCHIVE GRID STYLES
============================================ */

/* The Grid Layout */
.forest-archive-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

/* The Card Wrapper */
.forest-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
}

.forest-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(8, 77, 42, 0.15); /* Greenish shadow */
}

/* Card Image */
.f-card-img-link {
    position: relative;
    display: block;
    height: 240px;
    overflow: hidden;
}

.f-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.forest-card:hover .f-card-img {
    transform: scale(1.1); /* Zoom effect */
}

.f-card-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #DEED58; /* Secondary Color */
    color: #084D2A;      /* Heading Color */
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Card Content */
.f-card-content {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.f-card-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 13px;
    color: #888;
    text-transform: uppercase;
    font-weight: 600;
}
.f-card-meta i { color: #E67D3C; /* Primary Orange */ }

.f-card-title {
    font-size: 24px;
    margin: 0 0 15px 0;
    line-height: 1.3;
    font-family: 'Anybody', serif;
}

.f-card-title a {
    text-decoration: none;
    color: #084D2A;
    transition: color 0.2s;
}
.f-card-title a:hover { color: #E67D3C; }

.f-card-excerpt {
    font-size: 16px;
    color: #666;
    margin-bottom: 25px;
    line-height: 1.6;
}

/* Card Footer */
.f-card-footer {
    margin-top: auto; /* Pushes to bottom */
    border-top: 1px solid #f0f0f0;
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.f-season {
    display: flex;
    align-items: center;
    gap: 10px;
}
.f-season i { font-size: 24px; color: #E67D3C; }
.f-season div { display: flex; flex-direction: column; line-height: 1.2; }
.f-season small { font-size: 11px; color: #999; text-transform: uppercase; }
.f-season strong { font-size: 14px; color: #084D2A; }

/* Circle Button */
.btn-circle {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #084D2A;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}
.btn-circle:hover {
    background: #E67D3C;
    transform: rotate(-45deg);
}

/* Mobile Fixes */
@media (max-width: 768px) {
    .forest-archive-grid { grid-template-columns: 1fr; }
}

.resort-hero {
    position: relative;
    height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    overflow: hidden;
}

.r-hero-img {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    object-fit: cover;
    z-index: 0;
}

.r-hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.6));
    z-index: 1;
}

.r-hero-content { position: relative; z-index: 2; padding: 20px; max-width: 900px; }

.r-hero-title {
    font-size: clamp(40px, 6vw, 80px);
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.1;
    text-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.r-hero-sub {
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    display: block;
    margin-bottom: 15px;
    color: var(--tmp-secondary-color);
}

/* Buttons */
.btn-resort {
    display: inline-block;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 10px;
    transition: all 0.3s ease;
}

.btn-resort.primary { background: var(--tmp-secondary-color); color: var(--tmp-heading-color); }
.btn-resort.primary:hover { background: #fff; transform: translateY(-3px); }

.btn-resort.outline { border: 2px solid #fff; color: #fff; }
.btn-resort.outline:hover { background: #fff; color: #000; transform: translateY(-3px); }
.btn-resort.full { width: 100%; text-align: center; background: var(--tmp-heading-color); color: #fff; margin: 0; margin-top: 15px; }

/* 2. Intro & Bottom About Sections */
.r-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.r-about-img { border-radius: 20px; box-shadow: 20px 20px 0 rgba(230, 125, 60, 0.1); width: 100%; }
.r-badges-row { display: flex; gap: 15px; margin-top: 30px; }
.r-badge { background: #fff; padding: 10px 20px; border-radius: 8px; border: 1px solid #eee; font-weight: 600; color: #555; display: flex; align-items: center; gap: 8px; }
.r-badge i { color: var(--tmp-primary-color); }

/* 3. Parallax Showcase */
.r-parallax {
    height: 500px;
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.r-parallax-overlay {
    background: rgba(0,0,0,0.5);
    padding: 40px;
    border: 1px solid rgba(255,255,255,0.3);
    backdrop-filter: blur(5px);
}
.r-parallax h2 { color: #fff; font-size: 3rem; margin: 0; text-align: center; }

/* 4. Amenities Grid */
.amenities-grid-resort {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; margin-top: 50px;
}
.resort-amenity-card {
    background: #fff; padding: 30px; border-radius: 16px; border: 1px solid #f0f0f0;
    transition: 0.3s; text-align: center;
}
.resort-amenity-card:hover { transform: translateY(-5px); box-shadow: 0 10px 30px rgba(0,0,0,0.05); border-color: var(--tmp-secondary-color); }
.ra-icon { font-size: 40px; color: var(--tmp-primary-color); margin-bottom: 20px; }
.resort-amenity-card h4 { font-size: 1.2rem; margin-bottom: 10px; color: var(--tmp-heading-color); }

/* 5. Rooms Grid */
.rooms-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 40px; margin-top: 50px;
}
.room-card {
    background: #fff; border-radius: 20px; overflow: hidden; box-shadow: 0 5px 20px rgba(0,0,0,0.05); transition: 0.3s;
}
.room-card:hover { transform: translateY(-10px); box-shadow: 0 20px 40px rgba(0,0,0,0.1); }
.room-img-box { height: 250px; position: relative; }
.room-img-box img { width: 100%; height: 100%; object-fit: cover; }
.room-badge {
    position: absolute; top: 15px; right: 15px; background: var(--tmp-secondary-color);
    color: var(--tmp-heading-color); padding: 5px 12px; border-radius: 20px; font-weight: 700; font-size: 0.8rem;
}
.room-details { padding: 25px; }
.room-details h3 { font-size: 1.4rem; margin-bottom: 10px; color: var(--tmp-heading-color); }
.room-price-row { display: flex; align-items: baseline; gap: 5px; }
.r-price { font-size: 1.8rem; font-weight: 700; color: var(--tmp-primary-color); }
.r-unit { color: #999; font-size: 0.9rem; }

/* Responsive Adjustments */
@media (max-width: 900px) {
    .r-grid-2 { grid-template-columns: 1fr; }
    .r-hero-title { font-size: 2.5rem; }
    .r-parallax { background-attachment: scroll; }
    
    /* Order adjustment for bottom section mobile view */
    .r-grid-2 .r-about-img-wrap { order: -1; } /* Puts image above text on mobile */
}

/* =========================================
   ABOUT PAGE STYLES
   ========================================= */

/* 1. Intro Header */
.about-header-flex { display: flex; justify-content: space-between; align-items: flex-start; gap: 50px; padding: 40px 0; }
.about-main-title { font-size: clamp(3rem, 5vw, 4.5rem); color: var(--tmp-heading-color); line-height: 1.1; width: 60%; }
.about-main-desc {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    max-width: 65%; 
}
.about-main-desc::before {
    content: '';
    display: inline-block;
    width: 50px;
    height: 2px;
    background: #E67D3C;
    margin-top: 14px;
    flex-shrink: 0;
}

.about-badge-circle { position: relative; width: 100px; height: 100px; animation: spin 20s linear infinite; }
.about-badge-circle i { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); color: var(--tmp-primary-color); font-size: 24px; }
@keyframes spin { 100% { transform: rotate(360deg); } }

/* 2. Hero Image */
.about-wide-img { width: 100%; height: 500px; object-fit: cover; border-radius: 0; }

/* 3. Story Section */
.story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.founder-box { display: flex; align-items: center; gap: 15px; margin-top: 30px; }
.founder-img { width: 60px; height: 60px; border-radius: 50%; object-fit: cover; }
.quote-box-wrap { background: #fff; padding: 40px; border-radius: 20px; box-shadow: 20px 20px 0 rgba(230, 125, 60, 0.1); border: 1px solid #eee; }
.about-quote { font-family: 'DM Serif Display', serif; font-size: 1.8rem; line-height: 1.4; color: var(--tmp-heading-color); margin: 0; }

/* 4. Stats Bar */
.about-stats { background: #fdfaf5; padding: 60px 0; }
.stats-flex { display: flex; justify-content: space-between; text-align: center; flex-wrap: wrap; gap: 30px; }
.stat-item { flex: 1; min-width: 150px; }
.stat-icon { font-size: 40px; color: var(--tmp-primary-color); margin-bottom: 15px; }
.stat-num { font-size: 2.5rem; color: var(--tmp-heading-color); margin-bottom: 5px; font-weight: 700; }
.stat-label { text-transform: uppercase; font-size: 0.9rem; letter-spacing: 1px; color: #777; }

/* 5. Why Choose Us */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-top: 50px; }
.why-card { background: #fff; padding: 30px; border-radius: 16px; position: relative; border: 1px solid #eee; transition: 0.3s; }
.why-card:hover { transform: translateY(-5px); box-shadow: 0 10px 30px rgba(0,0,0,0.05); }
.why-num { background: #DEED58; color: #084D2A; width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; font-weight: bold; border-radius: 10px; margin-bottom: 20px; }
.why-card h4 { font-size: 1.3rem; margin-bottom: 10px; color: var(--tmp-heading-color); }

/* 6. Team Grid */
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; margin-top: 50px; }
.team-card { background: #fff; padding: 15px; border-radius: 20px; text-align: center; box-shadow: 0 5px 15px rgba(0,0,0,0.03); }
.team-img-box { height: 300px; border-radius: 15px; overflow: hidden; margin-bottom: 15px; }
.team-img-box img { width: 100%; height: 100%; object-fit: cover; transition: 0.5s; }
.team-card:hover img { transform: scale(1.05); }
.team-info h3 { font-size: 1.2rem; color: var(--tmp-heading-color); margin-bottom: 5px; }
.team-info span { color: var(--tmp-primary-color); font-size: 0.9rem; text-transform: uppercase; font-weight: 600; }

/* 7. Join CTA */
.join-cta { background: #F7F0E5; padding: 100px 0; position: relative; overflow: hidden; }
.join-cta::after {
    content: ''; position: absolute; bottom: 0; left: 0; width: 100%; height: 100px;
    background-image: url('https://cdn.pixabay.com/photo/2017/02/16/11/04/silhouette-2071190_1280.png'); /* Safari Silhouette */
    background-size: cover; background-position: bottom; opacity: 0.2;
}

@media (max-width: 900px) {
    .about-header-flex, .story-grid { flex-direction: column; gap: 40px; }
    .why-grid { grid-template-columns: 1fr; }
    .about-main-title, .about-main-desc { width: 100%; }
}
/* =========================================
   ABOUT PAGE - PREMIUM STYLES
   ========================================= */
/* 1. Intro Header Polish */
.about-intro {
    padding: 80px 0 100px;
    background-color: #fdfaf5;
    position: relative;
    overflow: hidden;
}
.about-intro .container {
    position: relative;
}

/* Background Pattern (Subtle Leaf) */
.about-bg-pattern {
    position: absolute; top: -50px; right: -50px;
    width: 300px; height: 300px;
    background-image: radial-gradient(#E67D3C 1px, transparent 1px);
    background-size: 20px 20px;
    opacity: 0.15;
    z-index: 0;
}

/* ===== ABOUT INTRO - IMAGE 2 STYLE FIX ===== */

.about-header-grid {
    display: block;
    position: relative;
    z-index: 1;
}

.about-text-section {
    width: 100%;
    max-width: 100%;
    flex: none;
    padding-right: 0;
}

.about-image-section {
    position: absolute;
    top: 0;
    right: 0;
    width: 320px;
    flex: none;
    max-width: 320px;
}

.about-intro {
    padding: 100px 0;
    background-color: #fdfaf5;
    position: relative;
    overflow: visible;
}
/* Text Styling */
.about-eyebrow {
    color: #E67D3C;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 15px;
    position: relative;
    padding-left: 50px;
}
.about-eyebrow::before {
    content: ''; position: absolute; left: 0; top: 50%; 
    width: 40px; height: 2px; background: #E67D3C;
}

.about-main-title {
    font-family: 'Anybody', serif;
    font-size: clamp(2.2rem, 4vw, 4.5rem);
    color: #084D2A;
    line-height: 1.1;
    margin-top: 15px;
    margin-bottom: 40px;
    max-width: 100%;
}

.lead-paragraph {
    font-size: 1.1rem;
    color: #444;
    font-weight: 400;
    line-height: 1.8;
    margin: 0;
}


.regular-content {
    display: none; 
}

.regular-content p {
    font-size: 1.05rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 15px;
    max-width: 100%;
}

.about-signature {
    margin-top: 40px;
    display: flex; align-items: center; gap: 15px;
}
.sig-line { height: 1px; width: 60px; background: #ccc; }
.about-signature span { font-family: 'DM Serif Display', serif; font-size: 1.2rem; color: #aaa; font-style: italic; }

.about-intro-img { 
    width: 100%; 
    height: 550px; 
    object-fit: cover; 
    border-radius: 180px 180px 20px 20px; 
    box-shadow: 0 20px 50px rgba(8, 77, 42, 0.15); 
    position: relative;
    z-index: 2;
}

/* Decorative Frame Behind Image */
.img-frame-decoration {
    position: absolute;
    top: 20px; left: 20px;
    width: 100%; height: 100%;
    border: 2px solid #E67D3C;
    border-radius: 180px 180px 20px 20px;
    z-index: 1;
    opacity: 0.3;
}
.about-badge-circle {
    position: absolute;
    bottom: 30px;
    left: -20px;
    width: 120px;
    height: 120px;
    animation: spin 20s linear infinite;
    z-index: 10;
    background: #fdfaf5;
    border-radius: 50%;
    padding: 5px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.about-badge-circle i {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #E67D3C;
    font-size: 26px;
}

/* INTRO IMAGE */
.about-intro-img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 180px 180px 20px 20px;
    box-shadow: 0 20px 50px rgba(8, 77, 42, 0.15);
}

.img-frame-decoration {
    position: absolute;
    top: 15px;
    left: 15px;
    width: 100%;
    height: 100%;
    border: 2px solid #E67D3C;
    border-radius: 180px 180px 20px 20px;
    z-index: 1;
    opacity: 0.25;
}

/* SIGNATURE */
.about-signature {
    margin-top: 40px;
    display: flex;
    align-items: center;
    gap: 15px;
}

/* ===== MOBILE ===== */
@media (max-width: 900px) {
    .about-image-section {
        position: relative;
        width: 100%;
        max-width: 100%;
        margin-top: 40px;
    }

    .about-intro-img {
        height: 350px;
        border-radius: 20px;
    }

    .img-frame-decoration {
        border-radius: 20px;
    }

    .about-badge-circle {
        left: auto;
        right: 15px;
        bottom: -20px;
        width: 100px;
        height: 100px;
    }

    .about-main-desc {
        max-width: 100%;
    }
}
/* =============================================
   ABOUT STORY SECTION — PIXEL PERFECT
   ============================================= */

/* =============================================
   ABOUT STORY SECTION — PIXEL PERFECT
   ============================================= */
.about-story.section {
    padding-top: 20px !important;
    padding-bottom: 0 !important;
}
.about-story-text.section {
    padding-top: 70px !important;
    padding-bottom: 0 !important;
}
.about-story {
    background-color: #F0EBE0;
    padding: 60px 0 0px;
}

/* ── WIDER CONTAINER ── */
.about-story .container {
    max-width: 1400px;
    padding: 0 60px;
}

/* Top divider - full wide */
.story-top-divider {
    border: none;
    border-top: 1px solid #686866;
    margin-bottom: 60px;
}

/* 2 column grid — left smaller, right wider */
.about-story .story-grid {
    display: grid;
    grid-template-columns: 420px 1fr;
    gap: 100px;
    align-items: start;
}

/* ── LEFT ── */
.story-left {
    display: flex;
    flex-direction: column;
    gap: 60px;
}
.about-story.section {
    padding-bottom: 0 !important;
}
/* Heading */
.story-main-title {
    font-family: 'Anybody', serif;
    font-size: 2.4rem;
    font-weight: 600;
    color: #084D2A;
    line-height: 1.2;
    margin: 0;
}

/* Founder box */
.founder-box {
    display: flex;
    align-items: center;
    gap: 16px;
}

.founder-img {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.founder-box strong {
    font-family: 'Anybody', serif;
    font-size: 1rem;
    font-weight: 700;
    color: #084D2A;
    display: block;
    margin-bottom: 0px;
}
.about-story-text.section {
    padding-bottom: 0 !important;
}
.founder-box span {
    font-family:'Anybody';
    font-size: 0.9rem;
    color: #666;
    font-weight: 400;
}

/* ── RIGHT ── */
.story-right {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

/* Lead para - bold */
.story-lead-para {
    font-family:'Anybody';
    font-size: 1.1rem;
    font-weight:700;
    color: #1a1a1a;
    line-height: 1.65;
    margin: 0;
    text-align: left;
}

/* Body para - normal */
.story-body-para {
    font-family:'Anybody';
    font-size: 1.1rem;
    font-weight: 400;
    color: #1a1a1a;
    line-height: 1.75;
    margin: 0;
    text-align: left;
}

.story-body-para .orange-start {
    color: #1a1a1a;
    font-weight: 400;
}

.story-big-quote {
    margin: 0;
    padding: 0;
    border: none;
    background: none;
    font-family: 'Anybody', serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: #1a1a1a;
    line-height: 1.6;
}

.story-big-quote::before {
    display: none !important;
}

.story-big-quote::after {
    display: none !important;
}

blockquote.story-big-quote {
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
    background: none !important;
    box-shadow: none !important;
}

/* ── RESPONSIVE ── */
@media (max-width: 1200px) {
    .about-story .story-grid {
        grid-template-columns: 360px 1fr;
        gap: 70px;
    }
    .about-story .container {
        padding: 0 40px;
    }
}

@media (max-width: 900px) {
    .about-story .story-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .about-story .container {
        padding: 0 24px;
    }
    .story-main-title { font-size: 2rem; }
    .story-big-quote  { font-size: 1.8rem; }
    .ast-paragraph {
        font-size: 1rem !important;
        font-weight: 400 !important;
        text-align: left !important;
        line-height: 1.7 !important;
    }
    .ast-orange {
        font-weight: 700 !important;
    }
}

@media (max-width: 576px) {
    .about-story       { padding: 40px 0 60px; }
    .story-top-divider { margin-bottom: 36px; }
    .story-main-title  { font-size: 1.7rem; }
    .story-lead-para   { font-size: 1rem; }
    .story-big-quote   { font-size: 1.5rem; }
}/* ── SECTION 2: STATS ── */
.about-stats,
.section.about-stats {
    background-color: #F0EBE0 !important;
    background: #F0EBE0 !important;
    padding: 50px 0 90px 0 !important;
    color: #1a1a1a !important;
}
.ast-divider {
    width: 100%;
    height: 1px;
    background-color: #9d998b;
    margin-bottom: 60px;
}

.ast-paragraph {
    font-family: 'Georgia', serif;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.3;
    text-align: center;
    color: #1a1a1a;
    margin: 0;
}

.ast-orange {
    color: #e86c2f;
    font-weight: 700;
}
.about-stats .container {
    max-width: 1100px !important;
    margin: 0 auto !important;
    padding: 0 40px !important;
}

.about-stats .stats-flex {
    display: flex !important;
    justify-content: space-around !important;
    align-items: flex-start !important;
    flex-wrap: nowrap !important;
    gap: 20px !important;
}

.about-stats .stat-item {
    flex: 1 !important;
    text-align: center !important;
    padding: 1px 15px !important;
}

/* Emoji */
.about-stats .stat-icon {
    font-size: 3rem !important;
    color: inherit !important;
    background: none !important;
    width: auto !important;
    height: auto !important;
    border-radius: 0 !important;
    margin-bottom: 18px !important;
    display: block !important;
    line-height: 1 !important;
}

/* BIG NUMBER */
.about-stats .stat-num,
.about-stats h3.stat-num {
    font-family: 'Anybody', serif !important;
    font-size: 3.6rem !important;
    font-weight: 600 !important;
    color: #084D2A !important;
    line-height: 1 !important;
    margin: 0 0 14px 0 !important;
    display: block !important;
    background: none !important;
    text-transform: none !important;
}

/* LABEL */
.about-stats .stat-label {
    font-family:'Anybody' !important;
    font-size: 1.05rem !important;
    font-weight: 400 !important;
    color: #2a2a2a !important;
    text-transform: none !important;
    letter-spacing: 0 !important;
    display: block !important;
    line-height: 1.4 !important;
}


/* ── RESPONSIVE ── */
@media (max-width: 900px) {
    .section.about-story-text .container,
    .about-stats .container {
        max-width: 100% !important;
        padding: 0 25px !important;
    }
    .ast-paragraph {
        font-size: 1.3rem !important;
    }
    .about-stats .stats-flex {
        flex-wrap: wrap !important;
        justify-content: center !important;
        gap: 30px !important;
    }
    .about-stats .stat-item {
        flex: 0 0 45% !important;
    }
    .about-stats .stat-num,
    .about-stats h3.stat-num {
        font-size: 3rem !important;
    }
}

@media (max-width: 480px) {
    .ast-paragraph {
        font-size: 1.05rem !important;
    }
    .about-stats .stat-item {
        flex: 0 0 47% !important;
    }
    .about-stats .stat-num,
    .about-stats h3.stat-num {
        font-size: 2.4rem !important;
    }
    .about-stats .stat-icon {
        font-size: 2.4rem !important;
    }
}
/* Stats 2x2 grid fix — mobile */
@media (max-width: 900px) {
    .about-stats .stats-flex {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 30px !important;
    }
    .about-stats .stat-item {
        flex: unset !important;
        width: 100% !important;
    }
}
/* =====================================================
   SAFARI CTA — COMPLETE CSS (Purana sab hata ke yeh daalo)
===================================================== */
.team-section.section {
    padding-top: 20px !important;
    padding-bottom: 20px !important;
}
.safari-cta-section {
    position: relative;
    height: 580px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.safari-cta-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    z-index: 0;
}

.safari-cta-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(0,0,0,0.02) 0%,
        rgba(0,0,0,0.10) 40%,
        rgba(20,35,20,0.75) 56%,
        rgba(20,35,20,0.88) 100%
    );
    z-index: 1;
}

.safari-cta-container {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    width: 100%;
    height: 100%;
    padding: 0 40px;
    max-width: 1280px;
    margin: 0 auto;
}

.safari-cta-card {
    width: 650px;
    background: rgba(30,45,30,0.55);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-radius: 30px;
    border: 1px solid rgba(255,255,255,0.07);
    padding: 50px 48px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.25);
    flex-shrink: 0;
}

.safari-cta-eyebrow {
    display: block;
    font-family:'Anybody';
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #C8A84B;
    margin-bottom: 12px;
}

.safari-cta-title {
    font-family: 'Anybody', serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.15;
    margin: 0 0 20px 0;
    white-space: nowrap;
}

.safari-cta-desc {
    font-family:'Anybody';
    font-size: 1rem;
    font-weight: 400;
    color: rgba(255,255,255,0.88);
    line-height: 1.75;
    margin: 0 0 32px 0;
}

.safari-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #ffffff;
    font-family:'Anybody';
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    border-bottom: 1.5px solid rgba(255,255,255,0.55);
    padding-bottom: 4px;
    transition: all 0.3s ease;
}

.safari-cta-btn:hover {
    color: #C8A84B;
    border-bottom-color: #C8A84B;
    gap: 16px;
}

.safari-cta-arrow {
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.safari-cta-btn:hover .safari-cta-arrow {
    transform: translateX(5px);
}


/* ============================================
   RESPONSIVE — MOBILE FIX
============================================ */

/* Tablet */
@media (max-width: 1024px) {
    .safari-cta-card {
        width: 500px;
        padding: 44px 40px;
    }
    .safari-cta-title {
        font-size: 2.2rem;
        white-space: nowrap;
    }
}

@media (max-width: 768px) {
    .safari-cta-section {
        height: auto;          
        min-height: unset;
        padding: 0;
    }
    .safari-cta-overlay {
        background: rgba(15,30,15,0.60);  
    }
    .safari-cta-container {
        justify-content: center;
        align-items: flex-start;
        padding: 40px 20px;
        height: auto;
    }
    .safari-cta-card {
        width: 100%;
        max-width: 100%;
        padding: 36px 28px;
        border-radius: 18px;
        flex-shrink: 1;
    }
    .safari-cta-title {
        font-size: 1.9rem;
        white-space: normal;    
        line-height: 1.2;
    }
    .safari-cta-desc {
        font-size: 0.95rem;
        line-height: 1.7;
    }
    .safari-cta-eyebrow {
        font-size: 0.72rem;
        letter-spacing: 3px;
    }
}

/* Mobile portrait */
@media (max-width: 480px) {
    .safari-cta-container {
        padding: 30px 16px;
    }
    .safari-cta-card {
        padding: 30px 22px;
        border-radius: 14px;
    }
    .safari-cta-title {
        font-size: 1.65rem;
    }
    .safari-cta-desc {
        font-size: 0.92rem;
        margin-bottom: 26px;
    }
    .safari-cta-btn {
        font-size: 0.82rem;
        letter-spacing: 1.5px;
    }
}


/* 3. Story Section Polish */
.about-story { 
    padding: 100px 0; 
}
.story-grid { 
    display: grid; 
    grid-template-columns: 1fr 1fr; 
    gap: 80px; 
    align-items: center; 
}
.section-subtitle { 
    color: #E67D3C; 
    font-weight: bold; 
    text-transform: uppercase; 
    letter-spacing: 1px; 
    display: block; 
    margin-bottom: 10px; 
}
.section-title { 
    font-size: clamp(2rem, 4vw, 3rem); 
    color: #084D2A; 
    margin: 0 0 30px; 
    font-family: 'DM Serif Display', serif; 
}
.highlight { 
    color: #E67D3C; 
}

.quote-box-wrap { 
    background: #fff; 
    padding: 50px; 
    border-radius: 0 40px 0 40px; 
    box-shadow: 20px 20px 0 rgba(8, 77, 42, 0.05); 
    border: 1px solid #f0f0f0; 
    position: relative;
}
.quote-icon { 
    font-size: 40px; 
    color: #eee; 
    position: absolute; 
    top: 30px; 
    left: 30px; 
}
.about-quote { 
    font-family: 'DM Serif Display', serif; 
    font-size: clamp(1.4rem, 3vw, 2rem); 
    line-height: 1.4; 
    color: #084D2A; 
    margin: 0; 
    position: relative; 
    z-index: 2; 
}

/* Founder Box */
.founder-box {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 30px;
}

.founder-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

/* 4. Stats */
.about-stats { 
    padding: 60px 0; 
    background: #084D2A; 
    color: #fff; 
}
.stats-flex { 
    display: flex; 
    justify-content: space-around; 
    text-align: center; 
    flex-wrap: wrap; 
    gap: 30px; 
}
.stat-item {
    padding: 1.5rem 1rem;
}
.stat-icon { 
    font-size: 40px; 
    color: #DEED58; 
    margin-bottom: 15px; 
}
.stat-num { 
    font-size: 2.5rem; 
    color: #fff; 
    margin-bottom: 5px;
    line-height: 1.2;
}
.stat-label { 
    color: rgba(255,255,255,0.7); 
    text-transform: uppercase; 
    letter-spacing: 2px;
    font-size: 0.85rem;
}

/* 5. Why Choose Us */
.why-choose { 
    padding: 100px 0; 
}
.why-grid { 
    display: grid; 
    grid-template-columns: repeat(3, 1fr); 
    gap: 30px; 
    margin-top: 60px; 
}
.why-card { 
    background: #fff; 
    padding: 40px 30px; 
    border-radius: 20px; 
    border: 1px solid #f0f0f0; 
    transition: 0.3s; 
}
.why-card:hover { 
    transform: translateY(-10px); 
    box-shadow: 0 20px 40px rgba(0,0,0,0.05); 
    border-color: #E67D3C; 
}
.why-num { 
    background: #DEED58; 
    color: #084D2A; 
    width: 50px; 
    height: 50px; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    font-weight: bold; 
    border-radius: 12px; 
    margin-bottom: 25px; 
    font-size: 1.2rem; 
}
.why-card h4 { 
    font-size: 1.4rem; 
    margin-bottom: 15px; 
    color: #084D2A; 
}

.team-section {
    padding: 70px 100px 90px;
    background: #ffffff;
    font-family: 'DM Sans', sans-serif;
  }

  /* ---- Header ---- */
 .team-section .center-intro {
    margin-bottom: 28px;
    text-align: center;
}

.team-section .section-title {
    font-family: 'DM Sans', sans-serif;
    font-size: 48px;
    font-weight: 800;
    color: #1b5c2a;
    line-height: 1.15;
    margin-bottom: 16px;
}

.team-section .team-intro-text {
    font-family: 'DM Sans', sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: #000000;
    line-height: 1.65;
    max-width: 800px;
    margin: 0 auto;
    letter-spacing: 0.05rem;
}

  /* ---- Divider ---- */
  .team-section .team-divider {
    border: none;
    border-top: 1px solid #b6b4aa;
    margin: 36px 0 52px 0;
  }

  /* ---- Grid ---- */
  .team-section .team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
  }

  /* ---- Card ---- */
  .team-section .team-card {
    background: #f0efe9;
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
  }

  .team-section .team-img-box {
    width: 100%;
    height: 320px;
    overflow: hidden;
    border-radius: 16px 16px 0 0;
  }

  .team-section .team-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
  }

  .team-section .team-info {
    padding: 16px 18px 20px;
    text-align: center;
    background: #f0efe9;
  }

  .team-section .team-info h3 {
    font-family: 'DM Sans', sans-serif;
    font-size: 17px;
    font-weight: 700;
    color: #1b5c2a;
    margin-bottom: 5px;
  }

  .team-section .team-info span {
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #c05820;
  }

  @media (max-width: 1024px) {
    .team-section { padding: 50px 40px; }
    .team-section .team-grid { grid-template-columns: repeat(2, 1fr); }
  }

  @media (max-width: 600px) {
    .team-section { padding: 36px 20px; }
    .team-section .section-title { font-size: 32px; }
    .team-section .team-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
    .team-section .team-img-box { height: 200px; }
  }
@media (max-width: 991px) {
    .story-main-title {
        margin-bottom: 3px !important;
    }
    .founder-box {
        margin-top: 0px !important;
    }
}

/* 7. CTA */
.join-cta { 
    background: #084D2A; 
    padding: 100px 0; 
    color: #fff; 
    text-align: center; 
}
.cta-sub { 
    color: #DEED58; 
    text-transform: uppercase; 
    letter-spacing: 2px; 
    font-weight: bold; 
    display: block; 
    margin-bottom: 15px; 
}
.cta-title { 
    font-size: clamp(2rem, 5vw, 3.5rem); 
    margin: 0 0 25px; 
    color: #fff; 
    font-family: 'DM Serif Display', serif; 
}
.cta-desc { 
    font-size: 1.2rem; 
    max-width: 600px; 
    margin: 0 auto 40px; 
    opacity: 0.8; 
    line-height: 1.6; 
}
.btn-cta { 
    background: #E67D3C; 
    color: #fff; 
    padding: 18px 50px; 
    border-radius: 50px; 
    text-decoration: none; 
    font-weight: bold; 
    font-size: 1.1rem; 
    display: inline-block; 
    transition: 0.3s; 
}
.btn-cta:hover { 
    background: #fff; 
    color: #084D2A; 
    transform: translateY(-5px); 
}

/* ============================================
   RESPONSIVE DESIGN - MOBILE & TABLET
   ============================================ */

/* Large Tablets and below (1024px) */
@media (max-width: 1024px) {
    .about-header-grid {
        gap: 15px; /* Even tighter on tablets */
    }
    
    .about-text-section {
        flex: 0 0 58%;
        max-width: 58%;
    }
    
    .about-image-section {
        flex: 0 0 42%;
        max-width: 42%;
    }
    
    .about-intro {
        padding: 80px 0;
    }
    
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-wide-img {
        height: 400px;
    }
}

/* Tablets (900px and below) */
@media (max-width: 900px) {
    .about-header-grid {
        flex-direction: column; /* Stack vertically on tablets */
        gap: 40px;
    }
    
    .about-text-section,
    .about-image-section {
        flex: 0 0 100%;
        max-width: 100%;
        padding-right: 0;
    }
    
    .about-intro {
        padding: 60px 0;
    }
    
    .about-intro-img {
        height: 400px;
        border-radius: 20px;
    }
    
    .img-frame-decoration {
        border-radius: 20px;
    }
    
    .about-badge-circle {
        left: auto;
        right: 20px;
        bottom: -30px;
        width: 110px;
        height: 110px;
    }
    
    .about-badge-circle i {
        font-size: 24px;
    }
    
    .story-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .about-main-title {
        font-size: 3rem;
    }
    
    .lead-paragraph {
        font-size: 1.2rem;
    }
    
    .quote-box-wrap {
        padding: 40px;
    }
    
    .about-story,
    .why-choose,
    .team-section {
        padding: 80px 0;
    }
    
    .about-wide-img {
        height: 350px;
    }
}

/* Mobile Landscape and smaller tablets (768px) */
@media (max-width: 768px) {
    .why-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-flex {
        gap: 20px;
    }
    
    .stat-num {
        font-size: 2rem;
    }
    
    .team-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    }
    
    .quote-box-wrap {
        padding: 30px;
        border-radius: 0 30px 0 30px;
    }
    
    .about-quote {
        font-size: 1.5rem;
    }
    
    .join-cta {
        padding: 80px 0;
    }
    
    .cta-desc {
        font-size: 1.1rem;
    }
}

/* Mobile Portrait (576px and below) */
@media (max-width: 576px) {
    .about-intro {
        padding: 40px 0;
    }
    
    .about-main-title {
        font-size: 2.2rem;
        margin-bottom: 25px;
    }
.about-eyebrow::before {
    content: '';
    display: inline-block;
    width: 40px;
    height: 2px;
    background: #E67D3C;
    flex-shrink: 0;
}

    
    .about-eyebrow::before {
        width: 30px;
    }
    
    .lead-paragraph {
        font-size: 1.1rem;
    }
    
    .regular-content p {
        font-size: 1rem;
    }
    
    .about-intro-img {
        height: 350px;
    }
    
    .about-badge-circle {
        width: 90px;
        height: 90px;
        right: 10px;
        bottom: -20px;
    }
    
    .about-badge-circle svg text {
        font-size: 10px;
    }
    
    .about-badge-circle i {
        font-size: 20px;
    }
    
    .about-signature {
        margin-top: 30px;
    }
    
    .about-signature span {
        font-size: 1rem;
    }
    
    .about-wide-img {
        height: 250px;
    }
    
    .about-story,
    .why-choose,
    .team-section,
    .join-cta {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 2rem;
        margin-bottom: 20px;
        
    }
    
    .quote-box-wrap {
        padding: 25px;
        box-shadow: 10px 10px 0 rgba(8, 77, 42, 0.05);
    }
    
    .quote-icon {
        font-size: 30px;
        top: 20px;
        left: 20px;
    }
    
    .about-quote {
        font-size: 1.3rem;
    }
    
    .about-stats {
        padding: 40px 0;
    }
    
    .stat-icon {
        font-size: 32px;
        margin-bottom: 10px;
    }
    
    .stat-num {
        font-size: 1.8rem;
    }
    
    .stat-label {
        font-size: 0.75rem;
    }
    
    .why-card {
        padding: 30px 20px;
    }
    
    .why-card h4 {
        font-size: 1.2rem;
    }
    
    .team-img-box {
        height: 280px;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .btn-cta {
        padding: 15px 40px;
        font-size: 1rem;
    }
}

/* Extra Small Mobile (400px and below) */
@media (max-width: 400px) {
    .container {
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .about-main-title {
        font-size: 1.9rem;
    }
    
    .about-intro-img {
        height: 300px;
    }
    
    .lead-paragraph {
        font-size: 1rem;
    }
    
    .about-wide-img {
        height: 200px;
    }
    
    .stat-num {
        font-size: 1.6rem;
    }
}
.join-section {
      background-color: #f0ead6;
      padding: 80px 100px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 60px;
      min-height: 220px;
    }

    .join-left {
      flex: 0 0 auto;
    }

    .join-left h2 {
      font-family: 'Anybody';
      font-size: 52px;
      font-weight: 600;
      color: #1a5c2a;
      line-height: 1.1;
      white-space: nowrap;
    }

    .join-right {
      flex: 1;
      max-width: 560px;
    }

    .join-right p {
      font-size: 20px;
      color: #2c2c2c;
      line-height: 1.75;
      margin-bottom: 28px;
      font-weight: 500;
    }

    .join-link {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-size: 18px;
      font-weight: 300;
      letter-spacing: 0.04em;
      text-transform: uppercase;
      color: black;
      text-decoration: none;
      border-bottom: 1.5px solid #b85c2a;
      padding-bottom: 3px;
      transition: opacity 0.2s ease;
    }

    .join-link:hover {
      color:orange
    }

    .join-link .arrow {
      font-size: 29px;
    }

    @media (max-width: 768px) {
      .join-section {
        flex-direction: column;
        padding: 50px 30px;
        align-items: flex-start;
        gap: 30px;
      }
      .join-left h2 {
        font-size: 38px;
        white-space: normal;
      }
    }

/* ✅ ZONES GRID - 2 column on desktop */
.zones-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.zone-card {
    background: #fff;
    padding: 35px;
    border-radius: 20px;
    border: 1px solid #eee;
    box-shadow: 0 8px 24px rgba(0,0,0,0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.zone-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.08);
}

.zone-card h3 {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.zone-card.core { border-top: 4px solid #e67e22; }
.zone-card.buffer { border-top: 4px solid #27ae60; }

.zone-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.zone-card li {
    padding: 10px 0;
    border-bottom: 1px solid #f5f5f5;
    font-size: 15px;
    color: #444;
    font-weight: 500;
    display: flex;
    align-items: center;
}

.zone-card li:last-child { border-bottom: none; }

/* Forest Info Bar */
.forest-info-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    background: var(--tmp-background-color);
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.04);
    border: 1px solid #eee;
}

@media (max-width: 900px) {
    .zones-grid { grid-template-columns: 1fr; }
    .forest-info-bar { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 576px) {
    .forest-info-bar { grid-template-columns: 1fr; }
}
/* ── BREADCRUMB FIX ─────────────────────────── */
.its-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 0 16px;
    font-size: 14px;
    flex-wrap: wrap;
    width: 100%;
    margin: 0 0 10px 0;
}

.its-breadcrumb a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
    white-space: nowrap;
    margin-left: 16px;
}

.its-breadcrumb a:hover {
    color: #E8673A;
}

.its-bc-sep {
    color: #666;
    font-size: 14px;
    font-weight: 400;
    flex-shrink: 0;
}

.its-bc-current {
    color: #555;
    font-weight: 400;
    word-break: break-word;
    overflow-wrap: break-word;
    min-width: 0;
}

@media (max-width: 768px) {
    .its-breadcrumb { font-size: 12px; gap: 5px; padding: 10px 0 12px; }
    .its-bc-current { font-size: 12px; }
}

@media (max-width: 480px) {
    .its-breadcrumb { font-size: 11px; }
}
/* ── COST SECTION - SIMPLE VERTICAL STYLE ── */
.post-data.cost {
    padding: 10px 0;
}

/* Main Heading "Cost" */
.wpte-cost-tab-title {
    font-size: 2rem;
    color: var(--heading-green, #2b4538);
    margin-bottom: 35px;
    font-family: 'Anybody', sans-serif;
    padding-bottom: 12px;
    border-bottom: 2px solid #eee;
}

/* Include / Exclude Block */
.cost-block {
    margin-bottom: 40px;
}

/* Sub Heading: "The Cost Includes" / "The Cost Excludes" */
.cost-block h3 {
    font-size: 1.5rem;
    font-family: 'Anybody', sans-serif;
    margin-bottom: 22px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.cost-block.inc h3 {
    color: #2b4538; /* dark green */
}

.cost-block.exc h3 {
    color: #2b4538; /* dark green - same as image 1 */
}

/* List reset */
.cost-block ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* Each list item */
.cost-block ul li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 12px 0;
    font-size: 1rem;
    color: #444;
    line-height: 1.6;
    border-bottom: 1px solid #f0f0f0;
}

.cost-block ul li:last-child {
    border-bottom: none;
}

/* Icon wrapper */
.cost-icon {
    flex-shrink: 0;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1px;
}

/* Green circle check for includes */
.cost-block.inc .cost-icon {
    border: 2px solid #27ae60;
    color: #27ae60;
}

/* Red circle X for excludes */
.cost-block.exc .cost-icon {
    border: 2px solid #e74c3c;
    color: #e74c3c;
}

/* Icon SVG size */
.cost-icon svg {
    width: 14px;
    height: 14px;
}

/* Mobile responsive */
@media (max-width: 576px) {
    .wpte-cost-tab-title {
        font-size: 1.6rem;
    }
    .cost-block h3 {
        font-size: 1.25rem;
    }
    .cost-block ul li {
        font-size: 0.95rem;
    }
}
.forests-section {
    padding: 80px 0 100px;
    background: var(--color-light-bg, #F7F0E5);
}

/* Section Header */
.section-badge {
    display: inline-block;
    background: var(--color-secondary, #DEED58);
    color: var(--color-dark, #084D2A);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    padding: 7px 20px;
    border-radius: 50px;
    margin-bottom: 18px;
}

.section-header h2 {
    font-family: 'Anybody', serif;
    font-size: clamp(28px, 4vw, 44px);
    color: var(--color-dark, #084D2A);
    margin: 0 0 12px;
    font-weight: 600;
}

.section-header p {
    font-size: 16px;
    color: #777;
    margin: 0 0 50px;
}

/* ── GRID ── */
.rs-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 32px;
}

/* ── THE CARD ── */
.rs-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0,0,0,0.06);
    border: 1px solid rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.rs-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(8,77,42,0.12);
}

/* ── IMAGE ── */
.rs-card-img {
    position: relative;
    height: 240px;
    overflow: hidden;
    flex-shrink: 0;
}

.rs-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.rs-card:hover .rs-card-img img {
    transform: scale(1.06);
}

/* Overlay on hover */
.rs-card-img-overlay {
    position: absolute;
    inset: 0;
    background: rgba(8,77,42,0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.35s ease;
}

.rs-card:hover .rs-card-img-overlay {
    opacity: 1;
}

.rs-view-btn {
    display: inline-block;
    padding: 11px 28px;
    background: #fff;
    color: var(--color-dark, #084D2A);
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    transform: translateY(8px);
    transition: transform 0.35s ease;
}

.rs-card:hover .rs-view-btn {
    transform: translateY(0);
    color:black;
}

/* ── BODY ── */
.rs-card-body {
    padding: 28px 28px 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

/* ── FACILITY PILLS ── */
.rs-facilities {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 18px;
}

.rs-facility-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--color-light-bg, #F7F0E5);
    color: #555;
    font-size: 12.5px;
    font-weight: 600;
    padding: 6px 13px;
    border-radius: 30px;
    border: 1px solid rgba(0,0,0,0.06);
    white-space: nowrap;
    line-height: 1;
}

.rs-facility-pill i {
    font-size: 13px;
    color: var(--color-primary, #E67D3C);
    flex-shrink: 0;
}

/* ── TITLE ── */
.rs-card-title {
    font-family: 'Anybody', serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--color-dark, #084D2A);
    margin: 0 0 10px;
    line-height: 1.3;
}

.rs-card-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s;
}

.rs-card-title a:hover {
    color: var(--color-primary, #E67D3C);
}

/* ── EXCERPT ── */
.rs-card-excerpt {
    font-size: 14px;
    color: #777;
    line-height: 1.7;
    margin: 0 0 22px;
    flex: 1;
}

/* ── FOOTER ── */
.rs-card-footer {
    border-top: 1px solid #f0f0f0;
    padding-top: 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.rs-book-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--color-dark, #084D2A);
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    transition: gap 0.2s ease, color 0.2s;
}

.rs-book-btn span {
    transition: transform 0.2s ease;
    display: inline-block;
}

.rs-book-btn:hover {
    color: var(--color-primary, #E67D3C);
    gap: 10px;
}

.rs-book-btn:hover span {
    transform: translateX(4px);
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
    .rs-cards-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 24px;
    }
}

@media (max-width: 600px) {
    .rs-cards-grid {
        grid-template-columns: 1fr;
    }
    .rs-card-body {
        padding: 22px 20px 20px;
    }
}
.cta-section {
    position: relative;
    padding: 130px 0;
    background-image: url('https://images.unsplash.com/photo-1561731216-c3a4d99437d5?auto=format&fit=crop&w=1600&q=80');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    text-align: center;
}

/* DARK OVERLAY */
.cta-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(5, 20, 10, 0.75) 0%,
        rgba(5, 35, 18, 0.82) 100%
    );
    z-index: 1;
}

.relative-z {
    position: relative;
    z-index: 2;
}

/* Eyebrow tag */
.cta-eyebrow {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #DEED58;
    border: 1.5px solid rgba(222,237,88,0.5);
    border-radius: 30px;
    padding: 7px 22px;
    margin-bottom: 22px;
}

/* Heading */
.cta-section h2 {
    font-family: 'Anybody', serif;
    font-size: clamp(34px, 5vw, 60px);
    font-weight: 800;
    color: #ffffff;
    line-height: 1.15;
    margin: 0 0 18px;
    text-shadow: 0 4px 24px rgba(0,0,0,0.5);
}

/* Subtext */
.cta-section p {
    font-size: 18px;
    color: rgba(255,255,255,0.80);
    margin: 0 auto 40px;
    max-width: 520px;
    line-height: 1.7;
}

/* Button */
.btn-gold-lg {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #E67D3C;
    color: #fff;
    padding: 18px 44px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 28px rgba(230,125,60,0.45);
}

.btn-gold-lg i {
    font-size: 15px;
    transition: transform 0.3s ease;
}

.btn-gold-lg:hover {
    background: #DEED58;
    color: #084D2A;
    transform: translateY(-3px);
    box-shadow: 0 14px 36px rgba(222,237,88,0.4);
}

.btn-gold-lg:hover i {
    transform: translateX(5px);
}

@media (max-width: 768px) {
    .cta-section      { padding: 90px 20px; }
    .cta-section h2   { font-size: 32px; }
    .cta-section p    { font-size: 16px; }
    .btn-gold-lg      { padding: 15px 32px; font-size: 15px; }
}

  /* ============================
     WILDLIFE SECTION
  ============================ */
.wildlife-section {
    background: #f0ece0;
    padding: 60px 20px 70px;
    position: relative;
    overflow: hidden;
}

.wildlife-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.wildlife-top {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 12px;
}

.bird-flying {
    position: absolute;
    top: 10px;
    right: 0px;
    width: 80px;
    pointer-events: none;
    animation: birdSoar 4s ease-in-out infinite;
}

@keyframes birdSoar {
    0%, 100% { transform: translateY(0) rotate(-3deg); }
    50%       { transform: translateY(-12px) rotate(4deg); }
}

.wildlife-heading-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0 6px;
    max-width: 900px;
    text-align: center;
    line-height: 1.1;
}

.wildlife-heading-row h3 {
    font-family: 'Anybody';
    font-size: clamp(16px, 2vw, 28px);
    font-weight: 700;
    color: #1a4d2e;
    margin: 0;
    padding: 0;
    line-height: 2.1;
}

.inline-pill {
    display: inline-block;
    width: 100px;
    height: 42px;
    border-radius: 100px;
    overflow: hidden;
    vertical-align: middle;
    flex-shrink: 0;
    position: relative;
    top: -2px;
}

.inline-pill img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.wildlife-subtitle {
    font-size: 15px;
    color: #100f0f;
    font-weight: 400;
    max-width: 750px;
    text-align: center;
    line-height: 1.6;
    font-family: 'Anybody', sans-serif;
    margin-top: 12px;
    margin-bottom: 50px;
    letter-spacing: 0.06em;
}

.awards-block {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.awards-title {
    font-family: 'Anybody', sans-serif;
    font-size: clamp(20px, 1.6vw, 24px);
    font-weight: 600;
    color: #1a4d2e;
    margin-bottom: 32px;
    text-align: center;
    white-space: nowrap;
    margin-top:40px;
}

.awards-title span { color: #e07c3a; }

.awards-badges {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 52px;
    flex-wrap: nowrap;
}

.ta-badge-img {
    width: 110px;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
    cursor: pointer;
     
}

.ta-badge-img:hover {
    transform: translateY(-6px);
}

@media (max-width: 900px) {
    .awards-badges { flex-wrap: wrap; gap: 16px; }
    .ta-badge-img { width: 85px; }
    .bird-flying { width: 55px; }
    .awards-title { white-space: normal; }
}

  /* ============================
     RESPONSIVE
  ============================ */
  @media (max-width: 900px) {
    .bird-flying { width: 60px; right: 10px; top: 5px; }
    .awards-badges { gap: 16px; }
    .ta-badge-img { width: 90px; }
  }
  @media (max-width: 600px) {
    .wildlife-section { padding: 50px 16px 60px; }
    .wildlife-subtitle { margin-bottom: 50px; }
    .ta-badge-img { width: 75px; }
    .bird-flying { width: 48px; }
  }
  /* ===== HANDPICKED DESTINATIONS SECTION CSS ===== */

.destinations-section {
  background: #f0ece0;
  padding: 60px 0 70px;
}

.dest-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ── TOP ROW ── */
.dest-top-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 36px;
  gap: 20px;
}

.dest-heading {
  font-family: 'Anybody', 'Inter', sans-serif;
  font-size:40px;
  font-weight: 600;
  color: #1a4d2e;
  line-height: 1.25;
  margin: 0;
}

/* Explore Button */
.dest-explore-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #d4e84a;
  color: #1a4d2e;
  font-size: 15px;
  font-weight: 700;
  padding: 13px 28px;
  border-radius: 50px;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  margin-top: 8px;
  transition: all 0.25s ease;
  box-shadow: 0 2px 14px rgba(180,210,30,0.3);
}
.dest-explore-btn:hover {
  background: #c4d83a;
  transform: translateX(4px);
  color:black;
}

/* ── CARDS GRID ── */
.dest-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* ── SINGLE CARD ── */
.dest-card {
  background: #fff;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.07);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  text-decoration: none;
  display: block;
}
.dest-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.13);
}

/* Card Image */
.dest-card-img-wrap {
  margin: 10px;
  width: calc(100% - 20px);
  aspect-ratio: 1 / 1;
  border-radius: 14px;
  overflow: hidden;
}
.dest-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.dest-card:hover .dest-card-img {
  transform: scale(1.06);
}

/* Card Info */
.dest-card-info {
  padding: 14px 16px 20px;
  text-align: center;
}
.dest-card-name {
  font-family: 'Anybody', 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 800;
  color: #1a1a1a;
  margin: 0 0 5px;
}
.dest-card-trips {
  font-size: 14px;
  color: #888;
  font-weight: 500;
  margin: 0;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .dest-container { padding: 0 24px; }
  .dest-cards-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
}

@media (max-width: 600px) {
  .destinations-section { padding: 40px 0 50px; }
  .dest-container { padding: 0 16px; }
  .dest-top-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 24px;
  }
  .dest-explore-btn { margin-top: 0; }
  .dest-cards-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .dest-card-img-wrap { margin: 8px; width: calc(100% - 16px); border-radius: 12px; }
  .dest-card-name { font-size: 15px; }
  .dest-card-trips { font-size: 13px; }
}
/* ====================================================
   WILDTREK STATS SECTION - CSS
   Yeh CSS apne style.css mein paste karo
==================================================== */

/* ===== SECTION WRAPPER ===== */
.wildtrek-section {
  display: flex;
  align-items: center;
  gap: 72px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 40px;
}

/* ===== LEFT: IMAGE ===== */
.wt-image-wrap {
  flex: 0 0 460px;
  height: 580px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.wt-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  display: block;
}

.wt-image-wrap:hover img {
  transform: scale(1.04);
}

/* ===== RIGHT: CONTENT ===== */
.wt-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.wt-heading {
  font-family: 'Anybody', serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  line-height: 1.2;
  color: #084D2A;
  margin: 0;
  font-weight: 600;
}

.wt-desc {
  font-size: 1rem;
  color: #131111;
  line-height: 1.75;
  max-width: 460px;
  margin: 0;
}

/* ===== STATS LIST ===== */
.wt-stats {
  display: flex;
  flex-direction: column;
  margin-top: 12px;
}

.wt-stat-item {
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.wt-stat-item:last-child {
  border-bottom: none;
}

.wt-stat-number {
  font-family: 'Anybody', serif;
  font-size: 3rem;
  font-weight: 600;
  color: #E67D3C;
  min-width: 120px;
  line-height: 1;
  transition: color 0.3s;
}

.wt-stat-item:hover .wt-stat-number {
  color: #c85f1e;
}

.wt-stat-label {
  font-size: 0.95rem;
  color: #000000;
  line-height: 1.5;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .wildtrek-section {
    gap: 50px;
    padding: 60px 30px;
  }
  .wt-image-wrap {
    flex: 0 0 380px;
    height: 500px;
  }
}

@media (max-width: 768px) {
  .wildtrek-section {
    flex-direction: column;
    gap: 36px;
    padding: 50px 20px;
  }
  .wt-image-wrap {
    flex: unset;
    width: 100%;
    height: 300px;
  }
  .wt-stat-number {
    font-size: 2.2rem;
    min-width: 90px;
  }
}
.wc-section {
    background: #f0ece0;
    padding: 70px 40px 80px;
}

.wc-inner {
    max-width: 1200px;
    margin: 0 auto;
}

/* ── TITLE BLOCK — FULL WIDTH TOP ── */
.wc-title-block {
    text-align: center;
    margin-bottom: 48px;
}

.wc-title-top {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 14px;
}

.wc-leaf {
    font-size: 28px;
    line-height: 1;
    flex-shrink: 0;
}

.wc-main-title {
    font-family: 'Anybody', sans-serif;
    font-size: clamp(33px, 3vw, 43px);
    font-weight: 500;
    color: #1a4d2e;
    line-height: 1.15;
    margin: 0;
}

.wc-subtitle {
    font-family: 'Anybody', sans-serif;
    font-size: 17px;
    color: #0f0e0e;
    line-height: 1.6;
    font-weight: 400;
    max-width: 100%;
    margin: 0 auto;
    white-space: nowrap;
}

/* ── CARDS GRID — 3 COLUMNS x 2 ROWS ── */
.wc-cards-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
}

/* CARD */
.wc-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 32px 28px 36px;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.wc-card-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: #c8e63c;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 700;
    color: #1a4d2e;
    margin-bottom: 40px;
    font-family: 'Anybody', sans-serif;
}

.wc-card-title {
    font-family: 'Anybody', sans-serif;
    font-size: 22px;
    font-weight: 600;
    color: #1a4d2e;
    margin-bottom: 12px;
}

.wc-card-text {
    font-family: 'Anybody', sans-serif;
    font-size: 16px;
    color: #0f0101;
    line-height: 1.65;
    font-weight: 400;
}

/* CTA CARD — 6th box in grid */
.wc-cta-card {
    background: #1a4d2e;
    border-radius: 20px;
    padding: 32px 28px 36px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 20px;
}

.wc-cta-card p {
    font-family: 'Anybody', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
    line-height: 1.5;
    margin: 0;
}

.wc-cta-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Anybody', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: #1a4d2e;
    background: #c8e63c;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 50px;
    transition: background 0.25s, transform 0.2s;
    white-space: nowrap;
}

.wc-cta-link:hover {
    background: #b8d62c;
    transform: translateY(-2px);
    color:black;
}

/* ── TABLET ── */
@media (max-width: 1024px) {
    .wc-section {
        padding: 60px 30px 70px;
    }

    .wc-cards-grid {
        grid-template-columns: 1fr 1fr;
    }

    .wc-main-title {
        font-size: clamp(28px, 4vw, 44px);
    }

    .wc-subtitle {
        max-width: 100%;
    }
}

/* ── MOBILE ── */
@media (max-width: 600px) {
    .wc-section {
        padding: 40px 16px 50px;
    }

    .wc-title-block {
        text-align: center;
        margin-bottom: 32px;
    }

    .wc-title-top {
        flex-direction: column;
        gap: 6px;
    }

    .wc-main-title {
        font-size: 26px;
    }

    .wc-subtitle {
        font-size: 15px;
        max-width: 100%;
        white-space: normal;
    }

    .wc-cards-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .wc-card {
        padding: 24px 20px 28px;
    }

    .wc-card-number {
        margin-bottom: 24px;
    }

    .wc-card-title {
        font-size: 18px;
    }

    .wc-card-text {
        font-size: 15px;
    }

    .wc-cta-card {
        padding: 28px 20px;
    }

    .wc-cta-card p {
        font-size: 17px;
    }

    .wc-cta-link {
        font-size: 14px;
    }
}

.safari-section {
    background-color: #eeeade;
    min-height: 400px;
    display: flex;
    align-items: center;
    padding: 50px 80px;
    position: relative;
    overflow: hidden;
  }

  /* subtle dot texture */
  .safari-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, #c8b99a44 1px, transparent 1px);
    background-size: 24px 24px;
    pointer-events: none;
  }

  .safari-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    gap: 20px;
  }

  /* ---- LEFT ---- */
  .safari-left {
    flex: 0 0 400px;  
  }

  .safari-label {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: #c97a3a;
    margin-bottom: 12px;
  }

  .safari-title {
    font-family: 'Playfair Display', serif;
     font-size: 45px; 
    font-weight: 500;
    line-height: 1.1;
    color: #1a3d2b;
     max-width: 100%;
     width:100%;
  }

  /* ---- CENTER IMAGE ---- */
  .safari-center {
    flex: 0 0 420px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .safari-center img {
    width: 100%;
    max-width: 420px;
    height: auto;
    display: block;
    /* image already has stacked card effect built in */
  }

  /* ---- RIGHT ---- */
  .safari-right {
    flex: 0 0 280px;
  }

  .safari-desc {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.72;
    color: #212020;
    margin-bottom: 28px;
  }

  .safari-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #c5e000;
    color: #1a3d2b;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 600;
    padding: 14px 30px;
    border-radius: 50px;
    text-decoration: none;
    transition: background 0.2s ease, transform 0.15s ease;
  }

  .safari-btn:hover {
    background-color: #b5cf00;
    transform: translateX(4px);
    color:black;
  }
    /* ===== SECTION ===== */
  .articles-section {
    background-color: #eeeade;
    padding: 70px 100px 80px;
    position: relative;
  }

  /* dot texture */
  .articles-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, #c8b99a33 1px, transparent 1px);
    background-size: 24px 24px;
    pointer-events: none;
  }

  /* ===== HEADER ===== */
  .articles-header {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
  }

  .articles-label {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: #c97a3a;
    margin-bottom: 14px;
  }

  .articles-heading {
    font-family: 'Anybody';
    font-size: 40px;
    font-weight: 600;
    color: #1a3d2b;
    line-height: 1.2;
  }

  /* ===== GRID ===== */
  .articles-grid {
    display: flex;
    gap: 30px;
    align-items: flex-start;
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
  }

  /* ===== LEFT BIG CARD ===== */
  .article-big {
    flex: 1;
  }

  .article-big img {
    width: 100%;
    height: 370px;
    object-fit: cover;
    border-radius: 16px;
    display: block;
  }

  .article-big .meta {
    font-size: 13px;
    color: #555;
    margin-top: 18px;
    margin-bottom: 10px;
  }

  .article-big h2 {
    font-family: 'Anybody';
    font-size: 30px;
    font-weight: 700;
    color: #1a3d2b;
    line-height: 1.2;
    margin-bottom: 10px;
  }

  .article-big .date {
    font-size: 13px;
    color: #444;
    display: flex;
    align-items: center;
    gap: 6px;
  }

  .article-big .date::before {
    content: '•';
    color: #444;
  }

  /* ===== RIGHT SMALL CARDS ===== */
  .articles-right {
    flex: 0 0 420px;
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .article-small {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 22px 0;
    border-bottom: 1px solid #ddd8cc;
  }

  .article-small:first-child {
    padding-top: 0;
  }

  .article-small:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }

  .article-small img {
    width: 130px;
    height: 110px;
    object-fit: cover;
    border-radius: 12px;
    flex-shrink: 0;
  }

  .article-small-content {
    flex: 1;
  }

  .article-small .meta {
    font-size: 12.5px;
    color: #666;
    margin-bottom: 7px;
  }

  .article-small .meta span {
    color: #666;
  }

  .article-small .meta .dot {
    margin: 0 5px;
    color: #999;
  }

  .article-small h3 {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-weight: 700;
    color: #1a3d2b;
    line-height: 1.3;
    margin-bottom: 10px;
  }

  .article-small .date {
    font-size: 12.5px;
    color: #444;
    display: flex;
    align-items: center;
    gap: 6px;
  }

  .article-small .date::before {
    content: '•';
    color: #444;
  }
  @media (max-width: 1024px) {
  .articles-section {
    padding: 60px 50px 70px;
  }

  .articles-heading {
    font-size: 36px;
  }

  .articles-right {
    flex: 0 0 340px;
  }
}

@media (max-width: 768px) {
  .articles-section {
    padding: 50px 24px 60px;
  }

  .articles-heading {
    font-size: 28px;
  }

  .articles-grid {
    flex-direction: column;
  }

  .article-big img {
    height: 260px;
  }

  .article-big h2 {
    font-size: 24px;
  }

  .articles-right {
    flex: unset;
    width: 100%;
  }
}

@media (max-width: 480px) {
  .articles-heading {
    font-size: 22px;
  }

  .article-big img {
    height: 220px;
  }

  .article-big h2 {
    font-size: 20px;
  }

  .article-small img {
    width: 100px;
    height: 90px;
  }

  .article-small h3 {
    font-size: 15px;
  }
}
/* ========== RESPONSIVE ONLY ========== */
  @media (max-width: 768px) {
    .safari-section {
      padding: 36px 22px;
      min-height: unset;
    }
    .safari-inner {
      flex-direction: column;
      align-items: flex-start;
      gap: 26px;
    }
    .safari-left  { flex: unset; width: 100%; }
    .safari-title { font-size: 32px; white-space: normal; }
    .safari-center { flex: unset; width: 100%; justify-content: flex-start; }
    .safari-center img { max-width: 100%; }
    .safari-right { flex: unset; width: 100%; }
  }
  
  .gallery-section {
    background-color: #eeeade;
    padding: 60px 80px 70px;
    position: relative;
    overflow: hidden;
  }

  .gallery-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, #c8b99a33 1px, transparent 1px);
    background-size: 24px 24px;
    pointer-events: none;
  }

  /* HEADER ROW */
  .gallery-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
  }

  .gallery-header-left { max-width: 600px; }

  .gallery-title {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 500;
    color: #1a3d2b;
    line-height: 1.15;
    margin-bottom: 14px;
  }

  .gallery-desc {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    color: #161515;
    line-height: 1.6;
  }

  .gallery-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #c5e000;
    color: #1a3d2b;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 600;
    padding: 14px 28px;
    border-radius: 50px;
    text-decoration: none;
    white-space: nowrap;
    margin-top: 6px;
    transition: background 0.2s ease, transform 0.15s ease;
  }

  .gallery-btn:hover {
    background-color: #b5cf00;
    transform: translateX(4px);
    color:black;
  }

  /* DESKTOP 4x2 GRID */
  .gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 220px);
    gap: 14px;
    position: relative;
    z-index: 1;
    max-width: 1400px;
    margin: 0 auto;
  }

  .gitem {
    border-radius: 18px;
    overflow: hidden;
    cursor: pointer;
  }

  .gitem img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
  }

  .gitem:hover img { transform: scale(1.06); }

  /* MOBILE ROWS - hidden on desktop */
  .gallery-mobile { display: none; }

  /* ===== RESPONSIVE ===== */
  @media (max-width: 768px) {
    .gallery-section { padding: 36px 0 40px; }

    .gallery-header {
      flex-direction: column;
      gap: 20px;
      padding: 0 22px;
      margin-bottom: 28px;
    }

    .gallery-title { font-size: 26px; }
    .gallery-desc  { font-size: 14px; }

    .gallery-grid  { display: none; }
    .gallery-mobile { display: block; }

    .scroll-row {
      display: flex;
      gap: 12px;
      overflow-x: auto;
      scroll-snap-type: x mandatory;
      -webkit-overflow-scrolling: touch;
      padding: 0 22px 8px;
      margin-bottom: 12px;
      scrollbar-width: none;
    }

    .scroll-row::-webkit-scrollbar { display: none; }

    .sitem {
      flex: 0 0 260px;
      height: 180px;
      border-radius: 16px;
      overflow: hidden;
      scroll-snap-align: start;
    }

    .sitem img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }
  }
  .wt-questions-wrap {
    background-color: #eeeade !important;
    background-image: none !important;
    position: relative;
    overflow: hidden;
    padding: 80px 40px 90px;
    text-align: center;
  }

  .wt-questions-wrap::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, #c8b99a33 1px, transparent 1px) !important;
    background-size: 24px 24px;
    pointer-events: none;
    z-index: 0;
  }

  .wt-questions-inner {
    position: relative;
    z-index: 1;
  }

  .wt-questions-tag {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: #c97a3a;
    margin-bottom: 16px;
  }

  .wt-questions-heading {
    font-family: 'Playfair Display', serif;
    font-size: 44px;
    font-weight: 500;
    color: #1a3d2b;
    line-height: 1.1;
    margin-bottom: 24px;
  }

 .wt-questions-text {
    font-family: 'Inter', sans-serif;
    font-size: 19px;
    font-weight: 400;
    color: #2b2b2b;
    line-height: 1.7;
    max-width: 900px;
    margin: 0 auto 28px;
  }

  .wt-questions-phone {
    font-family: 'Inter', sans-serif;
    font-size: 17px;
    font-weight: 500;
    color: #1a1a1a;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
  }

  .wt-questions-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #c5e000;
    color: #1a3d2b;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 600;
    padding: 16px 36px;
    border-radius: 50px;
    text-decoration: none;
    transition: background 0.2s ease, transform 0.15s ease;
  }

  .wt-questions-btn:hover {
    background-color: #b5cf00;
    transform: translateX(4px);
    color:black;
  }

  @media (max-width: 768px) {
    .wt-questions-wrap    { padding: 50px 24px 60px; }
    .wt-questions-heading { font-size: 32px; }
    .wt-questions-text    { font-size: 14.5px; }
     
    /* Button size fix */
    .wt-questions-btn {
        padding: 12px 28px;
        font-size: 14px;
        width: auto !important;
        display: inline-flex !important;
    }
  }
.st-forest-top {
  margin-bottom: -40px;
  position: relative;
  z-index: 2;
  overflow: hidden;
}
.st-forest-top svg {
  width: 100%;
  height: auto;
  display: block;
}
.st-section {
  padding-top: 100px;
  position: relative;
  z-index: 1;
}

/* Force ALL paths inside SVG to be green — no matter what fill is set */
.st-forest-top svg path {
  fill: #084D2A !important;
}

/* ══ SECTION ════════════════════════════════════ */
.st-section {
  background: #084D2A;
  padding: 64px 0 60px;
}

/* ══ CONTAINER ══════════════════════════════════ */
.st-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ══ HEADER ═════════════════════════════════════ */
.st-header {
  text-align: center;
  margin-bottom: 56px;
}

.st-tag {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  color: #E67D3C;
  text-transform: uppercase;
  letter-spacing: 3.5px;
  margin-bottom: 14px;
}

.st-title {
  font-family: 'Anybody', sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 600;
  color: #ffffff;
  line-height: 1.15;
  margin-bottom: 12px;
  letter-spacing: -0.3px;
}

.st-subtitle {
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  color: rgba(255,255,255,0.62);
  font-weight: 400;
  line-height: 1.6;
}

/* ══ CARDS GRID ══════════════════════════════════ */
.st-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  position: relative;
  z-index: 2;
}

/* ══ CARD ════════════════════════════════════════ */
.st-card {
  background: #ffffff;
  border-radius: 28px;
  overflow: visible;
  position: relative;
  padding-bottom: 28px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.18);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.st-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(0,0,0,0.26);
}

.st-card-img-wrap {
  width: 100%;
  height: 220px;
  border-radius: 18px 18px 0 0;
  overflow: hidden !important;  
  position: relative;
   
}

.st-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.st-card:hover .st-card-img-wrap img {
  transform: scale(1.04);
}
.st-avatar-wrap {
  position: absolute;
  bottom: -26px;
  left: 24px;
  z-index: 10;
  width: 52px;
  height: 52px;
  border-radius: 50% !important;
  border: 3px solid #ffffff;
  overflow: hidden !important;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  clip-path: circle(50% at 50% 50%);
  -webkit-clip-path: circle(50% at 50% 50%);
}

.st-avatar-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 50% !important;
  clip-path: circle(50% at 50% 50%);
  -webkit-clip-path: circle(50% at 50% 50%);
}

.st-card-body {
  padding: 38px 12px 0 24px;
    padding-top: 42px !important; 
}

.st-card-package {
  font-family: 'Anybody', sans-serif;
  font-size: 1.08rem;
  font-weight: 700;
  color: #084D2A;
  margin-bottom: 12px;
  line-height: 1.3;
}

.st-card-text {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.92rem;
  color: #555;
  line-height: 1.72;
  margin-bottom: 18px;
  font-weight: 400;
}

.st-card-author {
  font-family: 'Anybody', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: #E67D3C;
  margin-bottom: 10px;
}

.st-card-date {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  color: #888;
  font-weight: 400;
}

@media (max-width: 1024px) {
  .st-forest-top {
    margin-bottom: -10px;
  }
  .st-section {
    padding-top: 50px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .st-forest-top {
    margin-bottom: -20px;
  }
  .st-section {
    padding-top: 20px;
  }
}

/* Small mobile */
@media (max-width: 480px) {
  .st-forest-top {
    margin-bottom: -20px;
  }
  .st-section {
    padding-top: 20px;
  }
}
@media (max-width: 600px) {
  .st-grid {
    grid-template-columns: 1fr;  
  }
}
.st-wave {
  display: block;
  width: 100%;
  line-height: 0;
  margin-top: 52px;
  margin-bottom: -4px;
}

.st-wave svg {
  display: block;
  width: 100%;
  height: auto;
}